/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */ @-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: translateZ(0)
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -30px, 0)
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -15px, 0)
  }
  90% {
    transform: translate3d(0, -4px, 0)
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: translateZ(0)
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -30px, 0)
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -15px, 0)
  }
  90% {
    transform: translate3d(0, -4px, 0)
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  transform-origin: center bottom
}
@-webkit-keyframes flash {
  0%, 50%, to {
    opacity: 1
  }
  25%, 75% {
    opacity: 0
  }
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1
  }
  25%, 75% {
    opacity: 0
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash
}
@-webkit-keyframes pulse {
  0% {
    transform: scaleX(1)
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05)
  }
  to {
    transform: scaleX(1)
  }
}
@keyframes pulse {
  0% {
    transform: scaleX(1)
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05)
  }
  to {
    transform: scaleX(1)
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse
}
@-webkit-keyframes rubberBand {
  0% {
    transform: scaleX(1)
  }
  30% {
    transform: scale3d(1.25, .75, 1)
  }
  40% {
    transform: scale3d(.75, 1.25, 1)
  }
  50% {
    transform: scale3d(1.15, .85, 1)
  }
  65% {
    transform: scale3d(.95, 1.05, 1)
  }
  75% {
    transform: scale3d(1.05, .95, 1)
  }
  to {
    transform: scaleX(1)
  }
}
@keyframes rubberBand {
  0% {
    transform: scaleX(1)
  }
  30% {
    transform: scale3d(1.25, .75, 1)
  }
  40% {
    transform: scale3d(.75, 1.25, 1)
  }
  50% {
    transform: scale3d(1.15, .85, 1)
  }
  65% {
    transform: scale3d(.95, 1.05, 1)
  }
  75% {
    transform: scale3d(1.05, .95, 1)
  }
  to {
    transform: scaleX(1)
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand
}
@-webkit-keyframes shake {
  0%, to {
    transform: translateZ(0)
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0)
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0)
  }
}
@keyframes shake {
  0%, to {
    transform: translateZ(0)
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0)
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0)
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake
}
@-webkit-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)
  }
}
@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)
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake
}
@-webkit-keyframes swing {
  20% {
    transform: rotate(15deg)
  }
  40% {
    transform: rotate(-10deg)
  }
  60% {
    transform: rotate(5deg)
  }
  80% {
    transform: rotate(-5deg)
  }
  to {
    transform: rotate(0deg)
  }
}
@keyframes swing {
  20% {
    transform: rotate(15deg)
  }
  40% {
    transform: rotate(-10deg)
  }
  60% {
    transform: rotate(5deg)
  }
  80% {
    transform: rotate(-5deg)
  }
  to {
    transform: rotate(0deg)
  }
}
.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing
}
@-webkit-keyframes tada {
  0% {
    transform: scaleX(1)
  }
  10%, 20% {
    transform: scale3d(.9, .9, .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)
  }
}
@keyframes tada {
  0% {
    transform: scaleX(1)
  }
  10%, 20% {
    transform: scale3d(.9, .9, .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)
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada
}
@-webkit-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)
  }
}
@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)
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble
}
@-webkit-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(-.78125deg) skewY(-.78125deg)
  }
  77.7% {
    transform: skewX(.390625deg) skewY(.390625deg)
  }
  88.8% {
    transform: skewX(-.1953125deg) skewY(-.1953125deg)
  }
}
@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(-.78125deg) skewY(-.78125deg)
  }
  77.7% {
    transform: skewX(.390625deg) skewY(.390625deg)
  }
  88.8% {
    transform: skewX(-.1953125deg) skewY(-.1953125deg)
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center
}
@-webkit-keyframes heartBeat {
  0% {
    transform: scale(1)
  }
  14% {
    transform: scale(1.3)
  }
  28% {
    transform: scale(1)
  }
  42% {
    transform: scale(1.3)
  }
  70% {
    transform: scale(1)
  }
}
@keyframes heartBeat {
  0% {
    transform: scale(1)
  }
  14% {
    transform: scale(1.3)
  }
  28% {
    transform: scale(1)
  }
  42% {
    transform: scale(1.3)
  }
  70% {
    transform: scale(1)
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out
}
@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3)
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1)
  }
  40% {
    transform: scale3d(.9, .9, .9)
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03)
  }
  80% {
    transform: scale3d(.97, .97, .97)
  }
  to {
    opacity: 1;
    transform: scaleX(1)
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3)
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1)
  }
  40% {
    transform: scale3d(.9, .9, .9)
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03)
  }
  80% {
    transform: scale3d(.97, .97, .97)
  }
  to {
    opacity: 1;
    transform: scaleX(1)
  }
}
.bounceIn {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn
}
@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0)
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0)
  }
  75% {
    transform: translate3d(0, -10px, 0)
  }
  90% {
    transform: translate3d(0, 5px, 0)
  }
  to {
    transform: translateZ(0)
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0)
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0)
  }
  75% {
    transform: translate3d(0, -10px, 0)
  }
  90% {
    transform: translate3d(0, 5px, 0)
  }
  to {
    transform: translateZ(0)
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown
}
@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0)
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0)
  }
  75% {
    transform: translate3d(-10px, 0, 0)
  }
  90% {
    transform: translate3d(5px, 0, 0)
  }
  to {
    transform: translateZ(0)
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0)
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0)
  }
  75% {
    transform: translate3d(-10px, 0, 0)
  }
  90% {
    transform: translate3d(5px, 0, 0)
  }
  to {
    transform: translateZ(0)
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft
}
@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0)
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0)
  }
  75% {
    transform: translate3d(10px, 0, 0)
  }
  90% {
    transform: translate3d(-5px, 0, 0)
  }
  to {
    transform: translateZ(0)
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0)
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0)
  }
  75% {
    transform: translate3d(10px, 0, 0)
  }
  90% {
    transform: translate3d(-5px, 0, 0)
  }
  to {
    transform: translateZ(0)
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight
}
@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0)
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0)
  }
  75% {
    transform: translate3d(0, 10px, 0)
  }
  90% {
    transform: translate3d(0, -5px, 0)
  }
  to {
    transform: translateZ(0)
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0)
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0)
  }
  75% {
    transform: translate3d(0, 10px, 0)
  }
  90% {
    transform: translate3d(0, -5px, 0)
  }
  to {
    transform: translateZ(0)
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp
}
@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9)
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1)
  }
  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3)
  }
}
@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9)
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1)
  }
  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3)
  }
}
.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut
}
@-webkit-keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0)
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0)
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0)
  }
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0)
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0)
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0)
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0)
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0)
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0)
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0)
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0)
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0)
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0)
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0)
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight
}
@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0)
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0)
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0)
  }
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0)
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0)
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0)
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1
  }
  to {
    opacity: 0
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1
  }
  to {
    opacity: 0
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0)
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0)
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0)
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0)
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0)
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0)
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0)
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0)
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0)
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0)
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0)
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0)
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0)
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0)
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0)
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0)
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig
}
@-webkit-keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  80% {
    transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
}
@keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  80% {
    transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip
}
@-webkit-keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1
  }
  80% {
    transform: perspective(400px) rotateX(-5deg)
  }
  to {
    transform: perspective(400px)
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1
  }
  80% {
    transform: perspective(400px) rotateX(-5deg)
  }
  to {
    transform: perspective(400px)
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX
}
@-webkit-keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1
  }
  80% {
    transform: perspective(400px) rotateY(-5deg)
  }
  to {
    transform: perspective(400px)
  }
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1
  }
  80% {
    transform: perspective(400px) rotateY(-5deg)
  }
  to {
    transform: perspective(400px)
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY
}
@-webkit-keyframes flipOutX {
  0% {
    transform: perspective(400px)
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0
  }
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px)
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0
  }
}
.flipOutX {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important
}
@-webkit-keyframes flipOutY {
  0% {
    transform: perspective(400px)
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0
  }
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px)
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0
  }
}
.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY
}
@-webkit-keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0
  }
  60% {
    transform: skewX(20deg);
    opacity: 1
  }
  80% {
    transform: skewX(-5deg)
  }
  to {
    transform: translateZ(0)
  }
}
@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0
  }
  60% {
    transform: skewX(20deg);
    opacity: 1
  }
  80% {
    transform: skewX(-5deg)
  }
  to {
    transform: translateZ(0)
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out
}
@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in
}
@-webkit-keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate(-200deg);
    opacity: 0
  }
  to {
    transform-origin: center;
    transform: translateZ(0);
    opacity: 1
  }
}
@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate(-200deg);
    opacity: 0
  }
  to {
    transform-origin: center;
    transform: translateZ(0);
    opacity: 1
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0
  }
  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1
  }
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0
  }
  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft
}
@-webkit-keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(45deg);
    opacity: 0
  }
  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1
  }
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(45deg);
    opacity: 0
  }
  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0
  }
  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1
  }
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0
  }
  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft
}
@-webkit-keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0
  }
  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1
  }
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0
  }
  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight
}
@-webkit-keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1
  }
  to {
    transform-origin: center;
    transform: rotate(200deg);
    opacity: 0
  }
}
@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1
  }
  to {
    transform-origin: center;
    transform: rotate(200deg);
    opacity: 0
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1
  }
  to {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0
  }
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1
  }
  to {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1
  }
  to {
    transform-origin: right bottom;
    transform: rotate(-45deg);
    opacity: 0
  }
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1
  }
  to {
    transform-origin: right bottom;
    transform: rotate(-45deg);
    opacity: 0
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1
  }
  to {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0
  }
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1
  }
  to {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1
  }
  to {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0
  }
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1
  }
  to {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight
}
@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }
  40%, 80% {
    transform: rotate(60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0
  }
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }
  40%, 80% {
    transform: rotate(60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge
}
@-webkit-keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(.1) rotate(30deg);
    transform-origin: center bottom
  }
  50% {
    transform: rotate(-10deg)
  }
  70% {
    transform: rotate(3deg)
  }
  to {
    opacity: 1;
    transform: scale(1)
  }
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(.1) rotate(30deg);
    transform-origin: center bottom
  }
  50% {
    transform: rotate(-10deg)
  }
  70% {
    transform: rotate(3deg)
  }
  to {
    opacity: 1;
    transform: scale(1)
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox
}
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn
}
@-webkit-keyframes rollOut {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg)
  }
}
@keyframes rollOut {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg)
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3)
  }
  50% {
    opacity: 1
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3)
  }
  50% {
    opacity: 1
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn
}
@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown
}
@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft
}
@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight
}
@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 1
  }
  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3)
  }
  to {
    opacity: 0
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1
  }
  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3)
  }
  to {
    opacity: 0
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
  }
  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
  }
  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
  }
  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
  }
  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp
}
@-webkit-keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible
  }
  to {
    transform: translateZ(0)
  }
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible
  }
  to {
    transform: translateZ(0)
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown
}
@-webkit-keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible
  }
  to {
    transform: translateZ(0)
  }
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible
  }
  to {
    transform: translateZ(0)
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft
}
@-webkit-keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible
  }
  to {
    transform: translateZ(0)
  }
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible
  }
  to {
    transform: translateZ(0)
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight
}
@-webkit-keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible
  }
  to {
    transform: translateZ(0)
  }
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible
  }
  to {
    transform: translateZ(0)
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp
}
@-webkit-keyframes slideOutDown {
  0% {
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0)
  }
}
@keyframes slideOutDown {
  0% {
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0)
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown
}
@-webkit-keyframes slideOutLeft {
  0% {
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0)
  }
}
@keyframes slideOutLeft {
  0% {
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0)
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft
}
@-webkit-keyframes slideOutRight {
  0% {
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0)
  }
}
@keyframes slideOutRight {
  0% {
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0)
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight
}
@-webkit-keyframes slideOutUp {
  0% {
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0)
  }
}
@keyframes slideOutUp {
  0% {
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0)
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite
}
.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s
}
.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s
}
.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s
}
.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s
}
.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s
}
.animated.fast {
  -webkit-animation-duration: .8s;
  animation-duration: .8s
}
.animated.faster {
  -webkit-animation-duration: .5s;
  animation-duration: .5s
}
.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s
}
.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s
}
@media (prefers-reduced-motion), (print) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    transition: none !important
  }
}
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box
}
img {
  border: 0
}
html {
  height: 100%;
  scroll-behavior: smooth
}
body {
  background: #fff;
  font: 15px/1.6 LatoWeb, Arial, Helvetica, sans-serif;
  color: #0a0a0a
}
.container, body {
  position: relative
}
.container {
  max-width: 990px;
  min-width: 320px;
  margin: 0 auto;
  padding: 0 15px
}
.container2 {
  max-width: 1180px
}
ul {
  list-style: none
}
a {
  color: #4755dc;
  text-decoration: none
}
a:hover {
  text-decoration: underline
}
.errors {
  color: #ff1d31
}
.hidden {
  display: none
}
header {
  height: 88px;
  position: relative;
  z-index: 5
}
.container-header {
  max-width: 1230px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.container-header > a {
  position: relative;
  z-index: 10;
}
.logo {
  position: relative;
  z-index: 2;
  margin: 0;
  height: 25px;
  width: auto;
  display: block;
}
nav {
  position: relative;
  top: 0;
}
.nav-list {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.nav-item {
  padding: 10px 15px 25px;
  position: relative
}
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #0a0a0a;
  text-decoration: none;
  cursor: pointer
}
.burger-menu {
  display: none;
  position: absolute;
  top: 20px;
  right: 15px;
  cursor: pointer;
  font-size: 0
}
.burger-menu > * {
  vertical-align: middle;
  display: inline-block
}
.burger-menu p {
  padding-right: 15px;
  color: #4755dc;
  font-size: 15px
}
.close-icon {
  display: none
}
.logged-panel {
  position: absolute;
  right: 15px;
  top: 3px;
  height: 60px;
  cursor: pointer
}
.logged-panel > p {
  color: #4755dc;
  float: left;
  line-height: 40px
}
.help-center-header .logged-panel > p {
  color: #fff
}
.help-center-header .logged-panel:hover > p {
  color: #000
}
.logged-ava-wrap {
  float: left;
  margin-left: 15px;
  position: relative
}
.logged-ava {
  position: relative;
  width: 40px;
  height: 40px
}
.logged-ava img {
  border-radius: 50%;
  width: 40px;
  height: 40px
}
.logged-ava span {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 16px;
  border-radius: 8px;
  background-image: linear-gradient(135deg, #ff5980, #ffa882);
  font: 600 13px/18px Gilroy-SemiBold, sans-serif;
  height: 16px;
  text-align: center;
  color: #fff;
  padding: 0 5px
}
.dropdown-menu {
  box-shadow: 0 2px 16px rgba(29, 35, 82, .3), 0 0 2px rgba(29, 35, 82, .1);
  background: #fff;
  border-radius: 7px;
  position: absolute;
  padding: 15px 25px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .15s ease-in-out
}
.dropdown-user-menu {
  right: -15px;
  top: 60px;
  width: 240px
}
.dropdown-menu-list a {
  color: #4755dc;
  text-decoration: none
}
.dropdown-menu-list a:hover {
  text-decoration: underline
}
.dropdown-menu-list li {
  line-height: 20px;
  padding: 10px 0;
  position: relative
}
.dropdown-menu-list li span {
  position: absolute;
  min-width: 16px;
  top: 12px;
  right: 0;
  border-radius: 8px;
  background-image: linear-gradient(135deg, #ff5980, #ffa882);
  font: 400 13px/18px Gilroy-SemiBold, sans-serif;
  height: 16px;
  text-align: center;
  color: #fff;
  padding: 0 5px
}
.dropdown-menu-hr {
  height: 1px;
  overflow: hidden;
  background: #ebebeb;
  margin: 7px 0
}
.dropdown-menu-arrow {
  position: absolute;
  top: -15px;
  width: 32px;
  height: 16px;
  overflow: hidden
}
.logged-panel:hover .dropdown-menu, .nav-item:hover .dropdown-menu {
  visibility: visible;
  opacity: 1
}
.dropdown-menu-arrow:after, .dropdown-menu-arrow:before {
  content: "";
  position: absolute;
  background: #fff;
  left: 4px;
  top: 10px;
  width: 32px;
  height: 20px;
  box-shadow: 0 2px 16px rgba(29, 35, 82, .08), 0 0 2px rgba(29, 35, 82, .04);
  z-index: -1;
  transform: rotate(45deg)
}
.dropdown-menu-arrow:before {
  z-index: 1;
  box-shadow: none
}
.dropdown-user-menu .dropdown-menu-arrow {
  right: 20px
}
.dropdown-user-product {
  top: 60px;
  left: -15px;
  width: 400px;
  padding: 25px
}
.dropdown-user-product .dropdown-menu-arrow {
  left: 36px
}
.dropdown-menu-list2 {
  margin-bottom: 15px
}
.dropdown-menu-list2 li {
  padding: 10px 0
}
.dropdown-menu-list2 a {
  color: #090909;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  line-height: 28px;
  padding: 0 0 0 40px;
  display: inline-block;
  position: relative
}
.dropdown-menu-list2 a img {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 2px
}
.dropdown-menu-list2 a:hover {
  text-decoration: underline
}
.view-all a {
  color: #4755dc;
  text-decoration: none;
  padding-right: 25px;
  background: url(../images/arrow1.svg) no-repeat 100%;
  display: inline-block
}
.view-all a img {
  margin-left: 10px
}
.view-all a:hover {
  text-decoration: underline
}
.drop-menu-header {
  font: 400 14px/24px Gilroy-SemiBold, sans-serif;
  color: #707070;
  margin-bottom: 10px
}
.dropdown-user-product .dropdown-menu-hr {
  margin-bottom: 25px
}
.dropdown-menu-main-link {
  display: block;
  padding: 0 0 0 73px;
  margin-bottom: 25px;
  min-height: 56px;
  position: relative;
  text-decoration: none
}
.dropdown-menu-main-link img {
  width: 56px;
  height: 56px;
  position: absolute;
  left: 0;
  top: 0
}
.dropdown-menu-main-link strong {
  font-weight: 600;
  font-size: 18px;
  display: block;
  color: #090909
}
.dropdown-menu-main-link span {
  color: #707070
}
.dropdown-company {
  top: 60px;
  left: 0;
  width: 160px
}
.dropdown-company .dropdown-menu-arrow {
  left: 30px
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: Gilroy-Bold, sans-serif;
  font-weight: 400;
  margin-bottom: 15px
}
.h1, h1 {
  line-height: 1.2;
  font-size: 44px
}
.h2, h2 {
  line-height: 1.3;
  font-size: 32px
}
.h3, h3 {
  line-height: 1.4;
  font-size: 28px
}
.h3, .h4, h3, h4 {
  font-family: Gilroy-SemiBold
}
.h4, h4 {
  line-height: 1.45;
  font-size: 22px
}
.h5, h5 {
  font-family: Gilroy-SemiBold
}
.h5, .subheader, h5 {
  line-height: 1.7;
  font-size: 18px
}
.subheader {
  color: #707070
}
.homepage-header {
  min-height: 520px;
  overflow: hidden
}
.homepage-header .container {
  padding-top: 70px
}
.homepage-header-txt {
  position: relative;
  z-index: 2;
  max-width: 506px;
  margin-bottom: 75px
}
.btn-primary, .btn-primary-outline {
  height: 48px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .08);
  border-radius: 6px;
  text-align: center;
  padding: 0 15px;
  border: 0;
  font-weight: 500;
  display: inline-block;
  line-height: 48px;
  text-decoration: none;
  cursor: pointer;
  font-size: 15px
}
.btn-primary {
  background-color: #4755dc;
  color: #fff
}
.btn-primary-outline {
  border: 1px solid #4755dc;
  color: #4755dc
}
.btn-primary:hover {
  opacity: .8;
  text-decoration: none
}
.btn-primary-outline:hover {
  background: #4755dc;
  color: #fff;
  text-decoration: none
}
.homepage-header-buttons .btn-primary {
  margin-right: 25px
}
.homepage-header h1 {
  margin-bottom: 30px
}
.homepage-img {
  position: absolute;
  left: 450px;
  top: 28px
}
.homepage-header .subheader {
  margin-bottom: 40px;
  color: #474747
}
.partners {
  display: flex;
  justify-content: space-between;
  max-width: 990px;
  margin: 0 auto
}
.partners div span, .partners div span i {
  display: block;
  position: relative
}
.partners div span i {
  height: 100%;
  z-index: 2;
  opacity: .5;
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray
}
.partners div span:after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0
}
.partners div span:hover i {
  opacity: 0
}
.partners div span:hover:after {
  opacity: 1
}
.partners > div {
  transform: scale(.8)
}
.partner-1 {
  width: 170px;
  height: 37px
}
.partner-1 i, .partner-1:after {
  background: url(../images/en/partners/icon-health.svg) no-repeat 50%
}
.partner-2 {
  width: 170px;
  height: 37px
}
.partner-2 i, .partner-2:after {
  background: url(../images/en/partners/icon-auto.svg) no-repeat 50%
}
.partner-3 {
  width: 170px;
  height: 37px
}
.partner-3 i, .partner-3:after {
  background: url(../images/en/partners/icon-credit-repair.svg) no-repeat 50%
}
.partner-4 {
  width: 170px;
  height: 37px
}
.partner-4 i, .partner-4:after {
  background: url(../images/en/partners/icon-tv.svg) no-repeat 50%
}
.partner-5 {
  width: 170px;
  height: 37px
}
.partner-5 i, .partner-5:after {
  background: url(../images/en/partners/icon-home-services.svg) no-repeat 50%
}
.partner-6 {
  width: 170px;
  height: 37px
}
.partner-6 i, .partner-6:after {
  background: url(../images/en/partners/icon-flight.svg) no-repeat 50%
}
.hr:not(.iti-flag) {
  height: 1px;
  background: #ebebeb;
  overflow: hidden;
  margin: 75px 0
}
.header-1 {
  text-align: center;
  margin-bottom: 50px
}
.main-product-box-wrap {
  margin: 0 -15px;
  display: flex
}
.main-product-box {
  width: 50%;
  padding: 0 15px 30px
}
.main-product-box-in {
  min-height: 100%;
  border-radius: 8px;
  border: 1px solid #ebebeb;
  padding: 40px
}
.main-product-box-in-bg1 {
  background: url(../images/img1_1x.jpg) no-repeat 100% 100% #fff;
  background-image: -webkit-image-set(url(../images/img1_1x.jpg) 1x, url(../images/img1.jpg) 2x);
  background-image: image-set(url(../images/img1_1x.jpg) 1x, url(../images/img1.jpg) 2x)
}
.main-product-box-in-bg2 {
  background: url(../images/img2.jpg) no-repeat 100% 100% #fff;
  background-image: -webkit-image-set(url(../images/img2_1x.jpg) 1x, url(../images/img2.jpg) 2x);
  background-image: image-set(url(../images/img2_1x.jpg) 1x, url(../images/img2.jpg) 2x)
}
.main-product-box-in h3 {
  margin-bottom: 10px
}
.main-product-box-in p {
  margin-bottom: 15px
}
.list-type-1 {
  margin-bottom: 30px
}
.list-type-1 li {
  padding: 8px 0 8px 32px;
  background: url(../images/list-arr1.svg) no-repeat 4px 14px;
  line-height: 24px;
  color: #707070
}
.dropdown-menu-list2-inline {
  margin-bottom: 100px;
  font-size: 0
}
.dropdown-menu-list2-inline li {
  width: 33.33%;
  display: inline-block
}
.dropdown-menu-list2.dropdown-menu-list2-inline {
  max-width: 990px;
  margin: 0 auto 100px
}
.why-text-box {
  min-height: 550px;
  position: relative;
  padding: 60px 0 100px
}
.why-text-box > div {
  max-width: 500px
}
.why-text-box-img {
  position: absolute;
  top: 0
}
.why-text-box-wrap {
  overflow: hidden;
  width: 100%
}
.why-text-box p {
  margin-bottom: 10px;
  color: #707070
}
.view-video-link {
  margin-top: 20px
}
.view-video-link2, .view-video-link a {
  display: inline-block;
  padding-left: 34px;
  line-height: 24px;
  background: url(../images/video-icon.svg) no-repeat 0
}
.view-video-link2 {
  margin-left: 15px;
  font-weight: 500
}
.hr.mt-0, .mt-0 {
  margin-top: 0
}
.main-total-box {
  display: flex;
  text-align: center
}
.main-total-box div {
  width: 33.33%;
  padding: 0 15px;
  color: #707070
}
.main-total-box div strong {
  font: 400 32px/32px Gilroy-SemiBold, sans-serif;
  display: block;
  color: #0a0a0a;
  margin-bottom: 3px
}
.hiring-box {
  text-align: center;
  color: #fff;
  font-size: 17px;
  padding: 15px 40px;
  background-image: linear-gradient(-45deg, #7378fb, #5d3ece);
  position: relative;
  margin-bottom: -1px
}
.hiring-box b {
  font-weight: 600
}
.close-icon2 {
  background: url(../images/close-icon.svg);
  width: 12px;
  height: 12px;
  position: absolute;
  top: 23px;
  right: 20px;
  cursor: pointer
}
.header-2 {
  margin-bottom: 35px
}
.header-2 h3 {
  font-size: 40px
}
.header-2 p {
  color: #474747
}
.slider-header {
  text-align: center;
  font: 400 18px Gilroy-Regular, sans-serif;
  letter-spacing: 1.2px;
  color: #707070;
  margin-bottom: 35px
}
.features-slider-wrap {
  margin: 0 -15px 150px
}
.about-icon-slider .owl-dots, .affillates-icons .owl-dots, .features-slider-wrap .owl-dots, .interface-box-in .owl-dots, .join-slider-wrap .owl-dots {
  text-align: center;
  margin-top: 20px
}
.about-icon-slider .owl-dot, .affillates-icons .owl-dot, .features-slider-wrap .owl-dot, .interface-box-in .owl-dot, .join-slider-wrap .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4755dc !important;
  display: inline-block;
  vertical-align: middle;
  margin: 0 12px
}
.about-icon-slider .owl-dot.active, .affillates-icons .owl-dot.active, .features-slider-wrap .owl-dot.active, .interface-box-in .owl-dot.active, .join-slider-wrap .owl-dot.active {
  width: 18px;
  height: 18px;
  background: none !important;
  border: 3px solid #4755dc !important
}
.features-box {
  padding: 25px 25px 85px;
  border-radius: 8px;
  border: 1px solid #ebebeb;
  background: #fff;
  margin: 0 15px 30px;
  position: relative;
  min-height: 280px
}
.features-box:hover {
  box-shadow: 0 20px 20px -8px rgba(29, 35, 82, .12), 0 0 4px rgba(29, 35, 82, .04)
}
.features-slider-wrap .owl-carousel .owl-item img {
  width: auto
}
.features-box-logo {
  position: absolute;
  left: 25px;
  bottom: 25px
}
.features-box-date {
  color: #707070;
  margin-bottom: 15px
}
.events-list {
  margin-bottom: 150px
}
.event-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
  padding: 20px 25px;
  margin-bottom: 15px
}
.event-box:hover {
  box-shadow: 0 4px 16px rgba(29, 35, 82, .08), 0 1px 2px rgba(29, 35, 82, .04)
}
.event-in1 {
  width: 25%
}
.event-in2 {
  width: 20%
}
.event-in3 {
  width: 35%
}
.event-in4 {
  width: 20%;
  text-align: right
}
.event-in1 img {
  display: block
}
.subscribe-wrap {
  background-color: #f4f6fb;
  padding: 75px 0;
  text-align: center
}
.subscribe-wrap .subheader {
  margin-bottom: 35px;
  color: #474747
}
.subscribe-wrap .h2 {
  margin-bottom: 5px
}
.subscribe-form {
  font-size: 0;
  display: inline-block;
  text-align: left
}
.subscribe-form form {
  box-shadow: 0 4px 16px rgba(29, 35, 82, .08), 0 1px 2px rgba(29, 35, 82, .04);
  border-radius: 6px;
  background-color: #fff
}
.subscribe-form div {
  position: relative;
  width: 800px;
  display: inline-block;
  vertical-align: middle
}
.subscribe-form div input {
  height: 64px;
  border: 0;
  background: none;
  width: 100%;
  padding: 0 0 0 65px;
  font: 18px LatoWeb, Arial, Helvetica, sans-serif
}
.subscribe-form div:before {
  background: url(../images/email-icon.svg) no-repeat;
  width: 20px;
  height: 16px;
  position: absolute;
  left: 26px;
  top: 24px;
  content: "";
  display: block
}
.subscribe-form button {
  display: inline-block;
  vertical-align: middle;
  width: 153px;
  border-radius: 0 6px 6px 0;
  color: #fff;
  text-align: center;
  background-color: #4755dc;
  font: 600 18px LatoWeb, Arial, Helvetica, sans-serif;
  height: 64px;
  border: 0;
  cursor: pointer
}
.subscribe-form button:hover {
  opacity: .8
}
footer {
  background-color: #31244a;
  padding: 75px 0 0;
  overflow: hidden;
  position: relative
}
.copyright {
  border-top: 1px solid hsla(0, 0%, 100%, .1);
  padding: 25px 0;
  position: relative;
  color: #aca4bc;
  font-size: 13px
}
.copyright div {
  position: absolute;
  top: 25px;
  right: 0
}
.copyright a {
  color: #aca4bc;
  margin-left: 15px
}
.copyright a:hover {
  color: #fff
}
.footer-in {
  display: flex;
  padding-bottom: 35px
}
.footer-list {
  width: 20%
}
.footer-list p {
  font: 400 15px Gilroy-SemiBold, sans-serif;
  color: #fff;
  margin-bottom: 10px
}
.footer-list li a {
  color: #aca4bc;
  font-size: 13px;
  display: inline-block;
  position: relative
}
.footer-list li a:hover {
  text-decoration: underline;
  color: #fff
}
.footer-list li {
  line-height: 20px;
  padding: 2px 0
}
.footer-list-with-icons li a {
  padding-left: 28px
}
.footer-list-with-icons li img {
  position: absolute;
  left: 0;
  top: 2px
}
.footer-header {
  height: 70px;
  position: relative
}
.footer-logo {
  position: absolute;
  left: -35px;
  top: 0
}
.footer-lang {
  position: absolute;
  right: 0;
  top: 5px;
  font-size: 13px
}
.footer-lang, .footer-lang a {
  color: #aca4bc
}
.footer-lang a, .footer-lang span {
  margin: 0 2px
}
.footer-lang a:hover, .footer-lang span {
  color: #fff
}
.awards-container .award-description a {
  color: #aca4bc;
  font-size: 13px;
  display: inline-block;
  position: relative
}
.awards-container .award-description a:hover {
  text-decoration: underline;
  color: #fff
}
.awards-container .award-description p a.sub-img-link {
  vertical-align: top
}
.refer-label {
  padding: 3px 0 0 20%;
  font-size: 13px;
  color: #fff
}
.refer-label * {
  display: inline-block;
  vertical-align: middle
}
.refer-label i {
  width: 39px;
  height: 24px;
  border-radius: 4px;
  background-image: linear-gradient(-45deg, #7378fb, #5d3ece 97%);
  text-align: center;
  font: 400 13px/27px Gilroy-SemiBold, sans-serif;
  color: #fff;
  margin-right: 12px
}
.footer-header .footer-list {
  display: none
}
.features-page-header {
  background: url(../images/payout-page-bg.png) no-repeat 50% #fafcfe;
  height: 400px
}
.features-header-txt {
  padding-top: 70px
}
.features-header-txt h1 {
  margin-bottom: 20px
}
.features-header-txt .subheader {
  color: #474747
}
.login-buttons {
  position: absolute;
  right: 15px;
  top: 2px
}
.login-buttons > a {
  line-height: 40px
}
.btn-primary-small {
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  height: 40px
}
.login-buttons .btn-primary-small {
  margin-left: 30px
}
.secondary-nav {
  height: 64px;
  background-image: linear-gradient(-45deg, #7378fb, #5d3ece);
  margin-bottom: 75px
}
.secondary-nav-mobile {
  display: none
}
.secondary-nav ul {
  padding: 21px 0 0;
  display: flex;
  justify-content: space-between
}
.secondary-nav ul li a {
  color: #fff;
  opacity: .8;
  letter-spacing: .5px
}
.secondary-nav ul li.active a {
  opacity: 1;
  font-weight: 600
}
.secondary-nav-mobile {
  background-image: linear-gradient(-45deg, #7378fb, #5d3ece);
  margin-bottom: 40px
}
.secondary-nav-mobile p {
  line-height: 56px;
  font-weight: 600;
  color: #fff;
  position: relative
}
.secondary-nav-mobile ul a {
  color: #fff;
  opacity: .8
}
.secondary-nav-mobile ul {
  padding: 0 0 20px;
  display: none
}
.secondary-nav-mobile ul li {
  padding: 2px 0
}
.secondary-nav-mobile p i {
  width: 12px;
  height: 8px;
  background: url(../images/dropdown-arr.svg);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -4px
}
.secondary-nav-mobile p.active i {
  transform: rotate(180deg)
}
.header-3 {
  margin-bottom: 75px
}
.main-product-box-wrap2 p {
  margin-bottom: 30px
}
.main-product-box-wrap2 .main-product-box-in {
  padding: 30px
}
.main-product-box-wrap2 {
  margin-bottom: 100px
}
.subheader2 {
  color: #474747;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  max-width: 760px;
  margin: 0 auto
}
.leads-wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 70px
}
.lead-box {
  padding-bottom: 30px
}
.lead-box, .lead-box img {
  width: 278px
}
.lead-box h3 {
  margin-top: 15px
}
.list-type-2 li {
  line-height: 24px;
  padding: 4px 0 4px 26px;
  background-position: 0 10px
}
.support-txt-box {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse
}
.support-txt-box p {
  margin-bottom: 5px;
  letter-spacing: 1px
}
.support-txt-box .subheader {
  color: #ff6060;
  margin-bottom: 0
}
.support-txt-box .view-all {
  margin-top: 20px
}
.support-txt-box-in {
  width: 380px
}
.support-txt-box1 img {
  position: absolute;
  right: 0;
  top: -20px
}
.support-txt-box-reverse {
  flex-direction: row
}
.somming-soon {
  border-radius: 6px;
  background-color: #f5f5f5;
  line-height: 24px;
  padding: 0 7px;
  color: #707070;
  font: 400 13px/24px Gilroy-Regular, sans-serif;
  display: inline-block;
  margin-top: 15px
}
.tab {
  display: none
}
.tabs {
  text-align: center;
  font-size: 0;
  margin: -50px 0 70px
}
.tabs ul {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #4755dc
}
.tabs li, .tabs ul {
  display: inline-block
}
.tabs li {
  font-size: 15px;
  font-weight: 500;
  width: 140px;
  line-height: 38px;
  color: #4755dc;
  cursor: pointer
}
.tabs li.active {
  background: #4755dc;
  color: #fff
}
.overflow-wrap {
  overflow: hidden;
  width: 100%
}
.call-icon {
  position: relative;
  padding: 0 0 0 32px;
  font-weight: 600;
  margin-bottom: 10px
}
.call-icon img {
  position: absolute;
  left: 0;
  top: 3px
}
.call-icon2 {
  font-weight: 400;
  color: #4755dc;
  line-height: 24px;
  margin-top: 24px
}
.call-icon2 .somming-soon {
  margin: 0 0 0 10px
}
.custom-img {
  position: absolute;
  right: -220px;
  top: -10px
}
.about-img {
  background: url(../images/about-img.jpg) no-repeat 50%;
  height: 360px;
  margin-bottom: 75px
}
.about-icon {
  text-align: center;
  padding: 0 10px
}
.about-icon-slider {
  margin-bottom: 100px
}
.about-icon-slider .owl-carousel .owl-item img {
  margin-bottom: 20px;
  width: auto;
  height: auto;
  display: inline-block
}
.about-txt-box {
  max-width: 570px;
  margin: 0 auto
}
.about-txt-box p {
  color: #474747;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 10px
}
.about-txt-box p strong {
  font-weight: 600
}
.about-txt-box1 {
  margin-top: 75px;
  margin-bottom: 75px
}
.about-txt-box2 {
  margin-bottom: 100px
}
.join-box {
  background-color: #f4f6fb;
  padding: 40px 0
}
.join-box a {
  position: absolute;
  right: 15%;
  top: 20px
}
.join-box .h2 {
  margin-bottom: 0
}
.subheader3 {
  text-align: center;
  letter-spacing: 1.2px;
  margin-bottom: 40px
}
.map-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  margin-bottom: 100px
}
.addr-slider {
  width: 380px
}
.owl-nav {
  margin-top: 40px
}
.owl-nav button {
  border: 0;
  background: url(../images/slider-arr.svg) no-repeat !important;
  width: 64px;
  height: 64px;
  font-size: 0
}
.owl-nav button span {
  font-size: 0
}
.owl-nav .owl-next {
  transform: rotate(180deg);
  margin-left: 24px
}
.map {
  width: 500px
}
#map {
  height: 440px
}
.blog-header-txt {
  padding-right: 400px
}
.blog-header-txt h1 {
  margin-bottom: 10px
}
.blog-wrap {
  background: #f4f6fb;
  padding-bottom: 100px
}
.blog-header {
  margin: 75px 0
}
.header-subcsribe {
  position: absolute;
  right: 0;
  top: 36px;
  width: 450px;
  padding: 0 120px 0 0
}
.header-subcsribe input {
  height: 48px;
  border-radius: 6px 0 0 6px;
  border: 1px solid #ebebeb;
  border-right: 0;
  background-color: #fff;
  width: 100%;
  padding: 0 0 0 48px;
  font: 15px LatoWeb, Arial, Helvetica, sans-serif
}
.header-subcsribe button {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  border-radius: 0 6px 6px 0;
  color: #fff;
  text-align: center;
  background-color: #4755dc;
  font: 500 15px LatoWeb, Arial, Helvetica, sans-serif;
  height: 48px;
  border: 0;
  cursor: pointer
}
.header-subcsribe button:disabled {
  color: #8286a2;
  background-color: #656882;
  cursor: not-allowed
}
.header-subcsribe button:hover {
  opacity: .8
}
.header-subcsribe:before {
  background: url(../images/email-icon.svg) no-repeat;
  width: 20px;
  height: 16px;
  position: absolute;
  left: 13px;
  top: 16px;
  content: "";
  display: block
}
.main-blog-news {
  display: flex;
  background: #fff;
  box-shadow: 0 2px 6px rgba(29, 35, 82, .08);
  margin-bottom: 30px;
  align-items: center
}
.main-blog-news-img {
  width: 50%
}
.main-blog-news-img img {
  display: block;
  width: 100%;
  height: auto
}
.main-blog-news-txt {
  width: 50%;
  padding: 20px 20px 20px 50px
}
.blog-cat {
  color: #4755dc;
  font: 400 14px/24px Gilroy-SemiBold, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px
}
.blog-title {
  color: #0a0a0a;
  font: 400 18px/32px Gilroy-SemiBold, sans-serif;
  margin-bottom: 10px
}
.blog-date {
  color: #c2c2c2;
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px
}
.blog-txt {
  margin-bottom: 40px
}
.read-more-button {
  border-radius: 6px;
  border: 1px solid #ecf0fa;
  line-height: 38px;
  padding: 0 40px 0 13px;
  position: relative;
  display: inline-block
}
.read-more-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  right: 11px;
  background: url(../images/arrow1.svg);
  width: 16px;
  height: 16px
}
.blog-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px
}
.blog-item {
  width: 300px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(29, 35, 82, .08);
  margin-bottom: 30px;
  position: relative
}
.blog-item-in {
  padding: 20px 30px 70px
}
.blog-item .read-more-button {
  position: absolute;
  left: 30px;
  bottom: 30px
}
.blog-item img {
  width: 100%;
  height: auto
}
.blog-item:hover, .main-blog-news:hover {
  box-shadow: 0 20px 20px -8px rgba(29, 35, 82, .12), 0 0 4px rgba(29, 35, 82, .04)
}
.blog-item, .main-blog-news {
  transition: box-shadow .15s ease-in-out
}
.contacts-header {
  margin: 75px 0
}
.mb-0 {
  margin-bottom: 0
}
.cont-wrap {
  display: flex;
  margin-bottom: 100px
}
.cont-left {
  width: 50%
}
.cont-right {
  width: 50%;
  box-shadow: 0 24px 24px -8px rgba(29, 35, 82, .12), 0 0 4px rgba(29, 35, 82, .04);
  background-color: #fff;
  padding: 40px 50px
}
.cont-left ul {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0 0
}
.cont-left ul li {
  width: 50%;
  padding: 0 15px 30px 0
}
.cont-left ul li strong {
  font: 400 18px/32px Gilroy-SemiBold, sans-serif;
  display: block
}
.form-input {
  height: 48px;
  padding: 0 0 0 15px
}
.form-input, .form-textarea {
  border-radius: 6px;
  border: 1px solid #ebebeb;
  background-color: #fff;
  display: block;
  margin-bottom: 15px;
  width: 100%;
  font: 15px LatoWeb, Arial, Helvetica, sans-serif
}
.form-textarea {
  height: 120px;
  padding: 15px;
  overflow: auto;
  resize: none
}
.form-input:focus, .form-textarea:focus {
  border-color: #4755dc
}
.contact-form button {
  width: 170px;
  cursor: pointer
}
.cont-right p {
  margin-bottom: 30px
}
.careers-txt-box {
  background: #fff;
  max-width: 670px;
  padding: 30px 50px;
  margin: -100px auto 30px
}
.careers-img {
  background: url(../images/careers-img.jpg) no-repeat 50%;
  height: 320px
}
.careers-txt-box h1 {
  margin-bottom: 30px
}
.subheader5 {
  color: #707070;
  font: 400 18px/24px Gilroy-Regular, sans-serif;
  letter-spacing: 1.2px;
  margin-bottom: 15px
}
.subheader4 {
  color: #474747;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 15px
}
.careers-icon strong {
  display: block;
  font: 400 18px/32px Gilroy-SemiBold, sans-serif;
  margin-bottom: 5px
}
.careers-icon div {
  height: 64px;
  margin-bottom: 20px
}
.careers-icon {
  text-align: center;
  padding: 0 30px
}
.careers-icon p {
  color: #707070
}
.careers-fotos {
  max-width: 990px;
  margin: 0 auto 100px
}
.careers-fotos img {
  display: block;
  width: 100%;
  height: auto
}
.careers-fotos .careers-fotos-mob {
  display: none
}
.career-box-list {
  margin-bottom: 100px
}
.career-box {
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
  padding: 20px 25px;
  margin-bottom: 15px
}
.career-box:hover {
  box-shadow: 0 4px 16px rgba(29, 35, 82, .08), 0 1px 2px rgba(29, 35, 82, .04)
}
.career-box-link {
  width: 60%
}
.career-box-place {
  width: 40%
}
.career-box-link a {
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
  display: inline-block;
  padding-right: 34px;
  position: relative
}
.career-box-link a:after {
  position: absolute;
  content: "";
  display: block;
  background: url(../images/arrow1.svg);
  width: 16px;
  height: 16px;
  right: 0;
  top: 50%;
  margin-top: -8px;
  opacity: 0
}
.career-box:hover .career-box-link a:after {
  opacity: 1
}
.careers-slider {
  background-color: #f4f6fb;
  margin-bottom: 150px;
  padding: 20px 0 0
}
.careers-slider-in {
  display: flex
}
.careers-slider-left {
  width: 50%;
  padding: 50px 50px 0 0
}
.careers-slider-right {
  width: 50%
}
.careers-slider .owl-carousel .careers-slider-right img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto
}
.careers-slider-left p {
  color: #4755dc;
  margin-bottom: 10px
}
.careers-slider-left div {
  font: 400 24px/40px Gilroy-SemiBold, sans-serif;
  padding-bottom: 120px
}
.careers-slider .owl-nav {
  position: absolute;
  left: 0;
  bottom: 40px;
  margin: 0
}
.careers-slider .owl-dots {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px
}
.careers-slider .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4755dc !important;
  display: inline-block;
  vertical-align: middle;
  margin: 0 12px
}
.careers-slider .owl-dot.active {
  width: 18px;
  height: 18px;
  background: none !important;
  border: 3px solid #4755dc !important
}
.help-center-header {
  background: url(../images/help-header-bg.png) no-repeat 50%;
  background-size: cover;
  height: 224px;
  margin-bottom: 75px
}
.help-center-header .burger-menu p, .help-center-header .login-buttons a, .help-center-header .nav-link {
  color: #fff
}
.help-center-header .btn-primary.btn-primary-small {
  background: none;
  border: 1px solid #fff
}
.help-center-header .btn-primary.btn-primary-small:hover {
  opacity: 1;
  background: #fff;
  color: #4755dc
}
.help-center-header-bar {
  margin-top: 70px
}
.breadcrumb, .breadcrumb a {
  color: #fff
}
.breadcrumb span {
  margin: 0 10px
}
.help-center-search {
  position: absolute;
  top: -13px;
  right: 15px
}
.help-center-search input {
  height: 48px;
  border-radius: 6px;
  border: 1px solid #ebebeb;
  background: #fff;
  width: 288px;
  padding: 0 0 0 48px;
  font: 15px LatoWeb, Arial, Helvetica, sans-serif
}
.help-center-search:after {
  content: "";
  display: block;
  position: absolute;
  left: 14px;
  top: 14px;
  background: url(../images/search-icon.svg);
  width: 18px;
  height: 18px
}
.help-center-wrap {
  display: flex;
  flex-wrap: wrap
}
.help-center-box {
  width: 50%;
  padding: 0 75px 75px 0
}
.help-center-box p {
  color: #707070;
  margin-bottom: 15px
}
.help-center-box h5 {
  margin-bottom: 5px
}
.help-center-box li {
  padding: 8px 0
}
.help-center-atticle-wrap {
  display: flex;
  margin-bottom: 75px
}
.help-center-atticle-left {
  width: 28%;
  padding-right: 30px
}
.help-center-atticle-right {
  width: 72%
}
.help-menu-mobile {
  display: none
}
.help-menu-desc li {
  padding: 8px 0
}
.help-menu-desc li span {
  font-weight: 600;
  color: #474747
}
.article-img {
  text-align: center;
  margin-bottom: 15px
}
.article-img img {
  max-width: 100%;
  width: auto;
  height: auto
}
.anchor {
  margin-left: 10px
}
article {
  margin-bottom: 50px
}
article p, article ul {
  margin-bottom: 15px
}
article ul li {
  padding: 4px 0
}
.help-menu-mobile {
  border-bottom: 1px solid #ebebeb
}
.help-menu-mobile p {
  padding: 0 15px;
  font: 400 15px/55px Gilroy-SemiBold, sans-serif;
  cursor: pointer;
  position: relative
}
.help-menu-mobile p i {
  background: url(../images/drop-arr2.svg);
  width: 12px;
  height: 8px;
  margin-top: -4px;
  position: absolute;
  top: 50%;
  right: 15px
}
.help-menu-mobile ul {
  padding-bottom: 15px;
  display: none
}
.help-menu-mobile ul li {
  padding: 4px 15px
}
.help-menu-mobile p.active i {
  transform: rotate(180deg)
}
.to-top {
  margin-bottom: 40px
}
.resent-related-article {
  padding: 25px;
  background: #f4f6fb;
  display: flex
}
.resent-related-article li:before {
  content: "\2022";
  display: inline-block;
  margin-right: 20px;
  color: #4755dc
}
.resent-related-article li {
  line-height: 32px;
  padding: 4px 0
}
.resent-related-article h5 {
  margin-bottom: 0
}
.resent-related-article div {
  width: 50%;
  padding-right: 30px
}
.help-center-header2 {
  height: auto;
  margin-bottom: 40px;
  padding-bottom: 54px
}
.help-center-header-bar2 {
  margin-top: 75px;
  color: #fff;
  text-align: center
}
.help-center-header-bar2 h1 {
  margin-bottom: 26px
}
.help-center-search2 {
  max-width: 570px;
  margin: 0 auto;
  position: relative
}
.help-center-search2 input {
  height: 64px;
  border-radius: 6px;
  border: 1px solid #ebebeb;
  background: #fff;
  width: 100%;
  padding: 0 0 0 65px;
  font: 18px LatoWeb, Arial, Helvetica, sans-serif;
  box-shadow: 0 4px 16px rgba(29, 35, 82, .08), 0 1px 2px rgba(29, 35, 82, .04)
}
.help-center-search2:after {
  content: "";
  display: block;
  position: absolute;
  left: 23px;
  top: 23px;
  background: url(../images/search-icon.svg);
  width: 18px;
  height: 18px
}
.help-icons-box {
  border: 1px solid #ecf0fa;
  display: flex;
  margin-bottom: 75px
}
.help-icons-box div {
  width: 33.33%;
  padding: 30px;
  border-right: 1px solid #ecf0fa
}
.help-icons-box div:last-child {
  border: 0
}
.help-icons-box div span {
  display: block;
  margin-bottom: 30px;
  text-align: center
}
.help-icons-box div a {
  font-size: 18px;
  font-weight: 600
}
.help-icons-box div p {
  color: #707070;
  margin-top: 5px
}
.using-marketcall {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 0 20px
}
.using-marketcall div {
  margin: 0 0 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
  padding: 20px 25px;
  width: 49%
}
.using-marketcall div:hover {
  box-shadow: 0 4px 16px rgba(29, 35, 82, .08), 0 1px 2px rgba(29, 35, 82, .04)
}
.using-marketcall div p {
  color: #707070
}
.using-marketcall div a {
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
  display: inline-block;
  padding-right: 34px;
  position: relative
}
.using-marketcall div a:after {
  position: absolute;
  content: "";
  display: block;
  background: url(../images/arrow1.svg);
  width: 16px;
  height: 16px;
  right: 0;
  top: 50%;
  margin-top: -8px;
  opacity: 0
}
.using-marketcall div:hover a:after {
  opacity: 1
}
.help-button-wrap {
  margin-bottom: 75px
}
.help-button-wrap a {
  padding: 0 25px
}
.help-faq-list {
  display: flex;
  margin: 10px -15px 40px
}
.help-faq-list ul {
  width: 50%;
  padding: 0 15px
}
.help-faq-list li {
  border-bottom: 1px solid #ecf0fa;
  padding: 15px 0
}
.advert-header-img {
  position: absolute;
  right: 0;
  top: 0
}
.header-4 {
  text-align: center;
  margin: 0 auto 75px;
  max-width: 770px
}
.header-4 h2 {
  margin-bottom: 30px
}
.how-it-works-wrap {
  margin-bottom: 100px;
  position: relative
}
.how-it-works-wrap .subheader4 {
  max-width: 550px;
  margin-bottom: 40px
}
.how-it-works-wrap ul li {
  position: relative;
  padding: 0 0 32px 40px;
  color: #707070
}
.how-it-works-wrap ul li strong {
  font-weight: 600;
  display: block;
  color: #0a0a0a
}
.how-it-works-wrap ul li span {
  width: 24px;
  height: 24px;
  background-image: linear-gradient(-45deg, #5a86ff, #4755dc);
  border-radius: 50%;
  text-align: center;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  font: 400 13px/27px Gilroy-SemiBold, sans-serif
}
.how-it-works-wrap img {
  position: absolute;
  right: 0;
  top: 60px
}
.hr2 {
  height: 0;
  margin-bottom: 0
}
.btn-primary-200 {
  min-width: 200px
}
.adv-join-box {
  padding: 75px 0 130px;
  text-align: center;
  background-color: #f4f6fb
}
.adv-join-box .h2 {
  margin-bottom: 40px
}
.join-slider {
  display: flex;
  border: 2px solid #ecf0fa;
  background: #fff;
  margin-bottom: 75px
}
.join-icon {
  width: 33.33%;
  border-right: 2px solid #ecf0fa;
  text-align: center;
  padding: 40px 30px
}
.join-icon div {
  height: 70px
}
.join-slider .join-icon:last-child {
  border: 0
}
.join-icon strong {
  color: #090909;
  font-weight: 600;
  display: block;
  margin-bottom: 5px
}
.join-icon p {
  color: #707070
}
.adv-join-box .owl-carousel .owl-item img, .affillates-icons.owl-carousel .owl-item img, .interface-box-wrap .owl-carousel .owl-item img {
  display: inline-block;
  width: auto;
  height: auto
}
.join-slider-wrap .owl-dots {
  margin: 0;
  bottom: -40px;
  left: 0;
  right: 0;
  position: absolute
}
.interface-box-wrap {
  margin-bottom: 40px
}
.interface-box-in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between
}
.interface-box {
  width: 350px;
  padding-bottom: 40px;
  text-align: center
}
.interface-box div {
  height: 220px
}
.interface-box strong {
  font: 400 22px Gilroy-SemiBold, sans-serif;
  display: block;
  margin-bottom: 15px
}
.interface-box p {
  color: #707070
}
.txt-1 {
  margin-bottom: 100px
}
.header-5, .txt-1 {
  text-align: center
}
.header-5 {
  margin-bottom: 30px;
  color: #707070;
  letter-spacing: 1.2px;
  font: 400 18px Gilroy-Regular, sans-serif
}
.option span svg path {
  fill: #c2c2c2
}
.option span em {
  position: relative;
  z-index: 2
}
.options-wrap {
  background: #fff;
  border: 2px solid #f5f7fc;
  border-bottom: 0;
  border-right: 0;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  text-align: center
}
.option {
  width: 20%;
  border-bottom: 2px solid #f5f7fc;
  border-right: 2px solid #f5f7fc;
  padding: 30px
}
.option span {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  position: relative
}
.option strong {
  font-weight: 400
}
.option span:after {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(-45deg, #5a86ff, #4755dc)
}
.option:hover span:after {
  opacity: 1
}
.option:hover span svg path {
  fill: #fff
}
.option:hover {
  box-shadow: 0 4px 16px rgba(29, 35, 82, .08), 0 1px 2px rgba(29, 35, 82, .04);
  z-index: 2;
  position: relative
}
.mail-icon {
  padding: 0 0 0 31px;
  background: url(../images/mail-icon.svg) no-repeat
}
.margin-100 {
  margin: 150px auto
}
.header-6 {
  text-align: left
}
.header-6 h2 {
  line-height: 1.2
}
.header-6 .subheader5 {
  margin-bottom: 5px
}
.affillates-icons {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px
}
.affillates-icon {
  width: 33.33%;
  padding: 0 50px 30px 0
}
.affillates-icon div {
  height: 90px
}
.affillates-icon p {
  color: #707070
}
.affillates-icon strong {
  font: 400 18px Gilroy-SemiBold, sans-serif;
  display: block;
  margin-bottom: 5px
}
.affillates-total-box {
  background-image: linear-gradient(-45deg, #7378fb, #5d3ece);
  color: #fff;
  padding: 75px 0;
  margin-bottom: 150px
}
.affillates-total-box ul {
  display: flex;
  margin-bottom: 60px
}
.affillates-total-box ul li {
  width: 33.33%
}
.affillates-total-box ul li strong {
  font: 400 32px Gilroy-SemiBold, sans-serif;
  display: block;
  margin-bottom: 5px
}
.affillates-total-box .container > p {
  margin-bottom: 15px
}
.aff-pay img {
  display: inline-block;
  margin-right: 30px
}
.help-faq-list2 {
  margin-bottom: 100px
}
.aff-partners-wrap {
  margin-bottom: 150px
}
.aff-partners {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 75px
}
.tools-accord p {
  display: none
}
.tools-accord .call-icon2 {
  cursor: pointer
}
.tools-accord .call-icon2:hover span {
  border-bottom: 1px dashed #4755dc
}
.tools-accord .call-icon2.active span {
  color: #0a0a0a;
  font-weight: 500
}
.tools-accord .call-icon2.active:hover span {
  border: 0
}
.p404 {
  text-align: center;
  padding-bottom: 150px;
  margin-top: -70px
}
.p404 .btn-primary {
  width: 150px
}
.p404 img {
  margin-bottom: -40px;
  max-width: 100%;
  width: auto;
  height: auto
}
.p404 > div {
  max-width: 566px;
  margin: 0 auto;
  position: relative
}
.p404 p {
  color: #707070;
  margin-bottom: 35px
}
.popup-wrap {
  position: fixed;
  z-index: 10;
  background: rgba(0, 0, 0, .2);
  display: none
}
.popup-in, .popup-wrap {
  left: 0;
  right: 0;
  bottom: 0;
  top: 0
}
.popup-in {
  position: absolute;
  overflow: auto
}
.popup-table {
  display: table;
  width: 100%;
  height: 100%
}
.popup-cell {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  padding: 10px
}
.popup {
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 24px 24px -8px rgba(29, 35, 82, .12), 0 0 4px rgba(29, 35, 82, .04);
  position: relative;
  border-radius: 8px;
  min-height: 50px;
  padding: 40px
}
.popup-close {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
  width: 16px;
  height: 16px;
  background: url(../images/close.png)
}
.popup-header {
  font: 400 44px Gilroy-Bold, sans-serif;
  margin: -10px 0 15px
}
.input-area {
  border-radius: 6px;
  border: 1px solid #ebebeb;
  min-height: 64px;
  margin-bottom: 25px;
  padding: 10px 15px 0;
  position: relative
}
.input-area label {
  display: block;
  color: #282828;
  font-size: 13px;
  font-weight: 600
}
.input-area input {
  height: 25px;
  border: 0;
  display: block;
  width: 100%;
  font: 15px LatoWeb, Arial, Helvetica, sans-serif;
  color: #0a0a0a
}
.not-reg-yet {
  margin-top: 30px
}
.custom-checkbox-container {
  display: block;
  position: relative;
  padding-left: 31px;
  margin: 30px 0;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}
.custom-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0
}
.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 3px
}
.custom-checkbox-container:hover input ~ .checkmark {
  background-color: #ccc
}
.custom-checkbox-container input:checked ~ .checkmark {
  background-color: #4755dc
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none
}
.custom-checkbox-container input:checked ~ .checkmark:after {
  display: block
}
.custom-checkbox-container .checkmark:after {
  left: 0;
  top: 4px;
  content: "";
  background: url(../images/check.png);
  width: 20px;
  height: 17px
}
.singup-top-message {
  background-image: linear-gradient(135deg, #ff5980, #ffa882);
  position: relative;
  padding: 0 40px
}
.singup-top-message p {
  max-width: 990px;
  margin: 0 auto;
  line-height: 32px;
  font-size: 17px;
  color: #fff;
  text-align: center;
  padding: 15px
}
.singup-top-message p a {
  font-weight: 600;
  color: #fff
}
.singup-top-message-close {
  background: url(../images/close-icon.svg);
  width: 12px;
  height: 12px;
  position: absolute;
  top: 23px;
  right: 20px;
  cursor: pointer
}
.singup-wrap {
  padding: 70px 0;
  overflow: hidden
}
.singup-left, .singup-right {
  width: 50%;
  float: left;
  min-height: 506px
}
.singup-left {
  position: relative
}
.singup-left img {
  position: absolute;
  right: 0;
  top: 0
}
.singup-button {
  width: 100%
}
.singup-right h1 {
  margin-bottom: 30px
}
.input-50 {
  margin: 0 -7.5px
}
.input-50 > div {
  width: 50%;
  float: left;
  padding: 0 7.5px
}
.bound {
  position: absolute;
  top: 50%;
  right: 14px;
  margin-top: -10px
}
.bound .popover__wrapper .hover-helper {
  display: none
}
.bound .popover__wrapper .hover-helper[data-unhovered], .bound:hover .popover__wrapper .hover-helper[data-hovered] {
  display: inline
}
.bound:hover .popover__wrapper .hover-helper[data-unhovered] {
  display: none
}
.popover__content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: -10px;
  transform: translateY(10px);
  background-color: #ccc;
  padding: 15px;
  margin-top: 20px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
  width: 300px;
  border-radius: 3px;
  font-size: 12px
}
.popover__content:before {
  position: absolute;
  z-index: -1;
  content: "";
  right: 10px;
  top: -8px;
  border-color: transparent transparent #ccc;
  border-style: solid;
  border-width: 0 10px 10px;
  transition-duration: .3s;
  transition-property: transform
}
.popover__wrapper:hover .popover__content {
  z-index: 10;
  opacity: 1;
  visibility: visible;
  transform: translateY(-20px);
  transition: all .5s cubic-bezier(.75, -.02, .2, .97)
}
.input-area.error {
  border-color: #ff1d31
}
.password-error {
  position: relative;
  font-size: 10px
}
.password-error.fixed-height {
  min-height: 20px
}
.password-error p {
  color: #ff6060;
  position: absolute;
  top: -24px
}
.input-tel-2 .password-error p {
  left: -150px
}
.password-error div {
  position: absolute;
  right: 0;
  top: -24px;
  color: #a5a5a5
}
.password-error div i {
  display: inline-block;
  height: 8px;
  margin-left: 1px;
  background: #ebebeb;
  width: 40px
}
.password-error div i:first-child {
  border-radius: 4px 0 0 4px
}
.password-error div i:last-child {
  border-radius: 0 4px 4px 0
}
.password-error .password-strength[data-strength="1"] > i:first-child {
  background: #ff6060
}
.password-error .password-strength[data-strength="2"] > i:nth-child(-n+2) {
  background: #f5929a
}
.password-error .password-strength[data-strength="3"] > i:nth-child(-n+3) {
  background: #b4d5b5
}
.password-error .password-strength[data-strength="4"] > i:nth-child(-n+4), .password-error .password-strength[data-strength="5"] > i:nth-child(-n+5), .password-error .password-strength[data-strength="6"] > i:nth-child(-n+6), .password-error .password-strength[data-strength="7"] > i:nth-child(-n+7), .password-error .password-strength[data-strength="8"] > i:nth-child(-n+8), .password-error .password-strength[data-strength="9"] > i:nth-child(-n+9), .password-error .password-strength[data-strength="10"] > i:nth-child(-n+10) {
  background: #30771e
}
.singup-right .subheader2 {
  margin: 0 0 30px
}
.flag-text {
  margin-left: 10px;
  vertical-align: middle
}
.flag-icon {
  width: 20px !important;
  height: 11px !important;
  background-size: cover !important;
  vertical-align: middle
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 23px !important
}
.input-tel-1 {
  width: 150px;
  float: left
}
.input-tel-2 {
  width: calc(100% - 150px);
  float: left
}
.input-tel-2 .input-area {
  border-left: 0;
  border-radius: 0 6px 6px 0
}
.input-tel-1 .input-area, .input-tel-1 .select2-container--default .select2-selection--single {
  border-right: 0;
  border-radius: 6px 0 0 6px
}
.input-tel-1.error .select2-container--default .select2-selection--single {
  border-color: #ff1d31
}
.singup-right2 {
  max-width: 570px;
  margin: 0 auto;
  width: 100%;
  float: none
}
.blog-nav {
  text-align: center
}
.blog-nav > * {
  margin: 5px;
  min-width: 130px
}
.btn-primary.disabled {
  background: #707070;
  cursor: default
}
.btn-primary.disabled:hover {
  opacity: 1
}
.breadcrumb2, .breadcrumb2 a {
  color: #707070;
  font-weight: 500;
  font-size: 13px
}
.breadcrumb2 {
  margin-bottom: 15px
}
.breadcrumb2 a:hover {
  color: #4755dc
}
.subscribe-additional-text {
  font-size: 11px;
  color: #707070;
  display: block;
  padding: 3px 0 0
}
.subscribe-additional-text a {
  color: #707070
}
.subscribe-additional-text a:hover {
  color: #4755dc
}
.nav-link {
  color: #424242
}
.nav-link:hover {
  color: #4755dc;
  text-decoration: none;
  font-weight: 500
}
.help-center-header .nav-link:hover {
  color: #000
}
.dropdown-user-product {
  width: 710px
}
.dropdown-menu-hr {
  clear: both
}
.dropdown-menu-main-link {
  float: left;
  width: 50%
}
.dropdown-menu-main-link.full-width {
  width: 100%
}
.dropdown-menu-main-link:hover {
  text-decoration: none
}
.dropdown-menu-main-link:hover span, .dropdown-menu-main-link:hover strong {
  color: #4755dc
}
.dropdown-user-product .dropdown-menu-list2 {
  -moz-column-count: 3;
  column-count: 3
}
.dropdown-user-product .dropdown-menu-list2 li a {
  font-size: 15px;
  font-weight: 400;
  color: #090909
}
.cookie-agree-popup {
  background-image: linear-gradient(-45deg, #7378fb, #5d3ece);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px 0;
  z-index: 5
}
.cookie-agree-popup div {
  max-width: 1400px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative
}
.cookie-button {
  width: 91px;
  height: 40px;
  border-radius: 6px;
  background-color: #fff;
  position: absolute;
  right: 85px;
  top: 50%;
  margin-top: -20px;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  color: #4755dc;
  font-weight: 500;
  font-size: 15px
}
.cookie-button:hover {
  text-decoration: none;
  opacity: .8
}
.cookie-agree-popup p {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 26px;
  padding: 7px 167px 7px 0
}
.cookie-agree-popup p a {
  font-weight: 400;
  color: #fff;
  text-decoration: none
}
.cookie-agree-popup p a:hover {
  text-decoration: underline
}
.subscribe-form {
  position: relative
}
.subscribe-additional-text2 {
  position: static
}
.text-success {
  color: #339f07
}
.text-error, .text-success {
  font-size: 13px;
  margin-top: 5px;
  display: block
}
.text-error {
  color: #e4090c
}
.popup-video {
  margin: 0 auto;
  max-width: 1400px;
  position: relative;
  background: #fff
}
.popup-video .popup-close {
  width: 30px;
  height: 30px;
  background-color: #fff;
  right: 0;
  top: 0;
  z-index: 2;
  background-repeat: no-repeat;
  background-position: 50%
}
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}
.main-product-box-in {
  position: relative;
  padding-bottom: 88px
}
.main-product-box-in .btn-primary {
  left: 40px;
  bottom: 40px;
  position: absolute
}
.list-type-1 {
  margin: 0;
  padding-bottom: 30px
}
#show-cookie-policy-bar:checked + .cookie-agree-popup {
  display: none
}
.clear, .footer-header:after, .input-50:after, .input-tel-wrap:after, .lead-generation-box:after {
  clear: both;
  line-height: 0;
  height: 0;
  overflow: hidden;
  font-size: 0;
  content: "";
  display: block
}
.career-box-link a:after, .event-box, .features-box, .form-input, .form-textarea, .help-menu-mobile p i, .option, .option span:after, .option span svg, .partners div span:after, .partners div span i, .secondary-nav-mobile p i, .using-marketcall div, .using-marketcall div a, a, button {
  transition: all .15s ease-in-out
}
.select2-with-label {
  position: relative
}
.select2-with-label label {
  color: #282828;
  font-size: 13px;
  position: absolute;
  left: 15px;
  top: 10px;
  z-index: 2;
  font-weight: 600
}
.select2-with-label .select2-container .select2-selection--single .select2-selection__rendered {
  padding-top: 27px !important
}
.why-text-box-img {
  right: -80px
}
.thanks-page {
  text-align: center;
  padding: 80px 10px
}
.thanks-page img {
  margin-bottom: 30px
}
.thanks-page h1 {
  margin-bottom: 25px
}
.thanks-page p {
  max-width: 580px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 32px
}
.thanks-page .btn-primary {
  width: 145px
}
.not-adv {
  margin-top: 30px
}
#close-menu {
  display: none
}
.no-scroll {
  overflow: hidden
}
.z-index10 {
  z-index: 10 !important
}
.mobile-navigation {
  background: #fff;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 70px;
  display: none
}
.mobile-navigation-in {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: auto
}
.main-navigation-list {
  display: block
}
.main-navigation-list li {
  margin: 0 15px;
  line-height: 30px;
  color: #090909;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid #ebebeb;
  position: relative
}
.main-navigation-list li a {
  padding: 17px 0;
  display: block;
  text-decoration: none;
  color: #090909
}
.mobile-navigation-step {
  padding: 17px 0;
  background: url(../images/arrow1.svg) no-repeat 100%;
  cursor: pointer
}
.mobile-navigation-step-screen {
  padding: 0 10px 20px;
  display: none
}
.mobile-navigation-step-screen .dropdown-menu-hr {
  margin-bottom: 25px
}
.mobile-navigation-back {
  color: #4755dc;
  padding: 15px 0;
  cursor: pointer
}
.mobile-navigation-step-screen .main-navigation-list {
  border-top: 1px solid #ebebeb
}
.mobile-navigation-step-screen .main-navigation-list li {
  margin: 0
}
.mobile-navigation-ava {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -20px
}
.mobile-navigation-ava img {
  border-radius: 50%;
  width: 40px;
  height: 40px
}
.mobile-navigation-ava span {
  top: 0;
  font: 600 13px/18px Gilroy-SemiBold, sans-serif
}
.mobile-navigation-ava span, .mobile-navigation-notification {
  position: absolute;
  right: 0;
  min-width: 16px;
  border-radius: 8px;
  background-image: linear-gradient(135deg, #ff5980, #ffa882);
  height: 16px;
  text-align: center;
  color: #fff;
  padding: 0 5px
}
.mobile-navigation-notification {
  top: 50%;
  margin-top: -8px;
  font: 400 13px/18px Gilroy-SemiBold, sans-serif
}
.trigger {
  color: #4755dc;
  cursor: pointer
}
.aff-paying {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 50px
}
.aff-paying-img {
  padding-right: 35px
}
.aff-paying-rate p {
  font-size: 15px;
  line-height: 160%;
  color: #0a0a0a;
  margin: 0 0 6px
}
.aff-paying-rate div img {
  margin-right: 4px
}
.comments-slider-wrap {
  margin-bottom: 120px
}
.comments-slider-wrap h2 {
  text-align: center;
  margin-bottom: 30px
}
.comment-slider-txt > span {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 24px;
  line-height: 160%;
  color: #000
}
.comment-slider-txt p {
  font-family: Gilroy-SemiBold, sans-serif;
  font-size: 18px;
  line-height: 160%;
  color: #474747
}
.comments-slider {
  background: #f4f6fb;
  max-width: 720px;
  margin: 0 auto;
  position: relative
}
.comment-slider-txt {
  padding: 45px
}
.comments-slider .owl-nav {
  position: absolute;
  left: -120px;
  right: -120px;
  top: 80px;
  height: 0
}
.comments-slider .owl-nav .owl-next {
  position: absolute;
  margin: 0;
  right: 0;
  top: 0
}
.comments-slider .owl-dots {
  text-align: center;
  margin-top: 20px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px
}
.comments-slider .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4755dc !important;
  display: inline-block;
  vertical-align: middle;
  margin: 0 12px
}
.comments-slider .owl-dot.active {
  width: 18px;
  height: 18px;
  background: none !important;
  border: 3px solid #4755dc !important
}
.comment-slider-txt p span {
  display: none
}
.comment-slider-txt p i {
  display: block
}
.comment-slider-txt p em {
  border-bottom: 1px dashed #4755dc;
  font-style: normal;
  font-size: 14px;
  display: inline-block;
  line-height: 1.5;
  color: #4755dc;
  cursor: pointer
}
.comment-bottom {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: .05em;
  color: 0;
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0 0
}
.comment-bottom div {
  margin: 0 30px 10px 0
}
.comment-bottom div i {
  font-style: normal;
  color: #4755dc;
  z-index: 50;
}
.referr-header .homepage-img {
  left: 570px
}
.gift-card-wrap {
  background: #f4f6fb;
  margin-bottom: 100px;
  padding: 80px 0
}
.gift-card {
  display: flex;
  align-content: center;
  align-items: center
}
.gift-card-l {
  width: 480px
}
.gift-card-r {
  flex: 1
}
.gift-card-r p {
  font-size: 24px
}
.gift-card-r div, .gift-card-r p {
  line-height: 150%;
  margin-bottom: 30px
}
.gift-card-r div {
  font-size: 19px
}
.gift-card-r strong {
  font: 400 32px/39px Gilroy-SemiBold, sans-serif
}
.get-started-wrap {
  padding: 100px 0;
  background: #f4f6fb;
  text-align: center
}
.get-started-wrap strong {
  font: 400 32px/39px Gilroy-Bold, sans-serif;
  display: block
}
.get-started-wrap p {
  font-size: 18px;
  line-height: 150%;
  margin: 25px 0
}
.referr-steps {
  display: flex;
  margin: 50px -7.5px 100px
}
.referr-steps-in {
  width: 33.33%;
  padding: 0 7.5px
}
.referr-steps-in > div {
  border: 1px solid #ebebeb;
  border-radius: 8px;
  padding: 40px
}
.referr-steps-in > div strong {
  font: 400 28px/150% Gilroy-SemiBold, sans-serif;
  display: block;
  margin-bottom: 5px
}
.referr-steps-in > div p {
  font-size: 16px;
  line-height: 150%;
  color: #707070
}
.new-reg-wrap {
  background: #f4f6fb;
  padding: 80px 0
}
.new-reg-box {
  display: flex
}
.new-reg-box-l {
  order: 1;
  width: 665px;
  background: #fff;
  padding: 50px 100px
}
.new-reg-box-r {
  order: 2;
  flex: 1;
  text-align: center
}
.btn-primary-outline {
  line-height: 46px
}
.new-reg-box-r .btn-primary-outline {
  font-weight: 700;
  min-width: 140px
}
.new-reg-box-r strong {
  font: 400 30px/36px Gilroy-Bold, sans-serif;
  display: block;
  margin-bottom: 20px
}
.new-reg-box-r p {
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 32px
}
.new-reg-box-r img {
  margin-bottom: 35px
}
.subheader6 {
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 30px
}
.lead-generation-header {
  background: url(../images/lead-generation-bg.jpg) no-repeat 50%;
  background-size: cover;
  min-height: 430px;
  color: #fff;
  padding: 125px 0 0;
  margin-bottom: 60px
}
.lead-generation-header p {
  font-size: 18px;
  line-height: 150%;
  max-width: 630px
}
.lead-generation-header h1 {
  margin-bottom: 30px
}
.lead-generation-box {
  display: flex;
  margin-bottom: 80px
}
.lead-generation-list {
  font-size: 0;
  flex: 1;
  padding: 40px 0 0
}
.lead-generation-form {
  width: 470px;
  background: #fff;
  box-shadow: 0 10px 30px #dde0e7;
  padding: 50px
}
.lead-generation-form h4 {
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 17px
}
.lead-generation-form p {
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 25px
}
.lead-generation-form input[type=email], .lead-generation-form input[type=text] {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: block;
  margin-bottom: 15px;
  width: 100%;
  padding: 0 0 0 15px;
  height: 52px;
  font: 18px LatoWeb, Arial, Helvetica, sans-serif
}
.lead-generation-form button {
  font-weight: 700;
  margin-top: 10px
}
.lead-generation-list div {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  padding: 0 10px 40px 0
}
.lead-generation-list h3 {
  padding: 0 0 0 65px;
  position: relative;
  font: 400 28px/150% Gilroy-SemiBold, sans-serif;
  margin-bottom: 10px
}
.lead-generation-list h3 span {
  position: absolute;
  left: 0;
  top: 2px;
  display: flex;
  width: 46px;
  height: 46px;
  text-align: center;
  align-items: center;
  justify-content: center
}
.lead-generation-list h3 span i {
  display: block;
  width: 100%;
  height: auto
}
.lead-generation-list ul {
  padding: 0 0 0 65px
}
.lead-generation-list ul li {
  font-size: 18px;
  line-height: 18px;
  padding: 8px 0
}
.lead-generation-header2 {
  background: url(../images/new-images/lead-generation-bg2.jpg) no-repeat 50%;
  background-size: cover;
  min-height: 1px;
  color: #fff;
  padding: 100px 0;
  margin-bottom: 100px
}
.btn-primary-white {
  color: #4b59d8;
  background: #fff;
  font-weight: 700
}
.lead-generation-box-buttons {
  margin: 35px 0 0
}
.lead-generation-box-buttons .btn-primary-white {
  margin-right: 10px
}
.lead-generation-main-text {
  margin-bottom: 80px;
  color: #111;
  font-size: 24px;
  line-height: 150%
}
.lg-text-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-bottom: 80px
}
.lg-text-box-text {
  width: 430px
}
.lg-text-box-reverse {
  flex-direction: row
}
.lg-text-box-text h3 {
  font-size: 32px;
  line-height: 140%;
  margin-bottom: 24px
}
.lg-text-box-text p {
  color: #111;
  font-size: 18px;
  line-height: 150%
}
.lead-promo-text {
  background: #f4f6fb;
  border-radius: 8px;
  padding: 80px 100px;
  position: relative;
  margin-bottom: 100px
}
.lead-promo-text p {
  max-width: 630px;
  font-size: 24px;
  line-height: 150%
}
.lead-promo-text img {
  position: absolute;
  right: 125px;
  bottom: -30px
}
.leads-icons, .leads-icons-wrap h3 {
  margin-bottom: 50px
}
.leads-icons {
  display: flex
}
.leads-icon {
  width: 33.33%;
  padding: 0 50px 50px 0
}
.leads-icon h4 {
  font-size: 24px;
  line-height: 150%;
  margin-bottom: 15px
}
.leads-icon div {
  height: 85px
}
.lead-bottom-box-wrap {
  background: #f4f6fb;
  padding: 100px 0 70px
}
.lead-bottom-box-wrap .main-product-box-in h3 {
  font: 400 24px/150% Gilroy-SemiBold, sans-serif
}
.lead-bottom-box-wrap .main-product-box-in p {
  max-width: 280px;
  margin-bottom: 30px
}
.lead-bottom-box-wrap .subheader6, .lead-bottom-box-wrap h2 {
  text-align: center
}
.lead-bottom-box-wrap .subheader6 {
  margin-bottom: 60px
}
.leads-icon .list-type-1 {
  padding-bottom: 0
}
footer .awards-container {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  border-top: 1px solid hsla(0, 0%, 100%, .1);
  border-bottom: 1px solid hsla(0, 0%, 100%, .1);
  margin: 25px 0;
  padding: 25px 0
}
footer .awards-container > * {
  margin-top: 20px;
  margin-right: 60px;
  display: flex;
  align-items: center
}
.award-description {
  font-weight: 400;
  font-size: 13px;
  padding: 12px
}
.award-description > p {
  color: #fff
}
.award-description > p:last-child {
  color: #bfb9ce
}
/*** my css partner page***/
.partner_services {
  padding: 40px 0 50px;
  font-family: Gilroy-Bold, sans-serif !important;
}
.partner_services .header-1 {
  margin-bottom: 20px;
}
.partner_services .header-1 h2 {
  font-weight: bold;
}
.partner_services .header-1 p {
  font-size: 20px;
}
.partner_services h3 {
  font-family: Gilroy-Bold, sans-serif !important;
  font-size: 24px;
}
.partner_services .tabbings {
  margin: 0 0 20px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2px;
  padding: 20px 0;
}
.partners_list_items {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 100%;
}
.partners_box {
  flex: 0 0 calc(33.333% - 14px);
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 20px 20px 35px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  box-sizing: border-box;
  max-width: 350px;
  width: 100%;
}
.partners_box img {
  height: 80px;
  width: auto;
  margin: 0 auto 15px auto;
  object-fit: contain;
  display: block;
  max-width: 200px;
}

.partners_box h3 {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}
.partners_box p {
  margin: 0 0 15px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  flex-grow: 1;
}
.partner-category-label {
  display: block;
  background: #4755dc;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  margin: 0 auto 10px auto;
  text-align: center;
  width: fit-content;
  max-width: 200px;
}
.dashboard_link {
  margin-top: 10px;
  text-align: center;
}
.dashboard_link a {
  background: #f8f9fa;
  color: #6c757d;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}
.dashboard_link a:hover {
  background: #e9ecef;
  border-color: #4755dc;
  color: #4755dc;
}
.partners_box h3 {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  text-align: center;
}
.partners_box p {
  margin: 0 0 15px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  flex-grow: 1;
  text-align: center;
}
.cta_site {
  text-align: center;
  margin: 15px 0;
}
.cta_site a {
  display: inline-block;
  background: #4755dc;
  color: #fff;
  padding: 10px 14px;
  border-radius: 5px;
  margin: 0;
  text-decoration: none;
  text-align: center;
}
.cta_site a:hover {
  background: #6a77e5;
}
.tabbings button {
  background: #555;
  color: #ccc;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin: 0 6px 8px 0;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tabbings button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}

.tabbings button:hover::before {
  left: 100%;
}

.tabbings button:hover {
  background: #4755dc;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(71, 85, 220, 0.3);
}

.tabbings button.active {
  background: #4755dc;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(71, 85, 220, 0.3);
}
.spcl_tag {
  margin: 15px auto 0 auto;
  font-style: italic;
  font-size: 13px;
  color: #555;
  background: #f8f9fa;
  padding: 8px 12px;
  border-radius: 6px;
  border-left: 3px solid #e2684d;
  text-align: left;
  max-width: 100%;
  width: fit-content;
}
.spcl_tag b {
  color: #e2684d;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .partners_box {
    flex: 0 0 calc(50% - 10px);
    max-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .partners_box {
    flex: 0 0 calc(50% - 10px);
    max-width: 100%;
    min-height: 280px;
  }
}
@media screen and (max-width: 567px) {
  .partners_box {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 250px;
  }
}
/*** end: my css partner page ***/
@media (max-width:1230px) {
  .container2, .container-header {
    max-width: 990px
  }
  .why-text-box > div {
    max-width: 390px
  }
  .subscribe-form div {
    width: 430px
  }
  .referr-header .homepage-img {
    left: 500px
  }
  .new-reg-box-l {
    padding: 50px;
    width: 580px
  }
  .lead-generation-form {
    width: 380px;
    padding: 50px
  }
  .lead-promo-text {
    padding: 80px 50px
  }
  .lead-promo-text img {
    right: 50px
  }
}
@media (max-width:989px) {
  .container {
    max-width: 768px
  }
  .main-product-box-in {
    padding: 25px
  }
  .partners {
    overflow: auto
  }
  .dropdown-menu-list2-inline {
    margin-bottom: 50px
  }
  .secondary-nav ul li {
    margin-right: 18px
  }
  .lead-box {
    width: 230px
  }
  .lead-box img {
    width: 230px;
    height: auto
  }
  .support-txt-box1 img {
    width: 340px;
    height: auto;
    top: 20px
  }
  .support-txt-box2 img, .support-txt-box3 img {
    width: 340px;
    height: auto;
    top: 30px
  }
  .support-txt-box1 div, .support-txt-box2 div, .support-txt-box3 div {
    width: 360px
  }
  .support-txt-box {
    margin-bottom: 70px
  }
  .support-txt-box-img {
    width: 330px
  }
  .support-txt-box-img img {
    max-width: 330px;
    width: auto;
    height: auto
  }
  .custom-img {
    right: -400px
  }
  .join-box a {
    right: 15px
  }
  .map {
    width: 400px
  }
  .addr-slider {
    width: 300px
  }
  .blog-header {
    margin: 40px 0
  }
  .header-subcsribe {
    position: relative;
    top: auto;
    right: auto;
    width: 100%
  }
  .blog-header-txt {
    padding: 0 0 20px
  }
  .main-blog-news-txt {
    padding: 15px
  }
  .blog-txt {
    margin: -10px 0 10px
  }
  .blog-item {
    width: 354px
  }
  .using-marketcall div {
    width: 360px
  }
  .how-it-works-wrap img {
    width: 300px;
    height: auto;
    top: 150px
  }
  .singup-left {
    width: 35%
  }
  .singup-right {
    width: 65%
  }
  .dropdown-user-product {
    width: 400px
  }
  .dropdown-menu-main-link {
    float: left;
    width: 100%
  }
  .dropdown-user-product .dropdown-menu-list2 {
    -moz-column-count: 1;
    column-count: 1
  }
  .dropdown-user-product .dropdown-menu-list2 li a {
    font-size: 15px;
    font-weight: 400;
    color: #4755dc
  }
  .main-product-box-in {
    padding-bottom: 73px
  }
  .main-product-box-in .btn-primary {
    left: 25px;
    bottom: 25px;
    position: absolute
  }
  .why-text-box-img {
    position: absolute;
    right: auto;
    left: 400px;
    top: 0
  }
  .advert-header-img {
    position: absolute;
    left: 489px;
    right: auto;
    top: 0
  }
  .careers-slider-left div {
    font: 400 18px/32px Gilroy-SemiBold, sans-serif;
    padding-bottom: 50px
  }
  .comments-slider {
    max-width: 100%
  }
  .referr-header .homepage-img {
    left: 500px
  }
  .gift-card-l {
    width: 300px
  }
  .gift-card-l img {
    width: 280px;
    height: auto
  }
  .referr-steps-in > div {
    padding: 40px
  }
  .referr-steps {
    display: block
  }
  .referr-steps-in {
    width: 100%;
    margin-bottom: 15px
  }
  .referr-steps-in > div {
    padding: 20px
  }
  .new-reg-box-l {
    padding: 50px;
    width: 100%
  }
  .new-reg-box {
    display: block
  }
  .new-reg-box-r {
    margin-bottom: 50px
  }
  .lead-generation-box {
    display: block
  }
  .lead-generation-form {
    width: 100%;
    width: 500px
  }
  .lead-generation-list {
    padding-top: 0
  }
  .lg-text-img img {
    max-width: 380px;
    height: auto
  }
  .lg-text-box-text {
    width: 330px
  }
  .lead-promo-text {
    padding: 50px
  }
  .lead-promo-text img {
    display: none
  }
  .leads-icons {
    flex-wrap: wrap
  }
  .leads-icon {
    width: 50%
  }
  .lead-bottom-box-wrap .main-product-box-in p {
    max-width: 220px
  }
  footer .awards-container > * {
    margin-right: 20px;
    margin-bottom: 15px
  }
}
@media (max-width:767px) {
  .h1, h1 {
    font-size: 40px
  }
  .homepage-img {
    position: static
  }
  .homepage-img img, .homepage-img video {
    width: 100%;
    height: auto
  }
  .homepage-header .container {
    padding-top: 0
  }
  .homepage-header-txt {
    padding-bottom: 75px;
    margin-bottom: 0
  }
  .partners {
    overflow: auto;
    padding-bottom: 10px
  }
  .partners div {
    padding-right: 30px
  }
  .partners div span {
    transform: scale(1)
  }
  .features-header-txt h1, .homepage-header h1 {
    font-size: 40px;
    line-height: 1.25
  }
  .homepage-header-buttons .btn-primary {
    margin: 0 0 15px
  }
  .homepage-header-buttons a {
    width: 100%;
    display: block
  }
  .hr {
    margin: 40px 0
  }
  .main-product-box {
    width: 100%
  }
  .main-product-box-wrap {
    display: block
  }
  .dropdown-menu-list2-inline li {
    width: 50%
  }
  .dropdown-menu-list2-inline li a {
    font-size: 15px
  }
  .main-product-box .btn-primary {
    width: 100%;
    text-align: center
  }
  .features-header-txt .subheader br, .features-header-txt h1 br, .homepage-header .subheader br, .homepage-header h1 br {
    display: none
  }
  .why-text-box-img {
    position: static;
    width: 100%;
    height: auto
  }
  .why-text-box {
    padding: 0 0 30px
  }
  .main-total-box {
    display: block
  }
  .main-total-box div {
    width: 100%;
    margin-bottom: 40px
  }
  .partners > div:last-child {
    padding-right: 0 !important
  }
  .dropdown-menu {
    display: none
  }
  .burger-menu {
    display: block
  }
  header {
    height: 70px
  }
  .container-header > a {
    position: relative;
    z-index: 10;
  }
  .logo {
    position: relative;
    height: 25px;
    width: auto;
    margin: 0;
    display: block;
    margin-left:10px;
  }
  nav {
    position: fixed;
    width: 0;
    left: auto;
    overflow: hidden;
    background: rgba(0, 0, 0, .5);
    z-index: 5;
    transition: width .15s ease-in-out
  }
  .nav-in, nav {
    right: 0;
    top: 0;
    bottom: 0
  }
  .nav-in {
    background: #fff;
    width: 200px;
    position: absolute;
    padding: 10px 15px;
    text-align: right;
    overflow: auto
  }
  .nav-list {
    display: block;
    margin-bottom: 15px
  }
  .nav-item {
    padding: 5px 0
  }
  .nav-link {
    font-size: 20px
  }
  .logged-panel {
    position: static
  }
  .logged-ava-wrap, .logged-panel > p {
    display: inline-block;
    vertical-align: middle;
    float: none
  }
  nav.active {
    width: 100%
  }
  .close-icon {
    background: url(../images/close-icon.svg) no-repeat;
    background-size: cover;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 210px;
    top: 18px;
    cursor: pointer;
    display: block
  }
  .subscribe-form {
    box-shadow: none;
    background: none;
    width: 100%
  }
  .subscribe-form div {
    margin-bottom: 15px;
    box-shadow: 0 4px 16px rgba(29, 35, 82, .08), 0 1px 2px rgba(29, 35, 82, .04);
    background-color: #fff
  }
  .subscribe-form button, .subscribe-form div {
    width: 100%;
    border-radius: 6px
  }
  .events-list {
    margin-bottom: 50px
  }
  .event-box {
    display: block
  }
  .event-box > div {
    width: 100%
  }
  .event-in1 {
    margin-bottom: 15px
  }
  .event-in3 {
    color: #707070
  }
  .event-in4 {
    text-align: left;
    margin-top: 15px
  }
  .copyright div {
    position: static;
    margin-top: 15px
  }
  .copyright div a {
    margin: 0 15px 0 0
  }
  .footer-in {
    display: block;
    font-size: 0;
    padding: 0
  }
  .footer-list {
    width: 50%;
    vertical-align: top;
    display: inline-block;
    padding-bottom: 30px
  }
  .footer-in .footer-list:first-child {
    display: none
  }
  .footer-header {
    height: auto;
    border-bottom: 1px solid hsla(0, 0%, 100%, .1);
    padding-bottom: 35px;
    margin-bottom: 35px
  }
  footer {
    padding-top: 40px
  }
  .footer-logo {
    position: static;
    height: 20px;
    width: auto;
    display: block;
    margin-bottom: 25px
  }
  .footer-lang {
    position: static;
    clear: both;
    margin-bottom: 35px
  }
  .footer-header .footer-list {
    float: left;
    width: 50%;
    display: block;
    padding: 0
  }
  .footer-header .footer-list p {
    margin-bottom: 7px
  }
  .refer-label {
    padding: 0;
    width: 50%;
    float: left
  }
  .career-box-list, .features-slider-wrap {
    margin-bottom: 75px
  }
  .features-slider-wrap .owl-dots {
    margin-top: 0
  }
  .careers-slider .owl-dot, .features-slider-wrap .owl-dot {
    margin: 0 6px
  }
  .features-box {
    min-height: 200px
  }
  .login-buttons {
    position: static
  }
  .features-page-header {
    height: auto;
    background: #f4f6fb
  }
  .features-header-txt {
    padding: 40px 0
  }
  .secondary-nav {
    display: none
  }
  .leads-wrap, .secondary-nav-mobile {
    display: block
  }
  .leads-wrap {
    padding-bottom: 50px
  }
  .lead-box {
    width: 100%
  }
  .lead-box img {
    width: 100%;
    height: auto;
    max-width: 340px
  }
  .support-txt-box {
    display: block;
    margin-bottom: 100px
  }
  .support-txt-box-img {
    width: 100%;
    margin-bottom: 20px
  }
  .support-txt-box-img img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block
  }
  .support-txt-box-in {
    width: 100%
  }
  .custom-img {
    position: static;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    display: block
  }
  .join-box {
    text-align: center
  }
  .join-box .subheader {
    margin-bottom: 30px
  }
  .join-box a {
    position: static;
    margin: 0 auto;
    max-width: 400px;
    width: 100%
  }
  .about-img {
    height: 240px;
    background-size: cover
  }
  .map-wrap {
    display: block
  }
  #map {
    height: 360px
  }
  .map {
    margin: 0 -15px 30px;
    width: auto
  }
  .addr-slider {
    width: 100%
  }
  .about-icon-slider, .about-txt-box2, .map-wrap {
    margin-bottom: 75px
  }
  .about-txt-box1 {
    margin: 40px 0
  }
  .main-blog-news {
    display: block
  }
  .main-blog-news-img {
    width: 100%
  }
  .blog-item .read-more-button, .blog-txt, .main-blog-news .read-more-button {
    display: none
  }
  .blog-date {
    margin: 0
  }
  .blog-item, .main-blog-news-txt {
    width: 100%
  }
  .blog-item-in {
    padding-bottom: 30px
  }
  .contacts-header {
    margin: 40px 0
  }
  .cont-wrap {
    display: block;
    margin-bottom: 75px
  }
  .cont-left {
    width: 100%;
    padding-bottom: 30px
  }
  .cont-right {
    padding: 30px 15px;
    margin: 0 -15px;
    width: auto
  }
  .contacts-header .subheader br {
    display: none
  }
  .careers-img {
    height: 240px;
    background-size: cover
  }
  .careers-txt-box {
    padding: 40px 0;
    margin: 0
  }
  .careers-fotos .careers-fotos-desc {
    display: none
  }
  .career-box, .careers-fotos .careers-fotos-mob {
    display: block
  }
  .career-box-link, .career-box-place {
    width: 100%
  }
  .careers-slider-in {
    display: block
  }
  .careers-slider-left, .careers-slider-right {
    width: 100%
  }
  .careers-slider-left {
    padding: 30px 0
  }
  .careers-slider {
    padding: 0
  }
  .help-center-header .nav-item a {
    color: #0a0a0a
  }
  .help-center-header .login-buttons a {
    color: #4755dc
  }
  .help-center-header .btn-primary.btn-primary-small {
    background: #4755dc;
    color: #fff
  }
  .help-center-header .btn-primary.btn-primary-small:hover {
    opacity: .8;
    background: #4755dc;
    color: #fff
  }
  .help-center-header-bar {
    padding: 40px 15px;
    margin-top: 0
  }
  .help-center-search {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 30px
  }
  .help-center-header {
    height: 256px;
    margin-bottom: 40px
  }
  .help-center-box {
    width: 100%;
    padding: 0 0 40px
  }
  .help-menu-mobile {
    display: block
  }
  .help-menu-desc {
    display: none
  }
  .help-center-atticle-wrap {
    display: block
  }
  .help-center-atticle-right {
    width: 100%
  }
  .help-center-atticle-left {
    width: auto;
    margin: -40px -15px 40px;
    padding: 0
  }
  article h1, article h2, article h3 {
    padding-right: 20px;
    position: relative
  }
  .anchor {
    position: absolute;
    top: 0;
    right: 0
  }
  .resent-related-article {
    display: block;
    margin: 0 -15px;
    padding: 15px
  }
  .resent-related-article div {
    width: 100%;
    padding: 0 0 30px
  }
  .resent-related-article div:last-child {
    padding-bottom: 0
  }
  .help-center-header2 {
    height: auto;
    margin-bottom: 40px;
    padding-bottom: 40px
  }
  .help-center-header-bar2 {
    margin-top: 30px
  }
  .help-center-search2 input {
    height: 56px;
    padding-left: 50px
  }
  .help-center-search2:after {
    left: 16px;
    top: 19px
  }
  .help-icons-box {
    border: 0;
    display: block;
    margin: 0 -15px 75px
  }
  .help-icons-box div {
    width: 100%;
    position: relative;
    padding: 30px 100px 30px 30px
  }
  .help-icons-box div, .help-icons-box div:last-child {
    border-bottom: 1px solid #ecf0fa
  }
  .help-icons-box div span {
    position: absolute;
    right: 15px;
    top: 30px
  }
  .using-marketcall {
    display: block
  }
  .help-button-wrap a, .using-marketcall div {
    width: 100%
  }
  .help-faq-list {
    display: block
  }
  .help-faq-list ul {
    width: 100%
  }
  .advert-header-img {
    position: static
  }
  .advert-header-img img, .how-it-works-wrap img {
    display: block;
    width: 100%;
    height: auto
  }
  .how-it-works-wrap img {
    position: static;
    margin-bottom: 30px
  }
  .interface-box, .join-icon {
    width: 100%
  }
  .interface-box div {
    height: auto;
    margin-bottom: 20px
  }
  .margin-100 {
    margin: 100px auto
  }
  .option {
    width: 50%
  }
  .homepage-header-buttons {
    text-align: center
  }
  .homepage-header-buttons .view-video-link2 {
    margin: 15px 0 0;
    width: auto;
    display: inline-block
  }
  .affillates-icons {
    display: block;
    flex-wrap: wrap;
    margin-bottom: 100px
  }
  .affillates-icon {
    width: 100%;
    padding: 0;
    text-align: center
  }
  .header-6 h2 br {
    display: none
  }
  .affillates-total-box {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 75px
  }
  .affillates-total-box ul {
    display: block
  }
  .affillates-total-box ul li {
    width: 100%;
    padding-bottom: 40px
  }
  .affillates-total-box ul li br {
    display: none
  }
  .affillates-total-box ul {
    margin: 0;
    padding: 0 0 20px
  }
  .aff-pay img {
    margin: 0 15px 15px
  }
  .aff-partners-wrap, .help-faq-list2 {
    margin-bottom: 75px
  }
  .aff-partners {
    padding-bottom: 10px;
    overflow: auto
  }
  .aff-partners img {
    margin-right: 30px
  }
  .aff-partners img:last-child {
    margin: 0
  }
  .aff-partners {
    margin: -20px 0 30px
  }
  .p404 {
    padding: 0 10px 50px;
    margin-top: 0;
    text-align: left
  }
  .p404 img {
    margin: 0 auto;
    display: block
  }
  .p404 .btn-primary {
    width: 100%
  }
  .singup-top-message {
    display: none
  }
  .singup-wrap {
    padding: 20px 0 70px
  }
  .singup-left, .singup-right {
    width: 100%;
    min-height: 1px
  }
  .singup-left img {
    height: auto;
    width: 100%;
    position: static
  }
  .singup-button {
    width: 100%
  }
  .cookie-agree-popup p {
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    padding: 9px 169px 9px 0
  }
  .main-product-box-in {
    padding: 25px
  }
  .main-product-box-in .btn-primary {
    position: static
  }
  .subscribe-form form {
    background: none;
    box-shadow: none
  }
  .homepage-header-txt {
    max-width: 100%
  }
  .thanks-page {
    padding: 30px 10px 50px
  }
  .thanks-page .btn-primary {
    width: 100%
  }
  .nav-in {
    display: none
  }
  .comments-slider, .why-text-box > div {
    max-width: 100%
  }
  .comments-slider-wrap {
    padding: 0
  }
  .comment-slider-txt {
    padding: 30px 15px
  }
  .gift-card {
    display: block
  }
  .gift-card-l img {
    width: auto;
    max-width: 100%
  }
  .gift-card-l {
    width: 100%;
    text-align: center
  }
  .gift-card-wrap {
    padding: 50px 0;
    margin-bottom: 80px
  }
  .get-started-wrap {
    padding: 50px 0
  }
  .lead-generation-list div {
    width: 100%
  }
  .lead-generation-form {
    margin: 0 -15px;
    max-width: auto;
    width: auto;
    padding: 50px 15px
  }
  .lead-generation-header {
    min-height: 1px;
    padding: 50px 0
  }
  .lead-generation-header h1 {
    font-size: 35px;
    margin-bottom: 20px
  }
  .lg-text-box {
    display: block;
    margin-bottom: 50px
  }
  .lg-text-img img {
    max-width: 100%;
    width: 100%
  }
  .lg-text-img {
    margin-bottom: 20px
  }
  .lg-text-box-text {
    width: 100%
  }
  .lead-generation-main-text {
    font-size: 18px
  }
  .lead-generation-box-buttons .btn-primary-white {
    width: 100%;
    margin: 0
  }
  .lead-generation-box-buttons .btn-primary-white:first-child {
    margin: 0 0 10px
  }
  .lead-generation-header2 {
    margin-bottom: 80px
  }
  .lead-promo-text {
    padding: 30px
  }
  .lead-generation-header h1 br {
    display: none
  }
  .lead-promo-text p {
    font-size: 18px
  }
  .leads-icons-wrap h3 {
    font-size: 28px
  }
  .leads-icons-wrap h3 br {
    display: none
  }
  .leads-icons {
    display: block
  }
  .leads-icon {
    width: 100%
  }
  .lead-bottom-box-wrap .main-product-box-in p {
    max-width: 100%;
    padding-right: 80px
  }
  .leads-icons {
    margin-bottom: 0
  }
  .lead-generation-header2, .lead-generation-main-text, .lead-promo-text {
    margin-bottom: 50px
  }
  .lead-bottom-box-wrap {
    padding: 50px 0 20px
  }
  footer .awards-container {
    border-top: 0;
    border-bottom: 1px solid hsla(0, 0%, 100%, .1);
    margin: 0 0 25px;
    padding: 0 0 25px
  }
}
@media (max-width:576px) {
  .new-reg-box-l {
    margin: 0 -15px;
    width: auto;
    padding: 50px 15px
  }
  .new-reg-wrap {
    padding: 50px 0
  }
}
@media (max-width:480px) {
  .refer-label i {
    margin-bottom: 5px
  }
  .cont-left ul li {
    width: 100%
  }
  .popup {
    padding: 30px 15px
  }
  .popup-header {
    font-size: 34px
  }
  .cookie-agree-popup p {
    padding: 9px 0;
    text-align: center
  }
  .cookie-button {
    position: static;
    margin: 0 auto;
    display: block
  }
  .aff-paying {
    flex-direction: column;
    text-align: center
  }
  .aff-paying-img {
    padding: 0 0 10px
  }
}
@media (max-width:374px) {
  .main-product-box-in-bg1, .main-product-box-in-bg2 {
    background: #fff
  }
  .dropdown-menu-list2-inline li {
    width: 100%
  }
}
html[data-locale=ru] .partners > div {
  transform: scale(1)
}
html[data-locale=ru] .partner-1 {
  width: 108px;
  height: 48px
}
html[data-locale=ru] .partner-1 i, html[data-locale=ru] .partner-1:after {
  background: url(../images/ru/partners/01.png) no-repeat 50%;
  background-size: contain
}
html[data-locale=ru] .partner-2 {
  width: 108px;
  height: 48px
}
html[data-locale=ru] .partner-2 i, html[data-locale=ru] .partner-2:after {
  background: url(../images/ru/partners/02.png) no-repeat 50%;
  background-size: contain
}
html[data-locale=ru] .partner-3 {
  width: 108px;
  height: 48px
}
html[data-locale=ru] .partner-3 i, html[data-locale=ru] .partner-3:after {
  background: url(../images/ru/partners/03.png) no-repeat 50%;
  background-size: contain
}
html[data-locale=ru] .partner-4 {
  width: 108px;
  height: 48px
}
html[data-locale=ru] .partner-4 i, html[data-locale=ru] .partner-4:after {
  background: url(../images/ru/partners/04.png) no-repeat 50%;
  background-size: contain
}
html[data-locale=ru] .partner-5 {
  width: 108px;
  height: 48px
}
html[data-locale=ru] .partner-5 i, html[data-locale=ru] .partner-5:after {
  background: url(../images/ru/partners/05.png) no-repeat 50%;
  background-size: contain
}
html[data-locale=ru] .partner-6 {
  width: 108px;
  height: 48px
}
html[data-locale=ru] .partner-6 i, html[data-locale=ru] .partner-6:after {
  background: url(../images/ru/partners/06.png) no-repeat 50%;
  background-size: contain
}
html[data-locale=ru] .tabs li {
  width: 150px
}
html[data-locale=ua] .partners > div {
  transform: scale(1)
}
html[data-locale=ua] .partner-1 {
  width: 108px;
  height: 48px
}
html[data-locale=ua] .partner-1 i, html[data-locale=ua] .partner-1:after {
  background: url(../images/ua/partners/01.png) no-repeat 50%;
  background-size: contain
}
html[data-locale=ua] .partner-2 {
  width: 108px;
  height: 48px
}
html[data-locale=ua] .partner-2 i, html[data-locale=ua] .partner-2:after {
  background: url(../images/ua/partners/02.png) no-repeat 50%;
  background-size: contain
}
html[data-locale=ua] .partner-3 {
  width: 108px;
  height: 48px
}
html[data-locale=ua] .partner-3 i, html[data-locale=ua] .partner-3:after {
  background: url(../images/ua/partners/03.png) no-repeat 50%;
  background-size: contain
}
html[data-locale=ua] .partner-4 {
  width: 108px;
  height: 48px
}
html[data-locale=ua] .partner-4 i, html[data-locale=ua] .partner-4:after {
  background: url(../images/ua/partners/04.png) no-repeat 50%;
  background-size: contain
}
html[data-locale=ua] .partner-5 {
  width: 108px;
  height: 48px
}
html[data-locale=ua] .partner-5 i, html[data-locale=ua] .partner-5:after {
  background: url(../images/ua/partners/05.png) no-repeat 50%;
  background-size: contain
}
html[data-locale=ua] .partner-6 {
  width: 108px;
  height: 48px
}
html[data-locale=ua] .partner-6 i, html[data-locale=ua] .partner-6:after {
  background: url(../images/ua/partners/06.png) no-repeat 50%;
  background-size: contain
}
html[data-locale=ua] .tabs li {
  width: 150px
}
html[data-locale=kz] .partners > div {
  transform: scale(1)
}
html[data-locale=kz] .partner-1 {
  width: 108px;
  height: 48px
}
html[data-locale=kz] .partner-1 i, html[data-locale=kz] .partner-1:after {
  background: url(../images/kz/partners/01.png) no-repeat 50%;
  background-size: contain
}
html[data-locale=kz] .partner-2 {
  width: 108px;
  height: 48px
}
html[data-locale=kz] .partner-2 i, html[data-locale=kz] .partner-2:after {
  background: url(../images/kz/partners/02.png) no-repeat 50%;
  background-size: contain
}
html[data-locale=kz] .partner-3 {
  width: 108px;
  height: 48px
}
html[data-locale=kz] .partner-3 i, html[data-locale=kz] .partner-3:after {
  background: url(../images/kz/partners/03.png) no-repeat 50%;
  background-size: contain
}
html[data-locale=kz] .partner-4 {
  width: 108px;
  height: 48px
}
html[data-locale=kz] .partner-4 i, html[data-locale=kz] .partner-4:after {
  background: url(../images/kz/partners/04.png) no-repeat 50%;
  background-size: contain
}
html[data-locale=kz] .partner-5 {
  width: 0;
  height: 0
}
html[data-locale=kz] .partner-5 i, html[data-locale=kz] .partner-5:after {
  background: url(../images/kz/partners/01.png) no-repeat 50%;
  background-size: contain
}
html[data-locale=kz] .partner-6 {
  width: 0;
  height: 0
}
html[data-locale=kz] .partner-6 i, html[data-locale=kz] .partner-6:after {
  background: url(../images/kz/partners/02.png) no-repeat 50%;
  background-size: contain
}
html[data-locale=kz] .tabs li {
  width: 150px
}
.table-bordered, .table-bordered td, .table-bordered th {
  border: 1px solid #ddd
}
.table {
  border-collapse: collapse
}
.table td, .table th {
  padding: 1.1rem 1.25rem;
  border-color: #e6e6e6
}
.table tbody:first-child tr:first-child td, .table tbody:first-child tr:first-child th {
  border-top: 0
}