@charset "UTF-8";
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
: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-01s {
  animation-delay: 0.1s;
  animation-delay: var(--animate-delay);
}
.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 bounce {
  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: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  0%,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  animation-name: flash;
}
/*----------Custom----------*/
/*@keyframes device__spin {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-100px);
    }

    100% {
        transform: translateY(0);
    }
}

.animate__device__spin {*/
/*transform-origin: 0% 100%;*/
/*-webkit-animation-name: device__spin;
    animation-name: width-process;
    animation-timing-function: linear;
}*/
.animate__bounce-2 {
  animation-name: bounce-2;
  animation-timing-function: ease;
}
@keyframes bounce-2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes width-process {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.animate__width-process_left {
  transform-origin: 0% 100%;
  animation-name: width-process;
  transform-origin: right;
}
.animate__width-process_right {
  transform-origin: 0% 100%;
  animation-name: width-process;
  transform-origin: left;
}
@keyframes height-process {
  100% {
    height: 100%;
  }
  0% {
    height: 0%;
  }
}
.animate__height-process {
  animation-name: height-process;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
  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: rubberBand;
}
@keyframes shakeX {
  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: shakeX;
}
@keyframes shakeY {
  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: shakeY;
}
@keyframes headShake {
  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: headShake;
}
@keyframes swing {
  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: swing;
}
@keyframes tada {
  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: tada;
}
@keyframes wobble {
  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: wobble;
}
@keyframes jello {
  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: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  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: heartBeat;
  animation-duration: 1.3s;
  animation-duration: calc(var(--animate-duration)*1.3);
  animation-timing-function: ease-in-out;
}
@keyframes backInDown {
  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: backInDown;
}
@keyframes backInLeft {
  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: backInLeft;
}
@keyframes backInRight {
  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: backInRight;
}
@keyframes backInUp {
  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: backInUp;
}
@keyframes backOutDown {
  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: backOutDown;
}
@keyframes backOutLeft {
  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: backOutLeft;
}
@keyframes backOutRight {
  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: backOutRight;
}
@keyframes backOutUp {
  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: backOutUp;
}
@keyframes bounceIn {
  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: bounceIn;
}
@keyframes bounceInDown {
  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: bounceInDown;
}
@keyframes bounceInLeft {
  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: bounceInLeft;
}
@keyframes bounceInRight {
  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: bounceInRight;
}
@keyframes bounceInUp {
  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: bounceInUp;
}
@keyframes bounceOut {
  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: bounceOut;
}
@keyframes bounceOutDown {
  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: bounceOutDown;
}
@keyframes bounceOutLeft {
  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: bounceOutLeft;
}
@keyframes bounceOutRight {
  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: bounceOutRight;
}
@keyframes bounceOutUp {
  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: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}
@keyframes flip {
  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: flip;
}
@keyframes flipInX {
  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: flipInX;
}
@keyframes flipInY {
  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: flipInY;
}
@keyframes flipOutX {
  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: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  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: flipOutY;
}
@keyframes lightSpeedInRight {
  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: lightSpeedInRight;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
  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: lightSpeedInLeft;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}
@keyframes hinge {
  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: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  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: jackInTheBox;
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  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: zoomInDown;
}
@keyframes zoomInLeft {
  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: zoomInLeft;
}
@keyframes zoomInRight {
  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: zoomInRight;
}
@keyframes zoomInUp {
  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: zoomInUp;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  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: zoomOutDown;
  transform-origin: center bottom;
}
@keyframes zoomOutLeft {
  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: zoomOutLeft;
  transform-origin: left center;
}
@keyframes zoomOutRight {
  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: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  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: zoomOutUp;
  transform-origin: center bottom;
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}
.header {
  padding: 0px 3%;
}
.header .header-layout {
  box-shadow: 0px 8px 30px rgba(138, 128, 128, 0.2);
  background-color: white;
}
.header .header-layout .nav-wrap-background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 81;
}
.header nav {
  z-index: 99;
}
.header nav .navbar-brand {
  height: 54px !important;
  padding-top: 0px !important;
  position: relative !important;
}
.header nav .navbar-brand img {
  height: 54px !important;
  position: absolute !important;
  top: 0 !important;
}
.header nav .navbar-toggler {
  border: unset !important;
  font-size: unset !important;
  margin-left: 15px;
  text-decoration: none;
}
.header nav .navbar-toggler:hover {
  border: unset !important;
  text-decoration: unset !important;
}
.header nav .navbar-toggler:focus {
  box-shadow: unset !important;
}
.header nav .navbar-nav {
  color: white;
  z-index: 99;
}
.header nav .navbar-nav .nav-item {
  z-index: 99;
  padding-left: 14px;
  padding-right: 14px;
}
.header nav .navbar-nav .nav-item .nav-link {
  color: #242424;
  z-index: 99;
  font-size: calc(1.3vw);
}
.header nav .navbar-nav .nav-item .nav-link:hover {
  color: #465CA7;
}
.header nav .navbar-nav .dropdown-menu {
  visibility: hidden;
  z-index: 99;
}
.header nav .navbar-nav .service-link::after {
  display: none;
}
@media only screen and (max-width: 991px) {
  .header nav .navbar-nav .nav-item .nav-link {
    font-size: 1rem;
  }
  .header nav .navbar-nav .nav-item .nav-link:hover {
    background-color: #171515;
  }
  .header nav .navbar-nav .dropdown-menu {
    visibility: visible;
    background: black;
    border-top: 3px solid #171717;
    border-bottom: 3px solid #171717;
  }
  .header nav .navbar-nav .dropdown-menu li a {
    color: white;
    text-align: center;
  }
  .header nav .navbar-nav .dropdown-menu li a:hover {
    background-color: #171515;
  }
}
.header nav .nav-link-Join_us {
  background: #465CA7 !important;
  color: white!important;
  text-decoration: none!important;
  border-radius: 36px!important;
  padding: 10px 36px!important;
  margin-left: auto;
}
.header nav .nav-link-Join_us:hover {
  color: white!important;
}
.header nav .link_Join_us_m {
  display: none;
}
@media only screen and (max-width: 1400px) {
  .header nav .navbar-nav {
    margin-right: -65px;
  }
  .header nav .navbar-brand {
    position: relative !important;
    height: 35px !important;
    width: 20%;
  }
  .header nav .navbar-brand img {
    position: absolute !important;
    top: 0 !important;
    left: -50px !important;
    width: auto;
    height: 35px !important;
  }
}
@media only screen and (max-width: 991px) {
  .header nav .navbar-nav {
    text-align: center !important;
    margin-right: 0px !important;
  }
  .header nav .navbar-nav .nav-item:hover {
    background-color: unset;
  }
  .header nav .navbar-nav .nav-item .nav-link:hover {
    background-color: unset;
  }
  .header nav .navbar-toggler {
    padding: 0px 0px;
    font-size: unset !important;
  }
  .header nav .navbar-brand img {
    left: 0px !important;
  }
  .header nav .nav-link-Join_us {
    display: none;
  }
  .header nav .link_Join_us_m {
    display: unset;
    padding: 5px 36px!important;
  }
}
@media only screen and (max-width: 768px) {
  .header nav .navbar-brand img {
    width: auto !important;
    max-height: 32px !important;
  }
}
@media only screen and (max-width: 404px) {
  .header nav .container-lg {
    padding: 0px 0px !important;
  }
  .header nav .navbar-brand {
    margin-right: 0px;
    width: 25%;
  }
  .header nav .navbar-brand img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 415px) {
  .header .header-layout {
    padding: 0px 0px !important;
  }
}
@media only screen and (max-width: 1200px) {
  .home .container-lg {
    padding: 0px 0px !important;
  }
}
.home .home-wrapper {
  position: relative;
}
.home .home-wrapper .home-content {
  padding-top: 86px;
}
.home .home-wrapper .home-content .row {
  height: 100%;
}
.home .home-wrapper .home-content .home-img-wrap {
  padding-top: 98px;
}
.home .home-wrapper .home-content .home-img {
  width: 100%;
}
.home .home-wrapper .home-content .home-text-wrap {
  display: flex;
  align-items: center;
}
.home .home-wrapper .home-content .home-DMV-wrap {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.home .home-wrapper .home-content .home-DMV-wrap .home-DMV {
  position: absolute;
  top: -90px;
  right: 30px;
  display: none;
}
.home .home-wrapper .home-content .home-DMV-wrap-m {
  display: none;
}
.home .home-wrapper .home-content .home-text {
  position: relative;
  margin-top: -50px;
}
.home .home-wrapper .home-content .home-text h1 {
  white-space: pre-line !important;
}
.home .home-wrapper .home-content .home-text .main-title {
  font-style: normal;
  font-weight: 800;
  font-size: 4vw;
  line-height: 141.69%;
  letter-spacing: 0.075em;
  color: #465CA7;
}
.home .home-wrapper .home-content .home-text .text-desc {
  font-style: normal;
  font-weight: 400;
  font-size: 2.93vw;
  line-height: 141.69%;
  color: #242424;
}
@media only screen and (max-width: 1399px) {
}
@media only screen and (max-width: 1199px) {
}
@media only screen and (max-width: 991px) {
  .home .home-wrapper .home-img {
    margin-top: 10%;
  }
  .home .home-wrapper .home-text {
    margin-top: 0px !important;
  }
  .home .home-wrapper .home-text .main-title {
    font-size: 9.7vw !important;
  }
  .home .home-wrapper .home-text .text-desc {
    font-size: 7.1vw !important;
  }
  .home .home-wrapper .home-DMV-wrap {
    display: none!important;
  }
  .home .home-wrapper .home-DMV-wrap-m {
    display: flex!important;
    z-index: 6;
  }
  .home .home-wrapper .home-DMV-wrap-m .home-DMV {
    top: 0px!important;
    left: 0px!important;
    width: 20%!important;
  }
}
@media only screen and (max-width: 585px) {
  .home .home-wrapper .nav-link-Join_us {
    padding: 6px 36px!important;
  }
  .home .home-wrapper .home-text .main-title {
    font-size: 9.2vw !important;
    margin-bottom: 0px!important;
  }
  .home .home-wrapper .home-text .text-desc {
    font-size: 6.7vw !important;
    padding-top: 12px;
    display: block;
  }
}
@media only screen and (max-width: 1200px) {
  .about .container-lg {
    padding: 0px 0px !important;
  }
}
.about .about-wrapper {
  position: relative;
}
.about .about-wrapper .about-content {
  padding-top: 86px;
}
.about .about-wrapper .about-content .row {
  height: 100%;
}
.about .about-wrapper .about-content .about-text h1 {
  white-space: pre-line !important;
}
.about .about-wrapper .about-content .about-text .main-title {
  font-style: normal;
  font-weight: 400;
  font-size: 46px;
  line-height: 141.69%;
  color: #242424;
}
.about .about-wrapper .about-content .about-img {
  width: 100%;
}
@media only screen and (max-width: 1600px) {
  .about .about-wrapper .about-text .main-title {
    font-size: 36px!important;
  }
}
@media only screen and (max-width: 1199px) {
  .about .about-wrapper .about-text .main-title {
    font-size: 24px!important;
  }
}
@media only screen and (max-width: 1200px) {
  .benefits .container-lg {
    padding: 0px 0px !important;
  }
}
.benefits .benefits-wrapper {
  position: relative;
}
.benefits .benefits-wrapper .benefits-content {
  padding-top: 86px;
}
.benefits .benefits-wrapper .benefits-content .row {
  height: 100%;
}
.benefits .benefits-wrapper .benefits-content .benefits-text h1 {
  white-space: pre-line !important;
}
.benefits .benefits-wrapper .benefits-content .benefits-text .main-title {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  margin-bottom: 0px;
  text-transform: inherit!important;
  /* DigiTag/Black */
  color: #242424;
}
.benefits .benefits-wrapper .benefits-content .benefits-img-wrap {
  margin-top: 112px;
  margin-bottom: 112px;
}
.benefits .benefits-wrapper .benefits-content .benefits-img {
  width: 76px;
}
.benefits .benefits-wrapper .benefits-content .benefits-img-title {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  margin-top: 16px;
  color: #242424;
}
@media only screen and (max-width: 1600px) {
  .benefits .benefits-wrapper .main-title {
    font-size: 38px!important;
  }
}
@media only screen and (max-width: 1199px) {
  .benefits .benefits-wrapper .main-title {
    font-size: 32px!important;
  }
  .benefits .benefits-wrapper .benefits-img-wrap {
    margin-top: 36px!important;
    margin-bottom: 36px!important;
  }
  .benefits .benefits-wrapper .benefits-img-title {
    font-size: 16px!important;
  }
}
@media only screen and (max-width: 1200px) {
  .solutions .container-lg {
    padding: 0px 0px !important;
  }
}
.solutions .container-fluid {
  background-image: url("../img/Solutions/Solutions.webp");
  background-size: cover;
}
.solutions .solutions-wrapper {
  position: relative;
  color: white!important;
}
.solutions .solutions-wrapper .solutions-content {
  padding-top: 86px;
  padding-bottom: 86px;
}
.solutions .solutions-wrapper .solutions-content .row {
  height: 100%;
}
.solutions .solutions-wrapper .solutions-content .solutions-text h1 {
  white-space: pre-line !important;
}
.solutions .solutions-wrapper .solutions-content .solutions-text .main-title {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 62px;
}
.solutions .solutions-wrapper .solutions-content .solutions-titles-wrap {
  border-bottom: 2px solid #7086BD;
}
.solutions .solutions-wrapper .solutions-content .solutions-titles-wrap .solutions-titles {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  margin-bottom: 8px;
}
.solutions .solutions-wrapper .solutions-content .solutions-text-wrap .solutions-text {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  margin-top: 36px;
}
@media only screen and (max-width: 1600px) {
  .solutions .main-title {
    font-size: 38px!important;
    margin-bottom: 8px!important;
  }
}
@media only screen and (max-width: 1199px) {
  .solutions .main-title {
    font-size: 32px!important;
    margin-bottom: 0px!important;
    line-height: 150%!important;
  }
  .solutions .solutions-text .main-title:first-of-type {
    display: inline-block;
  }
  .solutions .solutions-text .main-title:nth-of-type(2) {
    display: inline-block;
  }
  .solutions .solutions-text {
    margin-bottom: 32px!important;
  }
  .solutions .solutions-titles-wrap .solutions-titles {
    font-size: 24px!important;
  }
  .solutions .solutions-text-wrap .solutions-text {
    font-size: 16px!important;
  }
  .solutions .solutions-content {
    padding-top: 36px!important;
    padding-bottom: 36px!important;
  }
}
@media only screen and (max-width: 1200px) {
  .product .container-lg {
    padding: 0px 0px !important;
  }
}
.product .product-wrapper {
  position: relative;
}
.product .product-wrapper .product-content {
  padding-top: 86px;
}
.product .product-wrapper .product-content .product-text h1 {
  white-space: pre-line !important;
}
.product .product-wrapper .product-content .product-text .main-title {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  /* or 72px */
  text-transform: capitalize;
  /* DigiTag/Black */
  color: #242424;
}
.product .product-wrapper .product-content .product-img {
  margin-top: -20px;
  width: 100%;
}
.product .product-wrapper .product-content .product-icon-item {
  padding-bottom: 72px;
}
.product .product-wrapper .product-content .product-icon-title {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 0px;
  text-align: right;
  /* DigiTag/Black */
  color: #242424;
}
.product .product-wrapper .product-content .product-icon {
  width: 100%;
  max-width: 76px;
}
.product .product-wrapper .product-content .product-right-wrap .product-icon-title {
  text-align: left;
}
@media only screen and (max-width: 1600px) {
  .product .product-wrapper .main-title {
    font-size: 38px!important;
  }
  .product .product-wrapper .product-content .product-icon-item {
    padding-bottom: 32px;
  }
}
@media only screen and (max-width: 991px) {
  .product .product-wrapper .main-title {
    font-size: 32px!important;
  }
  .product .product-wrapper .product-icon-title {
    margin-top: 10px!important;
    font-size: 16px!important;
  }
  .product .product-wrapper .product-icon {
    max-width: 52px!important;
  }
  .product .product-wrapper .product-icon-title-left {
    text-align: left!important;
  }
  .product .product-wrapper .product-content-2 {
    padding-top: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .mobileapp .container-lg {
    padding: 0px 0px !important;
  }
}
.mobileapp .mobileapp-wrapper {
  position: relative;
}
.mobileapp .mobileapp-wrapper .mobileapp-content {
  padding-top: 86px;
  padding-bottom: 86px;
}
.mobileapp .mobileapp-wrapper .mobileapp-content .row {
  height: 100%;
}
.mobileapp .mobileapp-wrapper .mobileapp-content .mobileapp-text h1 {
  white-space: pre-line !important;
}
.mobileapp .mobileapp-wrapper .mobileapp-content .mobileapp-text .main-title {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  /* or 135% */
  text-transform: capitalize;
  /* DigiTag/Black */
  color: #242424;
}
.mobileapp .mobileapp-wrapper .mobileapp-content .mobileapp-text .main-text {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  margin-top: 30px;
  letter-spacing: 0.05em;
  color: #000000;
}
.mobileapp .mobileapp-wrapper .mobileapp-content .mobileapp-text .mobileapp-store {
  margin-top: 56px;
}
.mobileapp .mobileapp-wrapper .mobileapp-content .mobileapp-text .mobileapp-store .mobileapp-store-img {
  max-height: 64px;
}
.mobileapp .mobileapp-wrapper .mobileapp-content .mobileapp-img {
  width: 100%;
}
@media only screen and (max-width: 1600px) {
  .mobileapp .mobileapp-wrapper .main-title {
    font-size: 38px!important;
  }
}
@media only screen and (max-width: 1199px) {
  .mobileapp .mobileapp-wrapper .mobileapp-store .mobileapp-store-img {
    max-height: 42px!important;
  }
}
@media only screen and (max-width: 991px) {
  .mobileapp .mobileapp-wrapper .mobileapp-content {
    padding-top: 50px!important;
    padding-bottom: 50px;
  }
  .mobileapp .mobileapp-wrapper .main-title {
    font-size: 32px!important;
    line-height: 150%!important;
  }
  .mobileapp .mobileapp-wrapper .main-text {
    font-size: 16px!important;
    margin-top: 20px!important;
  }
  .mobileapp .mobileapp-wrapper .mobileapp-store {
    margin-top: 32px!important;
  }
  .mobileapp .mobileapp-wrapper .mobileapp-store .mobileapp-store-img {
    max-height: 42px!important;
  }
}
@media only screen and (max-width: 1200px) {
  .join .container-lg {
    padding: 0px 0px !important;
  }
}
.join .container-fluid {
  background-image: url("../img/Join/join.webp");
  background-size: cover;
}
.join .join-wrapper {
  position: relative;
  color: white!important;
}
.join .join-wrapper .join-content .row {
  height: 100%;
}
.join .join-wrapper .join-content .join-text-wrap {
  display: flex;
  align-items: center;
}
.join .join-wrapper .join-content .join-text h1 {
  white-space: pre-line !important;
}
.join .join-wrapper .join-content .join-text .main-title {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 62px;
  margin-right: 200px;
}
.join .join-wrapper .join-content .footer_center {
  max-width: 400px;
  min-height: 436px !important;
  background: #465CA7;
  display: block;
  margin: auto;
  position: relative;
}
.join .join-wrapper .join-content .footer_center #MainContactform {
  padding-top: 60px;
  padding-bottom: 60px;
}
.join .join-wrapper .join-content .footer_center .form-group {
  margin: 20px 0px 20px 0px;
}
.join .join-wrapper .join-content .footer_center .form-group .form-label {
  color: white;
  margin-left: 20px;
}
.join .join-wrapper .join-content .footer_center .form-control {
  background: white;
  border-radius: 6.90389px;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid;
  border-color: white;
  width: 90%;
  margin: auto;
  color: black;
}
.join .join-wrapper .join-content .footer_center #MessageContact {
  min-height: 103px;
}
.join .join-wrapper .join-content .footer_center .Name-filled,
.join .join-wrapper .join-content .footer_center .Email-filled,
.join .join-wrapper .join-content .footer_center .Message-filled {
  margin: 0px;
  padding: 0px;
  text-align: center;
  display: none;
  font-size: 12px;
  color: #FFF50B;
}
.join .join-wrapper .join-content .footer_center .Message-min,
.join .join-wrapper .join-content .footer_center .Name-min {
  margin: 0px;
  padding: 0px;
  text-align: center;
  font-size: 12px;
  color: #FFF50B;
}
.join .join-wrapper .join-content .footer_center .non-filled-shadow {
  box-shadow: 0px 0px 5px #FFF50B;
}
.join .join-wrapper .join-content .footer_center .maxlengthWord {
  margin: 0px;
  padding: 0px;
  text-align: center;
  display: none;
  font-size: 12px;
  color: #FFF50B;
}
.join .join-wrapper .join-content .footer_center .maxlengthWord_display {
  display: block;
}
.join .join-wrapper .join-content .footer_center #Message {
  resize: none;
}
.join .join-wrapper .join-content .footer_center .btn {
  background: #465CA7;
  border: 2px solid #FFFFFF;
  border-radius: 30px;
  color: white;
  padding: 10px 56px;
}
.join .join-wrapper .join-content .footer_center #answerListContact {
  position: relative;
  position: absolute !important;
  top: 0;
  width: 100%;
}
.join .join-wrapper .join-content .footer_center .Contact-alert-vis {
  visibility: visible;
}
.join .join-wrapper .join-content .footer_center .Validation-Failed-Contact {
  opacity: 1;
  position: absolute !important;
  top: 28px !important;
  min-height: 64px !important;
  background: #171515 !important;
  border-radius: 0px !important;
  color: darkorange;
  text-align: center;
  display: block !important;
  right: 0;
  left: 0;
  min-width: 80px;
  max-width: 160px;
  width: auto;
  margin: auto;
  z-index: 100;
  visibility: visible;
}
.join .join-wrapper .join-content .answerSentContactAlert {
  position: fixed !important;
  top: 30% !important;
  min-height: 160px !important;
  background: white !important;
  border-radius: 8px !important;
  display: block !important;
  right: 0;
  left: 0;
  min-width: 280px;
  max-width: 400px;
  margin: auto;
  z-index: 90;
  opacity: 0;
  color: white;
  visibility: hidden;
}
.join .join-wrapper .join-content .answerSentContactAlert .answer-contact-alert-close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
}
.join .join-wrapper .join-content .answerSentContactAlert .answer-contact-alert-close .close-icon-contact-answer {
  width: 100%;
}
.join .join-wrapper .join-content .answerSentContactAlert .icon-contact-answer {
  width: 20%;
  display: block;
  margin: auto;
  margin-top: 30px;
}
.join .join-wrapper .join-content .answerSentContactAlert .answer_sent-contact {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #242424;
}
.join .video-rez-none {
  display: none!important;
}
.join .rez-display {
  display: block!important;
}
@media only screen and (max-width: 1600px) {
  .join .join-wrapper .main-title {
    font-size: 48px!important;
    margin-right: 100px;
  }
  .join .join-wrapper #MainContactform {
    padding-top: 40px!important;
    padding-bottom: 40px!important;
  }
}
@media only screen and (max-width: 991px) {
  .join .join-wrapper {
    padding: 0px 0px !important;
  }
  .join .join-wrapper .main-title {
    font-size: 32px!important;
    line-height: 150%!important;
    margin-right: unset!important;
  }
  .join .join-wrapper .join-content {
    margin: 0!important;
  }
  .join .join-wrapper .join-text-wrap {
    padding-top: 56px!important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .join .join-wrapper .main-title {
    font-size: 32px!important;
    padding-bottom: 40px!important;
  }
  .join .join-wrapper .footer_center_wrap {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}
@media only screen and (max-width: 430px) {
  .join .join-wrapper .footer_center {
    max-width: 430px!important;
  }
}
@media only screen and (max-width: 1200px) {
  .footer .container-lg {
    padding: 0px 0px !important;
  }
}
.footer .footer-wrapper {
  position: relative;
}
.footer .footer-wrapper .footer-content {
  padding-top: 86px;
}
.footer .footer-wrapper .footer-content .row {
  height: 100%;
}
.footer .footer-wrapper .footer-content .footer-logo {
  width: 100%;
  max-width: 190px!important;
}
.footer .footer-wrapper .footer-content .footer-logo-title {
  margin-bottom: 0px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #242424;
}
.footer .footer-wrapper .footer-content .footer-text h1 {
  white-space: pre-line !important;
}
.footer .footer-wrapper .footer-content .footer-text .main-title {
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 141.69%;
}
.footer .footer-wrapper .footer-content .footer-icon-wrap {
  display: flex;
  align-items: center;
}
.footer .footer-wrapper .footer-content .footer-icon-wrap .footer-icon {
  width: 100%;
  max-width: 48px;
}
.footer .footer-wrapper .footer-content .footer-icon-text-wrap {
  display: flex;
  align-items: center;
}
.footer .footer-wrapper .footer-content .footer-icon-text-wrap .footer-icon-title {
  margin-bottom: 5px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  display: flex;
  align-items: center;
  color: #242424;
}
.footer .footer-wrapper .footer-content .footer-icon-text-wrap .footer-icon-text {
  margin-bottom: 0px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  color: #465CA7;
}
.footer .footer-wrapper .footer-content .footer-titles-wrap {
  border-bottom: 2px solid #7086BD;
}
.footer .footer-wrapper .footer-content .footer-titles-wrap .footer-titles {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
}
.footer .footer-wrapper .footer-content .footer-text-wrap .footer-text {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
}
.footer .footer-footer-wrap {
  border-top: 2px solid #DADEED;
}
.footer .footer-footer-wrap .row {
  margin: 0px;
  padding-left: 86px;
  padding-right: 86px;
}
.footer .footer-footer-wrap .footer-footer-text-wrap {
  display: flex;
  align-items: center;
}
.footer .footer-footer-wrap .footer-footer-text-wrap .footer-footer-text {
  margin-bottom: 0px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #242424;
}
.footer .footer-footer-wrap .footer-footer-text-wrap .footer-footer-link {
  text-decoration: none;
}
.footer .footer-footer-wrap .footer-footer-3 {
  justify-content: end;
}
@media only screen and (max-width: 991px) {
  .footer .footer-logo {
    max-height: 38px!important;
    width: auto!important;
  }
  .footer .footer-footer-wrap {
    border-top: 2px solid #DADEED !important;
  }
  .footer .footer-footer-wrap .row {
    margin: 0px!important;
    padding-left: 0px!important;
    padding-right: 0px!important;
    justify-content: center!important;
  }
  .footer .footer-footer-wrap .footer-footer-1 {
    justify-content: center!important;
  }
  .footer .footer-footer-wrap .footer-footer-3 {
    justify-content: center!important;
  }
}
body {
  font-family: 'Lato', sans-serif;
  overflow-x: hidden;
}
.digi-titles {
  font-style: normal;
  font-weight: 800;
  font-size: 23px;
  line-height: 19px;
  text-transform: uppercase;
  color: #465CA7;
  margin-bottom: 36px;
}
.digi-titles-white {
  color: white!important;
}
.section-w-pad {
  padding: 0px 80px !important;
}
@media only screen and (max-width: 1600px) {
  .section-w-pad {
    padding: 0px 60px !important;
  }
  .digi-titles {
    font-size: 16px!important;
  }
}
@media only screen and (max-width: 991px) {
  .section-w-pad {
    padding: 0px 20px !important;
  }
}
@media (min-width: 1200px) {
  .col-xl-20 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
