@charset "UTF-8"; /*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.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;
}
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    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% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  src: local("Roboto Thin"), local("Roboto-Thin"),
    url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgVxMIzc.ttf)
      format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Light"), local("Roboto-Light"),
    url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fABc9.ttf)
      format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"),
    url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fABc9.ttf)
      format("truetype");
}
body {
  padding: 0px !important;
  text-decoration: none !important;
  font-size: 14px !important;
  color: #272d3b;
  line-height: 1.5;
  font-family: "Roboto", sans-serif !important;
}
h1 {
  font-size: 50px !important;
  text-transform: uppercase;
  font-weight: 100 !important;
}
h2 {
  font-size: 36px !important;
  margin-bottom: 20px !important;
  font-weight: 100 !important;
}
.h2-bold {
  font-weight: 500;
}
.h2-light {
  font-weight: 100;
}
.h2-big {
  font-size: 50px !important;
}
h3 {
  font-size: 35px !important;
}
h4 {
  font-size: 20px !important;
  font-weight: 100 !important;
}
h5 {
  font-size: 40px !important;
  font-weight: 100 !important;
  margin: 0 !important;
}
.mr {
  margin-right: 10px;
}
p {
  font-size: 16px;
  font-weight: 300;
}
.uppercase {
  text-transform: uppercase !important;
}
.main {
  display: flex;
  justify-content: center;
  padding: 70px 0;
}
.bgc {
  height: 400px;
  color: #fff;
  display: flex;
  background-image: url("../images/seller/timebanner.jpg");
  background-repeat: no-repeat;
  padding: 115px 0;
}
.bgc .time-wrapper {
  text-align: center;
  padding-top: 30px;
}
.sec {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-secondary:focus {
  box-shadow: none !important;
}
.successm {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  height: 60px;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  background-color: #4caf50;
}
.successm p {
  margin-bottom: 0;
}
button:focus {
  box-shadow: none !important;
  outline: 0 !important;
}
input:focus {
  outline: none !important;
  box-shadow: none !important;
}
.btn-outline-primary:focus {
  box-shadow: none !important;
}
.buy-domains .coins-div .bitcoins .coins button:focus {
  outline: none !important;
  box-shadow: none !important;
}
.buy-domains .coins-div .bitcoins .coins button .btn-text:focus {
  outline: none !important;
}
a {
  text-decoration: none !important;
}
.owl-prev {
  background: url("../images/arrow-left-black.svg");
  background-repeat: no-repeat;
}
.owl-next {
  background: url("../images/arrow-right-black.svg");
  background-repeat: no-repeat;
}
.for-sale-image .owl-prev {
  background: url("../img/arrow-left-black.svg");
  background-repeat: no-repeat;
}
.for-sale-image .owl-next {
  background: url("../img/arrow-right-black.svg");
  background-repeat: no-repeat;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: block !important;
}
.modal-backdrop {
  z-index: 1 !important;
}
.form-group {
  outline: none !important;
}
.width {
  width: 100% !important;
  min-width: 100% !important;
}
.flex {
  display: flex !important;
}
.main-menu {
  position: fixed;
  top: 0px;
  transition: all 0.8s;
  background-color: transparent;
  z-index: 100;
}
.main-menu .logo-light {
  order: 1;
}
.main-menu .logo-dark {
  order: 2;
  visibility: hidden;
  opacity: 0;
}
.main-menu-bg {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 6px -3px #000;
}
.main-menu-bg .logo-light {
  order: 2;
  visibility: hidden;
  opacity: 0;
}
.main-menu-bg .logo-dark {
  order: 1;
  visibility: visible;
  opacity: 1;
}
.main-menu-bg .menu-cont ul li a {
  color: #212529;
}
.main-nav {
  height: 60px;
  align-items: center;
}
.main-nav img {
  height: 42px;
}
.icon-menu {
  display: none;
}
.modal {
  padding-right: 0px !important;
}
.modal .modal-dialog {
  max-width: 100%;
  height: 100%;
  margin: 0px;
}
.modal .modal-dialog .modal-content {
  height: 100%;
  border-radius: 0px;
  border: none;
  background-color: rgba(0, 0, 0, 0.95);
}
.domain-brocerage-display-none {
  display: none;
}
.domain-acquisition-dislay-none {
  display: none;
}
.success {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  height: 100vh;
}
.success img {
  margin-top: -150px;
  height: 200px;
}
.success p {
  margin-bottom: 30px;
  margin-top: 0;
  max-width: 600px;
  text-align: center;
}
.success a {
  padding: 20px;
  margin-left: 0;
  height: 20px;
  min-width: 160px;
}
.menu-cont ul {
  padding: 0px;
  margin-bottom: 0;
}
.menu-cont ul li {
  display: inline-block;
  padding: 18px;
  text-align: center;
}
.menu-cont ul li a {
  color: #fff;
  transition: 0.3s;
}
.menu-cont ul li a:hover {
  background: -webkit-linear-gradient(90deg, #a32d60, #ff4e20);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.menu-cont1 {
  max-width: 100%;
}
.menu-cont1 ul {
  margin-bottom: 0;
}
.menu-cont1 ul li {
  display: inline-block;
  padding: 10px 24px;
}
.menu-cont1 ul li a {
  font-size: 30px;
  font-weight: 100;
  color: #fff;
  transition: 0.3s;
}
.dropdown-toggle::after {
  display: none !important;
}
.dropdown-menu {
  top: -2px !important;
}
.menu-cont ul li.dropdown {
  padding: 19px 24px;
}
.menu-cont ul li.dropdown ul {
  display: none !important;
}
.menu-cont ul li.dropdown:hover ul {
  display: block !important;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0;
  top: 60px;
  border-radius: 5px;
}
.menu-cont ul li.dropdown:hover ul li {
  padding: 0;
  min-width: 100%;
}
.menu-cont ul li.dropdown:hover ul li a {
  color: #282c34;
}
.menu-main-btn {
  font-size: 14px;
  width: 83px;
  height: 38px;
  padding-top: 10px;
  text-align: center;
  margin-left: 40px;
  border-radius: 3px;
  color: #fff;
  background: linear-gradient(90deg, #a32d60, #ff4e20);
  box-shadow: 0 1px 10px -1px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
  position: relative;
}
.menu-main-btn--register {
  width: 120px;
}
.menu-main-btn:hover {
  box-shadow: 0 1px 10px -1px rgba(0, 0, 0, 0.4);
  background: #fff;
  color: #000;
}
.menu-main-btn span {
  background: linear-gradient(to right, #fa584f, #fc6c2f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.contactme {
  width: 100%;
  margin-top: 30px;
}
.btn2 {
  margin-top: 65px;
  padding: 10px 20px;
  border-radius: 3px;
  color: #fff !important;
  background: #962a68;
  background: -webkit-linear-gradient(left, #fa584f, #fc6c2f);
  background: linear-gradient(90deg, #a32d60, #ff4e20);
  transition: 0.5s;
}
.btn2:hover {
  color: #fff;
  background: #fff;
  box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.4);
}
.btn2:hover span {
  background: linear-gradient(to right, #fa584f, #fc6c2f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn2 span {
  font-size: 16px;
  font-weight: 300;
}
.btn3 {
  width: 200px;
}
.main-btn {
  font-size: 14px;
  width: 114px;
  height: 40px;
  padding-top: 10px;
  text-align: center;
  margin-left: 24px;
  color: #fff;
  border-radius: 100px;
  background: #962a68;
  background: -webkit-linear-gradient(left, #962a68 0%, #e8462a 100%);
  background: linear-gradient(to right, #962a68 0%, #e8462a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#962a68', endColorstr='#e8462a', GradientType=1);
  background-color: red;
  box-shadow: 0 1px 10px -1px rgba(0, 0, 0, 0.1);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#43cea2', endColorstr='#185a9d', GradientType=1);
  transition: 0.2s;
}
.main-btn:hover {
  transform: scale(1.01);
  color: #fff;
  box-shadow: 0 1px 10px -1px rgba(0, 0, 0, 0.4);
}
.map-wrapper-conatiner .my-container {
  background-image: url("../images/seller/map-new.svg");
  background-size: contain;
  background-repeat: no-repeat;
  height: 100%;
  background-position-x: right;
  height: 546px;
  display: flex;
  align-items: center;
  position: relative;
}
.map-wrapper-conatiner .my-container p {
  max-width: 450px;
  text-shadow: 0 0 2px #fff;
  text-align: left;
}
.background-slider {
  background-color: #fff;
}
.background-slider .advantages-text-wrapper {
  text-align: center;
}
.advantages-text-slider-wrapper {
  padding: 125px 0;
}
.advantages-text-slider-wrapper .slider-picture-text-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 50px 0;
}
.advantages-text-slider-wrapper .slider-picture-text-wrapper .pic-shadow {
  position: absolute;
  top: 80px;
  right: 0;
  left: -10px;
  bottom: 0;
  border: 1px solid transparent;
  width: 455px;
  height: 455px;
  border-radius: 10px;
  background-color: #fff;
  /* box-shadow: 0 1px 6px 3px rgba(51, 51, 51, 0.1); */
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .sliderpic-wrapper {
  height: 450px;
  overflow: hidden;
  border-radius: 10px;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .sliderpic-wrapper
  img {
  width: 455px;
  height: 455px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 1px 6px 3px rgba(51, 51, 51, 0.1);
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-icon-wrapper {
  margin: 0 60px;
  position: relative;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-icon-wrapper
  .orange-icon-line {
  width: 1px;
  height: 455px;
  background: linear-gradient(
90deg
, #a32d60, #ff4e20);
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-icon-wrapper
  .orange-icon-line
  img {
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-icon-wrapper
  .orange-icon-line
  .image2 {
  display: none;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-icon-wrapper
  .orange-icon-line
  .icon1 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: -29px;
  margin: 30px 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 1px solid #fc6c2f; */
  box-shadow: 1px 0 5px;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-icon-wrapper
  .orange-icon-line
  .icon1.active {
  background: linear-gradient(90deg, #a32d60, #ff4e20);
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-icon-wrapper
  .orange-icon-line
  .icon1.active
  .image1 {
  display: none;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-icon-wrapper
  .orange-icon-line
  .icon1.active
  .image2 {
  display: block;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-icon-wrapper
  .orange-icon-line
  .icon2 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: -29px;
  margin: 30px 0;
  top: 24%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 1px solid #fc6c2f; */
  box-shadow: 1px 0 5px;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-icon-wrapper
  .orange-icon-line
  .icon2.active {
  background: linear-gradient(90deg, #a32d60, #ff4e20);
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-icon-wrapper
  .orange-icon-line
  .icon2.active
  .image1 {
  display: none;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-icon-wrapper
  .orange-icon-line
  .icon2.active
  .image2 {
  display: block;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-icon-wrapper
  .orange-icon-line
  .icon3 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: -29px;
  margin: 30px 0;
  top: 48%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 1px solid #fc6c2f; */
  box-shadow: 1px 0 5px;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-icon-wrapper
  .orange-icon-line
  .icon3.active {
  background: linear-gradient(90deg, #a32d60, #ff4e20);
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-icon-wrapper
  .orange-icon-line
  .icon3.active
  .image1 {
  display: none;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-icon-wrapper
  .orange-icon-line
  .icon3.active
  .image2 {
  display: block;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-icon-wrapper
  .orange-icon-line
  .icon4 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: -29px;
  margin: 30px 0;
  top: 72%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 1px solid #fc6c2f; */
  box-shadow: 1px 0 5px;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-icon-wrapper
  .orange-icon-line
  .icon4.active {
  background: linear-gradient(90deg, #a32d60, #ff4e20);
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-icon-wrapper
  .orange-icon-line
  .icon4.active
  .image1 {
  display: none;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-icon-wrapper
  .orange-icon-line
  .icon4.active
  .image2 {
  display: block;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-text-wrapper
  .text-wrapper {
  padding: 5px 0;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-text-wrapper
  .text-wrapper
  h2 {
  font-size: 22px !important;
  margin-bottom: 5px !important;
  text-align: left;
  font-weight: 500 !important;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-text-wrapper
  .text-wrapper
  p {
  max-width: 480px;
  line-height: 20px;
  text-align: left;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-text-wrapper
  .text-wrapper.active
  h2 {
  background: -webkit-linear-gradient(90deg, #a32d60, #ff4e20);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper
  .slider-text-wrapper
  .text-wrapper.active
  p {
  background: -webkit-linear-gradient(90deg, #a32d60, #ff4e20);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.advantages-text-slider-wrapper .slider-picture-text-wrapper1 {
  display: none;
  position: relative;
  padding: 50px 0;
}
.advantages-text-slider-wrapper .slider-picture-text-wrapper1 .pic-shadow {
  position: absolute;
  top: 80px;
  right: 0;
  left: -10px;
  bottom: 0;
  border: 1px solid transparent;
  width: 455px;
  height: 455px;
  border-radius: 10px;
  background-color: #fff;
  /* box-shadow: 0 1px 6px 3px rgba(51, 51, 51, 0.1); */
}
.advantages-text-slider-wrapper .slider-picture-text-wrapper1 .image2 {
  display: none;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .shadow-slider-wrapper {
  position: relative;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .sliderpic-wrapper {
  height: 450px;
  overflow: hidden;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .sliderpic-wrapper
  img {
  width: 455px;
  height: 455px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 1px 6px 3px rgba(51, 51, 51, 0.1);
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-icon-wrapper {
  margin: 0 60px;
  position: relative;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-icon-wrapper
  .orange-icon-line {
  width: 1px;
  height: 455px;
  background: linear-gradient(
90deg
, #a32d60, #ff4e20);
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-icon-wrapper
  .orange-icon-line
  img {
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-icon-wrapper
  .orange-icon-line
  .icon1 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: -29px;
  margin: 30px 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fc6c2f;
  box-shadow: 1px 0 5px;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-icon-wrapper
  .orange-icon-line
  .icon1.active {
  background: linear-gradient(
90deg
, #a32d60, #ff4e20);
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-icon-wrapper
  .orange-icon-line
  .icon1.active
  .image1 {
  display: none;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-icon-wrapper
  .orange-icon-line
  .icon1.active
  .image2 {
  display: block;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-icon-wrapper
  .orange-icon-line
  .icon2 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: -29px;
  margin: 30px 0;
  top: 24%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fc6c2f;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-icon-wrapper
  .orange-icon-line
  .icon2.active {
  background: linear-gradient(
90deg
, #a32d60, #ff4e20);
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-icon-wrapper
  .orange-icon-line
  .icon2.active
  .image1 {
  display: none;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-icon-wrapper
  .orange-icon-line
  .icon2.active
  .image2 {
  display: block;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-icon-wrapper
  .orange-icon-line
  .icon3 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: -29px;
  margin: 30px 0;
  top: 48%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fc6c2f;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-icon-wrapper
  .orange-icon-line
  .icon3.active {
  background: linear-gradient(
90deg
, #a32d60, #ff4e20);
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-icon-wrapper
  .orange-icon-line
  .icon3.active
  .image1 {
  display: none;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-icon-wrapper
  .orange-icon-line
  .icon3.active
  .image2 {
  display: block;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-icon-wrapper
  .orange-icon-line
  .icon4 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: -29px;
  margin: 30px 0;
  top: 72%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fc6c2f;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-icon-wrapper
  .orange-icon-line
  .icon4.active {
  background: linear-gradient(
90deg
, #a32d60, #ff4e20);
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-icon-wrapper
  .orange-icon-line
  .icon4.active
  .image1 {
  display: none;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-icon-wrapper
  .orange-icon-line
  .icon4.active
  .image2 {
  display: block;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-text-wrapper
  .text-wrapper {
  padding: 5px 0;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-text-wrapper
  .text-wrapper
  h2 {
  font-size: 22px !important;
  margin-bottom: 5px !important;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-text-wrapper
  .text-wrapper
  p {
  max-width: 480px;
  line-height: 20px;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-text-wrapper
  .text-wrapper.active
  h2 {
  color: #fa584f;
}
.advantages-text-slider-wrapper
  .slider-picture-text-wrapper1
  .slider-text-wrapper
  .text-wrapper.active
  p {
  background: -webkit-linear-gradient(90deg, #a32d60, #ff4e20);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.advantages-text-slider-wrapper .instrument-text-wrapper {
  padding-top: 125px;
  text-align: center;
}
.advantages-text-slider-wrapper .instrument-border-wrapper {
  padding-top: 50px;
}
.advantages-text-slider-wrapper .instrument-border-wrapper .instument-border {
  display: flex;
  justify-content: center;
  position: relative;
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1 {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  box-shadow: 0 1px 6px 3px rgba(51, 51, 51, 0.1);
  background: #fff;
  margin: 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  padding: 15px;
  position: relative;
  cursor: pointer;
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1
  img {
  width: 40px;
  height: 40px;
  margin-top: 15px;
  cursor: pointer;
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1
  h2 {
  font-size: 20px !important;
  width: calc(100%-5px);
  text-align: center;
  font-weight: 300 !important;
  line-height: 25px;
  margin-bottom: 10px !important;
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1
  .instument-border1-hover {
  background-repeat: no-repeat;
  width: 200px;
  height: 200px;
  border-radius: 10px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: contain;
  position: absolute;
  display: flex;
  transform: scale(0);
  transition: all 0.3s;
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1
  .instument-border1-hover
  .btn2 {
  margin-top: 0;
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1
  .hover1 {
  background-image: url("../images/seller/upravlienitovari2.jpg");
  transform: scale(0);
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1
  .hover2 {
  background-image: url("../images/seller/rabotasklientami2.jpg");
  transform: scale(0);
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1
  .hover3 {
  background-image: url("../images/seller/logistika2.jpg");
  transform: scale(0);
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1
  .hover4 {
  background-image: url("../images/seller/priemplatejey2.jpg");
  transform: scale(0);
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1
  .hover5 {
  background-image: url("../images/seller/kontrolkachestva2.jpg");
  transform: scale(0);
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1
  .hover6 {
  background-image: url("../images/seller/analitika2.jpg");
  transform: scale(0);
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1
  .hover7 {
  background-image: url("../images/seller/marketing2.jpg");
  transform: scale(0);
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1
  .hover8 {
  background-image: url("../images/seller/poiskpostavshikov2.jpg");
  transform: scale(0);
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1:hover
  .instument-border1-hover {
  transform: scale(1);
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1:hover
  .hover1 {
  transform: scale(1);
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1:hover
  .hover2 {
  transform: scale(1);
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1:hover
  .hover3 {
  transform: scale(1);
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1:hover
  .hover4 {
  transform: scale(1);
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1:hover
  .hover5 {
  transform: scale(1);
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1:hover
  .hover6 {
  transform: scale(1);
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1:hover
  .hover7 {
  transform: scale(1);
}
.advantages-text-slider-wrapper
  .instrument-border-wrapper
  .instument-border
  .instument-border1:hover
  .hover8 {
  transform: scale(1);
}
.advantages-text-slider-wrapper .why-open-shop-text-wrapper {
  text-align: center;
  padding-top: 200px;
}
.advantages-text-slider-wrapper .why-open-shop-text-wrapper p {
  font-size: 20px !important;
}
.advantages-text-slider-wrapper .why-open-shop-pic-wrapper {
  padding-top: 150px;
}
.advantages-text-slider-wrapper .why-open-shop-pic-wrapper .why-open-shop-pic1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantages-text-slider-wrapper
  .why-open-shop-pic-wrapper
  .why-open-shop-pic1
  .tarif-margin {
  margin-left: 50px;
}
.advantages-text-slider-wrapper
  .why-open-shop-pic-wrapper
  .why-open-shop-pic1
  .tarif-margin1 {
  display: none;
}
.advantages-text-slider-wrapper
  .why-open-shop-pic-wrapper
  .why-open-shop-pic1
  .econom-margin {
  margin-right: 50px;
}
.advantages-text-slider-wrapper
  .why-open-shop-pic-wrapper
  .why-open-shop-pic1
  img {
  width: 450px;
  height: 250px;
}
.advantages-text-slider-wrapper
  .why-open-shop-pic-wrapper
  .why-open-shop-pic1
  h2 {
  font-size: 25px !important;
  margin-bottom: 0 !important;
  padding-bottom: 10px;
  font-weight: 300 !important;
}
.advantages-text-slider-wrapper
  .why-open-shop-pic-wrapper
  .why-open-shop-pic1
  h4 {
  font-size: 16px;
  max-width: 340px;
}
.advantages-text-slider-wrapper
  .why-open-shop-pic-wrapper
  .why-open-shop-pic1
  div {
  text-align: left;
}
.background-subscribe-wrapper {
  background-image: url("../images/seller/subscribecackground2.jpg");
  background-repeat: no-repeat;
  height: 499px;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.background-subscribe-wrapper h2 {
  font-size: 40px !important;
  color: #fff;
}
.background-subscribe-wrapper p {
  font-size: 18px;
  font-weight: 100;
  text-align: center;
  color: #fff;
}
.go-back-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.go-back-wrapper .btn2:hover {
  background: linear-gradient(to right, #fa584f, #fc6c2f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.what-is-possible-wrapper {
  padding: 200px 0;
}

@media screen and (max-width: 1200px) {
  .what-is-possible-wrapper {
    display: none !important;
  }
 
}

.what-is-possible-wrapper p {
  text-align: center;
  font-size: 18px;
}
.what-is-possible-wrapper p .active {
  background: linear-gradient(to right, #fa584f, #fc6c2f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}
.what-is-possible-wrapper .active-text {
  text-align: center;
  font-size: 18px;
  background: linear-gradient(to right, #fa584f, #fc6c2f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: -webkit-linear-gradient(90deg, #a32d60, #ff4e20);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.what-is-possible-wrapper .what-is-possible-pic {
  display: flex;
  justify-content: center;
  padding-top: 60px;
}
.what-is-possible-wrapper .what-is-possible-pic .what-is-possible-pic1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 20px;
}
.what-is-possible-wrapper .what-is-possible-pic .what-is-possible-pic1 img {
  width: 300px;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 1px 6px 3px rgba(51, 51, 51, 0.1);
  transform: scale(1);
  transition-duration: 0.5s;
}
.what-is-possible-wrapper
  .what-is-possible-pic
  .what-is-possible-pic1
  img:hover {
  transform: scale(1.03);
  cursor: pointer;
}
.what-is-possible-wrapper .what-is-possible-pic .what-is-possible-pic1 p {
  font-size: 20px;
  font-weight: 300;
  padding-top: 40px;
}
.what-is-possible-wrapper .what-is-possible-pic-responsive {
  display: none;
}
.what-is-possible-wrapper
  .what-is-possible-pic-responsive
  .what-is-possible-pic1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 20px;
}
.what-is-possible-wrapper
  .what-is-possible-pic-responsive
  .what-is-possible-pic1
  img {
  width: 300px;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 1px 6px 3px rgba(51, 51, 51, 0.1);
  transform: scale(1);
  transition-duration: 0.5s;
}
.what-is-possible-wrapper
  .what-is-possible-pic-responsive
  .what-is-possible-pic1
  img:hover {
  transform: scale(1.03);
  cursor: pointer;
}
.what-is-possible-wrapper
  .what-is-possible-pic-responsive
  .what-is-possible-pic1
  p {
  font-size: 20px;
  font-weight: 300;
  padding-top: 40px;
}
.background-answer-questions {
  background-color: #f2f3f4;
  padding: 100px 0;
}
.background-answer-questions .panels {
  border-radius: 5px;
  box-shadow: 0 1px 6px 3px rgb(51 51 51 / 10%);
  background-color: #fff;
  margin-top: 30px;
  position: relative;
  border-left: 3px solid #70f1f2;
}
/* .background-answer-questions .panels::before {
  content: " ";
  height: auto;
  width: 5px;
  background: linear-gradient(to right, #fa584f, #fc6c2f);
  border-radius: 10px 0 0 10px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
} */
.background-answer-questions .panel {
  width: 750px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  font-size: 18px;
  position: relative;
  cursor: pointer;
  padding: 15px;
  text-align: left;
  padding-right: 60px;
}
.background-answer-questions .panel p {
  font-weight: 500;
  margin-bottom: 0 !important;
  padding-left: 15px;
}
.background-answer-questions .panels::after {
  content: "";
  background: url("../images/icons/add-plus-button.svg");
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 30px;
  top: 20px;
  background-size: 15px;
}
.background-answer-questions .panels.active::after {
  content: "";
  background: url("../images/icons/add-minus-button.svg");
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 30px;
  top: 20px;
  background-size: 15px;
}
.background-answer-questions .panel1 {
  width: 750px;
  height: auto;
  padding-left: 30px;
  padding-bottom: 30px;
  padding-right: 60px;
  padding-top: 20px;
  position: relative;
  cursor: pointer;
  text-align: left;
}
.background-answer-questions .panel1 p {
  margin-bottom: 0 !important;
  font-size: 14px;
  font-weight: 300;
  text-align: left;
}
.background-answer-questions .panel1 .p-point {
  display: list-item;
  margin-left: 20px;
}
.help-wrapper {
  padding: 200px 0;
}
.help-wrapper p {
  text-align: center;
  font-size: 18px;
}
.help-wrapper .help-pic-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 60px;
  position: relative;
}
.help-wrapper .help-pic-wrapper .owl-carousel .owl-nav .owl-next {
  color: transparent;
  position: absolute;
  top: 30%;
  right: -3%;
  width: 20px;
  height: 30px;
}
.help-wrapper .help-pic-wrapper .owl-carousel .owl-nav .owl-prev {
  color: transparent;
  position: absolute;
  top: 30%;
  width: 20px;
  height: 30px;
  left: -3%;
}
.help-wrapper .help-pic-wrapper .owl-carousel .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.help-wrapper .help-pic-wrapper .owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #898c9c;
  margin: 0 5px;
}
.help-wrapper .help-pic-wrapper .owl-carousel .owl-dots .owl-dot.active {
  background: linear-gradient(to right, #fa584f, #fc6c2f);
}
.help-wrapper .help-pic-wrapper .helper-pic1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.help-wrapper .help-pic-wrapper .helper-pic1 img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  box-shadow: 0 1px 6px 3px rgba(51, 51, 51, 0.1);
  margin-bottom: 15px;
}
.help-wrapper .help-pic-wrapper .helper-pic1 p:nth-of-type(1) {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}
.help-wrapper .help-pic-wrapper .helper-pic1 p:nth-of-type(2) {
  font-size: 14px;
  font-weight: 100;
  margin-bottom: 0;
  color: #858c9c;
}
.contact-us-wrapper {
  background-image: url("../images/seller/contactbackground.jpg");
  background-repeat: no-repeat;
  min-height: 823px;
  background-size: cover;
  padding: 150px 0;
}
.contact-us-wrapper label.error {
  color: #ff0000 !important;
  margin: 0px 0 10px 10px;
  position: relative;
  top: -5px;
}
.success-msg{
  color: white;
  text-align: center;
  font-weight: bold;
}
.error-msg{
  color: red;
  text-align: center;
  font-weight: bold;
}
.contact-us-wrapper .row {
  justify-content: center;
}
.contact-us-wrapper .hidden {
  text-align: center;
}
.contact-us-wrapper .hidden h2 {
  color: #fff;
  font-weight: 100;
}
.contact-us-wrapper .contact-us-text-wrapper {
  color: #fff;
  max-width: 490px;
  margin-top: 30px;
  text-align: left;
}
.contact-us-wrapper .contact-us-text-wrapper h3 {
  color: #fff !important;
  font-size: 20px !important;
  font-weight: bold !important;
}
.contact-us-wrapper .contact-us-text-wrapper p {
  position: relative;
  padding-left: 20px;
}
.contact-us-wrapper .contact-us-text-wrapper p::before {
  content: " ";
  position: absolute;
  width: 17px;
  height: 15px;
  background-image: url("../images/icons/checked.svg");
  background-repeat: no-repeat;
  background-size: 15px;
  left: 0px;
  top: 4px;
}
.contact-us-wrapper .contact-us-input-wrapper {
  margin-top: 30px;
  text-align: left;
}
.contact-us-wrapper .contact-us-input-wrapper label {
  color: #fff;
}
.contact-us-wrapper .contact-us-input-wrapper input {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  height: 45px !important;
  text-indent: 10px;
  width: 460px;
  margin-bottom: 10px;
  transition: 0.5s;
  color: #fff;
  margin-top: 0;
}
.contact-us-wrapper .contact-us-input-wrapper input:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.contact-us-wrapper .contact-us-input-wrapper .width {
  min-width: 85% !important;
  width: 85% !important;
}
.contact-us-wrapper .contact-us-input-wrapper .width .btn2 {
  height: 50px;
  margin-top: 10px;
  border-style: none;
  cursor: pointer;
}
.main-nav-wrapper {
  padding: 30px 0;
}
.main-nav-wrapper .logo {
  padding-right: 65px;
}
.main-nav-wrapper .logo img {
  height: 43px;
}
.main-nav-wrapper .foot li {
  padding: 0 34px;
}
.main-nav-wrapper .social-icon1 {
  margin: 0 5px;
}
.main-nav-wrapper .social-icon1 img {
  cursor: pointer;
  width: 20px;
  height: 20px;
}
.top .hero-image {
  background: url("../images/seller/seller-hero.jpg") no-repeat center;
  height: 950px;
  width: 100%;
  margin-top: -60px;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  -webkit-background-size: cover;
  background-size: cover;
}
.top .hero-image .youtube-link {
  padding: 20px 0;
  padding-top: 35px;
}
.top .hero-image .urbenn-discription {
  width: 700px;
}
@media screen and (max-width: 576px) {
  .top .hero-image .head-first-text {
    font-size: 30px;
  }
  .top .hero-image .head-second-text {
    font-size: 30px;
  }
}
.hero-block {
  margin-top: 90px;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  padding: 20px;
}
.hero-block h1 {
  margin-bottom: 30px;
  font-weight: bold !important;
}
.hero-block p {
  font-size: 20px;
  font-weight: 100;
}
.hero-block .btn2 {
  margin-top: 30px;
}
.partner-header {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}
.partner-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  padding-bottom: 50px;
}
.partner-wrapper .owl-footer-logos .owl-stage {
  width: 100% !important;
  display: flex;
  justify-content: center;
  height: 75px;
  align-items: center;
}
.partner-wrapper .owl-footer-logos .owl-item {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.partner-wrapper .owl-footer-logos .owl-item img {
  width: 90px !important;
  height: 100%;
}
.partner-wrapper .owl-footer-logos .owl-nav {
  display: none !important;
}
footer {
  background-color: #292832;
}
footer a {
  font-size: 14px;
}
.end {
  height: 45px;
  background: #1a1c23;
}
.end p {
  margin: 0;
  color: #fff;
  font-size: 12px !important;
}
.top1 {
  position: relative;
}
.top1 .instrument-modal {
  background-repeat: no-repeat;
  height: 400px;
  background-size: cover;
  width: 100%;
  background-position-x: 50%;
}
.top1 .arrow-down-image {
  color: #cccccc;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 10px 5px;
  height: 37px;
  width: 37px;
  margin: auto;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  margin-top: 15px;
  cursor: pointer;
  position: absolute;
  bottom: 10px;
}
.top1 .arrow-down-image img {
  height: 12px;
}
.top1 h1 {
  font-size: 40px !important;
  color: #fff;
}
.top1 .instrument-modal1 {
  background-image: url("../images/seller/upravlenietovari.jpg");
}
.top1 .instrument-modal2 {
  background-image: url("../images/seller/rabotasklientami.jpg");
}
.top1 .instrument-modal3 {
  background-image: url("../images/seller/logistika.jpg");
}
.top1 .instrument-modal4 {
  background-image: url("../images/seller/priemplatejey.jpg");
}
.top1 .instrument-modal5 {
  background-image: url("../images/seller/kontrolkachestva.jpg");
}
.top1 .instrument-modal6 {
  background-image: url("../images/seller/analitika.jpg");
}
.top1 .instrument-modal7 {
  background-image: url("../images/seller/marketing.jpg");
}
.top1 .instrument-modal8 {
  background-image: url("../images/seller/poiskpostavshikov.jpg");
}
.modal-title-wrapper {
  padding-top: 100px;
  padding-bottom: 50px;
}
.instrument-modal-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
.instrument-modal-text-wrapper .instrument-modal-text2 {
  display: none;
}
.instrument-modal-text-wrapper .instrument-modal-text1 {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.instrument-modal-text-wrapper
  .instrument-modal-text1
  .instrument-text-icon
  img {
  width: 350px;
  height: 350px;
}
.instrument-modal-text-wrapper .instrument-modal-text1 .modal-text-right {
  padding-left: 40px;
}
.instrument-modal-text-wrapper .instrument-modal-text1 .modal-text-left {
  padding-right: 40px;
}
.instrument-modal-text-wrapper
  .instrument-modal-text1
  .instrument-modal-text
  .h2-bold {
  font-size: 18px;
}
.instrument-modal-text-wrapper
  .instrument-modal-text1
  .instrument-modal-text
  p {
  font-size: 14px;
}
@media screen and (max-width: 991px) {
  .menu-main-btn {
    font-size: 14px;
    width: 83px;
    height: 38px;
    padding-top: 10px;
    text-align: center;
    margin-left: 0px;
    border-radius: 3px;
    color: #fff;
    background:none;
    box-shadow: 0 1px 10px -1px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
    position: relative;
  }
  .menu-main-btn:hover {
    box-shadow:none;
    background: none;
    color: white;
  }
  h1 {
    font-size: 40px !important;
  }
  header .menu-cont {
    display: none !important;
  }
  header > div {
    max-width: 100% !important;
  }
  header > div li {
    padding: 10px 13px !important;
  }
  #icon-menu {
    width: 35px;
    height: 45px;
    position: relative;
    z-index: 10000;
    margin: 50px auto;
    margin-right: 15px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    margin-top: 70px;
    cursor: pointer;
  }
  #icon-menu span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  #icon-menu span:nth-child(1) {
    top: 0px;
  }
  #icon-menu span:nth-child(2) {
    top: 10px;
  }
  #icon-menu span:nth-child(3) {
    top: 20px;
  }
  #icon-menu.open span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  #icon-menu.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }
  #icon-menu.open span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .icon-menu {
    height: 50px;
    width: 50px;
    display: block;
    border: none;
    background: transparent;
  }
  .icon-menu img {
    width: 30px;
  }
  .icon-menu:focus {
    outline: none;
  }
  .main-menu-bg #icon-menu span {
    background-color: #22262a;
  }
}
.menu-cont1 ul {
  text-align: center;
  padding-left: 0px !important;
}
.foot {
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .foot ul {
    flex-direction: column;
  }
}
@media screen and (max-width: 991px) {
  h2,
  h3 {
    font-size: 26px !important;
  }
  .menu-cont1 ul {
    text-align: center;
    padding-left: 0px !important;
  }
  .menu-cont {
    display: none !important;
  }
  .menu-cont1 {
    padding: 10px 0;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 30px !important;
  }
  .hero-image {
    height: auto !important;
    margin-top: 0 !important;
    padding: 30px 0 !important;
  }
  .hero-image p {
    font-size: 35px !important;
  }
  .hero-image .urbenn-discription {
    width: 100% !important;
  }
  .hero-image .urbenn-discription p {
    font-size: 20px !important;
  }
}
@media screen and (max-width: 575px) {
  h1 {
    font-size: 25px !important;
  }
  .end {
    height: 45px;
    padding: 0 25px;
  }
  .end p {
    text-align: center;
  }
  form h2 {
    text-align: center;
  }
  .partner-wrapper .owl-footer-logos .owl-item {
    padding: 0 10px;
  }
}
@media screen and (max-width: 460px) {
  h1 {
    font-size: 20px !important;
  }
  .hero-image {
    height: auto !important;
    margin-top: 0;
    padding: 30px 0;
  }
  .hero-image a {
    margin-top: 25px !important;
  }
  .hero-image .urbenn-discription h4 {
    font-size: 13px;
  }
  .partner-wrapper .owl-footer-logos .owl-item {
    padding: 0 5px;
  }
  .partner-wrapper .owl-footer-logos .owl-item img {
    width: 80px !important;
  }
}
@media only screen and (max-width: 1199px) {
  .main-nav ul li {
    padding: 18px 14px;
  }
  .map-wrapper-conatiner {
    padding-top: 80px;
  }
  .map-wrapper-conatiner .my-container {
    background-position-x: 50%;
    background-position-y: 130%;
    background-size: 1000px;
    height: 910px;
    display: block;
  }
  .map-wrapper-conatiner .my-container .my-container-text {
    padding-left: 0;
    margin-left: 0;
    padding-right: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .map-wrapper-conatiner
    .my-container
    .my-container-text
    .my-container-display {
    justify-content: center !important;
  }
  .map-wrapper-conatiner
    .my-container
    .my-container-text
    .my-container-display
    p {
    text-align: center;
  }
  .main-nav-wrapper .foot li {
    padding: 0 28px;
  }
  .advantages-text-slider-wrapper .slider-picture-text-wrapper .pic-shadow {
    width: 350px;
    left: -30px;
    top: 68px;
  }
}
@media only screen and (max-width: 991px) {
  .h2-big {
    font-size: 40px !important;
    text-align: center;
  }
  .map-wrapper-conatiner {
    padding-top: 80px;
  }
  .map-wrapper-conatiner .my-container {
    background-position-x: 50%;
    background-position-y: 130%;
    background-size: 1000px;
    height: 910px;
    display: block;
  }
  .map-wrapper-conatiner .my-container .my-container-text {
    padding-left: 0px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .map-wrapper-conatiner .my-container .my-container-text div {
    justify-content: center !important;
  }
  .map-wrapper-conatiner .my-container .my-container-text p {
    text-align: center;
  }
  .map-wrapper-conatiner .my-container .my-container-text h2 {
    padding-right: 0;
  }
  .map-wrapper-conatiner .my-container .orange-circle-wrapper {
    position: absolute;
    bottom: 0;
  }
  .bgc {
    height: 330px;
    padding: 80px 0;
    background-size: cover;
  }
  .slider-picture-text-wrapper {
    display: none !important;
  }
  .advantages-text-slider-wrapper .slider-picture-text-wrapper1 {
    display: block !important;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .slider-icon-wrapper {
    margin: 0;
    display: flex;
    justify-content: center;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .slider-icon-wrapper
    .orange-icon-line {
    height: 1px;
    width: 480px;
    position: relative;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .slider-icon-wrapper
    .orange-icon-line
    .icon1 {
    margin: 0px 30px;
    top: -30px;
    left: 0px;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .slider-icon-wrapper
    .orange-icon-line
    .icon2 {
    margin: 0px 30px;
    top: -30px;
    left: 25%;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .slider-icon-wrapper
    .orange-icon-line
    .icon3 {
    margin: 0px 30px;
    top: -30px;
    left: 50%;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .slider-icon-wrapper
    .orange-icon-line
    .icon4 {
    margin: 0px 30px;
    top: -30px;
    left: 75%;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .slider-text-wrapper {
    height: 240px;
    overflow: hidden;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .slider-text-wrapper
    .text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 70px;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .slider-text-wrapper
    .text-wrapper
    h2 {
    font-weight: 500 !important;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .shadow-slider-wrapper {
    width: 450px;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .shadow-slider-wrapper
    .pic-shadow {
    top: 30px;
    left: -30px;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .sliderpic-wrapper {
    border-radius: 10px;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .sliderpic-wrapper
    .pic1 {
    display: flex;
    justify-content: center;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .sliderpic-wrapper
    .pic2 {
    display: flex;
    justify-content: center;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .sliderpic-wrapper
    .pic3 {
    display: flex;
    justify-content: center;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .sliderpic-wrapper
    .pic4 {
    display: flex;
    justify-content: center;
  }
  .advantages-text-slider-wrapper .why-open-shop-text-wrapper h2 {
    font-size: 40px !important;
  }
  .advantages-text-slider-wrapper .why-open-shop-text-wrapper p {
    font-size: 16px !important;
  }
  .instrument-border-wrapper
    .instument-border
    .instrument-border-block
    .instument-border1 {
    width: 170px;
    height: 170px;
  }
  .instrument-border-wrapper
    .instument-border
    .instrument-border-block
    .instument-border1
    img {
    width: 35px;
    height: 35px;
  }
  .instrument-border-wrapper
    .instument-border
    .instrument-border-block
    .instument-border1
    h2 {
    font-size: 17px !important;
    line-height: 20px;
  }
  .instrument-border-wrapper
    .instument-border
    .instrument-border-block
    .instument-border1
    .instument-border1-hover {
    width: 170px;
    height: 170px;
  }
  .background-subscribe-wrapper {
    height: 390px;
  }
  .background-subscribe-wrapper h2 {
    font-size: 36px !important;
  }
  .what-is-possible-wrapper h1 {
    text-align: center;
  }
  .what-is-possible-wrapper .what-is-possible-pic {
    display: none;
  }
  .what-is-possible-wrapper .what-is-possible-pic-responsive {
    display: flex;
    justify-content: center;
    padding-top: 60px;
  }
  .what-is-possible-wrapper
    .what-is-possible-pic-responsive
    .owl-carousel
    .owl-nav
    .owl-prev {
    position: absolute;
    left: -20px;
    top: 33%;
    color: transparent;
    width: 20px;
    height: 30px;
  }
  .what-is-possible-wrapper
    .what-is-possible-pic-responsive
    .owl-carousel
    .owl-nav
    .owl-next {
    position: absolute;
    right: -20px;
    top: 33%;
    color: transparent;
    width: 20px;
    height: 30px;
  }
  .contact-us-wrapper .contact-us-input-wrapper input {
    width: 360px;
  }
  .contact-us-wrapper .contact-us-input-wrapper .width {
    width: 100% !important;
    min-width: 100% !important;
    margin-left: 12px;
  }
  .main-nav-wrapper .main-nav-icons {
    flex-direction: column;
  }
  .main-nav-wrapper .social-icons-wrapper {
    padding-top: 15px;
  }
  .top1 .instrument-modal {
    height: 344px;
  }
}
@media only screen and (max-width: 776px) {
  .contact-us-wrapper .contact-us-text-wrapper h3 {
    font-size:15px !important
  }
  .h2-big {
    font-size: 16px !important;
    text-align: center;
    padding: 0 20px;
  }
  .bgc {
    height: 300px;
    padding: 50px 0;
    background-size: cover;
  }
  .advantages-text-slider-wrapper .slider-picture-text-wrapper1 .pic-shadow {
    left: -10px;
  }
  .advantages-text-slider-wrapper .why-open-shop-text-wrapper h2 {
    font-size: 35px !important;
  }
  .advantages-text-slider-wrapper .why-open-shop-text-wrapper p {
    font-size: 16px !important;
  }
  .advantages-text-slider-wrapper .why-open-shop-pic-wrapper {
    text-align: center;
    padding-top: 50px;
  }
  .advantages-text-slider-wrapper
    .why-open-shop-pic-wrapper
    .why-open-shop-pic1 {
    flex-direction: column;
    text-align: center;
  }
  .advantages-text-slider-wrapper
    .why-open-shop-pic-wrapper
    .why-open-shop-pic1
    div {
    text-align: center;
  }
  .advantages-text-slider-wrapper
    .why-open-shop-pic-wrapper
    .why-open-shop-pic1
    img {
    margin: 30px 0;
  }
  .advantages-text-slider-wrapper
    .why-open-shop-pic-wrapper
    .why-open-shop-pic1
    .tarif-margin {
    display: none;
  }
  .advantages-text-slider-wrapper
    .why-open-shop-pic-wrapper
    .why-open-shop-pic1
    .tarif-margin1 {
    display: block;
  }
  .advantages-text-slider-wrapper
    .why-open-shop-pic-wrapper
    .why-open-shop-pic1
    .econom-margin {
    margin-right: 0;
  }
  .instrument-border-wrapper .instument-border .instrument-border-block {
    display: block !important;
  }
  .instrument-border-wrapper
    .instument-border
    .instrument-border-block
    .instument-border1
    .instument-border1-hover
    .btn2 {
    padding: 10px 10px;
  }
  .background-subscribe-wrapper {
    height: 300px;
  }
  .background-subscribe-wrapper h2 {
    font-size: 26px !important;
  }
  .background-subscribe-wrapper p {
    font-size: 16px;
  }
  .what-is-possible-wrapper
    .what-is-possible-pic-responsive
    .what-is-possible-pic1 {
    margin: 0 0 !important;
  }
  .what-is-possible-wrapper
    .what-is-possible-pic-responsive
    .what-is-possible-pic1
    img {
    width: 200px !important;
    height: 200px !important;
  }
  .what-is-possible-wrapper
    .what-is-possible-pic-responsive
    .what-is-possible-pic1
    p {
    font-size: 18px !important;
  }
  .background-answer-questions .panel {
    width: 520px;
  }
  .background-answer-questions .panel1 {
    width: 520px;
  }
  .contact-us-wrapper {
    height: 847px;
    padding: 50px 0;
  }
  .contact-us-wrapper .contact-us-input-wrapper input {
    width: 100%;
  }
  .contact-us-wrapper .uppercase {
    margin-bottom: 0 !important;
  }
  .contact-us-wrapper .width {
    margin-left: 0;
  }
  .main-nav-wrapper .logo {
    padding-left: 0;
  }
  .main-nav-wrapper .foot {
    padding-top: 15px !important;
  }
  .main-nav-wrapper .foot li {
    padding: 0 18px;
  }
  .instrument-modal-text-wrapper {
    display: block;
  }
  .instrument-modal-text-wrapper .instrument-modal-text1 {
    flex-direction: column;
    text-align: center;
    margin-bottom: 40px;
  }
  .instrument-modal-text-wrapper .instrument-modal-text1 .modal-text-left {
    padding-right: 0;
  }
  .instrument-modal-text-wrapper .instrument-modal-text2 {
    display: block;
  }
  .instrument-modal-text-wrapper .instrument-modal-text2 .h2-bold {
    font-size: 18px;
  }
  .instrument-modal-text-wrapper .instrument-modal-text2 p {
    font-size: 14px;
  }
  .instrument-modal-text-wrapper .instrument-text-right {
    display: none;
  }
  .top1 .instrument-modal {
    height: 275px;
  }
}
@media screen and (max-width: 600px) {
  .top .hero-image .youtube-link .iframe {
    width: 100% !important;
    height: auto !important;
  }
}
@media only screen and (max-width: 545px) {
  .h2-big {
    font-size: 30px !important;
  }
  .map-wrapper-conatiner .my-container {
    height: 790px;
    background-size: 768px;
  }
  .bgc {
    height: 200px;
    padding: 30px 0;
    background-size: cover;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .shadow-slider-wrapper
    .pic-shadow {
    width: 350px;
    height: 350px;
    left: 15px;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .sliderpic-wrapper {
    height: 350px;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .sliderpic-wrapper
    img {
    width: 350px;
    height: 350px;
  }
  .background-subscribe-wrapper {
    height: 228px;
  }
  .background-subscribe-wrapper h2 {
    font-size: 24px !important;
  }
  .background-subscribe-wrapper p {
    font-size: 14px;
  }
  .background-subscribe-wrapper .btn2 {
    margin-top: 10px;
  }
  .what-is-possible-wrapper .what-is-possible-pic-responsive .owl-carousel {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .what-is-possible-wrapper
    .what-is-possible-pic-responsive
    .owl-carousel
    .owl-stage-outer {
    width: 100%;
  }
  .what-is-possible-wrapper
    .what-is-possible-pic-responsive
    .owl-carousel
    .owl-nav
    .owl-next {
    right: -8px;
  }
  .what-is-possible-wrapper
    .what-is-possible-pic-responsive
    .owl-carousel
    .owl-nav
    .owl-prev {
    left: -8px;
  }
  .background-answer-questions .panel {
    width: 450px;
    text-align: left;
    padding-right: 46px;
  }
  .background-answer-questions .panel p {
    text-align: left;
  }
  .background-answer-questions .panel1 {
    width: 450px;
  }
  .help-wrapper h1 {
    text-align: center;
  }
  .help-wrapper p {
    font-size: 15px;
  }
  .help-wrapper .help-pic-wrapper .owl-carousel {
    width: 90% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .help-wrapper .help-pic-wrapper .owl-carousel .owl-stage-outer {
    width: 100%;
  }
  .main-nav-wrapper .foot li {
    padding: 0 13px;
  }
  .modal-title-wrapper h5 {
    font-size: 35px !important;
  }
  .top1 .instrument-modal {
    height: 250px;
  }
}
@media only screen and (max-width: 479px) {
  .map-wrapper-conatiner .my-container {
    background-position-x: 43%;
    background-position-y: 95%;
    height: 883px;
    background-size: 600px;
  }
  .bgc {
    height: 120px;
    padding: 20px 0;
    background-size: cover;
  }
  .bgc h2 {
    font-size: 17px !important;
  }
  .bgc p {
    padding-top: 0 !important;
  }
  .advantages-text-slider-wrapper {
    padding: 100px 0;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .shadow-slider-wrapper {
    position: relative;
    width: 311px;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .shadow-slider-wrapper
    .pic-shadow {
    width: 270px;
    height: 270px;
    top: 20px;
    left: -4px;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .sliderpic-wrapper {
    height: 270px;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .sliderpic-wrapper
    img {
    width: 270px;
    height: 270px;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .slider-text-wrapper {
    height: 275px;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .slider-icon-wrapper
    .orange-icon-line {
    width: 100%;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .slider-icon-wrapper
    .orange-icon-line
    img {
    width: 25px;
    height: 25px;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .slider-icon-wrapper
    .orange-icon-line
    .icon1 {
    width: 50px;
    height: 50px;
    margin: 0;
    top: -26px;
    left: 20px;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .slider-icon-wrapper
    .orange-icon-line
    .icon2 {
    width: 50px;
    height: 50px;
    margin: 0;
    top: -26px;
    left: 31%;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .slider-icon-wrapper
    .orange-icon-line
    .icon3 {
    width: 50px;
    height: 50px;
    margin: 0;
    top: -26px;
    left: 55%;
  }
  .advantages-text-slider-wrapper
    .slider-picture-text-wrapper1
    .slider-icon-wrapper
    .orange-icon-line
    .icon4 {
    width: 50px;
    height: 50px;
    margin: 0;
    top: -26px;
    left: 78%;
  }
  .advantages-text-slider-wrapper .instrument-text-wrapper {
    padding-top: 100px;
  }
  .advantages-text-slider-wrapper .why-open-shop-text-wrapper {
    padding-top: 100px;
  }
  .advantages-text-slider-wrapper .why-open-shop-text-wrapper h2 {
    font-size: 24px !important;
  }
  .advantages-text-slider-wrapper .why-open-shop-text-wrapper p {
    font-size: 13px !important;
  }
  .advantages-text-slider-wrapper .why-open-shop-pic-wrapper {
    text-align: center;
    padding-top: 50px;
  }
  .advantages-text-slider-wrapper
    .why-open-shop-pic-wrapper
    .why-open-shop-pic1 {
    flex-direction: column;
  }
  .advantages-text-slider-wrapper
    .why-open-shop-pic-wrapper
    .why-open-shop-pic1
    img {
    width: 310px;
    height: 190px;
    margin: 30px 0;
  }
  .advantages-text-slider-wrapper
    .why-open-shop-pic-wrapper
    .why-open-shop-pic1
    h2 {
    font-size: 20px !important;
  }
  .advantages-text-slider-wrapper
    .why-open-shop-pic-wrapper
    .why-open-shop-pic1
    p {
    font-size: 14px;
    margin-bottom: 0;
  }
  .advantages-text-slider-wrapper
    .why-open-shop-pic-wrapper
    .why-open-shop-pic1
    .tarif-margin {
    display: none;
  }
  .advantages-text-slider-wrapper
    .why-open-shop-pic-wrapper
    .why-open-shop-pic1
    .tarif-margin1 {
    display: block;
  }
  .advantages-text-slider-wrapper
    .why-open-shop-pic-wrapper
    .why-open-shop-pic1
    .econom-margin {
    margin-right: 0;
  }
  .what-is-possible-wrapper {
    padding: 100px 0;
  }
  .instrument-border-wrapper .instument-border {
    margin-top: -10px;
  }
  .instrument-border-wrapper
    .instument-border
    .instrument-border-block
    .instument-border1 {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
  }
  .instrument-border-wrapper
    .instument-border
    .instrument-border-block
    .instument-border1
    img {
    width: 30px;
    height: 30px;
  }
  .instrument-border-wrapper
    .instument-border
    .instrument-border-block
    .instument-border1
    h2 {
    font-size: 14px !important;
    line-height: 15px;
  }
  .instrument-border-wrapper
    .instument-border
    .instrument-border-block
    .instument-border1
    .instument-border1-hover {
    width: 140px;
    height: 140px;
  }
  .instrument-border-wrapper
    .instument-border
    .instrument-border-block
    .instument-border1
    .instument-border1-hover
    .btn2 {
    padding: 7px 7px;
  }
  .instrument-border-wrapper
    .instument-border
    .instrument-border-block
    .instument-border1
    .instument-border1-hover
    .btn2
    span {
    font-size: 13px;
  }
  .background-subscribe-wrapper {
    height: 230px;
  }
  .background-subscribe-wrapper h2 {
    font-size: 17px !important;
    text-align: center;
    margin-bottom: 0 !important;
  }
  .background-subscribe-wrapper p {
    font-size: 13px;
  }
  .background-answer-questions .panel {
    width: 300px;
  }
  .background-answer-questions .panel p {
    font-size: 12px !important;
    padding-left: 5px;
  }
  .background-answer-questions .panel1 {
    width: 300px;
  }
  .background-answer-questions .panel1 p {
    font-size: 11px;
  }
  .help-wrapper p {
    font-size: 13px;
  }
  .contact-us-wrapper {
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .contact-us-wrapper .contact-us-input-wrapper .width {
    margin-left: 0 !important;
  }
  .contact-us-wrapper .btn2 {
    margin-left: 0;
  }
  .main-nav-wrapper .foot li {
    padding: 5px;
  }
  .end p {
    font-size: 10px !important;
  }
  .modal-title-wrapper h5 {
    font-size: 25px !important;
  }
  .instrument-modal-text-wrapper {
    padding: 50px 0;
  }
  .instrument-modal-text-wrapper
    .instrument-modal-text1
    .instrument-text-icon
    img {
    width: 300px;
    height: 300px;
  }
  .top1 .instrument-modal {
    height: 240px;
  }
  .top1 .instrument-modal h1 {
    font-size: 24px !important;
    margin-top: 6px !important;
  }
  .top1 .instrument-modal .arrow-down-image {
    height: 30px;
    width: 30px;
  }
}

/* instrumental  */
.instrument-section .box21 {
  text-align: center;
  position: relative;
  width: 90%;
  margin: auto;
}
.instrument-section .box21:after {
  content: "";
  width: 1px;
  height: 1px;
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -o-transition: all 0.5s linear 0.6s;
  -moz-transition: all 0.5s linear 0.6s;
  -ms-transition: all 0.5s linear 0.6s;
  -webkit-transition: all 0.5s linear 0.6s;
  transition: all 0.5s linear 0.6s;
}
.instrument-section .box21:before {
  content: "";
  width: 1px;
  height: 1px;
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -o-transition: all 0.5s linear 0.3s;
  -moz-transition: all 0.5s linear 0.3s;
  -ms-transition: all 0.5s linear 0.3s;
  -webkit-transition: all 0.5s linear 0.3s;
  transition: all 0.5s linear 0.3s;
}
@media screen and (max-width:1200px){
  .instrument-section .box21:before{
   content:none;
  }
}
.instrument-section .box21:hover:after {
  -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -moz-transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    transition-delay: 0.2s;
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
}
@media screen and (max-width:1200px){
  .instrument-section .box21:after{
   content:none;
  }
}
.instrument-section .box21:hover:before {
  -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -moz-transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    transition-delay: 0.2s;
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
}
.instrument-section .box21:hover .box-content {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -moz-transition-delay: 0.4s;
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  -ms-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.instrument-section .box21 img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.25),
    0 12px 40px 5px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width:1200px){
  .instrument-section .box21 img{
   box-shadow:none;
   filter: brightness(0.5);
  }
}

.instrument-section .box21 .box-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: 0 0;
  color: #fff;
  padding-top: 25px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  z-index: 1;
}

@media screen and (max-width:1200px) {
  .instrument-section .box21 .box-content {
    -webkit-transform: scale(1)!important;
    -moz-transform: scale(1)!important;
    -ms-transform: scale(1)!important;
    -o-transform: scale(1)!important;
    transform: scale(1)!important;
  }
  
}

.instrument-section .box21 .title {
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  margin-top: 20px;
}
.instrument-section .box21 .description {
  font-size: 14px;
  font-style: italic;
  padding: 0 10px;
  margin: 15px 0;
}
.instrument-section .box21 .btn-read {
  display: block;
  width: 150px !important;
  background: linear-gradient(90deg, #a32d60, #ff4e20);
  border-radius: 5px;
  font-size: 14px;
  color: #fff;
  text-transform: capitalize;
  padding: 7px 0 !important;
  margin: 0 auto;
  margin-top: 4rem;
}

@media screen and (max-width:575px){
  .instrument-section .box21 .btn-read{
    position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%);
  }
 
}
.instrument-section .title-box h2 {
  text-align: center;
  font-size: 50px;
  white-space: normal;
}
@media screen and (min-width: 991px) {

.instrument-section .box21 .btn-read {
  margin-top: 8rem;
}
@media screen and (min-width: 575px) {

  .instrument-section .box21 .btn-read {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 575px) {
  .instrument-section .title-box h2 {
    font-size: 30px;
  }
 
}
.instrument-section .box-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 20px;
}





.instrument-section .box21 img {
  height: 220px;
}
@media only screen and (max-width: 1250px) {
  .instrument-section .box21 .box21::after {
    content: none;
  }
  .instrument-section .box21 .box21:before {
    content: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .instrument-section .btn-read {
    position: absolute;
    bottom: 0;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%);
    padding: 2px 0 !important;
    width: 120px !important;
  }
}
@media only sreen and (max-width: 767px) {
  .instrument-section .btn-read {
    position: absolute;
    bottom: 0;
    bottom: 1%;
    left: 50%;
    transform: translate(-50%);
  }
}
@media only screen and (min-width: 315px) and (max-width: 575px) {
  .instrument-section .btn-read {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px !important;
  }
}
.section-characterizes {
  margin-top: 5rem;
}

.section-characterizes h2 {
  text-align: center;
}
.section-characterizes .box-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3%;
}
.section-characterizes .box-wrap a {
  color: black;
  width: 30%;
}
@media screen and (min-width: 310px) and (max-width: 991px) {
  .section-characterizes .box-wrap {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.section-characterizes .box {
  padding: 30px;
  /*margin: 10px;
   */
  background: white;
  width: 70%;
  margin: auto;
  height: 300px;
  border: 1px solid #d6d6d6;
  box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  transition: 0.2s all;
  position: relative;
}
.section-characterizes .box .coom-text {
  background: transparent linear-gradient(90deg, #892371 0%, #ff4e20 100%) 0% 0%
    no-repeat padding-box;
  position: absolute;
  left: 0;
  width: 75px;
  text-align: center;
  color: white;
  height: 33px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0px 0px 5px black;
}
.section-characterizes .box .coom-text p {
  font-size: 20px;
}
.section-characterizes .box .text-center {
  margin-top: 1rem;
}
.section-characterizes .box img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 310px) and (max-width: 991px) {
  .section-characterizes .box {
    width: 85%;
    height: auto;
  }
}
.section-characterizes .box h4 {
  margin-top: 0;
  font-size: 23px;
}
@media screen and (max-width: 575px) {
  .section-characterizes .box h4 {
    font-size: 17px;
  }
}
.section-characterizes .box p {
  font-size: 13px;
}
.section-characterizes .box .box__img {
  width: 40%;
  margin: auto;
}
@media screen and (min-width: 1336px) and (max-width: 1500px) {
  .section-characterizes .box .box__img {
    width: 60%;
  }
}
.section-characterizes .box .box__img .provider__img {
  width: 89%;
}
.section-characterizes .box .box_img__manuf {
  width: 25%;
  margin: auto;
}
.section-characterizes .box .box_img__manuf img {
  height: auto;
}
.section-characterizes .box-wrap:hover .box {
  filter: blur(3px);
  opacity: 0.5;
  transform: scale(0.98);
  box-shadow: none;
}
.section-characterizes .box-wrap:hover .box:hover {
  transform: scale(1);
  filter: blur(0px);
  opacity: 1;
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.125);
 }
}
 @media screen and (max-width:1200px){
  .instrument-section .box-title{
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%);
    color: #fff;
  }
} 