/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  animation-iteration-count: 2;
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  animation-iteration-count: 3;
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  animation-delay: 2s;
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  animation-delay: 3s;
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  animation-delay: 4s;
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  animation-delay: 5s;
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  animation-duration: 0.5s;
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  animation-duration: 0.8s;
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  animation-duration: 3s;
  animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*="Out"] {
    opacity: 0;
  }
}

@keyframes a {
  0%,
  20%,
  53%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }

  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}

.animate__bounce {
  animation-name: a;
  transform-origin: center bottom;
}

@keyframes b {
  0%,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.animate__flash {
  animation-name: b;
}

@keyframes c {
  0% {
    transform: scaleX(1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scaleX(1);
  }
}

.animate__pulse {
  animation-name: c;
  animation-timing-function: ease-in-out;
}

@keyframes d {
  0% {
    transform: scaleX(1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    transform: scaleX(1);
  }
}

.animate__rubberBand {
  animation-name: d;
}

@keyframes e {
  0%,
  to {
    transform: translateZ(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}

.animate__shakeX {
  animation-name: e;
}

@keyframes f {
  0%,
  to {
    transform: translateZ(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(0, 10px, 0);
  }
}

.animate__shakeY {
  animation-name: f;
}

@keyframes g {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: g;
}

@keyframes h {
  20% {
    transform: rotate(15deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  60% {
    transform: rotate(5deg);
  }

  80% {
    transform: rotate(-5deg);
  }

  to {
    transform: rotate(0deg);
  }
}

.animate__swing {
  transform-origin: top center;
  animation-name: h;
}

@keyframes i {
  0% {
    transform: scaleX(1);
  }

  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }

  to {
    transform: scaleX(1);
  }
}

.animate__tada {
  animation-name: i;
}

@keyframes j {
  0% {
    transform: translateZ(0);
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }

  to {
    transform: translateZ(0);
  }
}

.animate__wobble {
  animation-name: j;
}

@keyframes k {
  0%,
  11.1%,
  to {
    transform: translateZ(0);
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.animate__jello {
  animation-name: k;
  transform-origin: center;
}

@keyframes l {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(1);
  }
}

.animate__heartBeat {
  animation-name: l;
  animation-duration: 1.3s;
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}

@keyframes m {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInDown {
  animation-name: m;
}

@keyframes n {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInLeft {
  animation-name: n;
}

@keyframes o {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInRight {
  animation-name: o;
}

@keyframes p {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInUp {
  animation-name: p;
}

@keyframes q {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}

.animate__backOutDown {
  animation-name: q;
}

@keyframes r {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}

.animate__backOutLeft {
  animation-name: r;
}

@keyframes s {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}

.animate__backOutRight {
  animation-name: s;
}

@keyframes t {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}

.animate__backOutUp {
  animation-name: t;
}

@keyframes u {
  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.animate__bounceIn {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: u;
}

@keyframes v {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    transform: translateZ(0);
  }
}

.animate__bounceInDown {
  animation-name: v;
}

@keyframes w {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    transform: translateZ(0);
  }
}

.animate__bounceInLeft {
  animation-name: w;
}

@keyframes x {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    transform: translateZ(0);
  }
}

.animate__bounceInRight {
  animation-name: x;
}

@keyframes y {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    transform: translateZ(0);
  }
}

.animate__bounceInUp {
  animation-name: y;
}

@keyframes z {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.animate__bounceOut {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: z;
}

@keyframes A {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}

.animate__bounceOutDown {
  animation-name: A;
}

@keyframes B {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}

.animate__bounceOutLeft {
  animation-name: B;
}

@keyframes C {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}

.animate__bounceOutRight {
  animation-name: C;
}

@keyframes D {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}

.animate__bounceOutUp {
  animation-name: D;
}

@keyframes E {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate__fadeIn {
  animation-name: E;
}

@keyframes F {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.animate__fadeInDown {
  animation-name: F;
}

@keyframes G {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.animate__fadeInDownBig {
  animation-name: G;
}

@keyframes H {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.animate__fadeInLeft {
  animation-name: H;
}

@keyframes I {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.animate__fadeInLeftBig {
  animation-name: I;
}

@keyframes J {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.animate__fadeInRight {
  animation-name: J;
}

@keyframes K {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.animate__fadeInRightBig {
  animation-name: K;
}

@keyframes L {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.animate__fadeInUp {
  animation-name: L;
}

@keyframes M {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.animate__fadeInUpBig {
  animation-name: M;
}

@keyframes N {
  0% {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.animate__fadeInTopLeft {
  animation-name: N;
}

@keyframes O {
  0% {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.animate__fadeInTopRight {
  animation-name: O;
}

@keyframes P {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.animate__fadeInBottomLeft {
  animation-name: P;
}

@keyframes Q {
  0% {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.animate__fadeInBottomRight {
  animation-name: Q;
}

@keyframes R {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.animate__fadeOut {
  animation-name: R;
}

@keyframes S {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.animate__fadeOutDown {
  animation-name: S;
}

@keyframes T {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.animate__fadeOutDownBig {
  animation-name: T;
}

@keyframes U {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.animate__fadeOutLeft {
  animation-name: U;
}

@keyframes V {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.animate__fadeOutLeftBig {
  animation-name: V;
}

@keyframes W {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.animate__fadeOutRight {
  animation-name: W;
}

@keyframes X {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.animate__fadeOutRightBig {
  animation-name: X;
}

@keyframes Y {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.animate__fadeOutUp {
  animation-name: Y;
}

@keyframes Z {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.animate__fadeOutUpBig {
  animation-name: Z;
}

@keyframes ab {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}

.animate__fadeOutTopLeft {
  animation-name: ab;
}

@keyframes bb {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }

  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}

.animate__fadeOutTopRight {
  animation-name: bb;
}

@keyframes cb {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}

.animate__fadeOutBottomRight {
  animation-name: cb;
}

@keyframes db {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}

.animate__fadeOutBottomLeft {
  animation-name: db;
}

@keyframes eb {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
      rotateY(0deg);
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
}

.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: eb;
}

@keyframes fb {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotateX(-5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: fb;
}

@keyframes gb {
  0% {
    transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotateY(-5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: gb;
}

@keyframes hb {
  0% {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.animate__flipOutX {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: hb;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes ib {
  0% {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.animate__flipOutY {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: ib;
}

@keyframes jb {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
  }

  to {
    transform: translateZ(0);
  }
}

.animate__lightSpeedInRight {
  animation-name: jb;
  animation-timing-function: ease-out;
}

@keyframes kb {
  0% {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(5deg);
  }

  to {
    transform: translateZ(0);
  }
}

.animate__lightSpeedInLeft {
  animation-name: kb;
  animation-timing-function: ease-out;
}

@keyframes lb {
  0% {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.animate__lightSpeedOutRight {
  animation-name: lb;
  animation-timing-function: ease-in;
}

@keyframes mb {
  0% {
    opacity: 1;
  }

  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}

.animate__lightSpeedOutLeft {
  animation-name: mb;
  animation-timing-function: ease-in;
}

@keyframes nb {
  0% {
    transform: rotate(-200deg);
    opacity: 0;
  }

  to {
    transform: translateZ(0);
    opacity: 1;
  }
}

.animate__rotateIn {
  animation-name: nb;
  transform-origin: center;
}

@keyframes ob {
  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }

  to {
    transform: translateZ(0);
    opacity: 1;
  }
}

.animate__rotateInDownLeft {
  animation-name: ob;
  transform-origin: left bottom;
}

.animate__rotateInDownRight {
  animation-name: pb;
  transform-origin: right bottom;
}

@keyframes pb {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }

  to {
    transform: translateZ(0);
    opacity: 1;
  }
}

.animate__rotateInUpLeft {
  animation-name: pb;
  transform-origin: left bottom;
}

@keyframes qb {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }

  to {
    transform: translateZ(0);
    opacity: 1;
  }
}

.animate__rotateInUpRight {
  animation-name: qb;
  transform-origin: right bottom;
}

@keyframes rb {
  0% {
    opacity: 1;
  }

  to {
    transform: rotate(200deg);
    opacity: 0;
  }
}

.animate__rotateOut {
  animation-name: rb;
  transform-origin: center;
}

@keyframes sb {
  0% {
    opacity: 1;
  }

  to {
    transform: rotate(45deg);
    opacity: 0;
  }
}

.animate__rotateOutDownLeft {
  animation-name: sb;
  transform-origin: left bottom;
}

.animate__rotateOutDownRight {
  animation-name: tb;
  transform-origin: right bottom;
}

@keyframes tb {
  0% {
    opacity: 1;
  }

  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}

.animate__rotateOutUpLeft {
  animation-name: tb;
  transform-origin: left bottom;
}

@keyframes ub {
  0% {
    opacity: 1;
  }

  to {
    transform: rotate(90deg);
    opacity: 0;
  }
}

.animate__rotateOutUpRight {
  animation-name: ub;
  transform-origin: right bottom;
}

@keyframes vb {
  0% {
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    transform: rotate(80deg);
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    transform: rotate(60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.animate__hinge {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: vb;
  transform-origin: top left;
}

@keyframes wb {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate__jackInTheBox {
  animation-name: wb;
}

@keyframes xb {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.animate__rollIn {
  animation-name: xb;
}

@keyframes yb {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}

.animate__rollOut {
  animation-name: yb;
}

@keyframes zb {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.animate__zoomIn {
  animation-name: zb;
}

@keyframes Ab {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.animate__zoomInDown {
  animation-name: Ab;
}

@keyframes Bb {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.animate__zoomInLeft {
  animation-name: Bb;
}

@keyframes Cb {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.animate__zoomInRight {
  animation-name: Cb;
}

@keyframes Db {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.animate__zoomInUp {
  animation-name: Db;
}

@keyframes Eb {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.animate__zoomOut {
  animation-name: Eb;
}

@keyframes Fb {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.animate__zoomOutDown {
  animation-name: Fb;
  transform-origin: center bottom;
}

@keyframes Gb {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}

.animate__zoomOutLeft {
  animation-name: Gb;
  transform-origin: left center;
}

@keyframes Hb {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}

.animate__zoomOutRight {
  animation-name: Hb;
  transform-origin: right center;
}

@keyframes Ib {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.animate__zoomOutUp {
  animation-name: Ib;
  transform-origin: center bottom;
}

@keyframes Jb {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translateZ(0);
  }
}

.animate__slideInDown {
  animation-name: Jb;
}

@keyframes Kb {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translateZ(0);
  }
}

.animate__slideInLeft {
  animation-name: Kb;
}

@keyframes Lb {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translateZ(0);
  }
}

.animate__slideInRight {
  animation-name: Lb;
}

@keyframes Mb {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translateZ(0);
  }
}

.animate__slideInUp {
  animation-name: Mb;
}

@keyframes Nb {
  0% {
    transform: translateZ(0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.animate__slideOutDown {
  animation-name: Nb;
}

@keyframes Ob {
  0% {
    transform: translateZ(0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.animate__slideOutLeft {
  animation-name: Ob;
}

@keyframes Pb {
  0% {
    transform: translateZ(0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.animate__slideOutRight {
  animation-name: Pb;
}

@keyframes Qb {
  0% {
    transform: translateZ(0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.animate__slideOutUp {
  animation-name: Qb;
}

@font-face {
  font-family: dg-landing-page;
  src: url(../fonts/dg-landing-page.eot);
  src: url(../fonts/dg-landing-page.eot?#iefix) format("embedded-opentype"),
    url(../fonts/dg-landing-page.woff) format("woff"),
    url(../fonts/icon-fonts/fonts/dg-landing-page.ttf) format("truetype"),
    url(../fonts/dg-landing-page.svg#dg-landing-page) format("svg");
  font-weight: 400;
  font-style: normal;
}

[data-icon]:before {
  content: attr(data-icon);
}

[class*=" icon-"]:before,
[class^="icon-"]:before,
[data-icon]:before {
  font-family: dg-landing-page !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-facebook:before {
  content: "a";
}

.icon-instagram:before {
  content: "b";
}

.icon-twitter:before {
  content: "c";
}

.icon-behance:before {
  content: "d";
}

.icon-dribbble:before {
  content: "e";
}

.icon-dg-phone:before {
  content: "f";
}

.icon-dg-down-arrow:before {
  content: "g";
}

.icon-dg-multiple-payment-icon:before {
  content: "h";
}

.icon-dg-advanced-analytics-icon:before {
  content: "i";
}

.icon-dg-mobile-friendly-icon:before {
  content: "j";
}

.icon-dg-multi-language-icon:before {
  content: "k";
}

.icon-dg-integrated-chat-system-icon:before {
  content: "l";
}

.icon-dg-push-notification-icon:before {
  content: "n";
}

.icon-dg-geo-location-icon:before {
  content: "o";
}

.icon-dg-reviews-ratings-icon:before {
  content: "m";
}

.icon-dg-reviews-ratings-icon-1:before {
  content: "p";
}

.icon-youtube-play:before {
  content: "q";
}

.icon-linkedin:before {
  content: "r";
}

.icon-linkedin-square:before {
  content: "s";
}

.icon-youtube:before {
  content: "t";
}

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: normal;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: opacity 0.3s;
  transform: translateZ(0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition: transform 0.2s, top 0.2s;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: transform 0.2s, left 0.2s;
}

.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: transform 0.2s, right 0.2s;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: Rb 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide:before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image:before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}

.fancybox-container [data-selectable="true"] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-iframe,
.fancybox-video {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:first-child,
.fancybox-button--pause svg:first-child,
.fancybox-button--play svg:nth-child(2) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

.fancybox-caption {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.85) 0,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.15) 65%,
    rgba(0, 0, 0, 0.075) 75.5%,
    rgba(0, 0, 0, 0.037) 82.85%,
    rgba(0, 0, 0, 0.019) 88%,
    transparent
  );
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: 0px) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right))
      max(25px, env(safe-area-inset-bottom))
      max(44px, env(safe-area-inset-left));
  }
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

.fancybox-loading {
  animation: Rb 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes Rb {
  to {
    transform: rotate(1turn);
  }
}

.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translateZ(0);
}

.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-1turn);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(1turn);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1) translateZ(0);
}

.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translateZ(0) scale(1);
}

@media (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding: 0px) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}

.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:link,
.fancybox-share__button:visited {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a:before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus:before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}

@media (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

.row,
.twocol-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.col-100 {
  width: 100%;
}

.col-80 {
  width: 80%;
}

@media (max-width: 992px) {
  .col-80 {
    width: 100%;
  }
}

.col-70 {
  width: 70%;
}

@media (max-width: 992px) {
  .col-70 {
    width: 100%;
  }
}

.col-65 {
  width: 65%;
}

@media (max-width: 992px) {
  .col-65 {
    width: 100%;
  }
}

.col-60 {
  width: 60%;
}

@media (max-width: 992px) {
  .col-60 {
    width: 100%;
  }
}

.col-55 {
  width: 55%;
}

@media (max-width: 992px) {
  .col-55 {
    width: 100%;
  }
}

.col-50 {
  width: 50%;
  position: r;
}

@media (max-width: 992px) {
  .col-50 {
    width: 100%;
  }
}

.col-47 {
  width: 47%;
}

@media (max-width: 992px) {
  .col-47 {
    width: 100%;
  }
}

.col-45 {
  width: 45%;
}

@media (max-width: 992px) {
  .col-45 {
    width: 100%;
  }
}

.col-40 {
  width: 40%;
}

@media (max-width: 992px) {
  .col-40 {
    width: 100%;
  }
}

.col-35 {
  width: 35%;
}

@media (max-width: 992px) {
  .col-35 {
    width: 100%;
  }
}

.col-33-33 {
  width: 33.33%;
}

@media (max-width: 992px) {
  .col-33-33 {
    width: 100%;
  }
}

.col-33 {
  width: 33%;
}

@media (max-width: 992px) {
  .col-33 {
    width: 100%;
  }
}

.col-30 {
  width: 30%;
}

@media (max-width: 992px) {
  .col-30 {
    width: 100%;
  }
}

.col-25 {
  width: 25%;
}

@media (max-width: 992px) {
  .col-25 {
    width: 100%;
  }
}

.col-20 {
  width: 20%;
}

@media (max-width: 992px) {
  .col-20 {
    width: 100%;
  }
}

.p-top-5 {
  padding-top: 5em;
}

@media (max-width: 767px) {
  .p-top-5 {
    padding-top: 3em;
  }

  .boxes-sliders .slick-dots li button:before,
  .boces .img-txt-list-box .slick-dots li button:before,
  .sldier-industry .slick-dots li button:before,
  .industry-slider-mobile .slick-dots li button:before,
  .tech .slick-dots li button:before {
    font-size: 13px !important;
  }

  .anniversarySection .anniversaryWrap .anniversaryContent {
    text-align: center;
    margin-right: 0 !important;
  }

  .anniversarySection .anniversaryWrap .anniversaryContent .titlea span {
    max-width: 100% !important;
  }

  .boces .slick-slide div img {
    max-width: 60px !important;
  }

  .industry-slider-mobile .slick-slide div img {
    max-width: 60px !important;
  }

  .industry-slider-mobile .img-txt-list-box--heading {
    padding-top: 25px;
  }

  .get-in-touch {
    padding-bottom: 50px !important;
  }
  .boxes-sliders .boxes-area-item {
    opacity: 1;
    transform: translate(0) scale(1) !important;
  }

  .industry-slider-mobile .img-txt-list-box--item {
    opacity: 1;
    transform: translate(0) scale(1) !important;
  }
}

.p-top-10 {
  padding-top: 10em;
}

@media (max-width: 767px) {
  .p-top-10 {
    padding-top: 3em;
  }
}

@media (max-width: 1024px) {
  .p-top-10 {
    padding-top: 5em;
  }
}

.p-bottom-5 {
  padding-bottom: 5em;
}

@media (max-width: 767px) {
  .p-bottom-5 {
    padding-bottom: 3em;
  }
}

.p-bottom-10 {
  padding-bottom: 10em;
}

@media (max-width: 767px) {
  .p-bottom-10 {
    padding-bottom: 3em;
  }
}

@media (max-width: 1024px) {
  .p-bottom-10 {
    padding-bottom: 5em;
  }
}

.p-bottom-15 {
  padding-bottom: 15em;
}

@media (max-width: 767px) {
  .p-bottom-15 {
    padding-bottom: 3em;
  }
}

@media (max-width: 1024px) {
  .p-bottom-15 {
    padding-bottom: 5em;
  }
}

.mb-zero {
  margin-bottom: 0 !important;
}

.p-zero {
  padding: 0 !important;
}

.txt-center {
  text-align: center;
}

.pl-zero {
  padding-left: 0 !important;
}

.pr-zero {
  padding-right: 0 !important;
}

@media (max-width: 767px) {
  .loadjs .navigation,
  .loadjs aside,
  .loadjs footer,
  .loadjs header,
  .loadjs section {
    display: none;
  }

  .loadjs .hideAfter {
    display: block;
  }

  .hideAfter {
    display: none;
    background-size: cover;
    width: 100%;
    height: 100vh;
  }
}

.alert-warnning {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5em;
  font-weight: 700;
  color: #fff;
  background: #000;
  overflow: hidden;
}

.alert-warnning p {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 18px;
  transform: translate(-50%, -50%);
}

.fancybox-content {
  width: 95%;
  max-width: 500px;
  font-family: Montserrat;
  background: #e1ff6a;
  border-radius: 10px;
  margin-top: 30px;
  padding: 40px 50px;
  border: none;
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .fancybox-content {
    padding: 40px 25px;
  }
}

.fancybox-content .fancybox-button svg path {
  fill: #fff;
}

.fancybox-content form .fieldset {
  padding: 0;
  border-radius: 0;
  margin-top: 0;
  max-width: 100%;
}

.fancybox-content form h3 {
  margin-bottom: 25px;
}

h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 2.25em;
  line-height: 110%;
  letter-spacing: 1px;
  color: #303030;
}

@media (min-width: 1024px) and (max-width: 1800px) {
  h1 {
    font-size: 36px;
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 36px;
  }
}

h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 1.875em;
  line-height: 110%;
  color: #000;
}

h2.white-txt {
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 4px;
}

@media (min-width: 1024px) and (max-width: 1800px) {
  h2 {
    font-size: 3rem;
  }
}

@media (max-width: 1024px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 1.3125em;
  line-height: 150%;
  color: #fff;
}

@media (min-width: 1024px) and (max-width: 1800px) {
  h3 {
    font-size: 21px;
  }
}

@media (max-width: 1024px) {
  h3 {
    font-size: 21px;
  }
}

h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 1em;
  line-height: 135.4%;
}

@media (min-width: 1024px) and (max-width: 1800px) {
  h4 {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  h4 {
    font-size: 16px;
  }
}

h5 {
  font-style: normal;
  font-weight: 500;
  font-size: 1.125em;
  line-height: 130%;
  color: #e1ff6a;
}

@media (min-width: 1024px) and (max-width: 1800px) {
  h5 {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 0.875em;
  line-height: 130%;
  color: #000;
}

@media (min-width: 1024px) and (max-width: 1800px) {
  h6 {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  h6 {
    font-size: 14px;
  }
}

p {
  font-style: normal;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 177.4%;
  margin-bottom: 1.5em;
}

@media (min-width: 1024px) and (max-width: 1800px) {
  p {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  p {
    font-size: 14px;
  }
}

a {
  text-decoration: none;
  position: relative;
}

a.txt-link.primary-txt:before,
a.txt-link .primary-txt:before,
a .txt-link.primary-txt:before,
a .txt-link .primary-txt:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 100%;
  left: 0;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform 0.3s;
}

a.txt-link.primary-txt.style-one,
a.txt-link .primary-txt.style-one,
a .txt-link.primary-txt.style-one,
a .txt-link .primary-txt.style-one {
  background: linear-gradient(to right, #fff, #e1ff6a 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

a.txt-link.primary-txt.style-one:before,
a.txt-link .primary-txt.style-one:before,
a .txt-link.primary-txt.style-one:before,
a .txt-link .primary-txt.style-one:before {
  background: currentColor;
  background: #000 !important;
}

a.txt-link.primary-txt.style-one span,
a.txt-link .primary-txt.style-one span,
a .txt-link.primary-txt.style-one span,
a .txt-link .primary-txt.style-one span {
  color: #fff;
}

a.txt-link.primary-txt.style-one:hover,
a.txt-link .primary-txt.style-one:hover,
a .txt-link.primary-txt.style-one:hover,
a .txt-link .primary-txt.style-one:hover,
a.txt-link.primary-txt.style-one:hover span,
a.txt-link .primary-txt.style-one:hover span,
a .txt-link.primary-txt.style-one:hover span,
a .txt-link .primary-txt.style-one:hover span {
  color: #e1ff6a !important;
}

a.txt-link.primary-txt.style-one:hover:before,
a.txt-link .primary-txt.style-one:hover:before,
a .txt-link.primary-txt.style-one:hover:before,
a .txt-link .primary-txt.style-one:hover:before {
  background: currentColor;
  background: #e1ff6a !important;
  transform-origin: 0 50%;
  transform: scaleX(1);
}

a.txt-link.primary-txt.style-two,
a.txt-link .primary-txt.style-two,
a .txt-link.primary-txt.style-two,
a .txt-link .primary-txt.style-two {
  color: #fff;
}

a.txt-link.primary-txt.style-two:before,
a.txt-link .primary-txt.style-two:before,
a .txt-link.primary-txt.style-two:before,
a .txt-link .primary-txt.style-two:before {
  background: currentColor;
  background: #fff !important;
}

a.txt-link.primary-txt.style-two span,
a.txt-link .primary-txt.style-two span,
a .txt-link.primary-txt.style-two span,
a .txt-link .primary-txt.style-two span {
  color: #fff;
}

a.txt-link.primary-txt.style-two:hover,
a.txt-link .primary-txt.style-two:hover,
a .txt-link.primary-txt.style-two:hover,
a .txt-link .primary-txt.style-two:hover,
a.txt-link.primary-txt.style-two:hover span,
a.txt-link .primary-txt.style-two:hover span,
a .txt-link.primary-txt.style-two:hover span,
a .txt-link .primary-txt.style-two:hover span {
  color: #e1ff6a !important;
}

a.txt-link.primary-txt.style-two:hover:before,
a.txt-link .primary-txt.style-two:hover:before,
a .txt-link.primary-txt.style-two:hover:before,
a .txt-link .primary-txt.style-two:hover:before {
  background: currentColor;
  background: #e1ff6a !important;
  transform-origin: 0 50%;
  transform: scaleX(1);
}

a.txt-circle-link {
  margin-top: 2.1875em;
}

a.txt-circle-link span {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 27px;
  position: relative;
  height: 27px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  a.txt-circle-link span {
    padding-left: 12px;
  }
}

a.txt-circle-link span:before {
  content: "";
  width: 27px;
  height: 27px;
  position: absolute;
  right: -12px;
  background: #e1ff6a;
  border-radius: 28px;
  z-index: -1;
  transition: all 0.3s ease;
}

a.txt-circle-link span:after {
  content: attr(data-end);
  color: #fff;
}

a.txt-circle-link.white-txt {
  color: #fff;
}

a.txt-circle-link.black-txt {
  color: #000;
}

a.txt-circle-link:hover span:before {
  width: calc(100% + 24px);
  background: #e1ff6a;
}

a.txt-circle-link:hover span:after {
  color: #000;
}

a.txt-circle-link:hover span {
  color: #000;
}

@media (max-width: 1024px) {
  a.txt-circle-link:hover span:before {
    width: calc(100% + 12px);
  }
}

a.txt-circle-link:active {
  transform: scale(0.96);
}

ul {
  list-style: none;
}

.generic-sec-header {
  max-width: 40em;
  padding-left: 4.375em;
}

@media (max-width: 992px) {
  .generic-sec-header {
    max-width: 100%;
    padding: 2.5em 0;
  }
}

.generic-sec-header .generic-sec_title {
  font-size: 1.25em;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 2em;
  padding: 0 0 0 1.5em;
  position: relative;
  letter-spacing: 3px;
}

.generic-sec-header .generic-sec_title:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 5px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

@media (max-width: 1440px) {
  .generic-sec-header .generic-sec_title:before {
    height: 3px;
  }
}

@media (max-width: 992px) {
  .generic-sec-header .generic-sec_title {
    margin: 0 0 1.5em;
  }
}

.generic-sec-header .generic-sec_subtitle {
  font-size: 3.4375em;
  font-weight: 500;
  line-height: 1.03em;
  text-transform: uppercase;
  margin: 0 0 1em;
}

@media (max-width: 992px) {
  .generic-sec-header .generic-sec_subtitle {
    margin: 0 0 0.5em;
  }
}

@media (max-width: 767px) {
  .generic-sec-header .generic-sec_subtitle {
    font-size: 1.6em;
    line-height: 1.3em;
  }
}

.generic-sec-header .generic-sec_para {
  font-size: 1.125em;
  line-height: 1.44em;
}

.generic-sec-header_center {
  max-width: 78.4375em;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

@media (max-width: 992px) {
  .generic-sec-header_center {
    max-width: 100%;
  }
}

.generic-sec-header_center .generic-sec_title {
  display: inline-block;
}

.generic-sec-header_inner {
  padding-left: 0;
  max-width: 37em;
}

@media (max-width: 992px) {
  .generic-sec-header_inner {
    max-width: 100%;
  }
}

.generic-sec-header_inner .generic-sec_title {
  margin: 0 0 1em;
}

.generic-sec-header_inner .generic-sec_subtitle {
  font-size: 2.8125em;
  line-height: 1.28em;
}

@media (max-width: 767px) {
  .generic-sec-header_inner .generic-sec_subtitle {
    font-size: 1.6em;
    line-height: 1.3em;
  }
}

form {
  width: 100%;
}

form :-ms-input-placeholder {
  color: #262f56;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 150%;
}

form ::placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 150%;
}

form .fieldset {
  font-family: Montserrat;
  border-radius: 10px;
  /* margin-top: 22%; */
  padding: 40px;
  border: none;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 466px;
  font-size: 16px;
  background: transparent;
  border: 1px solid #e1ff6a;
  border-radius: 15px;
  position: relative;
  z-index: 22;
}

@media (max-width: 1024px) {
  form .fieldset {
    margin-top: 10px;
    padding: 20px 30px;
  }
}

@media (max-width: 991px) {
  form .fieldset {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  form .fieldset {
    padding: 40px 25px;
  }
}

form .field-outer {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
  font-size: inherit;
}

form .field-outer:last-child {
  margin-bottom: 0;
}

form input {
  font-family: Montserrat;
  border-radius: 0;
  height: 46px;
  width: 100% !important;
  border: none;
  padding: 16px 0;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 150%;
  border-bottom: 1px solid #e1ff6a;
  background: transparent;
  color: #fff;
}

form input.error {
  box-shadow: 0px 1px 4px 2px #df2b2b;
}

@media (max-width: 1660px) {
  form input {
    font-size: 14px;
  }
}

form input::-webkit-input-placeholder {
  font-family: Montserrat;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 150%;
}

form input::-moz-placeholder {
  font-family: Montserrat;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 150%;
}

form input:-ms-input-placeholder {
  font-family: Montserrat;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 150%;
}

form input:-moz-placeholder {
  font-family: Montserrat;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 150%;
}

form input::-webkit-inner-spin-button,
form input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

form input[type="number"] {
  -moz-appearance: textfield;
}

.btn {
  display: flex;
  align-items: center;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  padding: 0 1.4375em;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  border-radius: 2.0625em;
}

.btn--primary:after {
  width: 100%;
  background-color: #e6fe85;
  z-index: -2;
}

.btn--primary:after,
.btn--primary:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  border-radius: 2.0625em;
  transition: all 0.3s;
}

.btn--primary:before {
  width: 0;
  background-color: #fff;
  z-index: -1;
}

.btn--primary:hover:before {
  width: 100%;
}

.btn--small {
  font-size: 1rem;
  line-height: 30px;
  letter-spacing: 0.001953125em;
  height: 30px;
}

@media (max-width: 1025x) {
  .btn--small {
    font-size: 16px;
  }
}

.btn.form-btn {
  background: transparent;
  border-radius: 10px;
  width: 100%;
  height: 46px;
  border: none;
  flex-wrap: wrap;
  justify-content: center;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 46px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.5px;
  border: 1px solid #e1ff6a;
  text-transform: uppercase;
  color: #fff;
  padding: 0;
  transition: all 0.5s;
}

.btn.form-btn:hover {
  color: #000;
  background: #e1ff6a;
  transition: all 0.5s;
}

.btn.form-btn:hover:after {
  transform: translate3D(0, 0, 0);
  transition: all 0.5s;
}

.btn.form-btn span {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 34px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  text-transform: capitalize;
}

.btn--seconday {
  position: relative;
  margin: auto;
  padding: 19px 22px;
  transition: all 0.2s ease;
}

.btn--seconday:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 28px;
  background: rgba(222, 36, 74, 0.5);
  width: 56px;
  height: 56px;
  transition: all 0.3s ease;
}

.btn--seconday span {
  position: relative;
  font-size: 16px;
  line-height: 18px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  vertical-align: middle;
}

.btn--seconday svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #111;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.btn--seconday:hover:before {
  width: 100%;
  background: #e1ff6a;
}

.btn--seconday:hover svg {
  transform: translateX(0);
}

.btn--seconday:active {
  transform: scale(0.96);
}

.buttonfx {
  color: #000;
  outline: none;
  background: #000;
  border: none;
  letter-spacing: 0.0625em;
  padding: 8px 10px;
  text-transform: uppercase;
  font: 700 16px Bitter, sans-serif;
  line-height: 2;
  position: relative;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.5s;
}

.buttonfx:after,
.buttonfx:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: #259f6c;
  z-index: -1;
  transform: translate3D(0, -100%, 0);
  transition: all 0.5s;
}

.buttonfx:before {
  background: #fafcd6;
  z-index: -2;
  transform: translate3D(0, 0, 0);
}

.buttonfx:hover {
  color: #fff;
}

.buttonfx:hover:after {
  transform: translate3D(0, 0, 0);
  transition: all 0.5s;
}

.buttonfx.slideleft:after {
  top: 0;
  z-index: -1;
  transform: translate3D(-101%, 0, 0);
}

.buttonfx.slideleft:hover:after {
  transform: translate3D(0, 0, 0);
  transition: all 0.5s;
}

.buttonfx.slidebottomleft:after {
  transform: translate3D(-100%, 100%, 0);
}

.buttonfx.slidebottomleft:hover:after {
  transform: translate3D(0, 0, 0);
  transition: all 0.5s;
}

.buttonfx.angleinleft:after {
  width: 200%;
  transform-origin: 0 bottom;
  transform: translate3D(-50%, 0, 0) rotate(-50deg);
}

.buttonfx.angleinleft:hover:after {
  transform: rotate(0deg);
  transition: all 0.5s;
}

.buttonfx.curtaindown {
  border: 1px solid #eee;
  border-bottom: 4px solid #eee;
}

.buttonfx.curtaindown:after,
.buttonfx.curtaindown:before {
  background: #259f6c;
  transform: translate3D(0, -100%, 0);
}

.buttonfx.curtaindown:after {
  transform: translate3D(0, 100%, 0);
}

.buttonfx.curtaindown:hover:after,
.buttonfx.curtaindown:hover:before {
  transform: translate3D(0, -50%, 0);
  transition: all 0.5s;
}

.buttonfx.curtaindown:hover:after {
  transform: translate3D(0, 50%, 0);
}

.buttonfx.curtainup {
  transform-style: preserve-3d;
}

.buttonfx.curtainup:after,
.buttonfx.curtainup:before {
  transform-origin: center center;
  transform: scaleY(0);
}

.buttonfx.curtainup:hover:after,
.buttonfx.curtainup:hover:before {
  transform: scale(1);
  border-radius: 0;
}

.buttonfx.angleindouble {
  border: 1px solid #eee;
  border-bottom: 4px solid #eee;
}

.buttonfx.angleindouble:before {
  top: 0;
  left: 0;
  width: 150%;
  background: #259f6c;
  transform-origin: 0 bottom;
  transform: translateX(-100%) rotate(-30deg);
}

.buttonfx.angleindouble:after {
  top: 0;
  left: auto;
  right: 0;
  width: 150%;
  transform-origin: right bottom;
  transform: translateX(100%) rotate(30deg);
}

.buttonfx.angleindouble:hover:before {
  left: 0;
  transform: rotate(0deg);
  transition: all 0.5s;
}

.buttonfx.angleindouble:hover:after {
  right: 0;
  transform: rotate(0deg);
  transition: all 0.5s;
}

.buttonfx.doubletake:after,
.buttonfx.doubletake:before {
  width: 200%;
  background: #259f6c;
  transform-origin: 0 bottom;
  transform: translate3D(-50%, 0, 0) rotate(-50deg);
}

.buttonfx.doubletake:before {
  opacity: 0.4;
}

.buttonfx.doubletake:hover:after,
.buttonfx.doubletake:hover:before {
  transform: rotate(0deg);
  transition: all 0.25s;
}

.buttonfx.doubletake:hover:after {
  transition-delay: 0.25s;
}

.buttonfx .bouncein:hover:after,
.buttonfx .bouncein:hover:before {
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66) !important;
}

.animated-arrow {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.animated-arrow--overlap {
  position: absolute;
  bottom: -35px;
  left: 0;
  z-index: 29;
}

@media (min-width: 1920px) {
  .animated-arrow--overlap {
    bottom: -115px;
    position: absolute !important;
    bottom: -35px;
  }
}

.animated-arrow--outer {
  display: flex;
  flex-wrap: wrap;
  justify-self: center;
  width: 100%;
}

.animated-arrow--btn {
  width: 71px;
  height: 71px;
  background: #e6fe85;
  border-radius: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.animated-arrow--btn img {
  animation: Sb 1.5s infinite;
}

@keyframes Sb {
  0% {
    margin-top: 0;
  }

  50% {
    margin-top: 20px;
  }

  to {
    margin-top: 0;
  }
}

*,
:after,
:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  outline: none;
}

:after:focus,
:after:focus-within,
:before:focus,
:before:focus-within,
:focus,
:focus-within {
  outline: none;
}

html {
  width: 100%;
  font-size: 100%;
  scroll-behavior: smooth;
}

html body {
  font-family: Montserrat;
  color: #303030;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}

@media (min-width: 1300px) and (max-width: 1400px) and (min-height: 900px) {
  html body {
    font-size: 14px;
  }
}

@media (max-width: 1025px) {
  html body {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  html body {
    font-size: 18px;
  }
}

html img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: inline-block;
  -o-object-fit: contain;
  object-fit: contain;
}

html .loadjs {
  overflow: hidden;
}

html .animate {
  opacity: 0;
}

html .wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  padding: 0;
  z-index: 2;
}

html label.error {
  margin-top: 10px;
  font-size: 11px;
  color: #fff;
  width: 100%;
  font-weight: 400;
  display: none !important;
}

html #lp-loader,
html #lp-loader-popup {
  margin: 0 auto;
}

html #lp_success_box,
html #lp_success_box_popup {
  margin-top: 10px;
  font-size: 11px;
  color: #fff;
  width: 100%;
  font-weight: 400;
}

html .container {
  width: 100%;
  max-width: 100%;
  padding: 0 12.1875em;
}

@media (max-width: 1600px) {
  html .container {
    padding: 0 3%;
  }
}

@media (max-width: 1480px) {
  html .container {
    padding: 0 5%;
  }
}

@media (max-width: 1200px) {
  html .container {
    padding: 0 7%;
  }
}

@media (max-width: 992px) {
  html .container {
    padding: 0 5em;
  }
}

@media (max-width: 767px) {
  html .container {
    padding: 0 25px;
  }
}

header {
  width: 100%;
  padding: 25px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: all 0.4s ease;
}

@media (min-width: 768px) {
  header {
    padding: 2.1875em 0;
  }
}

header .header-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

header .header-inner .dk-logo,
header .header-inner .dk-logo .normal-logo {
  display: flex;
  visibility: visible;
}

header .header-inner .dk-logo .fixed-logo {
  display: none;
  visibility: hidden;
}

@media (max-width: 768px) {
  header .header-inner .dk-logo {
    display: none;
    visibility: hidden;
  }
}

header .header-inner .mobile-logo {
  display: none;
  visibility: hidden;
}

header .header-inner .mobile-logo .normal-logo {
  display: flex;
  visibility: visible;
}

header .header-inner .mobile-logo .fixed-logo {
  display: none;
  visibility: hidden;
}

@media (max-width: 768px) {
  header .header-inner .mobile-logo,
  header .header-inner .mobile-logo .normal-logo {
    display: flex;
    visibility: visible;
  }

  header .header-inner .mobile-logo .fixed-logo {
    display: none;
    visibility: hidden;
  }
}

header a {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.5rem;
}

header .logo {
  width: 150px;
  height: 29px;
}

@media (min-width: 768px) {
  header .logo {
    width: 228px;
    height: 31px;
  }
}

header nav ul {
  display: flex;
  flex-wrap: wrap;
}

header nav ul li {
  margin-left: 1.25em;
}

@media (max-width: 1080px) {
  header nav ul li {
    margin-left: 25px;
  }
}

@media (max-width: 768px) {
  header nav ul li {
    margin-left: 25px;
  }

  header nav ul li:nth-child(2) {
    margin-left: 0;
    padding-top: 4px;
  }
}

header nav ul li:first-child,
header nav ul li:only-child {
  margin-left: 0;
}

@media (max-width: 800px) {
  header nav ul li.header-btn {
    display: none;
    visibility: hidden;
  }
}

header nav ul .tel-btn {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}

header nav ul .tel-btn a {
  display: flex;
  flex-wrap: wrap;
  padding-left: 2.1875em;
  font-size: 1rem;
}

@media (max-width: 768px) {
  header nav ul .tel-btn a {
    padding-left: 25px;
  }
}

header nav ul .tel-btn i {
  margin-right: 10px;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  background: linear-gradient(to right, #fff, #e1ff6a 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1200px) {
  header nav ul .tel-btn i {
    font-size: 1.5em;
  }
}

@media (max-width: 1024px) {
  header nav ul .tel-btn i {
    font-size: 18px;
  }
}

header nav ul .tel-btn span {
  display: flex;
  flex-wrap: wrap;
  font-style: normal;
  font-weight: 500;
  font-size: 1em;
  line-height: 1.875em;
  letter-spacing: 0.5px;
  color: #fff;
}

@media (max-width: 768px) {
  header nav ul .tel-btn span {
            font-size: 16px;
        font-weight: bold;
  }
}

header.fixed-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

header.fixed-header .header-inner .dk-logo .normal-logo {
  display: none;
  visibility: hidden;
}

header.fixed-header .header-inner .dk-logo .fixed-logo {
  display: flex;
  visibility: visible;
  width: 100%;
}

header.fixed-header .header-inner .mobile-logo {
  display: none;
  visibility: hidden;
}

header.fixed-header .header-inner .mobile-logo .normal-logo {
  display: flex;
  visibility: visible;
}

header.fixed-header .header-inner .mobile-logo .fixed-logo {
  display: none;
  visibility: hidden;
}

@media (max-width: 768px) {
  header.fixed-header .header-inner .mobile-logo {
    display: flex;
    visibility: visible;
  }

  header.fixed-header .header-inner .mobile-logo .normal-logo {
    display: none;
    visibility: hidden;
  }

  header.fixed-header .header-inner .mobile-logo .fixed-logo {
    display: flex;
    visibility: visible;
  }
}

header.fixed-header .header-inner a.txt-link.primary-txt.style-one i,
header.fixed-header .header-inner a.txt-link.primary-txt.style-one span {
  color: #fff;
}

header.fixed-header .header-inner a.txt-link.primary-txt.style-one:hover i,
header.fixed-header .header-inner a.txt-link.primary-txt.style-one:hover span {
  color: #000 !important;
}

header.fixed-header
  .header-inner
  a.txt-link.primary-txt.style-one:hover:before {
  background: #000 !important;
}

header.visible-title {
  visibility: visible;
}

footer {
  background: #000;
  padding: 3.125em 0;
  position: relative;
  width: 100%;
}

@media (max-width: 1024px) {
  footer {
    padding: 50px 0 20px;
  }
}

@media (max-width: 992px) {
  footer .full-width-box .col-33-33 {
    padding: 0 !important;
  }
}

footer h5 {
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  footer h5 {
    text-align: center;
  }
}

footer ul {
  flex-direction: column;
  width: 100%;
}

footer ul,
footer ul li {
  display: flex;
  flex-wrap: wrap;
}

footer ul li {
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  footer ul li {
    justify-content: center;
  }
}

footer ul li:last-child,
footer ul li:only-child {
  margin-bottom: 0;
}

footer ul li a {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #fff;
}

@media (max-width: 1280px) {
  footer ul li a {
    font-size: 14px;
  }
}

footer .social-media-links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
}

@media (max-width: 1024px) {
  footer .social-media-links {
    justify-content: space-between;
  }
}

@media (max-width: 992px) {
  footer .social-media-links {
    justify-content: center;
  }
}

footer .social-media-links li {
  display: flex;
  flex-wrap: wrap;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  margin-bottom: 0;
}

footer .social-media-links li:last-child {
  margin-right: 0;
}

@media (max-width: 1080px) {
  footer .social-media-links li {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }

  footer .social-media-links li:first-child {
    margin-left: 0;
  }

  footer .social-media-links li:last-child {
    margin-right: 0;
  }
}

@media (max-width: 992px) {
  footer .social-media-links li {
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
  }

  footer .social-media-links li:first-child {
    margin-left: 0;
  }

  footer .social-media-links li:last-child {
    margin-right: 0;
  }
}

footer .social-media-links li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 100%, 0.12);
  position: relative;
  border-radius: 100%;
}

footer .social-media-links li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 100%;
  transform: scale(0);
  transition: 0.2s;
  opacity: 0;
}

footer .social-media-links li a i {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

footer .social-media-links li a:hover {
  background: transparent;
}

footer .social-media-links li a:hover:before {
  transform: scale(1);
  opacity: 1;
  transition: 0.2s;
  z-index: unset;
}

footer .social-media-links li a:hover img {
  z-index: 1;
}

footer .social-media-links li a:hover i {
  color: #e1ff6a;
}

footer address {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  footer address {
    text-align: center;
  }
}

footer address:last-child,
footer address:only-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  footer address:last-child,
  footer address:only-child {
    margin-bottom: 30px;
  }
}

@media (max-width: 1024px) {
  footer .content-box p {
    text-align: center;
  }
}

@media (min-width: 1025px) {
  footer .content-box {
    max-width: 413px;
  }
}

footer p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
}

.content-box.heading-txt {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  margin-bottom: 3.125em;
}

@media (max-width: 1024px) {
  .content-box.heading-txt {
    margin-bottom: 50px;
  }
}

.content-box.heading-txt h6 {
  margin-bottom: 0.9375em;
  background: linear-gradient(to right, #fff, #e1ff6a 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 4px;
}

@media (max-width: 1024px) {
  .content-box.heading-txt h6 {
    margin-bottom: 15px;
    text-align: center;
  }
}

.content-box.heading-txt h2 {
  margin-bottom: 25px;
  text-align: center;
}

@media (max-width: 1024px) {
  .content-box.heading-txt h2 {
    margin-bottom: 25px;
  }
}

.content-box.heading-txt p {
  font-size: 0.875em;
  line-height: 150%;
}

@media (min-width: 1024px) and (max-width: 1800px) {
  .content-box.heading-txt p {
    font-size: 14px;
  }
}

@media (max-width: 1280px) {
  .content-box.heading-txt p {
    font-size: 14px;
  }
}

.content-box.heading-txt--left {
  align-items: left;
}

.content-box.heading-txt--center {
  align-items: center;
}

.content-box.heading-txt--center p {
  text-align: center;
}

.content-box.heading-txt--right {
  align-items: right;
}

.content-box.heading-txt--gradient h6 {
  color: #fff;
}

.content-box.heading-txt--gradient h2 {
  background: linear-gradient(to right, #fff, #e1ff6a 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 4px;
}

.content-box.heading-txt--fix-width h2 {
  width: 100%;
  max-width: 890px;
  color: #fff;
  background: linear-gradient(to right, #fff, #e1ff6a 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 4px;
}

.content-box.heading-txt--fix-width p {
  width: 100%;
  max-width: 859px;
  color: #fff;
}

.content-box.heading-txt--fix-width-txt p {
  width: 100%;
  max-width: 588px;
  margin-bottom: 0;
  background: linear-gradient(to right, #fff, #e1ff6a 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content-box.heading-txt.mb-zero {
  margin-bottom: 0;
}

.content-box.simple-txt p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
}

.figure-st-one {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 32px;
  border-radius: 25px;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
}

.figure-st-one.round-box-gradient {
  background: transparent url(../images/item-light-grey-bg.png) no-repeat 0 0;
  background-size: 100% 100%;
}

@media (max-width: 1600px) {
  .figure-st-one.round-box-gradient {
    background-size: cover;
  }
}

.figure-st-one--img-box {
  width: 86px;
  height: 86px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.figure-st-one--caption {
  margin-top: 8px;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  color: #fff;
}

.figure-st-one--caption.medium-txt {
  font-size: 1em;
  line-height: 110%;
}

@media (max-width: 1024px) {
  .figure-st-one--caption.medium-txt {
    font-size: 16px;
  }
}

.img-gallery-box {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 50px);
  margin-left: -25px;
  margin-right: -25px;
}

.img-gallery-box--item {
  margin-left: 25px;
  margin-right: 25px;
  margin-bottom: 40px;
}

.img-gallery-box--item.col-25 {
  width: calc(25% - 50px);
}

@media (max-width: 1024px) {
  .img-gallery-box--item.col-25 {
    width: calc(50% - 50px);
  }
}

@media (max-width: 640px) {
  .img-gallery-box--item.col-25 {
    width: 100%;
  }
}

.img-gallery-box--item.col-50 {
  width: calc(50% - 50px);
}

@media (max-width: 1024px) {
  .img-gallery-box--item.col-50 {
    width: calc(50% - 50px);
  }
}

@media (max-width: 640px) {
  .img-gallery-box--item.col-50 {
    width: 100%;
  }
}

.figure-st-two {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  cursor: pointer;
}

.figure-st-two.round-box-border {
  border: 1px solid #d2d2d2;
  border-radius: 15px;
  height: 100%;
}

.figure-st-two--img-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
}

.figure-st-two--img-box i {
  display: flex;
  flex-wrap: wrap;
  font-size: 51px;
  color: #fff;
  transition: all 0.4s ease;
}

.figure-st-two--img.normal-img {
  display: flex;
  visibility: visible;
}

.figure-st-two--img.hover-img {
  display: none;
  visibility: hidden;
}

.figure-st-two--caption {
  margin-top: 16px;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  color: #fff;
}

.figure-st-two--caption.small-txt {
  font-size: 14px;
  line-height: 130%;
}

.figure-st-two--caption.medium-txt {
  font-size: 16px;
  line-height: 110%;
}

.figure-st-two:hover .figure-st-two--img-box i {
  color: #e1ff6a;
  transition: all 0.4s ease;
}

.figure-st-two:hover .figure-st-two--img {
  display: none;
  visibility: hidden;
}

.figure-st-two:hover .figure-st-two--img.hover-img {
  display: flex;
  visibility: visible;
}

.figure-st-two:hover .figure-st-two--caption {
  color: #fff;
}

.figure-st-three {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  border-radius: 0;
  min-height: 100%;
}

.figure-st-three,
.figure-st-three--img-box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.figure-st-three--img-box {
  justify-content: center;
  height: 250px;
  border-radius: 20px;
}

.figure-st-three--img {
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.figure-st-three--caption {
  width: 100%;
  margin-top: 20px;
  font-style: normal;
  font-weight: 600;
  color: #000;
}

.figure-st-three--caption.medium-txt {
  font-size: 16px;
  line-height: 110%;
}

.figure-st-three--overlay {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: -100%;
  left: 0;
  transition: bottom 0.5s ease-out 0s;
  border-radius: 20px;
  overflow: hidden;
  padding: 25px;
}

.figure-st-three--overlay .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.figure-st-three--overlay p {
  width: 100%;
  margin-top: 20px;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  position: relative;
  z-index: 1;
}

.figure-st-three:hover .figure-st-three--overlay {
  bottom: 0;
}

.figure-st-four {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 17px 24px;
  border-radius: 0;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  position: relative;
  background: #fff;
  border-radius: 30px;
}

.figure-st-four--outer {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

.figure-st-four--img {
  height: 67px;
}

.figure-st-four--img,
.figure-st-four--rating-count {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.figure-st-four--rating-count {
  margin-top: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 110%;
  align-items: flex-end;
  background: #262f56;
  background: linear-gradient(61.32% 61.65% at 77.67% 46%, #262f56 0, #171a27);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1024px) {
  .figure-st-four--rating-count {
    font-size: 14px;
  }
}

.figure-st-four--rating-count span {
  margin-left: 13px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  background: #262f56;
  background: linear-gradient(61.32% 61.65% at 77.67% 46%, #262f56 0, #171a27);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.figure-st-four--rating-img {
  margin-top: 17px;
}

.figure-st-four--comment,
.figure-st-four--rating-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.figure-st-four--comment {
  margin-top: 25px;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 150%;
  text-align: center;
  color: #000;
}

@media (max-width: 1024px) {
  .figure-st-four--comment {
    font-size: 14px;
  }
}

.figure-st-six {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 40px;
  border-radius: 25px;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
}

.figure-st-six.round-box-gradient {
  position: relative;
  border: 1px solid;
  border-image-source: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18),
    transparent
  );
  background: transparent url(assets/images/compress-images/testimonials-box-bg.webp) no-repeat 0 0;
  background-size: 100% 100%;
}

.figure-st-six .icon {
  font-style: normal;
  font-weight: 700;
  font-size: 100px;
  line-height: 80%;
  letter-spacing: 1px;
  color: #e1ff6a;
  height: 36px;
}

.figure-st-six p {
  margin: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #fff;
}

.figure-st-six-para-wrapper {
  margin: 20px 0 15px 0;
  min-height: 75px;
}

.figure-st-six .client-info-box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.figure-st-six .client-info-box--img {
  width: 72px;
  height: 72px;
  border-radius: 100%;
  overflow: hidden;
}

.figure-st-six .client-info-box--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.figure-st-six .client-info-box--data {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  flex-direction: column;
  justify-content: center;
}

.figure-st-six .client-info-box--name {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #e1ff6a;
  text-transform: uppercase;
}

.figure-st-six .client-info-box--mood {
  margin-top: 10px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
}

.swiper {
  padding-bottom: 50px;
}

.swiper .swiper-slide {
  height: unset !important;
}

.swiper .swiper-pagination {
  bottom: 0;
}

.swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin-left: 5px;
  margin-right: 5px;
  width: 12px;
  height: 12px;
  background: radial-gradient(
    61.32% 61.65% at 77.67% 46%,
    #262f56 0,
    #171a27 100%
  );
  opacity: 0.3;
}

.swiper
  .swiper-pagination.swiper-pagination-bullets
  .swiper-pagination-bullet-active {
  background: #e1ff6a;
  opacity: 1;
}

.img-txt-overly-box .itob-box {
  position: relative;
  width: 100%;
}

.img-txt-overly-box .itob-box--img-box {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 216px;
  overflow: hidden;
}

@media (max-width: 1600px) {
  .img-txt-overly-box .itob-box--img-box {
    max-height: 100%;
    height: 350px;
  }
}

.img-txt-overly-box .itob-box--img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.img-txt-overly-box .itob-box--img-box:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}

.img-txt-overly-box .itob-box--txt-box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.img-txt-overly-box .itob-box--txt-box-inn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 1075px;
  height: 100%;
  margin: 0 auto;
}

.img-txt-list-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.img-txt-list-box--item {
  margin-bottom: 50px;
  width: 100%;
}

.mainpera {
  display: block;
  vertical-align: middle;
  position: relative;
  top: 36%;
}

body .mainpera h1 {
  font-size: 5rem;
  margin: 0 0 20px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 4px;
  background: linear-gradient(to right, #fff, #e1ff6a 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body .mainpera p {
  color: #fff;
}

@media (min-width: 1225px) {
  .img-txt-list-box--item {
    max-width: 31%;
  }

  .img-txt-list-box--item:last-child,
  .img-txt-list-box--item:nth-last-child(2),
  .img-txt-list-box--item:nth-last-child(3) {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) and (max-width: 1400px) {
  .img-txt-list-box--item {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (max-width: 1224px) {
  .img-txt-list-box--item {
    max-width: 50%;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .img-txt-list-box--item:last-child,
  .img-txt-list-box--item:nth-last-child(2) {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .img-txt-list-box--item {
    margin-bottom: 25px;
    max-width: 100%;
  }

  .img-txt-list-box--item:nth-last-child(2) {
    margin-bottom: 25px;
  }

  .img-txt-list-box--item:last-child {
    margin-bottom: 0;
  }
}

.img-txt-list-box--img-heading-box {
  display: block;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .img-txt-list-box--img-heading-box {
    justify-content: center;
  }
}

.img-txt-list-box--img {
  width: 48px;
  height: 42px;
  margin: 0 auto 23px;
}

.img-txt-list-box--heading {
  /* margin-left: 24px; */
  text-transform: uppercase;
  color: #fff;
}

.img-txt-list-box--text p {
  color: #fff;
}

.img-txt-list-box--text p:only-child {
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .img-txt-list-box--text {
    max-width: 360px;
  }
}

@media (max-width: 767px) {
  .img-txt-list-box--text {
    text-align: center;
  }
}

.img-txt-list-box.extra-space {
  padding: 0 7.1875em;
}

@media (max-width: 1200px) {
  .img-txt-list-box.extra-space {
    padding: 0;
  }
}

body .two-col-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  height: auto;
}

@media (min-width: 1920px) {
  body .two-col-box {
    height: 100vh;
  }
}

body .two-col-box.img-form-box {
  padding-top: 4.375em;
  z-index: 1;
}

@media (min-width: 1024px) {
  body .two-col-box.img-form-box {
    padding-top: 0;
    padding-bottom: 40px;
  }
}

@media (max-width: 1024px) {
  body .two-col-box.img-form-box {
    padding-top: 120px;
  }
}

body .two-col-box.img-form-box:before {
  content: "";
  background-image: url(../images/banner-ani.gif);
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center center;
}

body .two-col-box.img-form-box .img-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}

@media (min-width: 1890px) {
  body .two-col-box.img-form-box .img-box {
    min-height: 489px;
  }
}

body .two-col-box.img-form-box h1 {
  padding-right: 10px;
  color: #fff;
}

@media (max-width: 992px) {
  body .two-col-box.img-form-box h1 {
    padding-right: 0;
  }
}

body .two-col-box.img-form-box .form-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 64px;
  padding-left: 7.8125em;
  padding-right: 6.5625em;
  height: 100%;
}

@media (max-width: 1840px) {
  body .two-col-box.img-form-box .form-box {
    padding-left: 13%;
    padding-right: 13%;
  }
}

@media (max-width: 1660px) {
  body .two-col-box.img-form-box .form-box {
    padding-left: 10%;
    padding-right: 0;
  }
}

@media (max-width: 1480px) {
  body .two-col-box.img-form-box .form-box {
    padding-left: 13%;
    padding-right: 13%;
  }
}

@media (max-width: 1240px) {
  body .two-col-box.img-form-box .form-box {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  body .two-col-box.img-form-box .form-box {
    padding-left: 75px;
    padding-right: 75px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  body .two-col-box.img-form-box .form-box {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 640px) {
  body .two-col-box.img-form-box .form-box {
    padding-left: 0;
    padding-right: 0;
    padding-top: 20px;
    padding-bottom: 60px;
  }
}

body .two-col-box.img-form-box .form-box h3 {
  padding-right: 0.625em;
  margin-bottom: 0;
  color: #333;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 4px;
  font-size: 3rem;
}

body .full-width-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

body .full-width-box.light-grey-bg-one {
  background: #090909;
  background-size: cover;
}

body .full-width-box.light-grey-bg-two {
  /* background: transparent url(../images/grey-light-mask-bg-two.jpg) no-repeat 0 0; */
  background-size: cover;
  background: #090909;
}

body .full-width-box.light-grey-bg-two:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 75%;
  height: 100%;
  /* background: linear-gradient(250.62deg, #fff 43.3%, hsla(0, 0%, 100%, 0) 104.92%); */
  z-index: 1;
  opacity: 0.6;
}

@media (max-width: 1666px) {
  body .full-width-box.light-grey-bg-two:before {
    width: 100%;
  }
}

body .full-width-box.light-grey-bg-two .container {
  z-index: 1;
}

body .full-width-box.light-grey-bg-three {
  background: transparent url(../images/grey-light-mask-bg-three.png) no-repeat
    0 0;
  background-size: cover;
}

body .full-width-box.light-grey-bg-four {
  background: transparent url(../images/grey-light-mask-bg-four.png) no-repeat 0
    0;
  background-size: cover;
}

body .full-width-box.extra-space {
  padding-top: 60px;
  padding-bottom: 50px;
}

@media (max-width: 767px) {
  body .full-width-box.extra-space {
    padding-top: 120px;
    padding-bottom: 50px;
            margin-top: -5px;
  }
  
  .ani_none.animate__fadeInUp {animation:none !important;        animation-name: none !important;}
}

body .full-width-box.extra-space-two {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #000;
}

@media (max-width: 767px) {
  body .full-width-box.extra-space-two {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

body .full-width-box.extra-space-three {
  padding-top: 60px;
  padding-bottom: 70px;
}

@media (max-width: 767px) {
  body .full-width-box.extra-space-three {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

body .full-width-box.extra-space-four {
  padding-top: 70px;
  padding-bottom: 70px;
  background: #090909;
}

@media (max-width: 767px) {
  body .full-width-box.extra-space-four {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

body .full-width-box.extra-space-five {
  padding-top: 70px;
  padding-bottom: 50px;
  background: #000;
}

@media (max-width: 767px) {
  body .full-width-box.extra-space-five {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

body .full-width-box .slider-box ul {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 30px);
  margin: 0 -15px;
}

body .full-width-box .slider-box ul li {
  width: calc(16.6666666667% - 30px);
  height: 209px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 15px;
  border-radius: 25px;
  overflow: hidden;
}

body .full-width-box.full-height {
  height: 100%;
}

body .full-width-box .col-33-33 {
  /* padding: 30px 25px; */
  /* background: #000000e0; */
  /* margin: 15px; */
  /* border: solid 1px #e6fe85; */
  /* border-radius: 15px; */
  /* text-align: center; */
  padding: 0 25px;
}

body .block-img-box .boxes-area {
  padding-left: 114px;
  padding-right: 100px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

@media (max-width: 1600px) {
  body .block-img-box .boxes-area {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1275px) {
  body .block-img-box .boxes-area {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  body .block-img-box .boxes-area {
    padding-left: 0;
    padding-right: 0;
  }
}

body .block-img-box .boxes-area .boxes-area-item {
  width: calc(25% - 26.25px);
  height: 152px;
  margin-right: 35px;
  margin-bottom: 35px;
}

body .block-img-box .boxes-area .boxes-area-item:nth-child(4n + 0) {
  margin-right: 0;
}

@media (max-width: 640px) {
  body .block-img-box .boxes-area .boxes-area-item {
    width: calc(50% - 15px);
  }

  body .block-img-box .boxes-area .boxes-area-item:nth-child(odd) {
    margin-left: 10px;
    margin-right: 10px;
  }

  body .block-img-box .boxes-area .boxes-area-item:nth-child(2n) {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media (max-width: 992px) {
  body .block-img-box .box-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

body .block-img-box .swiper-featured {
  width: 100%;
}

body .logo-img-box .boxes-area {
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  width: 100%;
}

@media (max-width: 1400px) {
  body .logo-img-box .boxes-area {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1200px) {
  body .logo-img-box .boxes-area {
    padding-left: 0;
    padding-right: 0;
  }
}

body .logo-img-box .boxes-area-item {
  width: 140px;
  height: 85px;
  /* margin-bottom: 45px; */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 1920px) {
  body .logo-img-box .boxes-area-item {
    width: calc(16.67% - 62px);
    margin-right: 62px;
  }

  body .logo-img-box .boxes-area-item:nth-child(6n + 0) {
    margin-right: 0;
  }

  body .logo-img-box .boxes-area-item:nth-child(1n + 5) {
    margin-bottom: 0;
  }
}

@media (max-width: 1920px) {
  body .logo-img-box .boxes-area-item {
    width: calc(19.67% - 30px);
    margin-right: 0;
  }

  body .logo-img-box .boxes-area-item:nth-child(6n + 0) {
    margin-right: 0;
  }
}

@media (max-width: 1080px) {
  body .logo-img-box .boxes-area-item:nth-child(2n),
  body .logo-img-box .boxes-area-item:nth-child(odd) {
    margin-right: 15px;
    margin-left: 15px;
    width: calc(25% - 30px);
  }
}

@media (max-width: 991px) {
  body .logo-img-box .boxes-area-item:nth-child(2n),
  body .logo-img-box .boxes-area-item:nth-child(odd) {
    margin-right: 15px;
    margin-left: 15px;
    width: calc(33.33% - 30px);
  }
}

@media (max-width: 640px) {
  body .logo-img-box .boxes-area-item:nth-child(odd) {
    margin-right: 15px;
    margin-left: 0;
    width: calc(50% - 15px);
  }

  body .logo-img-box .boxes-area-item:nth-child(2n) {
    margin-left: 15px;
    margin-right: 0;
    width: calc(50% - 15px);
  }
}

body .rating-img-box .boxes-area {
  padding-left: 130px;
  padding-right: 130px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  width: 100%;
}

@media (max-width: 640px) {
  body .rating-img-box .boxes-area {
    padding-left: 0;
    padding-right: 0;
  }
}

body .rating-img-box .swiper-slide {
  position: relative;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

body .rating-img-box .swiper-slide:before {
  content: "";
  position: absolute;
  bottom: -9px;
  right: 5px;
  z-index: 0;
  width: 95%;
  height: 138px;
  background: #e1ff6a;
  border-radius: 30px;
  transform: matrix(0.99, 0.11, -0.13, 0.99, 0, 0);
}

body .our-portfolio-tabs-section .boxes-area {
  padding-left: 130px;
  padding-right: 130px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

@media (max-width: 1750px) {
  body .our-portfolio-tabs-section .boxes-area {
    padding-left: 0;
    padding-right: 0;
  }
}

body .our-portfolio-tabs-section .swiper {
  padding-bottom: 0;
  height: 100%;
}

@media (min-width: 1270px) {
  body .our-portfolio-tabs-section .portfolio-tabs-wrapper {
    width: 28.5%;
  }
}

@media (max-width: 1269px) {
  body .our-portfolio-tabs-section .portfolio-tabs-wrapper {
    width: 25%;
  }
}

@media (max-width: 991px) {
  body .our-portfolio-tabs-section .portfolio-tabs-wrapper {
    width: 100%;
    margin-bottom: 50px;
  }
}

body .our-portfolio-tabs-section .portfolio-tabs-wrapper .swiper-wrapper {
  flex-direction: column;
}

body .our-portfolio-tabs-section .portfolio-tabs-wrapper .swiper-slide {
  border-bottom: 1px solid #dedede;
  width: 100% !important;
}

body
  .our-portfolio-tabs-section
  .portfolio-tabs-wrapper
  .swiper-slide
  .pot-tabs-box
  h5 {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
  color: #a3a3a3;
  cursor: pointer;
}

@media (min-width: 1270px) {
  body
    .our-portfolio-tabs-section
    .portfolio-tabs-wrapper
    .swiper-slide
    .pot-tabs-box
    h5 {
    padding: 30px 40px;
  }
}

@media (max-width: 1269px) {
  body
    .our-portfolio-tabs-section
    .portfolio-tabs-wrapper
    .swiper-slide
    .pot-tabs-box
    h5 {
    padding: 15px 20px;
  }
}

body
  .our-portfolio-tabs-section
  .portfolio-tabs-wrapper
  .swiper-slide.swiper-slide-thumb-active {
  background: linear-gradient(
    90deg,
    #f2f2f2 21.72%,
    hsla(0, 0%, 95%, 0) 248.61%
  );
}

body
  .our-portfolio-tabs-section
  .portfolio-tabs-wrapper
  .swiper-slide.swiper-slide-thumb-active
  h5 {
  color: #303030;
}

body .our-portfolio-tabs-section .portfolio-tabs-content-wrapper {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 1270px) {
  body .our-portfolio-tabs-section .portfolio-tabs-content-wrapper {
    width: 71.5%;
  }
}

@media (max-width: 1269px) {
  body .our-portfolio-tabs-section .portfolio-tabs-content-wrapper {
    width: 75%;
  }
}

@media (max-width: 991px) {
  body .our-portfolio-tabs-section .portfolio-tabs-content-wrapper {
    width: 100%;
  }
  .anniversarySection .anniversaryWrap .anniversaryContent a {
    display: none;
  }
}

body
  .our-portfolio-tabs-section
  .portfolio-tabs-content-wrapper
  .portfolio-img-box {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

@media (max-width: 991px) {
  body
    .our-portfolio-tabs-section
    .portfolio-tabs-content-wrapper
    .portfolio-img-box {
    width: 100%;
    margin-bottom: 25px;
  }
}

body
  .our-portfolio-tabs-section
  .portfolio-tabs-content-wrapper
  .portfolio-img-box
  .portfolio-img-box-wrapper {
  width: 100%;
  position: relative;
}

@media (min-width: 1560px) {
  body
    .our-portfolio-tabs-section
    .portfolio-tabs-content-wrapper
    .portfolio-img-box
    .portfolio-img-box-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 1559px) {
  body
    .our-portfolio-tabs-section
    .portfolio-tabs-content-wrapper
    .portfolio-img-box
    .portfolio-img-box-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

body
  .our-portfolio-tabs-section
  .portfolio-tabs-content-wrapper
  .portfolio-img-box
  .portfolio-img-box-wrapper
  .swiper {
  padding-bottom: 50px;
}

body
  .our-portfolio-tabs-section
  .portfolio-tabs-content-wrapper
  .portfolio-img-box
  .portfolio-img-box-wrapper
  .swiper
  .swiper-pagination {
  bottom: 0;
}

body
  .our-portfolio-tabs-section
  .portfolio-tabs-content-wrapper
  .portfolio-img-box
  .portfolio-img-box-wrapper
  .animated-img-box {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  height: 100%;
  margin: 0 auto;
}

@media (max-width: 360px) {
  body
    .our-portfolio-tabs-section
    .portfolio-tabs-content-wrapper
    .portfolio-img-box
    .portfolio-img-box-wrapper
    .animated-img-box {
    min-height: 250px;
    max-height: 250px;
  }
}

body
  .our-portfolio-tabs-section
  .portfolio-tabs-content-wrapper
  .portfolio-img-box
  .portfolio-img-box-wrapper
  .animated-img-box
  .animated-img-app {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  position: relative;
  height: 100%;
  overflow: hidden;
  bottom: 0;
}

body
  .our-portfolio-tabs-section
  .portfolio-tabs-content-wrapper
  .portfolio-img-box
  .portfolio-img-box-wrapper
  .animated-img-box
  .animated-img-app:before {
  content: "";
  width: 100%;
  max-width: 300px;
  background: radial-gradient(
    61.32% 61.65% at 77.67% 46%,
    #262f56 0,
    #171a27 100%
  );
  border-radius: 100%;
  position: absolute;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}

@media (min-width: 992px) {
  body
    .our-portfolio-tabs-section
    .portfolio-tabs-content-wrapper
    .portfolio-img-box
    .portfolio-img-box-wrapper
    .animated-img-box
    .animated-img-app:before {
    height: 300px;
    bottom: 0;
  }
}

@media (max-width: 991px) {
  body
    .our-portfolio-tabs-section
    .portfolio-tabs-content-wrapper
    .portfolio-img-box
    .portfolio-img-box-wrapper
    .animated-img-box
    .animated-img-app:before {
    height: 300px;
    bottom: 0;
  }
}

@media (max-width: 360px) {
  body
    .our-portfolio-tabs-section
    .portfolio-tabs-content-wrapper
    .portfolio-img-box
    .portfolio-img-box-wrapper
    .animated-img-box
    .animated-img-app:before {
    height: 100%;
    bottom: 0;
  }
}

body
  .our-portfolio-tabs-section
  .portfolio-tabs-content-wrapper
  .portfolio-img-box
  .portfolio-img-box-wrapper
  .animated-img-box
  .animated-img-app
  img {
  position: relative;
  bottom: -23px;
}

body
  .our-portfolio-tabs-section
  .portfolio-tabs-content-wrapper
  .portfolio-detail-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

@media (min-width: 992px) {
  body
    .our-portfolio-tabs-section
    .portfolio-tabs-content-wrapper
    .portfolio-detail-box {
    width: 40%;
  }
}

body
  .our-portfolio-tabs-section
  .portfolio-tabs-content-wrapper
  .portfolio-detail-box
  h3 {
  font-size: 20px;
  line-height: 110%;
  color: #e1ff6a;
  margin-bottom: 25px;
}

body
  .our-portfolio-tabs-section
  .portfolio-tabs-content-wrapper
  .portfolio-detail-box
  a {
  margin-top: 15px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  display: inline-block;
}

.h-100vh {
  height: 100vh;
}

.tech {
  text-align: center;
}

.tech .item {
  display: inline-block;
  background: #000;
  margin: 3px 3px;
  width: 25%;
}

.tech .item img {
  filter: grayscale(100%);
  transition: 0.3s;
}

.tech .item:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-20px);
  }

  100% {
    transform: translatey(0px);
  }
}

.eme {
  
  margin-top: 80px;
}

.serbx .img-txt-list-box--item {
  padding: 30px 25px !important;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out !important;
  transition: 0.5s ease-in-out !important;
  background: #000000e0;
  margin: 10px;
  border-radius: 15px;
  text-align: center;
}

.serbx .img-txt-list-box--item:hover {
  -webkit-transform: scale(1.1) !important;
  transform: scale(1.1) !important;
}

/* .serbx .img-txt-list-box--item:hover h4, .serbx .img-txt-list-box--item:hover p{
color: #000;
}

.serbx .img-txt-list-box--item:hover img {
    filter: brightness(0.1);
} */
.iti-flag.pt {
  padding: 0;
}

.block-img-box .bx {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 !important;
}

.block-img-box .bx figure {
}

.block-img-box .bx figure:after {
  content: "";
  background: #000000a6;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: block;
  transition: 0.5s;
  opacity: 0;
}

.block-img-box .bx figure img {
}

.block-img-box .bx article {
  position: absolute;
  bottom: -420px;
  padding: 5px 20px;
  transition: 0.5s all;
}

.block-img-box .bx article p {
  color: #fff;
}

.block-img-box .bx:hover article {
  bottom: 0;
}

.block-img-box .bx:hover figure:after {
  opacity: 1;
}

.block-img-box .bx:hover article p {
  font-size: 13px;
}

@media (max-width: 768px) {
  .h-100vh {
    height: auto;
  }

  .mainpera {
    top: auto;
  }

  .tech .item {
    display: inline-block;
    background: #000;
    margin: 3px 3px;
    width: 47%;
  }

  .menu-link,
  br {
    display: block !important;
  }

  .our-industry h3 {
    font-size: 2.5rem !important;
    line-height: 106%;
    padding-top: 15px;
  }

  .eme {
    margin-top: 0;
  }

  .slider-box {
    margin-top: 0;
  }

  .serbx .img-txt-list-box--item {
    padding: 25px 10px !important;
  }

  .serbx .content-box.heading-txt {
    margin-bottom: 0;
  }

  .slider-box .content-box.heading-txt {
    margin-bottom: 0;
    margin-top: 40px;
  }

  .content-box.heading-txt h6 {
    font-size: 19px;
  }

  .content-box.heading-txt--gradient h2 {
    font-size: 2rem;
  }

  .img-txt-overly-box .itob-box--txt-box-inn h2 {
    font-size: 2rem;
  }

  a.txt-circle-link span {
    font-size: 20px;
  }

  .extra-space-four .content-box.heading-txt--fix-width h2 {
    font-size: 2rem;
  }

  .extra-space-four .content-box.heading-txt {
    margin-bottom: 20px;
  }

  .extra-space-four .block-img-box .bx article p {
    line-height: 20px;
  }

  .content-box.heading-txt p {
    font-size: 13px;
  }

  .light-grey-bg-four .img-txt-list-box--text p {
    font-size: 13px;
    line-height: 22px;
  }

  .mobile_padding {
    padding: 0 25px;
  }

  body .two-col-box.img-form-box .form-box h3 {
    padding-right: 0;
    margin: 0 auto;
    font-size: 2.8rem;
    text-align: center;
    letter-spacing: 3px;
  }

  body .two-col-box.img-form-box .form-box p {
    text-align: center;
    margin: 0 auto 1.5em;
    font-size: 13px;
    line-height: 22px;
  }

  a.txt-circle-link {
    margin-top: 4.1875em;
  }

  .portfolios .block-img-box .bx article p {
    font-size: 13px;
    line-height: 18px;
  }
}

.form-box {
  position: relative;
  overflow: hidden;
}

.blur-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background: #1c1c1c87;
  filter: blur(50px);
  overflow: hidden;
}

.form-box .fieldset h3 {
  font-size: 25px !important;
  text-transform: uppercase !important;
  margin: auto;
}

.form-box p {
  text-transform: uppercase;
  text-align: center;
}

.follow-us .scroll-downBtn {
  color: white;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none !important;
}

.follow-us {
  width: 100%;
  padding: 100px 0;

  overflow: hidden;

  background: #000;

  color: white;

  z-index: 1;

  position: relative;
}

.follow-us .col-lg-6 {
  flex: 0 0 auto;
  width: 50%;
}
.follow-us .d-flex {
  display: flex;
}

.follow-us .justify-content-end {
  justify-content: end !important;
}

.follow-us .follow-heading {
  display: flex;
}

.follow-us .follow-heading h2 {
  font-size: 9rem;

  font-weight: 400;

  line-height: 1;

  text-transform: uppercase;

  padding-top: 30px;
}

.follow-us .follow-heading .follow-gredient {
  background: linear-gradient(to right, #fff, #e1ff6a 60%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.follow-us .follow-heading span {
  margin: 35px 70px;

  background: transparent;

  border: 1px solid #fff;

  width: 130px;

  line-height: 130px;

  height: 130px;

  border-radius: 50%;

  text-align: center;
}

.follow-us .follow-heading span img {
  height: 90px;

  width: 90px;
  margin-top: 20px;
}

.follow-social {
  margin-top: 30px;
}

.follow-social li {
  position: relative;
}

.follow-social li,
.follow-social ul {
  list-style: none;

  margin: 0;

  padding: 0;
}

.follow-social li a {
  font-size: 26px;

  text-decoration: none;

  color: #fff;
}

.follow-social li {
  text-transform: uppercase;

  padding: 1.6rem 4rem;

  border-bottom: 1px solid #554f51;
}

.follow-social li:first-child {
  border-top: 1px solid #554f51;
}

.follow-social li a img {
  height: 20px;

  margin-top: 5px;
}

.hover-slider {
  display: flex;

  flex-flow: column;

  align-items: center;
}

.hover-slider {
  position: absolute;

  top: 0;

  z-index: 9999;

  left: 0;

  opacity: 0;

  transition: opacity 0.3s;
}

.hover-slider .highway-slider {
  display: flex;

  justify-content: center;

  width: 100%;
}

.hover-slider .highway-slider .highway-barrier {
  overflow: hidden;

  position: relative;
}

.highway-slider .highway-lane {
  display: flex;
}

.hover-slider .highway-slider .highway-lane .highway-car {
  flex: 1;

  display: flex;

  justify-content: center;

  align-items: center;

  background: #e0fd60;

  color: #000;
}

.hover-slider .highway-slider .highway-lane .highway-car span {
  font-size: 1.6rem;

  font-weight: 500;
  color: #000;
}

@keyframes translateinfinite {
  100% {
    transform: translateX(calc(-1500px));
  }
}

#infinite .highway-barrier {
  transform: scaleY(0);

  background: #e0fd60;

  transition: transform 0.8s;
}

#infinite .highway-barrier::before,
#infinite .highway-barrier::after {
  content: " ";

  position: absolute;

  z-index: 9;

  height: 100%;
}

#infinite .highway-barrier::before {
  top: 0;

  left: 0;

  background: #e0fd60;

  transform: scaleY(0);

  background: #e0fd60;

  transition: transform 0.5s;
}

#infinite .highway-barrier::after {
  top: 0;

  right: 0;

  background: #e0fd60;
}

#infinite .highway-barrier .highway-lane {
  width: calc(3000px);
}

#infinite .highway-barrier .highway-lane .highway-car {
  width: 180px;

  animation: translateinfinite 15s linear infinite;

  border: 0;
}

.instagram:hover #infinite .highway-barrier::before,
.instagram:hover #infinite .highway-barrier {
  transform: scaleY(1);

  transition-duration: 0.5s;
}

.instagram:hover .hover-slider {
  opacity: 1;
}

.linkedin:hover #infinite .highway-barrier::before,
.linkedin:hover #infinite .highway-barrier {
  transform: scaleY(1);

  transition-duration: 0.5s;
}

.linkedin:hover:hover .hover-slider {
  opacity: 1;
}

.facebook:hover #infinite .highway-barrier::before,
.facebook:hover #infinite .highway-barrier {
  transform: scaleY(1);

  transition-duration: 0.5s;
}

.facebook:hover:hover .hover-slider {
  opacity: 1;
}

.twitter:hover #infinite .highway-barrier::before,
.twitter:hover #infinite .highway-barrier {
  transform: scaleY(1);

  transition-duration: 0.5s;
}

.twitter:hover .hover-slider {
  opacity: 1;
}

.get-in-touch {
  width: 100%;
  background: #000;
}

.anniversarySection {
  height: 750px;
  flex-wrap: nowrap;
  padding: 0;
}

.position-relative {
  position: relative;
  overflow: hidden;
}

.tech .slick-prev,
.tech .slick-next {
  top: auto !important;
  bottom: -30px !important;
}

.tech .slick-prev:before,
.tech .slick-next:before {
  color: #fff !important;
}

.tech .slick-prev {
  left: 40% !important;
}

.tech .slick-next {
  right: 40% !important;
}

.boces .slick-prev,
.boces .slick-next {
  top: auto !important;
  bottom: -30px !important;
}

.boces .slick-prev:before,
.boces .slick-next:before {
  color: #fff !important;
}

.boces .slick-prev {
  left: 40% !important;
}

.boces .slick-next {
  right: 40% !important;
}

.sldier-industry {
  padding-bottom: 50px;
}

.sldier-industry .slick-prev,
.sldier-industry .slick-next {
  top: auto !important;
  bottom: 25px !important;
}

.sldier-industry .slick-prev:before,
.sldier-industry .slick-next:before {
  color: #fff !important;
}

.sldier-industry .slick-prev {
  left: 40% !important;
}

.sldier-industry .slick-next {
  right: 40% !important;
}

.boxes-sliders .slick-prev,
.boxes-sliders .slick-next {
  top: auto !important;
  bottom: -20px !important;
}

.boxes-sliders .slick-prev:before,
.boxes-sliders .slick-next:before {
  color: #fff !important;
}

.boxes-sliders .slick-prev {
  left: 40% !important;
}

.boxes-sliders .slick-next {
  right: 40% !important;
}

.industry-slider-mobile .slick-prev,
.industry-slider-mobile .slick-next {
  top: auto !important;
  bottom: -20px !important;
}

.industry-slider-mobile .slick-prev:before,
.industry-slider-mobile .slick-next:before {
  color: #fff !important;
}

.industry-slider-mobile .slick-prev {
  left: 40% !important;
}

.industry-slider-mobile .slick-next {
  right: 40% !important;
}

.hover-slider .highway-slider .highway-lane .highway-car span img {
  height: 100%;
}

@media (max-width: 767px) {

    .follow-us {
        padding: 50px 0;
    }
  .follow-us .follow-heading {
    align-items: center;
  }
  .follow-us .follow-heading h2 {
    font-size: 2.6rem;
    padding-right: 10px !important;
  }

  .follow-us .follow-heading span {
    width: 60px;
    height: 60px;
    line-height: 55px;
    margin: 20px 0 0;
  }

  .follow-us .follow-heading span img {
    height: 40px;
    width: 40px;
    margin-top: 10px;
  }

  .hover-slider .highway-slider {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  #infinite .highway-barrier .highway-lane .highway-car {
    width: 100px;
  }

  .follow-social li a {
    font-size: 16px;
  }
  .follow-social li {
    padding: 1.6rem 2rem;
  }

  .hover-slider .highway-slider .highway-lane .highway-car span {
    font-size: 1rem;
  }

  .hover-slider .highway-slider .highway-lane .highway-car span img {
    height: 14px;
  }

  .follow-social li a img {
    height: 14px;
  }

  .follow-social li a > div {
    width: 50%;
  }

  .our_industry {
    display: none !important;
  }
}

.get-in-touch .get-in-touch-content .subtitle {
  color: #000;
}
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 100px;
  right: 40px;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
}
.whatsapp_btns {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 24px;
  padding: 12px 20px;
  max-width: max-content;
  cursor: pointer;
  font-size: 16px;
  margin-left: 10px;
}
.whatsapp_btns:hover {
  border-color: #E1FF6A;
  color: #E1FF6A;
}
