 
:root {
  --color-primary: #20282D;
  --color-secondary: #1F1F25;
  --color-blue: #0b4df5;
  --color-sky: #82b440;
  --color-body: #5D666F;
  --color-heading-1: #1C2539;
  --color-title: #141416;
  --color-heading-dark: #141416;
  --transition: .3s;
  --bg-dark-1: #1E1E20;
  --color-white: #fff;
  --color-border: #DDD8F9;
  --border-width: 1px;
  --radius: 10px;
  --color-success: #3EB75E;
  --color-danger: #FF0003;
  --color-warning: #FF8F3C;
  --color-info: #1BA2DB;
  --color-facebook: #3B5997;
  --color-twitter: #1BA1F2;
  --color-youtube: #ED4141;
  --color-linkedin: #0077B5;
  --color-pinterest: #E60022;
  --color-instagram: #C231A1;
  --color-vimeo: #00ADEF;
  --color-twitch: #6441A3;
  --color-discord: #7289da;
  --p-light: 300;
  --p-regular: 400;
  --p-medium: 500;
  --p-semi-bold: 600;
  --p-bold: 700;
  --p-extra-bold: 800;
  --p-black: 900;
  --s-light: 300;
  --s-regular: 400;
  --s-medium: 500;
  --s-semi-bold: 600;
  --s-bold: 700;
  --s-extra-bold: 800;
  --s-black: 900;
  --transition: 0.3s;
  --font-primary: "Red Hat Display", serif;
  --font-secondary: "DM Sans", serif;
  --font-3: "fontawesome";
  --font-size-b1: 16px;
  --font-size-b2: 15px;
  --font-size-b3: 18px;
  --line-height-b1: 16px;
  --line-height-b2: 16px;
  --line-height-b3: 1.2;
  --h1: 40px;
  --h2: 38px;
  --h3: 20px;
  --h4: 16px;
  --h5: 14px;
  --h6: 13px;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  font-size: 10px;
  overflow: hidden;
  overflow-y: auto;
  scroll-behavior: auto !important;
}

body {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "DM Sans", serif;
  color: var(--color-body);
  font-weight: var(--p-regular);
  position: relative;
  overflow-x: hidden;
  margin: 0;
  background: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body {
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body {
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  body {
    overflow: hidden;
  }
}
body::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.05;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p,
pre,
menu,
ul {
  margin: 0;
  margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  word-break: break-word;
  font-family: "Red Hat Display", serif;
  line-height: 1.4074;
  color: var(--color-heading-1);
}

h1,
.h1 {
  font-size: var(--h1);
  line-height: 1.3;
  font-weight: 700;
}

h2,
.h2 {
  font-size: var(--h2);
  line-height: 1.1;
}

h3,
.h3 {
  font-size: var(--h3);
  line-height: 1.2;
}

h4,
.h4 {
  font-size: var(--h4);
  line-height: 1.2;
}

h5,
.h5 {
  font-size: var(--h5);
  line-height: 1.2;
}

h6,
.h6 {
  font-size: var(--h6);
  line-height: 1.2;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
  color: inherit;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1,
  .h1 {
    font-size: 38px;
  }
  h2,
  .h2 {
    font-size: 32px;
  }
  h3,
  .h3 {
    font-size: 28px;
  }
  h4,
  .h4 {
    font-size: 24px;
  }
  h5,
  .h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  h1,
  .h1 {
    font-size: 34px;
  }
  h2,
  .h2 {
    font-size: 28px;
  }
  h3,
  .h3 {
    font-size: 24px;
  }
  h4,
  .h4 {
    font-size: 20px;
  }
  h5,
  .h5 {
    font-size: 20px;
  }
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  font-weight: var(--s-bold);
}

h4,
.h4,
h5,
.h5 {
  font-weight: var(--s-bold);
}

h6,
.h6 {
  font-weight: var(--s-bold);
}

p {
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
  font-weight: var(--p-regular);
  color: var(--color-body);
  margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
  p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 28px;
  }
}
p:last-child {
  margin-bottom: 0;
}

/*---------------------------
	List Style 
---------------------------*/
ul {
  padding-left: 18px;
}

ul {
  list-style: square;
  margin-bottom: 30px;
  padding-left: 20px;
}
ul li {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--color-body);
}
ul li a {
  text-decoration: none;
  color: var(--color-gray);
}
ul li a:hover {
  color: var(--color-primary);
}
ul ul {
  margin-bottom: 0;
}

@media only screen and (max-width: 1199px) {
  h1 {
    font-size: 1.3;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 54px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 40px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 575px) {
  h1 {
    font-size: 28px;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 479px) {
  h1 {
    font-size: 26px;
    line-height: 1.3;
  }
}

@media only screen and (max-width: 1199px) {
  h2 {
    font-size: 54px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h2 {
    font-size: 44px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 36px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 32px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 575px) {
  h2 {
    font-size: 32px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 479px) {
  h2 {
    font-size: 26px;
    line-height: 1.4;
  }
}

@media only screen and (max-width: 1199px) {
  h3 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h3 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 30px;
    line-height: 56px;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 30px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 575px) {
  h3 {
    font-size: 24px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 479px) {
  h3 {
    font-size: 22px;
    line-height: 30px;
  }
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


details,
footer,
header,
nav,
section {
  display: block;
}


video {
  display: inline-block;
}

a {
  color: var(--color-heading);
  text-decoration: none;
  outline: none;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: var(--color-primary);
}

a:focus {
  outline: none;
}

b {
  font-weight: bold;
}


pre {
  font-size: var(--font-size-b3);
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  color: var(--color-primary);
}

pre {
  font-family: "Raleway", sans-serif;
  font-size: var(--font-size-b3);
  margin: 10px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  color: var(--color-body);
  background: var(--color-lighter);
}

small {
  font-size: smaller;
}

menu,
ul {
  margin: 16px 0;
  padding: 0 0 0 40px;
}

nav ul {
  list-style: none;
  list-style-image: none;
}

li > ul {
  margin: 0;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}

form {
  margin: 0;
}

button,
input,
textarea {
  font-size: 100%;
  margin: 0;
  max-width: 100%;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
html input[type=button],
input[type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  appearance: textfield;
  padding-right: 2px;
  width: 270px;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

/* BlockQuote  */

/* ========= Forms Styles ========= */
input,
button,
textarea {
  background: transparent;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease-out 0s;
  color: var(--color-body);
  width: 100%;
}
input:focus, input:active,
button:focus,
button:active,
textarea:focus,
textarea:active {
  outline: none;
  border-color: var(--color-primary);
}

button,
[type=button],
[type=submit] {
  -webkit-appearance: button;
}

input {
  height: 40px;
  padding: 0 15px;
}

input[type=text],
input[type=email],
input[type=number],
textarea {
  font-size: var(--font-size-b2);
  font-weight: 400;
  height: auto;
  line-height: 28px;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0 20px;
  outline: none;
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius);
  /* -- Placeholder -- */
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  color: var(--body-color);
  /* Firefox */
  opacity: 1;
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--body-color);
}
input[type=text]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=number]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--body-color);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=number]:focus,
textarea:focus {
  border-color: var(--color-primary);
}

input[type=submit] {
  width: auto;
  padding: 0 30px;
  border-radius: 500px;
  display: inline-block;
  font-weight: 500;
  transition: 0.3s;
  height: 60px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: var(--p-medium);
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b3);
  height: 50px;
  border: 2px solid var(--color-primary);
  transition: var(--transition);
}
input[type=submit]:hover {
  background: transparent;
  color: var(--color-primary);
  transform: translateY(-5px);
}

/*==============================
 *  Utilities
=================================*/

iframe {
  width: 100%;
}

/*===========================
Background Image 
=============================*/
.bg_image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/*===================
Custom Row
======================*/

/*===========================
    Input Placeholder
=============================*/
input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*=============================
	Overlay styles 
==============================*/

/*!
Animate.css - http://daneden.me/animate
Version - 3.4.0
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

/*jump animation */
@keyframes jump-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50px, 0) scale(0.7);
    transform: translate3d(0, 50px, 0) scale(0.7);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-4 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20px, 0) scale(0.8);
    transform: translate3d(0, 20px, 0) scale(0.8);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-5 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40%, 0);
    transform: translate3d(0, 40%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  transition: 0.2s;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft2 {
  from {
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp2 {
  from {
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
    visibility: hidden;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}
@keyframes slideInUp3 {
  from {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    visibility: hidden;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes jump-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rotateIt {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes rotateIt2 {
  to {
    transform: rotate(360deg);
  }
}
@keyframes shape-service-1 {
  0% {
    right: -40%;
    top: 30%;
  }
  100% {
    right: -23%;
    top: 0;
  }
}
@keyframes animate-floting {
  0% {
    transform: translateX(50%);
  }
  50% {
    transform: translateX(-40%);
  }
  100% {
    transform: translateX(40%);
  }
}
@keyframes animate-floting-2 {
  0% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(40%);
  }
  100% {
    transform: translateX(-40%);
  }
}
@keyframes animate-floting-3 {
  0% {
    transform: translateX(-20%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-20%);
  }
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
@keyframes vsmorph {
  0% {
    border-radius: var(--morp-value);
  }
  50% {
    border-radius: var(--morp-md-value);
  }
  100% {
    border-radius: 40% 60%;
  }
}
@keyframes morpspin {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@keyframes fadeInUp-small {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.6, 0.6, 0.6);
    transform: scale3d(0.6, 0.6, 0.6);
  }
  50% {
    opacity: 1;
  }
}

/* header  */
.header-top-area-wrapper {
  background: #20282D;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-top-area-wrapper {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header-top-area-wrapper {
    display: none;
  }
}
.header-top-area-wrapper .header-top-one-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-area-wrapper .header-top-one-wrapper .left {
  display: flex;
  align-items: center;
}
.header-top-area-wrapper .header-top-one-wrapper .left .mail {
  position: relative;
}
.header-top-area-wrapper .header-top-one-wrapper .left .mail::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  background: #fff;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.header-top-area-wrapper .header-top-one-wrapper .left .mail a {
  padding: 11px 0;
  display: block;
  color: #fff;
  margin-right: 50px;
  font-size: 14px;
  position: relative;
  transition: var(--transition);
}
.header-top-area-wrapper .header-top-one-wrapper .left .mail a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  height: 1px;
  width: 0%;
  background: #fff;
  transition: var(--transition);
}
.header-top-area-wrapper .header-top-one-wrapper .left .mail a i {
  margin-right: 6px;
}
.header-top-area-wrapper .header-top-one-wrapper .left .mail a:hover::after {
  width: 100%;
}
.header-top-area-wrapper .header-top-one-wrapper .left .working-time p {
  color: #fff;
  font-size: 14px;
}
.header-top-area-wrapper .header-top-one-wrapper .right {
  display: flex;
  justify-content: flex-end;
}
.header-top-area-wrapper .header-top-one-wrapper .right .top-nav {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.header-top-area-wrapper .header-top-one-wrapper .right .top-nav li {
  margin: 0;
  margin-right: 20px;
}
.header-top-area-wrapper .header-top-one-wrapper .right .top-nav li a {
  font-size: 14px;
  transition: var(--transition);
  position: relative;
  padding: 11px 0;
  display: block;
  color: #fff;
}
.header-top-area-wrapper .header-top-one-wrapper .right .top-nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  height: 1px;
  width: 0%;
  background: #fff;
  transition: var(--transition);
}
.header-top-area-wrapper .header-top-one-wrapper .right .social-wrapper-one {
  margin-left: 30px;
  position: relative;
}

.social-wrapper-one {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
}
.social-wrapper-one li {
  margin: 0;
}
.social-wrapper-one li a {
  color: #fff;
  margin-right: 20px;
  padding: 11px 0;
}
.social-wrapper-one li a i {
  transition: 0.3s;
  color: #fff;
}
.social-wrapper-one::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
}

.header-main-one-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .header-main-one-wrapper {
    padding: 15px 0;
  }
}
@media only screen and (max-width: 575px) {
  .header-main-one-wrapper .thumbnail a img {
    max-width: 130px;
  }
}
.header-main-one-wrapper .main-header {
  display: flex;
  align-items: center;
}
.header-main-one-wrapper .main-header .nav-main ul {
  display: flex;
  align-items: center;
}
.header-main-one-wrapper .main-header .button-area {
  display: flex;
  align-items: center;
}
.header-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-lang-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.header-lang-select {
  min-width: 76px;
  height: 48px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-heading-1);
  background-color: #fff;
  border: 1px solid #e9ecf1;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.header-lang-select:hover {
  border-color: var(--color-primary);
}
.header-lang-select:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
@media only screen and (max-width: 575px) {
  .header-main-one-wrapper .button-area .rts-btn.btn-primary {
    display: none !important;
  }
}

.header-one .nav-area {
  margin-right: 80px;
}

#search,
#menu-btn {
  background: #F2F2F2;
  height: 55px;
  min-width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: none;
}
#search i,
#menu-btn i {
  color: #1C2539;
  font-size: 18px;
}
.header-two .main-header {
  justify-content: flex-start;
  display: block;
  background: #fff;
}
.header-two .main-header .content {
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  width: 98%;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .header-two .main-header .content {
    max-width: 97%;
    margin: auto;
  }
}
@media only screen and (max-width: 479px) {
  .header-two .main-header .content {
    max-width: 99%;
  }
}
.header-two .main-header nav {
  margin-left: 135px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .header-two .main-header nav {
    margin-left: 10px;
  }
}
.header-two .nav-area {
  margin-left: 135px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .header-two .nav-area {
    margin-left: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .nav-area {
    display: none;
  }
}
.nav-area ul {
  display: flex;
  align-items: center;
  column-gap: 50px;
  row-gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .nav-area ul {
    column-gap: 40px;
  }
}
@media screen and (max-width: 1300px) {
  .nav-area ul {
    column-gap: 35px;
  }
}
.nav-area ul li {
  margin: 0;
  padding: 0;
}
.nav-area ul li a {
  color: #111032;
  font-weight: 600 !important;
}

.has-dropdown.mega-menu > a {
  position: relative;
}

.has-dropdown::after {
  position: absolute;
  content: "\f078";
  right: 6px;
  top: 51%;
  transform: translateY(-50%);
  font-weight: 400;
  color: #1C2539;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  font-size: 14px;
}

.has-dropdown.mega-menu > a::after {
  position: absolute;
  content: "\f078";
  right: 6px;
  top: 53%;
  transform: translateY(-50%);
  font-weight: 400;
  color: #1C2539;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  font-size: 14px;
}

.nav-area ul li.main-nav {
  padding: 40px 0;
  cursor: pointer;
}

header .nav-area ul li.main-nav.has-dropdown {
  padding-right: 28px;
}

header .main-nav > a {
  color: #1C2539 !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  header.header-two .nav-area ul {
    gap: 40px !important;
  }
}

.submenu:hover li a {
  opacity: 0.6;
}

.mega-menu-item.with-list li a {
  position: relative;
}
.mega-menu-item.with-list li a span {
  padding: 3px 9px;
  border-radius: 33px;
  background: var(--color-sky);
  color: #fff;
  line-height: 1;
  font-size: 14px;
  transition: 0.3s;
}
.mega-menu-item.with-list li a:hover span {
  margin-left: 20px;
}

.side-bar {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: -100%;
  width: 365px;
  padding: 40px 30px;
  padding-top: 50px;
  height: 100%;
  display: block;
  background-color: white;
  backdrop-filter: blur(7px);
  z-index: 1900;
  transition: all 600ms ease;
  box-shadow: -5px 0 20px -5px rgba(149, 22, 22, 0.12);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
@media only screen and (max-width: 479px) {
  .side-bar {
    width: 320px;
    box-shadow: none;
  }
}
.side-bar.show {
  right: 0;
}

.side-bar button {
  max-width: max-content;
  border: none;
}
.side-bar button i {
  color: #fff;
  height: 50px;
  width: 50px;
  min-width: 50px;
  border-radius: 5px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  margin-top: -3px;
}

.rts-sidebar-menu-desktop .logo {
  margin-top: 50px;
}
.rts-sidebar-menu-desktop p.disc {
  margin-top: 30px;
  font-size: 16px;
  line-height: 26px;
}
.rts-sidebar-menu-desktop .get-in-touch .title {
  margin-bottom: 30px;
}
.rts-sidebar-menu-desktop .get-in-touch .wrapper .single i {
  color: var(--color-primary);
  margin-right: 10px;
  margin-bottom: 15px;
}
.rts-sidebar-menu-desktop .get-in-touch .wrapper .single i:last-child {
  margin-bottom: 0;
}
.rts-sidebar-menu-desktop .get-in-touch .wrapper .single a {
  transition: 0.3s;
}

.social-wrapper-two.menu {
  margin-top: 50px;
  margin-left: 12px;
  padding-left: 0;
}
.social-wrapper-two a {
  margin-right: 40px;
  z-index: 1;
  position: relative;
}
.social-wrapper-two a i {
  color: #fff;
  transition: 0.3s;
  font-size: 16px;
}
.social-wrapper-two a::after {
  position: absolute;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  content: "";
  z-index: -1;
  background: var(--color-primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.social-wrapper-two a:hover i {
  color: var(--color-primary);
}
.social-wrapper-two a:hover::after {
  background: #ffecec;
  box-shadow: 0px 10px 30px rgba(33, 5, 5, 0.05);
}

.logo-1 {
  display: block;
}
img[src$="logo/01.svg"] {
  display: block;
  width: auto;
  height: auto;
 
  object-fit: contain;
}

.index-six .side-bar button i {
  background: var(--color-primary);
}
.index-six .logo-1 {
  display: none;
}
.index-six .rts-sidebar-menu-desktop .get-in-touch .wrapper .single i {
  color: var(--color-primary);
}
.index-six .social-wrapper-two a::after {
  background: var(--color-primary);
  color: var(--color-primary) !important;
}
.index-six .social-wrapper-two a:hover {
  color: var(--color-primary);
}
.index-six .social-wrapper-two a:hover i {
  color: var(--color-primary);
}
.index-six .social-wrapper-two a:hover::after {
  background: #E4E7FF !important;
  color: var(--color-primary);
}
.index-six .rts-sidebar-menu-desktop .get-in-touch .wrapper .single a:hover {
  color: var(--color-primary);
}

.index-seven .side-bar button i {
  background: var(--color-primary);
}
.index-seven .logo-1 {
  display: block;
}
.index-seven .rts-sidebar-menu-desktop .get-in-touch .wrapper .single i {
  color: var(--color-primary);
}
.index-seven .social-wrapper-two a::after {
  background: var(--color-primary);
  color: #fff;
}
.index-seven .social-wrapper-two a:hover {
  color: var(--color-primary);
}
.index-seven .social-wrapper-two a:hover i {
  color: var(--color-primary);
}
.index-seven .social-wrapper-two a:hover::after {
  background: #E4E7FF;
  color: var(--color-primary);
}
.index-seven .rts-sidebar-menu-desktop .get-in-touch .wrapper .single a:hover {
  color: var(--color-primary);
}

#anywhere-home {
  cursor: url(../images/banner/shape/close.png), auto;
  background: #0e1013;
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease-in-out;
  pointer-events: none;
  z-index: 50;
}

.mobile-menu nav ul {
  padding: 0 20px;
}
.mobile-menu nav ul li {
  margin: 0;
  padding: 0;
}
.mobile-menu nav ul li.has-droupdown {
  position: relative;
}
.mobile-menu nav ul li.has-droupdown ul li {
  margin: 10px 0 !important;
}
.mobile-menu nav ul li.has-droupdown::after {
  position: absolute;
  content: "\f078";
  font-family: "Font Awesome 6 pro" !important;
  font-size: 16px;
  right: 0;
  font-weight: 400;
  top: 5px;
  padding: 8px 13px;
  color: var(--heading-color);
  background: transparent !important;
  pointer-events: none;
  cursor: pointer;
}
.mobile-menu nav ul li a {
  display: block;
}
.mobile-menu .social-wrapper-one {
  margin-top: 50px;
}
@media screen and (min-width: 1199px) {
  .side-bar.header-two .mobile-menu {
    display: none !important;
  }
}

.side-bar .social-wrapper-one ul {
  list-style: none;
  display: flex;
  align-items: center;
  padding-left: 0;
  margin: 0;
}
.side-bar .social-wrapper-one li {
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.side-bar .social-wrapper-one li a {
  width: 40px;
  height: 40px;
  display: block;
  background: transparent;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  margin-right: 0;
}
.side-bar .social-wrapper-one li a i {
  font-weight: 400;
  font-size: 18px;
  line-height: 14px;
  color: var(--color-primary);
}
.side-bar .social-wrapper-one li a:hover {
  background: var(--color-primary);
}

.mobile-menu nav ul li a {
  display: block;
  padding: 2px 0;
}

.mobile-menu nav ul li a.main {
  padding: 12px 0 17px 0;
  border-bottom: 1px solid #f3f3f3;
  cursor: pointer;
  font-weight: 600;
  color: #20282d;
}

li.has-dropdown {
  position: relative;
}
li.has-dropdown .submenu {
  min-width: 230px;
  height: auto;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: max(100%, 230px);
  margin-right: -30px;
  box-sizing: border-box;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  text-align: left;
  transition: none;
  border-radius: 0 0 6px 6px;
  background-color: #fff;
  border-left: 0;
  border-bottom: 0;
  border-right: 0;
  display: inline-block;
  box-shadow: 0 36px 35px rgba(0, 0, 0, 0.08);
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 10px;
  padding-right: 40px;
  transform: none;
}
li.has-dropdown .submenu li {
  margin-right: 0;
  padding: 0;
}
li.has-dropdown .submenu li a {
  padding: 6px 16px !important;
  font-size: 16px;
  transition: all 0.3s;
  border-radius: 4px;
  display: block;
  padding: 12px 45px 12px 15px;
  border-radius: 5px;
  background: #FFFFFF;
  transition: all 0.3s;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
li.has-dropdown .submenu li a:hover {
  opacity: 1;
  background: #F2F2F8;
  opacity: 1;
  color: var(--color-primary) !important;
}
li.has-dropdown:hover .submenu,
li.has-dropdown.dropdown-open .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  top: calc(100% - 1px);
  transform: none;
}
li.has-dropdown:hover::after,
li.has-dropdown.dropdown-open::after {
  content: "\f077";
}

.has-dropdown.mega-menu::after {
  display: none;
}

header .nav-area ul li.main-nav:hover > a,
header .nav-area ul li.main-nav.dropdown-open > a {
  transition: 0.3s;
  color: var(--color-primary) !important;
}
header .nav-area ul li.main-nav:hover::after,
header .nav-area ul li.main-nav.dropdown-open::after {
  color: var(--color-primary) !important;
}

.rts-mega-menu {
  position: absolute;
  width: 100%;
  height: auto;
  top: 100%;
  transform: scaleY(0);
  left: 0;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  transition: all 0.5s;
  border-radius: 0 0 5px 5px !important;
  background-color: #ffffff;
  display: inline-block;
  box-shadow: 0 36px 35px rgba(61, 60, 60, 0.08);
  transform-origin: 0 0 0;
  padding: 30px 30px;
}

.mega-menu-item {
  padding: 0;
  margin: 0;
  flex-direction: column;
  display: flex;
  align-items: flex-start !important;
}
.mega-menu-item li {
  margin-bottom: 19px;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  width: 100%;
}
.mega-menu-item li:hover a {
  border: 1px solid #E6E5FF;
  border-radius: 4px;
}
.mega-menu-item li a {
  display: flex !important;
  align-items: center;
  padding: 6px 12px !important;
  border: 1px solid transparent;
  width: 100%;
}
.mega-menu-item li a img {
  margin-right: 16px;
  padding: 10px;
  max-width: max-content;
  background: #F0F0FF;
  border-radius: 4px;
}
.mega-menu-item li a .info p {
  margin-bottom: 2px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #083A5E;
}
.mega-menu-item li a .info span {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #497696;
}

.has-dropdown.mega-menu {
  position: static !important;
}

.has-dropdown.mega-menu:hover .rts-mega-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: scaleY(1);
}

.has-dropdown.mega-menu:hover > a::after {
  content: "\f077";
  color: var(--color-primary);
}

.rts-mega-menu.service-mega-menu-style {
  padding: 30px 30px 0 30px;
  z-index: 1000;
}
.rts-mega-menu.service-mega-menu-style li {
  margin-bottom: 20px;
}
.rts-mega-menu.service-mega-menu-style li a {
  border: none;
  width: 100%;
  padding: 18px 25px !important;
  border-radius: 5px;
  background: #f9f9f9;
  display: block;
  transition: 0.3s;
}
.rts-mega-menu.service-mega-menu-style li a.free-consultation {
  background: var(--color-primary);
}
.rts-mega-menu.service-mega-menu-style li a.free-consultation .title {
  color: #fff !important;
}
.rts-mega-menu.service-mega-menu-style li a.free-consultation p.details {
  color: #fff !important;
}
.rts-mega-menu.service-mega-menu-style li a.free-consultation:hover {
  background: var(--color-primary);
}
.rts-mega-menu.service-mega-menu-style li a .single-service-menu {
  display: flex;
  align-items: flex-start;
}
.rts-mega-menu.service-mega-menu-style li a .single-service-menu .icon {
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.rts-mega-menu.service-mega-menu-style li a .single-service-menu .icon img {
  background: none;
  padding: 0;
  max-width: 40px;
  margin: auto;
}
.rts-mega-menu.service-mega-menu-style li a .single-service-menu .title {
  color: var(--color-title);
  margin-bottom: 11px;
  line-height: 1.3;
}
.rts-mega-menu.service-mega-menu-style li a .single-service-menu p.details {
  max-width: 100%;
  font-size: 14px;
  color: var(--color-body);
}
.rts-mega-menu.service-mega-menu-style li:hover a {
  border: none;
  background: rgba(32, 40, 45, 0.0784313725);
}
.rts-mega-menu.service-mega-menu-style .menu-thumb {
  height: auto;
}
.rts-mega-menu.service-mega-menu-style .menu-thumb img {
  height: auto;
  object-fit: cover;
}

.mega-menu-item.with-list {
  gap: 0;
}
.mega-menu-item.with-list li a {
  border: none !important;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #f3f3f3 !important;
  padding: 12px 12px !important;
  transition: 0.3s;
}
.mega-menu-item.with-list li a i {
  font-size: 12px;
}
.mega-menu-item.with-list li:hover a {
  border: none !important;
  gap: 12px;
  border-radius: 0 !important;
  border-bottom: 1px solid var(--color-primary) !important;
}

.hega-menu-head-wrapper {
  margin: 0;
  margin-bottom: 10px !important;
  margin-left: 10px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid var(--color-primary);
}
.hega-menu-head-wrapper p {
  font-weight: 700;
  color: var(--color-title);
  font-size: 17px;
  display: flex;
  align-items: center;
}
.hega-menu-head-wrapper p i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--color-primary);
  font-weight: 600;
}

ul.mega-menu-item.parent-nav {
  gap: 0 !important;
}

.side-bar {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: -100%;
  width: 365px;
  padding: 40px 30px;
  padding-top: 50px;
  height: 100%;
  display: block;
  background-color: white;
  backdrop-filter: blur(7px);
  z-index: 1900;
  transition: all 600ms ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow: visible;
}
@media only screen and (max-width: 575px) {
  .side-bar {
    width: 320px;
  }
}

.side-bar.show {
  right: 0;
  overflow-y: auto;
}

.side-bar button {
  /* max-width: max-content; */
  margin-right: auto;
  margin-left: -28px;
  margin-top: -51px;
  position: absolute;
  display: flex;
  min-height: 45px;
  width: 45px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.side-bar button i {
  color: #ffffff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
}

/* elements  */

.rts-banner-area-two {
  --banner-bg-image: url(../images/banner/02.webp);
  background-image: none;
  height: 850px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media only screen and (max-width: 575px) {
  .rts-banner-area-two {
    height: 580px;
  }
}
.rts-banner-area-two.two {
  --banner-bg-image: url(../images/banner/01.webp);
}
.rts-banner-area-two.three {
  --banner-bg-image: url(../images/banner/03.webp);
}

.rts-banner-area-two::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--banner-bg-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
}

.mySwiper-banner-two .swiper-slide-active .rts-banner-area-two::before {
  animation: rtsBannerKenBurns 7.5s ease-in-out infinite alternate;
}

@keyframes rtsBannerKenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.04);
  }
}

.banner-inner-two-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 80%;
  margin: auto;
}
@media only screen and (max-width: 991px) {
  .banner-inner-two-content {
    max-width: 100%;
  }
}
.banner-inner-two-content .pre-title {
  margin-bottom: 25px;
  text-transform: uppercase;
}
.banner-inner-two-content .pre-title span {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}
.banner-inner-two-content * {
  color: #fff;
}
.banner-inner-two-content .title {
  font-size: 80px;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-inner-two-content .title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-inner-two-content .title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-inner-two-content .title {
    font-size: 36px;
  }
}
.banner-inner-two-content .rts-btn {
  margin: auto;
}
.banner-inner-two-content .button-wrapper {
  justify-content: center;
  margin: 0 auto;
}
.banner-inner-two-content .button-wrapper .rts-btn {
  margin: 0;
}
.banner-inner-two-content p.disc {
  max-width: 65%;
  margin: auto;
  margin-bottom: 40px;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .banner-inner-two-content p.disc {
    max-width: 100%;
  }
}

.button-wrapper {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.rts-banner-area-two {
  position: relative;
}
.rts-banner-area-two .shape {
  position: absolute;
}
.rts-banner-area-two .shape.shape-one {
  position: absolute;
  right: -100%;
  bottom: 0;
  transition: 1s;
}
@media only screen and (max-width: 575px) {
  .rts-banner-area-two .shape.shape-one {
    max-width: 220px;
  }
}
.rts-banner-area-two .shape.shape-two {
  position: absolute;
  right: 0%;
  top: 35%;
  animation: jump-2 5s linear infinite;
  transform: scale(0);
  transition: 0.4s;
}
.rts-banner-area-two .shape.shape-three {
  position: absolute;
  left: 0%;
  animation: jump-2 8s linear infinite;
  top: 60%;
  transition: 0.6s;
}
.rts-banner-area-two .shape.shape-four {
  position: absolute;
  left: -100%;
  top: 0;
  transition: 0.7s;
}

.mySwiper-banner-two {
  position: relative;
}
.mySwiper-banner-two .swiper-button-next,
.mySwiper-banner-two .swiper-button-prev {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .mySwiper-banner-two .swiper-button-next,
  .mySwiper-banner-two .swiper-button-prev {
    display: none;
  }
}
.mySwiper-banner-two .swiper-button-next i,
.mySwiper-banner-two .swiper-button-prev i {
  font-size: 25px;
  transition: 0.3s;
  color: #1C2539;
}
.mySwiper-banner-two .swiper-button-next::after,
.mySwiper-banner-two .swiper-button-prev::after {
  display: none;
}
.mySwiper-banner-two .swiper-button-next:hover,
.mySwiper-banner-two .swiper-button-prev:hover {
  background: var(--color-primary);
  transform: scale(1.1);
}
.mySwiper-banner-two .swiper-button-next:hover i,
.mySwiper-banner-two .swiper-button-prev:hover i {
  color: #fff;
}
.mySwiper-banner-two .swiper-button-next {
  right: 120px;
}
.mySwiper-banner-two .swiper-button-prev {
  left: 120px;
}

.rts-btn {
  height: 55px;
  max-width: max-content;
  padding: 13px 29px;
  border: none;
  box-shadow: none;
  min-width: max-content;
  border-radius: 15px;
  transition: 800ms;
  font-weight: 600;
}
@media only screen and (max-width: 575px) {
  .rts-btn {
    height: 47px;
    padding: 13px 20px;
    display: flex !important;
    align-items: center !important;
  }
}
.rts-btn.btn-primary {
  background: var(--color-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.rts-btn.btn-primary::before {
  content: "";
  position: absolute;
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  width: 200%;
  height: 200%;
  top: 110%;
  left: 50%;
  background: #F2F2F2;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
}
.rts-btn.btn-primary:hover {
  background: #F2F2F2;
  color: var(--color-primary);
}
.rts-btn.btn-primary:hover::before {
  top: -40%;
}
.rts-btn.btn-primary.btn-white {
  background: #F2F2F2;
  color: #20282D;
}
.rts-btn.btn-primary.btn-white::before {
  background: var(--color-primary);
}
.rts-btn.btn-primary.btn-white:hover {
  background: var(--color-primary);
  color: #F2F2F2;
}
.rts-btn.btn-primary.btn-white:hover::before {
  top: -40%;
}
.rts-btn:focus {
  border: none;
  box-shadow: none;
}

.consultancy-style-one .signle-consultancy {
  display: flex;
  align-items: flex-start;
  gap: 29px;
}
@media only screen and (max-width: 479px) {
  .consultancy-style-one .signle-consultancy {
    flex-direction: column;
    align-items: flex-start;
  }
}
.consultancy-style-one .signle-consultancy .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-width: 60px;
  background: #F2F2F2;
  border-radius: 50%;
}
.consultancy-style-one .signle-consultancy .information .title {
  margin-bottom: 5px;
  font-size: 20px;
}

.left-thumbnail-about-area-two {
  display: flex;
  justify-content: center;
  max-width: 490px;
  margin: auto;
  position: relative;
}
.left-thumbnail-about-area-two .small-image {
  position: absolute;
  right: -63px;
  bottom: 40px;
  max-width: 211px;
  animation: jump-2 5s linear infinite;
}
@media only screen and (max-width: 1199px) {
  .left-thumbnail-about-area-two .small-image {
    right: 15px;
  }
}

.about-inner-content-two {
  padding-left: 20px;
}
.about-inner-content-two .about-between-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 35px;
  flex-wrap: wrap;
  gap: 15px;
}
@media only screen and (max-width: 991px) {
  .about-inner-content-two .about-between-wrapper {
    flex-wrap: wrap;
  }
}
.about-inner-content-two .about-between-wrapper p.disc {
  max-width: 333px;
  font-size: 16px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .about-inner-content-two .about-between-wrapper p.disc {
    margin-bottom: 20px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .about-inner-content-two .about-between-wrapper p.disc {
    max-width: 100%;
  }
}
.about-inner-content-two .about-between-wrapper .check-wrapper-area .single-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0;
}
.about-inner-content-two .about-between-wrapper .check-wrapper-area .single-check i {
  color: #20282D;
}
.about-inner-content-two .about-between-wrapper .check-wrapper-area .single-check p {
  margin: 0;
  color: #1C2539;
  font-size: 16px;
}

.rts-about-area-two {
  position: relative;
}
.rts-about-area-two .shape-area .one {
  position: absolute;
  right: 0;
  top: 50%;
  animation: jump-2 8s linear infinite;
}
@media only screen and (max-width: 575px) {
  .rts-about-area-two .shape-area .one {
    display: none;
  }
}
.rts-about-area-two .shape-area .two {
  position: absolute;
  left: 0;
  top: 20%;
  animation: jump-2 12s linear infinite;
}

.about-excellence {
  overflow: hidden;
}
.about-excellence-decor-bg {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(920px, 90vw);
  height: min(520px, 60vh);
  background: url("../images/bg/bg1.svg") right center / contain no-repeat;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .about-excellence-decor-bg {
    right: -14%;
    width: min(720px, 130vw);
    opacity: 0.03;
  }
}
.about-excellence > .about-excellence-reveal {
  position: relative;
  z-index: 1;
}
.about-excellence .about-excellence-intro {
  max-width: 760px;
  margin: 0 auto 40px;
}
.about-excellence .about-excellence-intro .title {
  margin-bottom: 16px;
}
.about-excellence .about-excellence-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-body);
  margin-bottom: 0;
}
.about-excellence-box {
  height: 100%;
  padding: 26px 22px;
  border: 1px solid #e9ecf1;
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.3s ease;
}
.about-excellence-box:hover {
  border-color: var(--color-primary);
}
.about-excellence-box-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(32, 40, 45, 0.06);
  color: var(--color-primary);
  font-size: 18px;
  transition: background 0.3s ease, color 0.3s ease;
}
.about-excellence-box:hover .about-excellence-box-icon {
  background: var(--color-primary);
  color: #fff;
}
.about-excellence-box .box-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-heading-1);
  margin-bottom: 10px;
  line-height: 1.35;
}
.about-excellence-box .box-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-body);
}

.thumbnail-business-area-right-two {
  position: relative;
}
.thumbnail-business-area-right-two .small-thumbnail {
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  max-width: 301px;
  z-index: 10;
}
@media only screen and (max-width: 575px) {
  .thumbnail-business-area-right-two .small-thumbnail {
    top: 65%;
    max-width: 195px;
  }
}

.thumbnail-business-area-right-two .large-thumbnail {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 5;
  max-width: 440px;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .thumbnail-business-area-right-two .large-thumbnail {
    max-width: max-content;
    margin-left: 0;
    margin-top: 30px;
  }
}

.business-goal-area-2 .consultancy-style-one .signle-consultancy {
  max-width: 84%;
}

.left-thumbnail-about-area-two {
  position: relative;
}
.left-thumbnail-about-area-two .counter-about-area {
  position: absolute;
  padding: 50px 33px;
  background: #20282D;
  position: absolute;
  top: 50px;
  left: -75px;
  text-align: center;
  border-radius: 15px;
}
@media only screen and (max-width: 575px) {
  .left-thumbnail-about-area-two .counter-about-area {
    padding: 20px;
    left: 6px;
  }
}
.left-thumbnail-about-area-two .counter-about-area .title {
  font-size: 48px;
  margin-bottom: 5px;
}
.left-thumbnail-about-area-two .counter-about-area * {
  color: #fff;
}

.consultancy-style-one .vedio-icone .video-play-button {
  position: relative;
  z-index: 2;
  top: 0;
  left: 0;
  transform: none;
}

.service-bg-style-one-wrapper {
  background-image: url(../images/service/01.webp);
  padding: 80px 100px 50px 100px;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 767px) {
  .service-bg-style-one-wrapper {
    padding: 15px;
  }
}

.single-service-signle-wrapper {
  padding: 50px;
  display: flex;
  align-items: flex-start;
  gap: 36px;
}
@media only screen and (max-width: 991px) {
  .single-service-signle-wrapper {
    flex-direction: column;
    padding: 22px;
  }
}
.single-service-signle-wrapper .icons {
  min-width: max-content;
}
.single-service-signle-wrapper .information .title {
  font-size: 22px;
  font-weight: 700;
}
.single-service-signle-wrapper .information p.disc {
  line-height: 1.5;
  color: #5D666F;
  margin-bottom: 25px;
}
.single-service-signle-wrapper .information .arrow-right {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #1C2539;
}
.single-service-signle-wrapper .information .arrow-right i {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: #1C2539;
  box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
}

.service-style-swiper-wrapper-two {
  position: relative;
}
.service-style-swiper-wrapper-two .mySwiper-service-1 {
  padding-bottom: 90px;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
@media only screen and (max-width: 575px) {
  .swiper-pagination {
    gap: 1px;
  }
}

@media only screen and (max-width: 1199px) {
  br {
    display: none;
  }
}

.title-style-two {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.title-style-two .bg-content {
  font-size: 150px;
  position: absolute;
  font-weight: 900;
  letter-spacing: 0;
  left: -90px;
  z-index: -1;
  top: -65px;
  font-family: var(--font-primary);
  min-width: max-content;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.1);
  line-height: 1;
}
@media only screen and (max-width: 575px) {
  .title-style-two .bg-content {
    font-size: 100px;
  }
}
.title-style-two .bg-content::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8855917367) 0%, rgba(255, 255, 255, 0.6082808123) 35%, rgba(255, 255, 255, 0) 100%);
}
.title-style-two .pre {
  order: 2;
  font-size: 16px;
  color: #000000;
  display: flex;
  text-transform: uppercase;
  margin-top: 22px;
  margin-bottom: 0;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 2px;
}
.title-style-two .title {
  order: 1;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.35;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .title-style-two .title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 1199px) {
  .title-style-two .title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .title-style-two .title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 575px) {
  .title-style-two .title {
    font-size: 26px;
  }
}
.title-style-two.center {
  text-align: center;
}
.title-style-two.center .pre {
  text-align: center;
  justify-content: center;
}
.title-style-two.center .bg-content {
  left: 50%;
  transform: translateX(-50%);
}

.container {
  padding: 0 15px;
}

.container-2 {
  max-width: 1680px;
  margin: auto;
}

.call-and-sign-area {
  display: flex;
  align-items: center;
  gap: 43px;
}
@media only screen and (max-width: 767px) {
  .call-and-sign-area {
    flex-wrap: wrap;
    gap: 20px !important;
    margin-top: 30px;
  }
}
.call-and-sign-area.two {
  gap: 84px;
}
@media only screen and (max-width: 1199px) {
  .call-and-sign-area.two {
    gap: 5px;
    margin-top: 15px;
  }
}
.call-and-sign-area.two .icon {
  border-radius: 15px !important;
}
.call-and-sign-area.two .call-area {
  position: relative;
}
.call-and-sign-area.two .call-area::after {
  content: "";
  position: absolute;
  right: 0;
  height: 70px;
  width: 1px;
  background: #EBEBEB;
  right: -40px;
}
@media only screen and (max-width: 1199px) {
  .call-and-sign-area.two .call-area::after {
    display: none;
  }
}
.call-and-sign-area .call-area {
  display: flex;
  align-items: center;
  gap: 20px;
}
.call-and-sign-area .call-area .icon {
  height: 55px;
  width: 55px;
  border-radius: 50px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.call-and-sign-area .call-area .icon i {
  font-size: 20px;
  color: #fff;
  transform: rotate(-45deg);
}
.call-and-sign-area .call-area .information span {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #5D666F;
}
.call-and-sign-area .call-area .information .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: #1C2539;
  margin: 0;
}
.call-and-sign-area .sign-area img {
  max-width: max-content;
}

.index-five .rts-btn {
  border-radius: 100px;
}
.index-five #menu-btn {
  border-radius: 50% !important;
}

@media only screen and (max-width: 575px) {
  .container {
    max-width: 100% !important;
  }
}

.rtl-ltr-switcher-btn {
  position: fixed;
  right: 0;
  top: 55%;
  left: auto;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 25px 6px;
  background: var(--color-primary);
  background-size: 400% 400%;
  animation: gradient 5s ease infinite;
  z-index: 1000;
  color: #fff;
  cursor: pointer;
}
.rtl-ltr-switcher-btn .ltr,
.rtl-ltr-switcher-btn .rtl {
  display: none;
}
.rtl-ltr-switcher-btn .ltr.show,
.rtl-ltr-switcher-btn .rtl.show {
  display: block;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.swiper-pagination {
  width: 100% !important;
  bottom: 8px !important;
}

.team-single-one-start {
  background: #fff;
  border-radius: 8px;
  transition: 0.3s;
  box-shadow: 0px 12px 52px rgba(27, 23, 23, 0.03);
  border-radius: 8px;
}
.team-single-one-start:hover {
  transform: translateY(-20px);
}
.team-single-one-start .team-image-area a {
  overflow: hidden;
  display: block;
  position: relative;
  border-radius: 8px 8px 0 0;
}
.team-single-one-start .team-image-area a:hover img {
  transform: scale(1.1);
}
.team-single-one-start .team-image-area a img {
  width: 100%;
  transition: 0.3s;
}
.team-single-one-start .team-image-area a .team-social {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.team-single-one-start .team-image-area a .team-social .main i {
  padding: 16px;
  background: #fff;
  border-radius: 50%;
  font-size: 16px;
  line-height: 12px;
  font-weight: 600;
  color: var(--color-primary);
  transition: 0.3s;
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.team-single-one-start .team-image-area a .team-social:hover .main i {
  background: var(--color-primary);
  color: #fff;
}
.team-single-one-start .team-image-area a .team-social .team-social-one {
  display: flex;
  flex-direction: column;
  position: absolute;
  transform: translateY(50px);
  transition: 1s;
  opacity: 0;
}
.team-single-one-start .team-image-area a .team-social .team-social-one i {
  background: #fff;
  border-radius: 60%;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  color: var(--color-primary);
  transition: 0.3s;
  margin-bottom: 10px;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-single-one-start .team-image-area a .team-social .team-social-one i:hover {
  background: var(--color-primary);
  color: #fff;
}
.team-single-one-start .team-image-area a .team-social:hover .main {
  opacity: 0;
}
.team-single-one-start .team-image-area a .team-social:hover .team-social-one {
  transform: translateY(-96%);
  z-index: 2;
  opacity: 1;
}
.team-single-one-start .single-details {
  padding: 28px 30px 27px 30px;
}
.team-single-one-start .single-details a .title {
  margin-bottom: 0px;
  transition: 0.3s;
}
.team-single-one-start .single-details a:hover .title {
  color: var(--color-primary);
}
.team-single-one-start .single-details p {
  color: var(--color-primary);
  font-size: 16px;
}

/* Team Swiper: pagination strip can block hover — clicks pass through except bullets. Do NOT set overflow:visible on .swiper (breaks layout). */
.rts-team-area .mySwiperh1_team .swiper-pagination {
  pointer-events: none;
}
.rts-team-area .mySwiperh1_team .swiper-pagination-bullet,
.rts-team-area .mySwiperh1_team .swiper-pagination-bullet-active {
  pointer-events: auto;
  cursor: pointer;
}
.rts-team-area .mySwiperh1_team .team-slide-hover-wrap {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 18px 10px 28px;
}
.rts-team-area .team-slide-hover-wrap .team-single-one-start.team-card-circle {
  transition: transform 0.35s ease;
  box-shadow: none !important;
}
.rts-team-area .team-slide-hover-wrap .team-single-one-start.team-card-circle:hover {
  transform: translateY(-8px);
  box-shadow: none !important;
}
@media (prefers-reduced-motion: reduce) {
  .rts-team-area .team-slide-hover-wrap .team-single-one-start.team-card-circle {
    transition: none;
  }
  .rts-team-area .team-slide-hover-wrap .team-single-one-start.team-card-circle:hover {
    transform: none;
  }
}
.rts-team-area .team-card-circle.team-single-one-start {
  position: relative;
  background: transparent;
  border-radius: 0;
  text-align: center;
  box-shadow: none !important;
}
.rts-team-area .team-card-circle .team-image-area {
  display: flex;
  justify-content: center;
  padding: 8px 16px 4px;
}
.rts-team-area .team-card-circle .team-image-area a {
  width: 180px;
  height: 180px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}
.rts-team-area .team-card-circle .team-image-area a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.35s ease;
}
.rts-team-area .team-card-circle .team-image-area a:hover img {
  transform: scale(1.06);
}
.rts-team-area .team-card-circle .single-details {
  padding: 18px 14px 8px;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}
.rts-team-area .team-card-circle .single-details a .title {
  margin-bottom: 4px;
}
.rts-team-area .team-card-circle .single-details .team-role {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 10px;
}
.rts-team-area .team-card-circle .single-details .team-bio {
  color: var(--color-body);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}
@media only screen and (max-width: 575px) {
  .rts-team-area .team-card-circle .team-image-area a {
    width: 160px;
    height: 160px;
  }
}

.container-full {
  width: 100%;
}

.rts-call-to-action-area-two {
  background-image: url(../images/cta/02.webp);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .rts-call-to-action-area-two {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }
}

.cta-style-two-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .cta-style-two-area {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 0;
  }
}
.cta-style-two-area .title {
  font-size: 40px;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-style-two-area .title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .cta-style-two-area .title {
    font-size: 26px;
  }
  .cta-style-two-area .title br {
    display: none;
  }
}
.cta-style-two-area * {
  color: #fff;
}

.bg-footer-two {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  background-image: url(../images/footer/01.webp);
}

.footer-two .margin-left-65 {
  margin-left: 65px;
}
@media only screen and (max-width: 991px) {
  .footer-two .margin-left-65 {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .footer-two .margin-left-65 {
    margin-left: 10px;
  }
}
.footer-two .rts-copyright-area {
  border-top: 1px solid #3D4352;
  padding: 30px 0;
}
.footer-two .rts-copyright-area p {
  font-size: 16px;
  color: #fff;
}
.footer-two .footer-one-single-wized .wized-title {
  margin-bottom: 25px;
}
.footer-two .footer-one-single-wized .wized-title .title {
  color: #fff;
  margin-bottom: 10px;
}
.footer-two .footer-one-single-wized .wized-title > img {
  display: block;
  width: 55px;
  height: 2px;
  min-height: 2px;
  object-fit: fill;
}
.footer-two .footer-one-single-wized .quick-link-inner {
  display: flex;
}
.footer-two .footer-one-single-wized .quick-link-inner .links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.footer-two .footer-one-single-wized .quick-link-inner .links.margin-left-70 {
  margin-left: 70px;
}
.footer-two .footer-one-single-wized.mid-bg {
  background: linear-gradient(180deg, #0E1422 -4.66%, #212631 100%);
  border-radius: 15px;
  padding: 40px;
  margin-top: -40px;
  margin: -40px 30px 0 30px;
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  .footer-two .footer-one-single-wized.mid-bg {
    margin-left: 0;
    margin-top: 30px;
    margin-bottom: 50px;
    margin-right: 0;
  }
}
@media only screen and (max-width: 575px) {
  .footer-two .footer-one-single-wized.mid-bg {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 479px) {
  .footer-two .footer-one-single-wized.mid-bg {
    margin-right: 0;
    padding: 10px;
  }
}
.footer-two .footer-one-single-wized.mid-bg .opening-time-inner .single-opening {
  display: flex;
  justify-content: space-between;
}
.footer-two .footer-one-single-wized.mid-bg .opening-time-inner .single-opening p {
  margin-bottom: 15px;
  color: #fff;
  font-family: var(--font-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-two .footer-one-single-wized.mid-bg .opening-time-inner .single-opening p {
    font-size: 14px;
  }
}
.footer-two .footer-one-single-wized .wized-title {
  margin-bottom: 25px;
}
.footer-two .footer-one-single-wized .wized-title .title {
  color: #fff;
  margin-bottom: 10px;
}
.footer-two .footer-one-single-wized .quick-link-inner {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .footer-two .footer-one-single-wized .quick-link-inner {
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 479px) {
  .footer-two .footer-one-single-wized .quick-link-inner {
    flex-direction: column;
  }
}
.footer-two .footer-one-single-wized .quick-link-inner .links.margin-left-70 {
  margin-left: 70px;
}
@media only screen and (max-width: 479px) {
  .footer-two .footer-one-single-wized .quick-link-inner .links.margin-left-70 {
    margin-left: 0;
  }
}
.footer-two .footer-one-single-wized .quick-link-inner .links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.footer-two .footer-one-single-wized .quick-link-inner .links li {
  margin-top: 0;
}
.footer-two .footer-one-single-wized .quick-link-inner .links li a {
  color: #8B8F99;
  transition: var(--transition);
  position: relative;
  max-width: max-content;
}
.footer-two .footer-one-single-wized .quick-link-inner .links li a::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  background: var(--color-primary);
  left: 29px;
  bottom: 0;
  transition: 0.3s;
}
.footer-two .footer-one-single-wized .quick-link-inner .links li a i {
  margin-right: 12px;
  transition: 0.3s;
}
.footer-two .footer-one-single-wized .quick-link-inner .links li a:hover {
  color: #fff;
}
.footer-two .footer-one-single-wized .quick-link-inner .links li a:hover::after {
  position: absolute;
  width: 76%;
}
.footer-two .footer-one-single-wized .quick-link-inner .links li a:hover i {
  color: #fff;
}
.footer-two .update-wrapper p.disc {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 33px;
  color: #8B8F99;
}
.footer-two .update-wrapper .email-footer-area {
  display: flex;
  position: relative;
}
.footer-two .update-wrapper .email-footer-area input {
  height: 55px;
  border: 1px solid #E3E3E3;
  border-radius: 8px;
  padding-right: 60px;
  background: #FFFFFF;
}
.footer-two .update-wrapper .email-footer-area input:focus {
  border: 1px solid #20282D;
}
.footer-two .update-wrapper .email-footer-area button {
  height: 55px;
  width: 55px;
  border-radius: 8px;
  background: #20282D;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
}
.footer-two .update-wrapper .note-area p {
  color: #8B8F99;
  margin-top: 25px;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 33px;
}

.map-area-main-wrapper {
  background: #FFFFFF;
  box-shadow: 30px 0px 60px rgba(128, 128, 128, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.mb--310 {
  margin-bottom: 310px;
}

.mt-dec-footer-map .map-area-main-wrapper {
  margin-top: -310px;
  position: relative;
  z-index: 50;
  height: 625px;
}

.map-information-2-footer {
  padding: 82px 75px;
}
@media only screen and (max-width: 1199px) {
  .map-information-2-footer {
    padding: 35px;
  }
}
@media only screen and (max-width: 991px) {
  .map-information-2-footer {
    padding: 25px;
  }
}
.map-information-2-footer .title-main {
  font-size: 40px;
  color: #1C2539;
  margin-bottom: 13px;
  margin-top: 20px;
}
.map-information-2-footer .line {
  margin-bottom: 35px;
}
.map-information-2-footer .contact-information-main-wrapper .signle-contact-information {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 55px;
}
.map-information-2-footer .contact-information-main-wrapper .signle-contact-information:last-child {
  margin-bottom: 0;
}
.map-information-2-footer .contact-information-main-wrapper .signle-contact-information .icon {
  height: 50px;
  width: 50px;
  background: #F6F6F6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.map-information-2-footer .contact-information-main-wrapper .signle-contact-information .icon i {
  color: #20282D;
}
.map-information-2-footer .contact-information-main-wrapper .signle-contact-information .information-wrapper span {
  display: block;
  font-size: 24px;
  margin-bottom: 5px;
}
.map-information-2-footer .contact-information-main-wrapper .signle-contact-information .information-wrapper .title {
  font-size: 22px;
  margin: 0;
  font-weight: 500;
}
.single-blog-area-one p {
  display: flex;
  align-items: center;
  color: #20282D;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .single-blog-area-one p {
    flex-wrap: wrap;
  }
}
.single-blog-area-one p span {
  color: #5D666F;
}
.single-blog-area-one .title {
  font-size: 30px;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .single-blog-area-one .title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .single-blog-area-one .title {
    font-size: 20px;
  }
}
.single-blog-area-one .bottom-details .thumbnail {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.single-blog-area-one .bottom-details .thumbnail img {
  transition: 0.4s;
  width: 100%;
}
.single-blog-area-one .bottom-details {
  margin-top: 25px;
  padding-top: 56px;
  border-top: 1px solid #E9ECF1;
}
.single-blog-area-one:hover .thumbnail img {
  transform: scale(1.07);
}

.mySwiper-blog-one {
  padding-bottom: 70px;
}

.blog-filter-bar {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
  text-align: center;
}
a.blog-filter-btn {
  display: inline-block;
  text-decoration: none;
}
.blog-filter-btn {
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.3;
  color: #6b737a;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.blog-filter-btn:hover {
  color: var(--color-heading-1);
}
.blog-filter-btn.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.blog-swiper-style-one .blog-card-stack {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-swiper-style-one .blog-card-thumb {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.blog-swiper-style-one .blog-card-thumb img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  transition: transform 0.4s ease;
}
.blog-swiper-style-one .blog-card-stack:hover .blog-card-thumb img {
  transform: scale(1.05);
}
.blog-swiper-style-one .blog-card-body {
  padding-top: 18px;
  flex: 1;
}
.blog-swiper-style-one .blog-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #20282d;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 10px;
}
.blog-swiper-style-one .blog-card-meta span {
  color: #5d666f;
}
.blog-swiper-style-one .blog-card-body .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 12px;
  color: var(--color-heading-1);
}
.blog-swiper-style-one .fleet-vessel-spec {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px 18px;
  width: 100%;
  font-size: 12px;
  line-height: 1.45;
  color: #5d666f;
  font-weight: 500;
}
.blog-swiper-style-one .fleet-vessel-part {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  flex: 0 1 auto;
  max-width: 100%;
}
.blog-swiper-style-one .fleet-vessel-part i {
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 14px;
  line-height: 1;
}
.mySwiper-blog-one .swiper-slide .blog-card-stack {
  cursor: pointer;
}
.fleet-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 25, 32, 0.62);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.fleet-popup-overlay.is-open {
  display: flex;
}
.fleet-popup {
  width: min(760px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(16, 27, 41, 0.24);
  padding: 22px 22px 18px;
}
.fleet-popup-head {
  display: grid;
  grid-template-columns: 80% 20%;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 14px;
}
.fleet-popup-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  color: var(--color-heading-1);
  max-width: 100%;
}
.fleet-popup-close {
  justify-self: end;
  text-align: right;
  border: 0;
  background: transparent;
  color: #5d666f;
  font-size: 30px;
  line-height: 1;
  padding: 4px;
  cursor: pointer;
}
.fleet-popup-table-wrap {
  border: 1px solid #e9ecf1;
  border-radius: 10px;
  overflow: hidden;
}
.fleet-popup-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 360px;
}
.fleet-popup-table th,
.fleet-popup-table td {
  text-align: left;
  padding: 11px 14px;
  font-size: 14px;
  line-height: 1.4;
}
.fleet-popup-table thead th {
  background: #f8fafc;
  color: #20282d;
  font-weight: 700;
}
.fleet-popup-table tbody tr + tr td {
  border-top: 1px solid #edf1f5;
}
.fleet-popup-table tbody td:first-child {
  width: 34%;
  color: #20282d;
  font-weight: 600;
}
.fleet-popup-table tbody td:last-child {
  color: #5d666f;
}
.fleet-popup-note {
  font-size: 14px;
  line-height: 1.55;
  color: #5d666f;
}
.fleet-popup-note:not([hidden]) {
  margin-top: 10px;
}
.fleet-popup-note:empty {
  display: none !important;
}
.fleet-popup-note img {
  max-width: 100%;
  height: auto;
}
.fleet-popup-actions {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #edf1f5;
  text-align: center;
}
.fleet-popup-actions .fleet-popup-detail-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
}
@media only screen and (max-width: 767px) {
  .blog-swiper-style-one .blog-card-body .title {
    font-size: 17px;
  }
  .blog-swiper-style-one .fleet-vessel-spec {
    font-size: 11px;
    gap: 6px 14px;
  }
  .blog-swiper-style-one .fleet-vessel-part i {
    font-size: 13px;
  }
  .fleet-popup {
    padding: 18px 14px 14px;
    border-radius: 10px;
  }
  .fleet-popup-title {
    font-size: 18px;
  }
  .fleet-popup-table th,
  .fleet-popup-table td {
    padding: 10px 10px;
    font-size: 13px;
  }
}

.gallery-bg {
  background-image: url(../images/counterup/01.svg);
  position: relative;
  z-index: 1;
  margin-top: -23%;
}
@media only screen and (max-width: 991px) {
  .gallery-bg {
    margin-top: 0;
  }
}

.title-area-between-wrapper-gallery-project {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title-area-between-wrapper-gallery-project .swiper-paginations {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: max-content;
}

.project-style-one {
  position: relative;
}
.project-style-one .inner-content {
  position: absolute;
  padding: 32px;
  border-radius: 15px;
  background: #fff;
  left: 30px;
  bottom: 44px;
  min-width: 337px;
}
.project-style-one .inner-content .title {
  margin-bottom: 5px;
  font-size: 24px;
}
.project-style-one .inner-content span {
  color: #5D666F;
  font-size: 16px;
}

.title-area-client-client {
  position: relative;
}
.title-area-client-client p.client-title {
  max-width: max-content;
  margin: auto;
  font-weight: 700;
  color: #1C2539;
  text-transform: uppercase;
}
.title-area-client-client::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  width: 41%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  margin-top: -14px;
}
@media only screen and (max-width: 1199px) {
  .title-area-client-client::after {
    width: 38%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-area-client-client::after {
    width: 35%;
  }
}
@media only screen and (max-width: 767px) {
  .title-area-client-client::after {
    width: 30%;
  }
}
@media only screen and (max-width: 575px) {
  .title-area-client-client::after {
    display: none;
  }
}
.title-area-client-client::before {
  content: "";
  position: absolute;
  left: 59%;
  width: 100%;
  height: 2px;
  width: 41%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  margin-top: 15px;
}
@media only screen and (max-width: 1199px) {
  .title-area-client-client::before {
    left: 62%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-area-client-client::before {
    left: 65%;
    width: 35%;
  }
}
@media only screen and (max-width: 767px) {
  .title-area-client-client::before {
    left: 69%;
    width: 30%;
  }
}
@media only screen and (max-width: 575px) {
  .title-area-client-client::before {
    display: none;
  }
}

.client-wrapper-one {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .client-wrapper-one {
    justify-content: center;
  }
}
@media only screen and (max-width: 1199px) {
  .client-wrapper-one {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .client-wrapper-one {
    position: relative;
    z-index: 50;
    gap: 15px;
  }
}
.client-wrapper-one a img {
  transition: var(--transition);
  max-width: 130px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .client-wrapper-one a img {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 1199px) {
  .client-wrapper-one a img {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 479px) {
  .client-wrapper-one a img {
    max-width: 80px;
  }
}
.client-wrapper-one a:hover img {
  transform: scale(1.1) translateY(-5px);
}

.counter-bg {
  position: relative;
  z-index: 2;
  background-color: #000;
  background-image: none;
  min-height: 0;
  height: auto;
  display: flex;
  align-items: center;
}
.counter-row-five {
  display: grid;
  gap: 20px;
  align-items: start;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 576px) {
  .counter-row-five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 992px) {
  .counter-row-five {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.counter-bg .single-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .counter-bg .single-counter {
    justify-content: flex-start !important;
    padding-left: 0 !important;
    margin: 15px 0;
  }
}
.counter-bg .single-counter .icon {
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter-bg .single-counter .icon img {
  display: block;
  width: 26px;
  height: 26px;
  max-width: 26px;
  max-height: 26px;
  object-fit: contain;
}
.counter-bg .single-counter .counter-details .title {
  color: #fff;
  margin-bottom: 0;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.2;
}
.counter-bg .single-counter.single-counter--static .counter-details .title {
  font-size: clamp(17px, 1.9vw, 24px);
  line-height: 1.2;
  font-weight: 500;
}
.counter-bg .single-counter .counter-details p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mr--0 {
  margin-right: 0 !important;
}

.vedio-icone .video-play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
  display: flex;
}
.vedio-icone .video-play-button::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -32%;
  top: -31%;
  display: block;
  width: 130px;
  height: 130px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  animation: waves 3s ease-in-out infinite;
}
.vedio-icone .video-play-button::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #F2F2F2;
  transition: all 200ms;
  border-radius: 50%;
}
.vedio-icone .video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 15px solid var(--color-primary);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 47%;
}
.vedio-icone .video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all ease 500ms;
  display: none;
}
.vedio-icone .video-overlay iframe {
  width: 70%;
  height: 70%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  top: 50%;
  position: relative;
  transform: translateY(-50%);
}
.vedio-icone .video-overlay .video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
}

.appoinment-wrapper-one-start {
  background: #FFFFFF;
  box-shadow: 0px 21px 46px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  margin-right: -20px;
}
@media only screen and (max-width: 991px) {
  .appoinment-wrapper-one-start {
    margin-right: 0;
  }
}

.appoinment-wrapper-one-start {
  padding: 73px 100px;
}
@media only screen and (max-width: 767px) {
  .appoinment-wrapper-one-start {
    padding: 25px;
    margin-right: 0;
  }
}
.appoinment-wrapper-one-start form input {
  background: #F6F6F6;
  width: 100%;
  height: 55px;
  border: 1px solid transparent;
}
.appoinment-wrapper-one-start form input:focus {
  border: 1px solid var(--color-primary) !important;
}
.appoinment-wrapper-one-start form textarea {
  background: #F6F6F6;
  height: 150px;
  padding: 15px;
  border: none;
  border: 1px solid transparent !important;
}
.appoinment-wrapper-one-start form textarea:focus {
  border: 1px solid var(--color-primary) !important;
}
.appoinment-wrapper-one-start form .single-input {
  margin-bottom: 20px;
}
.appoinment-wrapper-one-start form .single-input-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.appoinment-wrapper-one-start form .single-input-wrapper .single-input {
  width: 100%;
}
.appoinment-wrapper-one-start form .single-input-wrapper .single-input input {
  background: #F6F6F6;
  width: 100%;
  height: 55px;
  border: 1px solid transparent;
}

.appoinment-thumbnail {
  margin-left: -30px;
}
@media only screen and (max-width: 991px) {
  .appoinment-thumbnail {
    margin-left: 0;
  }
}

.title-area-between-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonials-main-wrapper-two {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #20282D;
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .testimonials-main-wrapper-two {
    flex-direction: column;
    align-items: center;
  }
}
.testimonials-main-wrapper-two .left-thumbnail {
  max-width: 545px;
  min-width: 545px;
  background: #fff;
}
.testimonials-main-wrapper-two .right-content-testimonials {
  padding-left: 30px;
}
@media only screen and (max-width: 767px) {
  .testimonials-main-wrapper-two .right-content-testimonials {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .testimonials-main-wrapper-two .right-content-testimonials {
    padding: 30px;
  }
}
.testimonials-main-wrapper-two .right-content-testimonials p.disc {
  font-size: 30px;
  line-height: 1.45;
  color: #fff;
  max-width: 90%;
}
@media only screen and (max-width: 1199px) {
  .testimonials-main-wrapper-two .right-content-testimonials p.disc {
    font-size: 18px;
  }
}
.testimonials-main-wrapper-two .right-content-testimonials .name-desig .title {
  font-size: 22px;
  line-height: 1.3;
  color: #FFF;
}
.testimonials-main-wrapper-two .right-content-testimonials .name-desig p {
  font-size: 14px;
  color: #B3B7C1;
}
.testimonials-main-wrapper-two .right-content-testimonials .name-desig p b {
  color: #fff;
}

.title-area-between-wrapper {
  position: relative;
}
.title-area-between-wrapper .pagination-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.title-area-between-wrapper .swiper-button-next,
.title-area-between-wrapper .swiper-button-prev {
  width: 40px;
  height: 35px;
  background: #F2F2F2;
  border-radius: 8px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.title-area-between-wrapper .swiper-button-next i,
.title-area-between-wrapper .swiper-button-prev i {
  color: #1C2539;
}
.title-area-between-wrapper .swiper-button-next::after,
.title-area-between-wrapper .swiper-button-prev::after {
  display: none;
}
.title-area-between-wrapper .swiper-button-next {
  right: 0;
}
.title-area-between-wrapper .swiper-button-prev {
  left: calc(100% - 150px);
}
.title-area-between-wrapper .swiper-pagination-fraction {
  max-width: max-content;
  right: 50px;
  position: absolute;
  left: auto;
  top: 40%;
}
.title-area-between-wrapper .swiper-pagination-fraction span {
  font-weight: 700;
}

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 999;
  opacity: 1;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  position: absolute;
  font-family: var(--font-3);
  content: "\f077";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--color-primary);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  border: 1px solid var(--color-primary);
  border: none !important;
  box-shadow: none;
  border-radius: 50% !important;
  border-radius: 5px;
}

.progress-wrap:hover::after {
  opacity: 1;
  content: "\f077";
}

.progress-wrap::before {
  position: absolute;
  font-family: var(--font-3);
  content: "\f077";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background: var(--color-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 0;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg {
  color: var(--color-primary);
  border-radius: 50%;
  background: transparent;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--color-primary);
  stroke-width: 4px;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 999;
  opacity: 1;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  position: absolute;
  font-family: var(--font-3);
  content: "\f077";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--color-primary);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  border: 1px solid var(--color-primary);
  border: none !important;
  box-shadow: none;
  border-radius: 50% !important;
  border-radius: 5px;
}

.progress-wrap:hover::after {
  opacity: 1;
  content: "\f077";
}

.progress-wrap::before {
  position: absolute;
  font-family: var(--font-3);
  content: "\f077";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background: var(--color-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 0;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg {
  color: var(--color-primary);
  border-radius: 50%;
  background: transparent;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--color-primary);
  stroke-width: 4px;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.search-input-area {
  transition: all 500ms ease;
  visibility: hidden;
  transform: translateY(-100%);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 57px 0;
  background: white;
  box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.46);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 575px) {
  .search-input-area {
    padding: 70px 0 30px 0;
  }
}

.search-input-area.show {
  visibility: visible;
  transform: inherit;
  opacity: 1;
}

.search-input-area .search-input-inner {
  display: flex;
  align-items: center;
  position: relative;
}

.search-input-area .search-input-inner .input-div {
  width: 80%;
  display: flex;
  align-items: center;
  margin: auto;
}
@media only screen and (max-width: 575px) {
  .search-input-area .search-input-inner .input-div {
    width: 100%;
  }
}

.search-input-area .search-input-inner .input-div input {
  background: #F7F7F7;
  border-radius: 5px;
  height: 55px;
  border: 1px solid transparent;
}
.search-input-area .search-input-inner .input-div input:focus {
  border: 1px solid var(--color-primary);
}

.search-input-area .search-input-inner .input-div button {
  max-width: max-content;
  padding: 18px 21px;
  background: var(--color-primary);
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  display: block;
  margin-left: -9px;
  border-radius: 0 5px 5px 0;
}

.search-input-area .search-close-icon {
  cursor: pointer;
  position: absolute;
  right: 38px;
  top: 22px;
}
@media only screen and (max-width: 575px) {
  .search-input-area .search-close-icon {
    right: 20px;
    top: 15px;
  }
}

.search-input-area .search-close-icon i {
  position: relative;
  z-index: 1;
  color: var(--color-primary);
  transition: 0.3s;
  font-size: 18px;
}
.search-input-area .search-close-icon i:hover {
  color: #F7F7F7;
}
.search-input-area .search-close-icon i:hover::after {
  background: var(--color-primary);
}

.search-input-area .search-close-icon i::after {
  position: absolute;
  height: 45px;
  width: 45px;
  content: "";
  border-radius: 5px;
  background: rgba(85, 60, 223, 0.0784313725);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: 0.3s;
}

#anywhere-home {
  cursor: url(../images/banner/shape/close.png), auto;
  background: #0e1013;
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease-in-out;
  pointer-events: none;
  z-index: 50;
}
@keyframes textRotation {
  to {
    transform: rotate(360deg);
  }
}

#gallery {
  padding-top: 40px;
}
@media screen and (min-width: 991px) {
  #gallery {
    padding: 0;
  }
}

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  background: var(--color-white);
  width: 50%;
  height: 100%;
  z-index: 5000;
}

.loader-wrapper .loader-section.section-left {
  left: 0;
}

.loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded Styles */

.loader:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: 4px solid transparent;
  border-top-color: var(--color-primary);
  border-right-color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  border-radius: 100%;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

.loader {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  z-index: 5001;
  transform: translate(-50%, -50%);
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Preloader: JS adds `loaded` on <body> when the page is ready */
body.loaded .loader-wrapper {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

[dir=rtl] .header-one .nav-area {
  margin-left: 80px;
}

[dir=rtl] header .nav-area ul li.main-nav.has-dropdown {
  padding-right: 0;
  padding-left: 28px;
}
[dir=rtl] .ml--20 {
  margin-right: 20px !important;
  margin-left: 0 !important;
}
[dir=rtl] .mega-menu-item.with-list li a i::before {
  content: "\f053";
}
[dir=rtl] .hega-menu-head-wrapper p i {
  margin-left: 8px;
  margin-right: 0;
}
[dir=rtl] .has-dropdown.mega-menu > a::after {
  left: 6px;
  right: auto;
}
[dir=rtl] .has-dropdown::after {
  left: 6px;
  right: auto;
}
[dir=rtl] .header-two .nav-area {
  margin-right: 135px;
  margin-left: 0;
}
[dir=rtl] .vedio-icone .video-play-button span {
  transform: translate(-50%, -50%) scaleX(-1);
  left: -27%;
}
@media only screen and (max-width: 767px) {
  [dir=rtl] .pl_sm--0 {
    padding-right: 0 !important;
  }
}
[dir=rtl] .left-thumbnail-about-area-two .counter-about-area {
  right: -75px;
  left: auto;
}
@media only screen and (max-width: 767px) {
  [dir=rtl] .left-thumbnail-about-area-two .counter-about-area {
    right: 10px;
  }
}
[dir=rtl] .title-style-two.center .title {
  direction: ltr;
}
[dir=rtl] .cta-style-two-area .title {
  direction: ltr;
  text-align: right;
}
[dir=rtl] .service-style-swiper-wrapper-two .mySwiper-service-1 .swiper-wrapper,
[dir=rtl] .mySwiper-blog-one .swiper-wrapper,
[dir=rtl] .mySwiperh1_team .swiper-wrapper {
  direction: ltr;
}
[dir=rtl] .appoinment-thumbnail {
  margin-left: 0;
  margin-right: -30px;
}
[dir=rtl] .title-style-two {
  direction: ltr;
  text-align: right;
}
[dir=rtl] .title-style-two .pre {
  direction: rtl;
}
[dir=rtl] .project-style-one .inner-content {
  right: 30px;
  left: auto;
}
[dir=rtl] .side-bar button {
  margin-right: -36px;
  margin-left: auto;
}
[dir=rtl] .side-bar {
  left: -100%;
  right: unset;
}
[dir=rtl] .side-bar.show {
  left: 0;
  right: unset;
}
[dir=rtl] .title-style-two.center {
  text-align: center !important;
}
[dir=rtl] .title-style-two.center .title {
  text-align: center;
}
[dir=rtl] .title-style-two .bg-content {
  right: -90px;
  left: unset;
}
[dir=rtl] .mobile-menu nav ul li.has-droupdown::after {
  left: 0;
  right: unset;
}
[dir=rtl] .footer-two .footer-one-single-wized .quick-link-inner .links.margin-left-70 {
  margin-right: 70px;
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  [dir=rtl] .footer-two .footer-one-single-wized .quick-link-inner .links.margin-left-70 {
    margin-right: 0;
  }
}
[dir=rtl] .footer-two .footer-one-single-wized.mid-bg {
  margin-right: 0;
  margin-left: 0;
}
[dir=rtl] .footer-two .footer-one-single-wized .quick-link-inner .links li a i {
  margin-left: 12px;
  margin-right: 0;
}
[dir=rtl] .footer-two .footer-one-single-wized .quick-link-inner .links li a i::before {
  content: "\f060";
}
[dir=rtl] .footer-two .update-wrapper .email-footer-area button {
  left: 0;
  right: auto;
}
[dir=rtl] .pl--30 {
  padding-right: 30px;
  padding-left: unset;
}
[dir=rtl] .title-style-two .title {
  direction: ltr;
  text-align: right;
}
[dir=rtl] button#menu-btn {
  margin-right: 0;
  margin-left: 0;
}
[dir=rtl] .header-top-area-wrapper .header-top-one-wrapper .right .social-wrapper-one {
  margin-right: 30px;
  position: relative;
  margin-left: 0;
}
[dir=rtl] .social-wrapper-one li a {
  margin-left: 20px;
  margin-right: 0;
}
[dir=rtl] .social-wrapper-one::after {
  right: -25px;
  left: auto;
}
[dir=rtl] .header-top-area-wrapper .header-top-one-wrapper .right .top-nav li {
  margin-right: 0;
  margin-left: 20px;
}
[dir=rtl] .header-top-area-wrapper .header-top-one-wrapper .left .mail a {
  margin-left: 50px;
  margin-right: 0;
}
[dir=rtl] .header-top-area-wrapper .header-top-one-wrapper .left .mail::after {
  left: 25px;
  right: unset;
}
[dir=rtl] .search-input-area .search-input-inner .input-div button {
  border-radius: 5px 0 0 5px;
}
[dir=rtl] .search-input-area .search-close-icon {
  left: 38px;
  right: unset;
}
[dir=rtl] li.has-dropdown .submenu li a {
  text-align: right;
}
[dir=rtl] .single-service-signle-wrapper .information .arrow-right i {
  transform: scaleX(-1);
}
[dir=rtl] .header-top-area-wrapper .header-top-one-wrapper .left .mail a i {
  margin-left: 6px;
  margin-right: 0;
}
[dir=rtl] .testimonials-main-wrapper-two .right-content-testimonials {
  padding-right: 30px;
  padding-left: 0;
}
@media only screen and (max-width: 991px) {
  [dir=rtl] .appoinment-thumbnail {
    margin-right: 0;
  }
}
[dir=rtl] .mega-menu-item.with-list li a span {
  left: 27%;
  right: auto;
}
[dir=rtl] .progress-wrap {
  right: auto;
  left: 30px;
}
[dir=rtl] li.has-dropdown .submenu {
  right: 0;
  left: auto;
  margin-right: 0;
  margin-left: -30px;
  padding-right: 10px;
  padding-left: 40px;
}

[dir=rtl] .testimonials-main-wrapper-two {
  direction: rtl;
}

/* demos  */

/*=========================
    Section Separation 
==========================*/

.rts-section-gap {
  padding: 120px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gap {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gap {
    padding: 60px 0;
  }
}

.rts-counter-up-area.counter-bg.rts-section-gap {
  padding-top: 52px;
  padding-bottom: 52px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-counter-up-area.counter-bg.rts-section-gap {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-counter-up-area.counter-bg.rts-section-gap {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.rts-section-gapBottom {
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gapBottom {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gapBottom {
    padding-bottom: 60px;
  }
}

.mr--0 {
  margin-right: 0;
}

.pl--10 {
  padding-left: 10px;
}

.pl--20 {
  padding-left: 20px;
}

.mt--20 {
  margin-top: 20px;
}

.ml--20 {
  margin-left: 20px;
}

.pt--30 {
  padding-top: 30px;
}

.pl--30 {
  padding-left: 30px;
}

.mt--30 {
  margin-top: 30px;
}

.mb--30 {
  margin-bottom: 30px;
}

.pt--40 {
  padding-top: 40px;
}

.mt--40 {
  margin-top: 40px;
}

.mb--40 {
  margin-bottom: 40px;
}

.pt--50 {
  padding-top: 50px;
}

.pl--50 {
  padding-left: 50px;
}

.pb--60 {
  padding-bottom: 60px;
}

.pb--80 {
  padding-bottom: 80px;
}

.pt--120 {
  padding-top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl_md--10 {
    padding-left: 10px;
  }
  .mt_md--80 {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .pl_sm--0 {
    padding-left: 0;
  }
  .ml_sm--5 {
    margin-left: 5px;
  }
  .mb_sm--10 {
    margin-bottom: 10px;
  }
  .pl_sm--15 {
    padding-left: 15px;
  }
  .pb_sm--40 {
    padding-bottom: 40px;
  }
  .pt_sm--80 {
    padding-top: 80px;
  }
  .mt_sm--80 {
    margin-top: 80px;
  }
  .pl_sm--0 {
    padding-left: 0;
  }
}

.single-project-style-three {
  position: relative;
  clip-path: polygon(0% 0.076%, 100% 0.076%, 100% 77.428%, 92.903% 88.814%, 85.885% 99.829%, 0% 99.829%, 0% 0.076%);
}
    .single-project-style-three .inner-content {
        position: absolute;
        left: 30px;
        bottom: 30px;
        background: #ffffffd9;
        border-radius: 20px;
        padding: 12px 30px 12px 18px;
    }
.single-project-style-three .inner-content .title {
  margin-bottom: 8px;
}
.single-project-style-three .thumbnail img {
  width: 100%;
  transition: 0.5s;
}
.single-project-style-three:hover .thumbnail img {
  transform: scale(1.08);
}

.nav-project-tab {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
  justify-content: center;
}
.nav-project-tab li {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.nav-project-tab li button {
  background: #FFFFFF;
  border: 1px solid #EDEFF3 !important;
  box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
  border-radius: 15px;
  padding: 13px 25px;
  border-radius: 10px !important;
  font-size: 16px;
  color: #1C2539;
  font-weight: 500;
  transition: 0.3s;
}
.nav-project-tab li button:hover {
  background-color: #20282D !important;
  box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05) !important;
  color: #fff !important;
}
.nav-project-tab li button.active {
  background-color: #20282D !important;
  box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05) !important;
  color: #fff !important;
}

[dir=rtl] .single-project-style-three .inner-content {
  left: auto;
  right: 30px;
}

/* --- shop-single.html (product detail, tabs, related, brand, CTA) from styleBackup --- */
.rts-section-gapTop {
  padding-top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gapTop {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gapTop {
    padding-top: 60px;
  }
}

.title-style-five.center {
  text-align: center;
}
.title-style-five span.pre {
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5D666F;
}
@media only screen and (max-width: 575px) {
  .title-style-five span.pre {
    font-size: 14px;
  }
}
.title-style-five .title {
  font-size: 48px;
  font-weight: 700;
  margin-top: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .title-style-five .title {
    font-size: 36px;
  }
  .title-style-five .title br {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .title-style-five .title {
    font-size: 36px;
  }
  .title-style-five .title br {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .title-style-five .title {
    font-size: 28px;
    line-height: 1.3;
  }
}

.rts-cta-area-inner {
  background-image: url(../images/cta/10.webp);
}

.cta-inner-content-inner-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .cta-inner-content-inner-page {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .cta-inner-content-inner-page br {
    display: none;
  }
}
.cta-inner-content-inner-page .left-side-content .title {
  font-size: 60px;
}
@media only screen and (max-width: 991px) {
  .cta-inner-content-inner-page .left-side-content .title {
    font-size: 44px;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 575px) {
  .cta-inner-content-inner-page .left-side-content .title {
    font-size: 28px;
  }
}
.cta-inner-content-inner-page form {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cta-inner-content-inner-page form {
    width: 100%;
  }
}
.cta-inner-content-inner-page form input {
  height: 63px;
  width: 547px;
  background: var(--color-primary);
  color: #8B8F99;
}
@media only screen and (max-width: 767px) {
  .cta-inner-content-inner-page form input {
    width: 100%;
  }
}
.cta-inner-content-inner-page form button.rts-btn {
  position: absolute;
  right: 10px;
  height: 43px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 6px;
}

.brand-list-area-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media only screen and (max-width: 991px) {
  .brand-list-area-wrapper {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
}
.brand-list-area-wrapper .left-paragraph {
  min-width: max-content;
}
.brand-list-area-wrapper .left-paragraph p {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #132243;
}
.brand-list-area-wrapper .right-brand-area-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .brand-list-area-wrapper .right-brand-area-wrapper {
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.brand-list-area-wrapper .right-brand-area-wrapper img {
  max-width: 130px;
}
@media only screen and (max-width: 575px) {
  .brand-list-area-wrapper .right-brand-area-wrapper img {
    max-width: 90px;
  }
}

.rts-single-shop-area {
  border: 1px solid rgba(32, 40, 45, 0.2);
  border-radius: 15px;
  display: block;
  overflow: hidden;
  transition: 0.3s;
}
.rts-single-shop-area .inner-content {
  padding: 25px 30px;
}
.rts-single-shop-area .inner-content .stars-area {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}
.rts-single-shop-area .inner-content .stars-area i {
  color: var(--color-primary);
}
.rts-single-shop-area .inner-content a .title {
  font-size: 24px;
  font-weight: 500;
}
.rts-single-shop-area .inner-content .pricing-area-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rts-single-shop-area .inner-content .pricing-area-wrapper p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
}
.rts-single-shop-area .inner-content .pricing-area-wrapper .rts-btn {
  height: 38px;
  border-radius: 5px;
  padding: 5px 15px;
}
.rts-single-shop-area .inner-content .pricing-area-wrapper .rts-btn i {
  font-size: 12px;
  margin-right: 8px;
}
.rts-single-shop-area:hover {
  border: 1px solid transparent;
  background: #FFFFFF;
  box-shadow: 0px 30px 20px rgba(101, 101, 101, 0.1);
}

/* shop-single.html: büyük thumbnail bullet’lar yalnızca bu bölümde */
.rts-sop-details-area .slider-pagination-area-shop-details {
  position: relative;
}
.rts-sop-details-area .slider-pagination-area-shop-details .swiper-pagination {
  bottom: -160px;
  text-align: center;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  left: auto;
}
.rts-sop-details-area .slider-pagination-area-shop-details .swiper-pagination .swiper-pagination-bullet-active {
  border-width: 1px !important;
  border-style: solid !important;
  border-color: rgba(32, 40, 45, 0.301) !important;
  border-radius: 3px !important;
}
.rts-sop-details-area .slider-pagination-area-shop-details .swiper-pagination .swiper-pagination-bullet {
  padding: 10px;
  width: 120px;
  height: 120px;
  border-radius: 0;
  background-image: url(../images/shop/shop-03.jpg);
  border-width: 2px;
  border-style: solid;
  border-color: #f9f9f9;
  opacity: 1;
  background-size: cover;
  background-position: center;
  margin-right: 5px;
}
.rts-sop-details-area .slider-pagination-area-shop-details .swiper-pagination .swiper-pagination-bullet:first-child {
  background-image: url(../images/shop/shop-01.jpg);
}
.rts-sop-details-area .slider-pagination-area-shop-details .swiper-pagination .swiper-pagination-bullet:last-child {
  background-image: url(../images/shop/shop-02.jpg);
}

/* Diğer sayfalar (ör. products.aspx): klasik nokta pagination */
.slider-pagination-area-shop-details {
  position: relative;
}
.slider-pagination-area-shop-details .swiper-pagination {
  position: relative;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  transform: none;
  left: auto;
  right: auto;
  bottom: auto;
}
.slider-pagination-area-shop-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 4px;
  padding: 0;
  background: rgba(32, 40, 45, 0.35);
  background-image: none;
  border: none;
  opacity: 1;
}
.slider-pagination-area-shop-details .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
  border: none;
  border-radius: 50%;
  opacity: 1;
}

.ms-single-product__content {
  padding-left: 3rem;
  position: relative;
}
.ms-single-product__content .ms-single-product_title {
  font-size: 28px;
  margin-bottom: 2rem;
}
.ms-single-product__content .price bdi {
  font-weight: 700;
  letter-spacing: -1pt;
  color: var(--color-primary);
}
.ms-single-product__content .ms-woocommerce-product-rating {
  display: flex;
  align-items: center;
  line-height: initial;
  margin-bottom: 2rem;
}
.ms-single-product__content .stock.in-stock {
  color: #2eb740;
  font-weight: 700;
  margin-top: 10px;
  font-size: 18px;
}
.ms-single-product__content .quantity-area {
  display: flex;
  margin-bottom: 30px;
}
.ms-single-product__content .quantity-area .cart-edit {
  margin-right: 20px;
}
.ms-single-product__content .quantity-area .cart-edit button {
  background: none;
  font-size: 0;
  width: 45px;
  height: 55px;
  border-radius: 5px;
  border: 1px solid var(--color-primary);
}
.ms-single-product__content .quantity-area .cart-edit .quantity-edit {
  background: #f7f7f7;
  padding: 11px 15px;
  border-radius: 0;
  display: flex;
  padding: 3px 10px;
  border-radius: 5px;
  gap: 12px;
}
.ms-single-product__content .quantity-area .cart-edit .quantity-edit input {
  text-align: center;
  max-width: 55px;
  font-size: 16px;
  font-weight: 700;
  color: #040404;
  border-radius: 5px;
  border: 1px solid var(--color-primary);
}
.ms-single-product__content .quantity-area .cart-edit .quantity-edit i {
  font-size: 16px;
  color: var(--color-primary);
}

.tab-area-shop .nav-tabs .nav-item .nav-link.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: #dee2e6 #dee2e6;
}
.tab-area-shop .nav-tabs .nav-item {
  margin-top: 0;
  margin-bottom: 0;
}
.tab-area-shop .nav-tabs .nav-item .nav-link {
  color: #777777;
  padding: 8pt 20pt;
  border-color: #dee2e6 #dee2e6;
}
.tab-area-shop .tab-content {
  border: solid 1px #dee2e6;
  border-bottom-left-radius: 12pt;
  border-bottom-right-radius: 12pt;
  padding: 20pt;
  line-height: 1.8;
  margin-top: -1px;
}
.tab-area-shop .reveiw-form .contact-form .input-box textarea:hover {
  border: 1px solid var(--color-primary);
}
.tab-area-shop .reveiw-form .contact-form .input-box textarea {
  width: 100%;
  padding: 0.5em 1em 0.5em 1em;
  background: unset;
  border: 1px solid transparent;
  transition: all 0.4s;
}
.tab-area-shop .reveiw-form .contact-form .input-box {
  width: 100%;
}
.tab-area-shop .reveiw-form .contact-form .input-box input {
  width: 100%;
  padding: 0.5em 1em 0.5em 1em;
  background: unset;
  height: 55px;
  margin-bottom: 25px;
  border: 1px solid transparent;
  transition: all 0.4s;
}
.tab-area-shop .reveiw-form .contact-form .rating {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 10px;
}
.tab-area-shop .reveiw-form .contact-form .rating p {
  margin-bottom: 0;
}

.mySwiper-related-shop {
  position: relative;
  padding-bottom: 50px;
}

.swiper-container-h1 {
  border-radius: 16px;
}
.swiper-container-h1 .slider-inner img {
  width: 100%;
  height: auto;
  display: block;
}
/* gallery.html — ürün detay içinde gömülü: section-gap sıfırlanır */
.product-details .product-details__rts-gallery.rts-section-gap {
  padding-top: 0;
  padding-bottom: 0;
}

.gallery-area-main-wrapper-4 {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: -2px;
}
@media only screen and (max-width: 767px) {
  .gallery-area-main-wrapper-4 {
    gap: 5px;
  }
}
.gallery-area-main-wrapper-4 .single-gallery {
    position: relative;
    border-radius: 8px;
}
.gallery-area-main-wrapper-4 .single-gallery .instagram {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.3s;
  pointer-events: none;
}
.gallery-area-main-wrapper-4 .single-gallery:hover .instagram {
  transform: translate(-50%, -50%) scale(1);
}
.gallery-area-main-wrapper-4 .single-gallery .thumbnail {
  display: block;
  overflow: hidden;
  border-radius: 12px;
}
.gallery-area-main-wrapper-4 .single-gallery .thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-area-main-wrapper-4 .single-gallery:hover .thumbnail img {
  transform: scale(1.05);
}
.gallery-area-main-wrapper-4 .single-gallery .instagram img {
  display: block;
  width: 48px;
  height: auto;
}
.gallery-area-main-wrapper-4 .single-gallery--static .thumbnail img {
  transform: none;
}

.pt--100 {
  padding-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pt_md--50 {
    padding-top: 50px;
  }
  .mt_md--180 {
    margin-top: 180px;
  }
}
@media only screen and (max-width: 767px) {
  .pt_sm--50 {
    padding-top: 50px;
  }
  .mt_sm--180 {
    margin-top: 180px;
  }
}

/* teams.aspx — iletişim satırları */
.teams-page .team-meta-line {
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
  font-size: 10px;
  line-height: 1.4;
  color: #5d666f;
  margin: 0;
}
.teams-page .team-meta-line--phone {
  margin-bottom: 0;
}
.teams-page .team-meta-line--address {
  margin-top: 0;
  padding-top: 0;
  font-size: 9px;
  line-height: 1.35;
  color: #6b7580;
}
.teams-page .team-meta-line--address i {
  font-size: 9px;
  margin-top: 0.12em;
}
.teams-page .team-meta-line--address .team-meta-text {
  font-size: inherit;
}
.teams-page .team-meta-line i {
  flex-shrink: 0;
  width: 12px;
  text-align: center;
  font-size: 9px;
  margin-top: 0.15em;
  color: var(--color-primary);
  opacity: 0.9;
}
.teams-page .team-meta-line .team-meta-text {
  flex: 1;
  min-width: 0;
  word-break: break-word;
  font-size: inherit;
}
.teams-page .team-phone-item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2em;
  vertical-align: baseline;
}
.teams-page .team-phone-item i {
  width: auto;
  min-width: 10px;
  font-size: 8px;
  margin-top: 0;
  align-self: center;
}
.teams-page .team-meta-text .team-tel,
.teams-page .team-meta-text .team-mail {
  color: inherit;
  text-decoration: none;
}
.teams-page .team-meta-text .team-tel:hover,
.teams-page .team-meta-text .team-mail:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
.teams-page .team-meta-text .team-phone-item + .team-phone-item,
.teams-page .team-meta-text .team-phone-item + .team-mail {
  margin-left: 0.35em;
}

/*==============================
 *  Contact page (contact.html) — from styleBackup.css (only rules absent above)
=================================*/

.rts-breadcrumb-area {
  height: 377px;
  background: linear-gradient(180deg, rgba(32, 40, 45, 0.1) 0%, rgba(255, 255, 255, 0.1) 96.54%);
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 575px) {
  .rts-breadcrumb-area {
    height: 370px;
  }
}
.rts-breadcrumb-area.bg_primary {
  height: 348px;
}
.rts-breadcrumb-area.bg_primary .title-area-left * {
  color: #fff;
}
.rts-breadcrumb-area.bg_primary .title-area-left .title {
  position: relative;
  z-index: 5;
  margin-top: 80px;
}
.rts-breadcrumb-area.bg_primary .title-area-left .bg-title {
  z-index: 1;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.42);
  top: -81px;
}
.rts-breadcrumb-area.bg_primary .title-area-left .bg-title::after {
  height: 108%;
  background: linear-gradient(0deg, rgb(32, 40, 45) 0%, rgba(32, 40, 45, 0.8) 35%, rgba(32, 40, 45, 0.3) 100%);
}
.rts-breadcrumb-area.small-h {
  height: 326px;
}
.rts-breadcrumb-area .title-area-left {
  position: relative;
}
.rts-breadcrumb-area .title-area-left.center {
  text-align: center;
}
.rts-breadcrumb-area .title-area-left.center .bg-title {
  left: 50%;
  transform: translateX(-50%);
}
.rts-breadcrumb-area .title-area-left .bg-title {
  font-size: 150px;
  position: absolute;
  font-weight: 900;
  letter-spacing: 0;
  left: -90px;
  z-index: -1;
  top: -65px;
  font-family: var(--font-primary);
  min-width: max-content;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.1);
  line-height: 1;
}
@media only screen and (max-width: 575px) {
  .rts-breadcrumb-area .title-area-left .bg-title {
    font-size: 50px;
    left: 0;
  }
}
.rts-breadcrumb-area .title-area-left .bg-title::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 107%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8855917367) 0%, rgba(255, 255, 255, 0.6082808123) 35%, rgba(255, 255, 255, 0) 100%);
}
.rts-breadcrumb-area .title-area-left .title {
  font-size: 54px;
  line-height: 1.23;
}
@media only screen and (max-width: 575px) {
  .rts-breadcrumb-area .title-area-left .title {
    font-size: 34px;
  }
  .rts-breadcrumb-area .title-area-left .title br {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .rts-breadcrumb-area .title-area-left p.disc {
    max-width: 100% !important;
  }
}
.rts-breadcrumb-area .shape-area img {
  position: absolute;
}
.rts-breadcrumb-area .shape-area .one {
  position: absolute;
  left: 80px;
  animation: jump-2 8s linear infinite;
}
.rts-breadcrumb-area .shape-area .two {
  left: 50%;
  top: 40%;
  animation: jump-2 6s linear infinite;
}
@media only screen and (max-width: 575px) {
  .rts-breadcrumb-area .shape-area .two {
    display: none;
  }
}
.rts-breadcrumb-area .shape-area .three {
  left: auto;
  right: 0;
  top: 60%;
  animation: jump-2 5s linear infinite;
}
@media only screen and (max-width: 575px) {
  .rts-breadcrumb-area .shape-area .three {
    display: none;
  }
}

.contact-info-area-wrapper-p {
  background: var(--color-primary);
  padding: 90px 60px;
  border-radius: 10px;
  margin-right: -30px;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .contact-info-area-wrapper-p {
    margin-right: 0;
    padding: 25px;
  }
}
.contact-info-area-wrapper-p .single-contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 575px) {
  .contact-info-area-wrapper-p .single-contact-info {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }
}
.contact-info-area-wrapper-p .single-contact-info:last-child {
  margin-bottom: 0;
}
.contact-info-area-wrapper-p .single-contact-info .icon {
  height: 51px;
  width: 51px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-area-wrapper-p .single-contact-info .icon i {
  color: var(--color-primary);
}
.contact-info-area-wrapper-p .single-contact-info .info-wrapper span {
  color: #B3B7C1;
  display: block;
  margin-bottom: 10px;
}
.contact-info-area-wrapper-p .single-contact-info .info-wrapper a {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
}
.contact-info-area-wrapper-p.new {
  margin-right: 0;
  padding: 93px 60px;
}
@media only screen and (max-width: 575px) {
  .contact-info-area-wrapper-p.new {
    padding: 35px;
    margin-bottom: 25px;
  }
}

.rts-contact-area-in-page {
  margin-top: -120px;
}

body.contact-page .rts-breadcrumb-area .title-area-left {
  margin-top: -70px;
}

#form-messages {
  margin-bottom: 20px;
}
#form-messages.success {
  color: green;
}
#form-messages.error {
  color: red;
}

.contact-form-p {
  margin-left: -90px;
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  border: 1px solid rgba(32, 40, 45, 0.2);
}
@media only screen and (max-width: 991px) {
  .contact-form-p {
    margin-left: 0;
    padding: 25px;
  }
}
.contact-form-p input {
  height: 54px;
  border: 1px solid rgba(32, 40, 45, 0.2);
  border-radius: 6px;
  margin-bottom: 30px;
}
.contact-form-p textarea {
  margin-bottom: 30px;
  border: 1px solid rgba(32, 40, 45, 0.2);
  border-radius: 6px;
  height: 92px;
  padding: 10px 15px;
}
.contact-form-p textarea:focus {
  border: 1px solid var(--color-primary);
}
.contact-form-p.new {
  margin-left: 0;
}

.thumbnail-contact-form {
  margin: 0 -30px;
}
@media only screen and (max-width: 767px) {
  .thumbnail-contact-form {
    margin: 0 0;
  }
}

.footer-8-area-bg {
  background-image: url(../images/footer/05.webp);
}

.footer-logo-area-left-8 {
  text-align: left;
}
.footer-logo-area-left-8 .logo {
  display: block;
  margin-bottom: 25px;
}
.footer-logo-area-left-8 p.disc {
  color: #8B8F99;
  margin-bottom: 25px;
}
.footer-logo-area-left-8 ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.footer-logo-area-left-8 ul li a {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #3E484E;
  transition: 0.3s;
}
.footer-logo-area-left-8 ul li a i {
  color: #fff;
}
.footer-logo-area-left-8 ul li a:hover {
  transform: translateY(-5px);
}

.footer-8-area-bg .footer-one-single-wized .wized-title {
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .footer-8-area-bg .footer-one-single-wized .wized-title {
    margin-top: 15px;
  }
}
.footer-8-area-bg .footer-one-single-wized .wized-title .title {
  color: #fff;
  margin-bottom: 10px;
}
.footer-8-area-bg .footer-one-single-wized .quick-link-inner {
  display: flex;
}
@media only screen and (max-width: 479px) {
  .footer-8-area-bg .footer-one-single-wized .quick-link-inner {
    flex-direction: column;
  }
}
.footer-8-area-bg .footer-one-single-wized .quick-link-inner .links.margin-left-70 {
  margin-left: 70px;
}
@media only screen and (max-width: 1199px) {
  .footer-8-area-bg .footer-one-single-wized .quick-link-inner .links.margin-left-70 {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 479px) {
  .footer-8-area-bg .footer-one-single-wized .quick-link-inner .links.margin-left-70 {
    margin-left: 0;
  }
}
.footer-8-area-bg .footer-one-single-wized .quick-link-inner .links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li {
  margin-top: 0;
}
.footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li a {
  color: #8B8F99;
  transition: var(--transition);
  position: relative;
  max-width: max-content;
}
.footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li a::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  background: var(--color-primary);
  left: 29px;
  bottom: 0;
  transition: 0.3s;
}
.footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li a i {
  margin-right: 12px;
  transition: 0.3s;
}
.footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li a:hover {
  color: var(--color-white);
}
.footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li a:hover::after {
  position: absolute;
  width: 76%;
}
.footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li a:hover i {
  color: #fff;
}
.footer-8-area-bg .footer-one-single-wized .signle-footer-contact-8 {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.footer-8-area-bg .footer-one-single-wized .signle-footer-contact-8 .icon {
  height: 35px;
  width: 35px;
  display: flex;
  align-content: center;
  justify-content: center;
  background: #3E484E;
  border-radius: 5px;
}
.footer-8-area-bg .footer-one-single-wized .signle-footer-contact-8 .icon i {
  color: #fff;
  line-height: 2;
}
.footer-8-area-bg .footer-one-single-wized .signle-footer-contact-8 .inner-content .title {
  color: #fff;
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: 400;
}
.footer-8-area-bg .footer-one-single-wized .signle-footer-contact-8 .inner-content a {
  color: #8B8F99;
  font-size: 16px;
  font-weight: 500;
  transition: 0.4s;
}
.footer-8-area-bg .footer-one-single-wized .signle-footer-contact-8 .inner-content a:hover {
  color: #fff;
}

.copyright-area-main-wrapper {
  border-top: 1px solid #3D4352;
}

.copyright-8-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 575px) {
  .copyright-8-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.copyright-8-wrapper p {
  margin: 0;
  padding: 30px 0;
}
@media only screen and (max-width: 575px) {
  .copyright-8-wrapper p {
    padding: 30px 0 0 0;
    text-align: center;
  }
}
.copyright-8-wrapper * {
  color: #fff;
}
.copyright-8-wrapper ul {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}
@media only screen and (max-width: 575px) {
  .copyright-8-wrapper ul {
    padding-left: 0;
  }
}
.copyright-8-wrapper ul li {
  padding: 0;
  margin: 0;
}
.copyright-8-wrapper ul li a:hover {
  color: #fff;
}

.pt--65 {
  padding-top: 65px;
}

.pb--65 {
  padding-bottom: 65px;
}

.ptb--100 {
  padding: 100px 0;
}

/* HR / Gemici başvuru (hr.aspx) */
.hr-page .title-area-left .hr-page-breadcrumb {
  font-size: 14px;
  color: #5d666f;
  margin-bottom: 12px;
}
.hr-page .title-area-left .hr-page-breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
}
.hr-page .title-area-left .hr-page-breadcrumb a:hover {
  text-decoration: underline;
}
.hr-bc-sep {
  margin: 0 8px;
  opacity: 0.7;
}
.hr-page-lead {
  max-width: 640px;
  margin: 12px auto 0;
  font-size: 16px;
  line-height: 1.55;
}
.hr-page-main {
  padding-top: 20px;
}
.hr-form-card.contact-form-p {
  margin-left: 0;
  padding: 32px;
}
.hr-fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 28px;
}
.hr-form-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading-1);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #edf1f5;
  width: 100%;
}
.hr-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #20282d;
  margin-bottom: 6px;
}
.hr-label .req {
  color: #c62828;
}
.hr-input.form-control,
.hr-input.form-select {
  width: 100%;
  border: 1px solid rgba(32, 40, 45, 0.2);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 15px;
}
.hr-input:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(32, 40, 45, 0.08);
}
textarea.hr-input {
  min-height: 88px;
  resize: vertical;
}
.hr-cv-file {
  position: absolute;
  width: 0.01px;
  height: 0.01px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}
.hr-cv-dropzone {
  position: relative;
  border: 2px dashed rgba(32, 40, 45, 0.25);
  border-radius: 10px;
  padding: 28px 16px;
  text-align: center;
  cursor: pointer;
  background: #fafbfc;
  transition: border-color 0.2s, background 0.2s;
}
.hr-cv-dropzone:hover,
.hr-cv-dropzone:focus {
  border-color: var(--color-primary);
  background: #fff;
  outline: none;
}
.hr-cv-dropzone.is-dragover {
  border-color: var(--color-primary);
  background: #f0f4f6;
}
.hr-cv-icon {
  font-size: 32px;
  color: var(--color-primary);
  opacity: 0.85;
  margin-bottom: 8px;
}
.hr-cv-title {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  color: #20282d;
}
.hr-cv-hint {
  margin: 6px 0 0;
  font-size: 14px;
  color: #5d666f;
}
.hr-cv-name {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 600;
  word-break: break-word;
}
.hr-form-hint {
  margin: 8px 0 0;
  color: #8b9099;
}
.hr-form-actions {
  margin-top: 8px;
}
.hr-required-note {
  margin-top: 14px;
  color: #5d666f;
}
.hr-form-alert {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}
.hr-form-alert--success {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #c8e6c9;
}
.hr-form-alert--error {
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ffcdd2;
}
.hr-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.hr-feature-card {
  background: #fff;
  border: 1px solid #edf1f5;
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 8px 24px rgba(16, 27, 41, 0.06);
}
.hr-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(32, 40, 45, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 18px;
}
.hr-feature-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: #20282d;
}
.hr-feature-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #5d666f;
}
@media only screen and (max-width: 991px) {
  .hr-feature-list {
    position: static;
    margin-top: 30px;
  }
}