@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,500&subset=cyrillic');
/*!
 * 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/KFOkCnqEu92Fr1MmgVxIIzc.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/KFOlCnqEu92Fr1MmSU5fBBc9.ttf)
      format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"),
    url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4mxP.ttf)
      format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"),
    url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfBBc9.ttf)
      format("truetype");
}

body {
  padding: 0px !important;
  text-decoration: none !important;
  font-size: 14px !important;
  color: #272d3b;
  font-family: "Roboto", sans-serif;
}

h1 {
  font-size: 50px !important;
  text-transform: uppercase;
  font-weight: 100 !important;
}

h2 {
  font-size: 36px !important;
  margin-bottom: 20px !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.h2-bold {
  font-weight: 500;
}

.h2-light {
  font-weight: 100;
}

.mr {
  margin-right: 10px;
}

p {
  font-size: 16px;
  font-weight: 300;
}

.main {
  display: flex;
  justify-content: center;
  padding: 70px 0;
}

.bgc {
  background: linear-gradient(to right, #962a68 0%, #e8462a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#962a68', endColorstr='#e8462a', GradientType=1);
  font-size: 18px;
  height: 500px;
  color: #fff;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

.sec {
  padding-left: 0 !important;
  padding-right: 0 !important;

}

.sec-l {
  display: flex;
  justify-content: flex-start;
  min-height: 500px;
  text-align: left;
}

.sec-l .sec-lb {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 0 40px;
  padding-right: 50px;
  width: 53%;
  margin-top: auto;
  margin-bottom: auto;
  padding-left: 70px;
}

.sec-r {
  display: flex;
  justify-content: flex-end;
  min-height: 500px;
  text-align: right;
}

.sec-r .sec-rb {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 0 40px;
  padding-right: 70px;
  width: 53%;
  margin-top: auto;
  margin-bottom: auto;
  padding-left: 50px;
}

.s1 {
  background: url("../images/urbn3.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  overflow: hidden;
  width: 100%;
}

.s2 {
  background: url("../images/urbn6.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  overflow: hidden;
  width: 100%;
}

.s3 {
  background: url("../images/urbn4.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
}

.s4 {
  background: url("../images/urbn7.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  overflow: hidden;
}

.s5 {
  background: url("../images/urbn5.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: right;
  overflow: hidden;
}

.s6 {
  background: url("../images/urbn2.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: right;
  overflow: hidden;
}

.hero p {
  max-width: 800px;
  font-size: 20px;
  font-weight: 300;
}

@media screen and (max-width: 1200px) {
  .hero .herop {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 576px) {
  .hero p {
    font-size: 16px;
  }
}

.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;
}

.bitcoins2 {
  padding: 0;
  height: auto;
  border-radius: 50px;
  max-width: 100% !important;
}

.bitcoins2 .coins {
  margin-top: 15px;
  height: auto;
  padding: 50px 0;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.7);
}

.bitcoins2 .coins h3 {
  font-size: 25px !important;
  text-align: center;
  font-weight: bold;
}

.bitcoins2 .coins p {
  text-align: center;
  margin-bottom: 20px;
}

.bitcoins2 .coins .btn-main {
  width: 120px;
  box-shadow: none;
  font-size: 12px;
  margin: auto;
  background: transparent;
  color: #2989d8 !important;
  border: 1px solid #2989d8;
}

.bitcoins2 .coins .btn-main:hover {
  border: none;
  color: #fff !important;
  background: #43cea2;
  background: -webkit-linear-gradient(45deg, #43cea2 0%, #185a9d 100%);
  background: linear-gradient(45deg, #43cea2 0%, #185a9d 100%);
}

.bitcoins2 .coins button {
  border: none;
  display: inline-block;
  border-radius: 99px;
  color: white;
  position: relative;
  z-index: 1;
  font-size: 14px;
  padding: 8px 20px;
  font-weight: 100;
  text-transform: uppercase;
  color: #2989d8;
}

.bitcoins2 .coins button .btn-text--gradient {
  font-weight: 500;
  font-size: 12px;
  background: -webkit-linear-gradient(left, #43cea2, #185a9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bitcoins2 .coins button .btn-text {
  text-transform: uppercase;
  color: #fff;
}

.bitcoins2 .coins button:hover .btn-text--gradient {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bitcoins2 .coins button:before,
.bitcoins2 .coins button:after {
  content: " ";
  position: absolute;
  border-radius: 99px;
}

.bitcoins2 .coins button:before {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -2;
  background: #503b9a;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0%, #43cea2),
    color-stop(100%, #185a9d)
  );
  background: -webkit-linear-gradient(left, #43cea2 0%, #185a9d 100%);
  background: -o-linear-gradient(left, #43cea2 0%, #185a9d 100%);
  background: -ms-linear-gradient(left, #43cea2 0%, #185a9d 100%);
  background: linear-gradient(to right, #43cea2 0%, #185a9d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#43cea2', endColorstr='#185a9d', GradientType=1);
}

.bitcoins2 .coins button:after {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  background-color: #fff;
  z-index: -1;
  opacity: 1;
  transition: all 0.6s ease-in-out;
}

.bitcoins2 .coins button:hover:after {
  opacity: 0;
  color: #fff;
}

.bitcoins2 .coins:hover {
  background: #fff;
}

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;
}

h3 {
  font-size: 35px !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;
}

.faq-contact button {
  width: 150px;
}

.faq-contact p {
  font-size: 16px;
}

.form-group {
  outline: none !important;
}

.contact-us .contact-us-div input {
  color: #fff;
  border: 1px solid #fff;
}

.contact-us label.error {
  color: #ff0000;
  margin: 0px 0 10px 10px;
  position: relative;
  top: -5px;
}

.contact-us .contact-us-div input:focus {
  outline: none !important;
}

.contact-us .contact-us-div textarea {
  color: #fff;
  border: 1px solid #fff;
}

.for-sale-image .main-btn {
  margin-top: 30px !important;
}

.for-sale-image .coins-div .bitcoins .coins .btn-main {
  height: 35px;
  font-size: 12px !important;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.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-menu-bg .menu-main-btn {
  color: #fff;
  background: linear-gradient(to right, #962a68 0%, #e8462a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#962a68', endColorstr='#e8462a', GradientType=1);
}

.main-menu-bg .menu-main-btn:hover {
  color: #fff;
  box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.4);
}

.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);
}

.modal-backdrop {
  z-index: 1 !important;
}

.domain-brocerage-display-none {
  display: none;
}

.domain-acquisition-dislay-none {
  display: none;
}

.menu-cont ul {
  padding: 0px;
  margin-bottom: 0;
}

.menu-cont ul li {
  display: inline-block;
  padding: 10px;
  text-align: center;
}

.menu-cont ul li a {
  color: #fff;
  transition: 0.3s;
}

.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: 250px;
  height: 40px;
  padding-top: 10px;
  text-align: center;
  margin-left: 24px;
  color: #1e2022;
  border-radius: 100px;
  background: #fff;
  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;
}

.menu-main-btn:hover {
  transform: scale(1.01);
  color: #1e2022;
  box-shadow: 0 1px 10px -1px rgba(0, 0, 0, 0.4);
}

.contactme {
  width: 100%;
  margin-top: 30px;
}

.btn2 {
  margin-top: 65px;
  padding: 10px 20px;
  border-radius: 100px;
  color: #fff;
  background: linear-gradient(to right, #962a68 0%, #e8462a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#962a68', endColorstr='#e8462a', GradientType=1);
  transition: 0.5s;
}

.btn2:hover {
  color: #fff;
  box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.4);
}

.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: 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);
}

.dr-own {
  background-color: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 9px 10px -1px rgba(0, 0, 0, 0.4) !important;
  margin-top: 22px !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border: none !important;
  align-items: center;
}

.dr-own a {
  color: #272d3b !important;
  font-weight: 400;
  font-size: 14px;
  height: 40px;
  display: flex;
  align-items: center;
}

.top .hero-image {
  background: url("../images/urbenn-hero.jpg") no-repeat center;
  height: 900px;
  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 .head-first-text {
  margin-bottom: 0;
  font-size: 45px;
  color: #fff;
  font-weight: 100;
  text-transform: uppercase;
}

.top .hero-image .head-second-text {
  font-size: 45px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}

.top .hero-image .youtube-link {
  padding: 20px 0;
  padding-top: 35px;
}

.top .hero-image .urbenn-discription {
  width: 700px;
}

.top .hero-image .your-domain-wraper {
  margin-top: 50px;
  padding: 0 20px;
}

.top .hero-image .your-domain-wraper h1 {
  max-width: 750px;
  font-size: 35px;
}

@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: 40px;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  padding: 20px;
}

.hero-block h1 {
  margin-bottom: 0px;
}

.hero-block p {
  font-size: 20px;
  font-weight: 100;
}

.hero-block .btn2 {
  margin-top: 30px;
}

.what-is-urbenn-wrapper1 {
  padding: 70px 0;
}

.what-is-urbenn-wrapper1 h2 {
  font-size: 35px;
}

.what-is-urbenn-wrapper1 div .first {
  font-weight: 100;
  margin-left: 10px;
}

.what-is-urbenn-wrapper1 div .second {
  font-weight: 500;
  margin-left: 10px;
}

.what-is-urbenn-wrapper1 p {
  text-align: center;
}

.tools-sec h4 {
  font-size: 12px;
}

.tools-sec h2 {
  font-size: 14px !important;
  font-weight: 700;
}

.tools-sec .block {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.tools-sec .block .tool {
  width: 50%;
  padding: 0 10px;
}

.tools-sec .block .tool .i1 p {
  font-size: 13px;
  margin-bottom: 0;
  padding: 0;
}

.tools-sec .block .tool .i1 h2 {
  margin-bottom: 5px !important;
}

.tools-sec .block .le {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.tools-sec .block .instument-icons {
  background-repeat: no-repeat;
  height: 40px;
  width: 40px;
  margin: 10px;
}

.tools-sec .block .instument-icons1 {
  background-image: url("../images/Безопасность-h.svg");
}

.tools-sec .block .instument-icons2 {
  background-image: url("../images/Маркетинг-h.svg");
}

.tools-sec .block .instument-icons3 {
  background-image: url("../images/гарантия-доставки-h.svg");
}

.tools-sec .block .instument-icons4 {
  background-image: url("../images/управление-товарами-h.svg");
}

.tools-sec .block .instument-icons5 {
  background-image: url("../images/работа-с-клиентами-h.svg");
}

.tools-sec .block .instument-icons6 {
  background-image: url("../images/login.svg");
}

.tools-sec .block .instument-icons7 {
  background-image: url("../images/delivery.svg");
}

.tools-sec .block .instument-icons8 {
  background-image: url("../images/valid.svg");
}

.tools-sec .block .hover:hover .instument-icons1 {
  background-image: url("../images/Безопасность-h.svg");
}

.tools-sec .block .hover:hover .instument-icons2 {
  background-image: url("../images/Маркетинг-h.svg");
}

.tools-sec .block .hover:hover .instument-icons3 {
  background-image: url("../images/гарантия-доставки-h.svg");
}

.tools-sec .block .hover:hover .instument-icons4 {
  background-image: url("../images/управление-товарами-h.svg");
}

.tools-sec .block .hover:hover .instument-icons5 {
  background-image: url("../images/работа-с-клиентами-h.svg");
}

.tools-sec .block .hover:hover h3,
.tools-sec .block .hover:hover p {
  color: #9d2b64;
}

.domain-valuation2 {
  background-image: url("../images/видение.jpg");
  background-size: cover;
  background-position: right;
  padding: 30px;
  justify-content: flex-start;
  text-align: left;
}

.domain-valuation2 .first {
  font-weight: 100;
  margin-right: 10px;
}

.domain-valuation2 .tit {
  justify-content: flex-end;
}

.domain-valuation3 {
  background-image: url("../images/Дистрибьютор.jpg");
  background-size: cover;
  background-position: left;
  text-align: right;
  justify-content: flex-end;
}

.domain-valuation4 {
  background-image: url("../images/Задача.jpg");
  background-position: right;
  justify-content: flex-start;
  text-align: left;
}

.domain-valuation5 {
  background-image: url("../images/buyer.jpg");
  background-size: cover;
  background-position: left;
  text-align: right;
  justify-content: flex-end;
}

.domain-valuation10 {
  background-image: url("../images/частное-лицо-bg.jpg");
  background-size: cover;
  background-position: right;
  padding: 30px;
  justify-content: flex-start;
  text-align: left;
}

.domain-valuation10 .brokerage-half1 {
  padding-left: 90px;
  padding-right: 50px;
}

.domain-valuation {
  background: url("../img/Domain-Valuation-&-Guidance.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 500px;
  background-position-x: 62%;
}

.domain-valuation .brokerage-half1 {
  padding: 30px 0;
  padding-right: 63px;
  width: 46%;
  margin-top: auto;
  margin-bottom: auto;
  padding-left: 92px;
}

.domain-valuation .brokerage-half1 h2 {
  font-size: 35px;
  font-weight: 100;
}

.domain-valuation .brokerage-half1 .second {
  font-weight: 500;
}

.domain-valuation .brokerage-half1 .second1 {
  margin-left: 10px;
}

.ambition-wrapper {
  height: 590px;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  background-image: url("../images/ambition-bg.jpg");
}

.ambition-wrapper h2 {
  font-size: 35px;
  font-weight: 100;
  color: #fff;
}

.ambition-wrapper .second {
  font-weight: 500;
  margin-left: 10px;
}

.ambition-wrapper p {
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.instruments-wrapper {
  padding: 100px 0;
}

.instruments-wrapper > div {
  margin-top: 50px;
}

.instruments-wrapper h3 {
  font-size: 20px !important;
  margin-top: 20px;
  text-align: center;
}

.instruments-wrapper p {
  text-align: center;
  padding: 0 55px;
}

.instruments-wrapper .instument-icons {
  background-repeat: no-repeat;
  height: 55px;
  width: 55px;
  margin: auto;
}

.instruments-wrapper .instument-icons1 {
  background-image: url("../images/Безопасность.svg");
}

.instruments-wrapper .instument-icons2 {
  background-image: url("../images/Маркетинг.svg");
}

.instruments-wrapper .instument-icons3 {
  background-image: url("../images/гарантия-доставки.svg");
}

.instruments-wrapper .instument-icons4 {
  background-image: url("../images/управление-товарами.svg");
}

.instruments-wrapper .instument-icons5 {
  background-image: url("../images/работа-с-клиентами.svg");
}

.instruments-wrapper .hover:hover .instument-icons1 {
  background-image: url("../images/Безопасность-h.svg");
}

.instruments-wrapper .hover:hover .instument-icons2 {
  background-image: url("../images/Маркетинг-h.svg");
}

.instruments-wrapper .hover:hover .instument-icons3 {
  background-image: url("../images/гарантия-доставки-h.svg");
}

.instruments-wrapper .hover:hover .instument-icons4 {
  background-image: url("../images/управление-товарами-h.svg");
}

.instruments-wrapper .hover:hover .instument-icons5 {
  background-image: url("../images/работа-с-клиентами-h.svg");
}

.instruments-wrapper .hover:hover h3,
.instruments-wrapper .hover:hover p {
  color: #9d2b64;
}

.history .kkkkk:before {
  content: " ";
  position: absolute;
  left: -10%;
  height: 100%;
  display: block;
  width: 10px;
  background-color: rgba(255, 255, 255, 0.33);
  border-radius: 50px;
  margin-top: 25px;
}

.history .date-wrapper {
  margin-right: 40px;
}

.history .date-wrapper .date-wrapper-text {
  text-align: right;
}

.history .discription-wrapper {
  margin-left: 40px;
}

.history .discription-wrapper .hhhhh {
  border: 1px solid #5b5b60;
  position: absolute;
  left: 5px;
  height: 35px;
  display: block;
  width: 19px;
  background-color: #19181d;
  border-radius: 100px;
}

.history .discription-wrapper .hhhhh div {
  height: 27px;
  display: block;
  width: 11px;
  background-color: #fff;
  border-radius: 100px;
}

.history .discription-wrapper .hd {
  background-color: #9ac50f;
  border: none;
}

.history .discription-wrapper .hd div {
  background-color: #5b5b60;
}

.history .discription-wrapper .rd {
  background-color: #ff2d00;
  width: 27px;
  height: 42px;
  left: 1px;
  border: none;
}

.history .discription-wrapper .rd div {
  background-color: #fff;
  width: 12px;
  height: 23px;
}

.history .discription-wrapper .pd {
  color: rgba(255, 255, 255, 0.4);
}

.history .discription-wrapper .rdp {
  font-size: 20;
  font-weight: 700;
}

.history .history-items-wrapper {
  padding-top: 20px;
  background-image: url("../images/line-v2.svg");
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: top;
}

.history {
  padding: 100px 0;
  background-color: #19181d;
  position: relative;
}

.history h2 {
  color: #fff;
  font-size: 35px;
  font-weight: 100;
}

.history .second {
  margin-left: 10px;
  font-weight: 500;
}

/* .history img {
	height: 1180px
} */

.history p {
  color: #fff;
  margin-bottom: 0;
  font-size: 16px;
  margin-top: 20px;
  font-weight: 300;
}

.history .pd {
  color: rgba(255, 255, 255, 0.4);
}

.history .rdp {
  font-size: 20;
  font-weight: 700;
}

.history .discription-wrapper {
  margin-bottom: 40px;
}

.history .discription-wrapper .bold {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}

.history .discription-wrapper p {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}

.history .week {
  margin-left: 110px;
}

.history .discription {
  margin-right: 110px;
}

/* Step-section */

.step_section {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}

.heading__history h2 {
  text-align: center;
}

.step__date > ul {
  list-style-type: none;
  color: white;
  text-align: right;
}

.step__date > ul > li:first-child {
  margin-top: 0px;
}

.step__date > ul > li {
  margin-top: 65px;
  font-size: 24px;
}

.step__line {
  position: relative;
}

.step__line > ul {
  list-style-type: none;
  padding: 0;
  position: absolute;
  top: 0;
  color: black;
}

.step__line li {
  background: transparent linear-gradient(180deg, #00abcc 0%, #70f1f2 100%) 0%
    0% no-repeat padding-box;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  padding-top: 8px;
  z-index: 2;
  margin-left: 15px;
  margin-top: 65px;
}

.step__line li:last-child {
  background: none;
  padding-top: 0;
  margin-top: 50px;
  margin-left: 0;
  width: 60px;
  margin-left: 5px;
}

.step__line li:first-child {
  margin-top: 0;
}

.step__line:before {
  content: "";
  display: block;
  background: transparent linear-gradient(180deg, #57e1e9 0%, #ffffff 100%) 0%
    0% no-repeat padding-box;
  border-radius: 2px;
  width: 4px;
  height: 95%;
  margin-left: 2rem;
}

.step__text > ul {
  list-style-type: none;
  color: white;
}

.step__text > ul > li {
  margin-top: 65px;
  font-size: 24px;
}

.step__text > ul > li:first-child {
  margin-top: 0px;
}

.step__text > ul > li:nth-child(5) {
  margin-top: 28px;
}

@media only screen and (max-width: 992px) {
  li > span {
    display: flex !important;
  }
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
  .step_section {
    width: 95%;
    margin: auto;
  }
  .step__date > ul > li {
    margin-top: 87px;
    margin-left: 5px;
    font-size: 3vw;
    white-space: nowrap;
  }
  .step__text > ul > li {
    font-size: 3vw;
    margin-top: 71px;
    margin-left: -17px;
  }
}

/* Step-section end*/

.team {
  background-color: #fff;
  padding: 55px 0;
}

.team h2 {
  font-weight: 100;
  text-align: center;
  color: #282c34;
}

.team p {
  text-align: center;
  color: #282c34;
}

.team .second {
  font-weight: 500;
  margin-left: 10px;
}

.team .arrow {
  position: absolute;
  height: 20px;
}

.team .arrow-left {
  left: 30px;
  top: 75px;
}

.team .owl-div {
  padding: 0 10px;
  margin-left: -5px;
}

.team .arrow-right {
  right: 30px;
  top: 75px;
}

.team .owl-prev {
  color: transparent;
  position: absolute;
  left: -75px;
  top: 77px;
}

.team .owl-next {
  color: transparent;
  position: absolute;
  right: -75px;
  top: 77px;
}

.team .coins-div {
  margin-top: 30px;
  padding: 0 90px;
  width: 100%;
}

.team .coins-div .row {
  margin: 0;
}

.team .coins-div .owl-stage-outer {
  margin-left: 5px;
}

.team .coins-div .bitcoins .team-person-name {
  font-size: 18px;
  color: #282c34;
  margin-bottom: 0;
  margin-top: 5px;
}

.team .coins-div .bitcoins .team-person-job {
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 0;
  color: #abafba;
}

.team .coins-div .bitcoins .coins {
  width: 150px;
  position: relative;
  overflow: hidden;
  border-radius: 100px;
}

.team .coins-div .bitcoins .coins h3 {
  font-size: 25px !important;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

.team .coins-div .bitcoins .coins p {
  text-align: center;
}

.team .coins-div .bitcoins .coins .btn-main {
  width: 120px;
  box-shadow: none;
  font-size: 12px;
  margin: auto;
  background: transparent;
  color: #2989d8 !important;
  border: 1px solid #2989d8;
}

.team .coins-div .bitcoins .coins .btn-main:hover {
  border: none;
  color: #fff !important;
  background: #43cea2;
  background: -moz-linear-gradient(45deg, #43cea2 0%, #185a9d 100%);
  background: -webkit-linear-gradient(45deg, #43cea2 0%, #185a9d 100%);
  background: linear-gradient(45deg, #43cea2 0%, #185a9d 100%);
}

.team .main-btn {
  margin: 0;
  margin-top: 50px;
  width: 170px;
  color: #fff !important;
}

.map {
  background-color: #161a19;
  background-image: url("../images/map-2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 100px 0;
  padding-bottom: 71%;
}

.map h2 {
  font-size: 35px;
  color: #fff;
  font-weight: 500;
  text-align: center;
}

.map .second {
  font-weight: 100;
  margin-right: 10px;
}

.map p {
  font-size: 45px;
  color: #fff;
}

.map .flags-wrapper {
  margin-top: 30px;
}

.map .flags-wrapper .flags {
  padding: 0px 20px;
}

.map .flags-wrapper img {
  height: 15px;
}

.map .flags-wrapper .respublic {
  font-size: 18px;
  margin-bottom: 0;
  margin-left: 10px;
  color: #fff;
}

.contact-us {
  background: url("../images/contact-us-bg.jpg");
  padding-top: 50px;
  /* height: 710px; */
  height: 100%;
  padding: 10px 0;
  background-size: cover;
}

.contact-us .hidden {
  overflow: hidden;
}

.contact-us .hidden h2 {
  font-size: 35px;
  font-weight: 500;
}

.contact-us .hidden .second {
  margin-right: 10px;
  font-weight: 100;
}

.contact-us .domain-name h2 {
  font-weight: 500;
  text-align: center;
  color: #fff;
}

.contact-us .domain-name p {
  color: #fff;
  text-align: center;
  padding: 0 80px;
}

.contact-us .contact-us-div {
  margin-top: 30px;
  padding: 0 75px;
}

.contact-us .contact-us-div h2 {
  color: #fff;
  font-size: 26px !important;
}

.contact-us .contact-us-div input {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  height: 40px;
  text-indent: 10px;
  width: 100%;
  margin-bottom: 10px;
  transition: 0.5s;
}

.contact-us .contact-us-div input:focus {
  border: 1px solid #962a68;
  background-color: rgba(0, 0, 0, 0.1);
}

.contact-us .contact-us-div input:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.contact-us .contact-us-div input:focus {
  outline: none;
}

.contact-us .contact-us-div input:active {
  outline: none;
}

.contact-us .contact-us-div input:active:focus {
  outline: none;
}

.contact-us .contact-us-div .menu-main-btn {
  margin-right: 10px;
}

.contact-us .contact-us-div .menu-main-btn img {
  margin-left: 5px;
  width: 20px;
}

.contact-us .contact-us-div .width.d-flex {
  margin-top: 20px;
}

.contact-us .contact-us-div select {
  background-color: rgba(255, 255, 255, 0.2) !important;
  background-image: url("../images/baseline-keyboard_arrow_down-24px.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 2px);
  background-position-y: center;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  text-indent: 3px;
  width: 100%;
  height: 40px;
  color: #fff;
  padding: 0 11px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: 0.5s;
}

.contact-us .contact-us-div select option {
  color: #000;
}

.contact-us .contact-us-div select:focus {
  border: 1px solid #962a68;
  background-color: rgba(0, 0, 0, 0.1) !important;
}

.contact-us .contact-us-div select:hover {
  background-color: rgba(0, 0, 0, 0.1) !important;
}

.contact-us .contact-us-div select:focus {
  outline: none;
}

.contact-us .contact-us-div select:active {
  outline: none;
}

.contact-us .contact-us-div select:active:focus {
  outline: none;
}

.contact-us .contact-us-div select:focus {
  outline: none;
}

.contact-us .contact-us-div textarea {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  text-indent: 10px;
  width: 100%;
  margin-bottom: 10px;
  transition: 0.5s;
}

.contact-us .contact-us-div textarea:focus {
  border: 1px solid #962a68;
  background-color: rgba(0, 0, 0, 0.1);
}

.contact-us .contact-us-div textarea:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.contact-us .contact-us-div textarea:focus {
  outline: none;
}

.contact-us .contact-us-div textarea:active {
  outline: none;
}

.contact-us .contact-us-div textarea:active:focus {
  outline: none;
}

.contact-us .contact-us-div input::placeholder {
  color: #fff;
  opacity: 1;
  font-size: 14px;
  font-weight: 300;
}

.contact-us .contact-us-div textarea::placeholder {
  color: #fff;
  opacity: 1;
  font-size: 14px;
  font-weight: 300;
}

.contact-us .contact-us-div button {
  background: #272d3b;
  border: none;
  padding: 0;
}

.contact-us .contact-us-div .btn2 {
  margin-top: 0;
  padding: 10px 20px;
  border-radius: 100px;
  color: #fff;
  background: linear-gradient(to right, #962a68 0%, #e8462a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#962a68', endColorstr='#e8462a', GradientType=1);
  transition: 0.5s;
  cursor: pointer;
}

.contact-us .contact-us-div .btn2:hover {
  transform: scale(1.01);
  color: #fff;
  box-shadow: 0 1px 10px -1px rgba(0, 0, 0, 0.4);
}

.contact-us .contact-us-div .contact-us-pad {
  padding-left: 125px;
}

.contact-us .contact-us-div .call {
  margin-left: 15px;
}

.contact-us .contact-us-div .contact-with-first {
  margin-top: 0 !important;
}

.contact-us .contact-us-div .contact-with {
  margin-top: 35px;
}

.contact-us .contact-us-div .contact-with .contact-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.contact-us .contact-us-div .contact-with .contact-img img {
  height: 22px;
}

.contact-us .contact-us-div .contact-with p {
  margin: 0;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
}

.contact-us .contact-us-div .contact-with .discription {
  font-size: 18px;
}

.contact-us .contact-us-div .follow-head {
  margin-top: 30px;
}

.contact-us .contact-us-div .follow-us {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(39, 45, 59, 0.2);
  margin-left: 10px;
}

.contact-us .contact-us-div .follow-us span {
  width: 15px;
  height: 15px;
  background-repeat: no-repeat !important;
  background-position-x: center !important;
  background-position-y: 0 !important;
}

.contact-us .contact-us-div .follow-us .fb {
  background: url("../img/facebook-white.svg");
}

.contact-us .contact-us-div .follow-us .in {
  background: url("../img/instagram-white.svg");
  margin-left: 1px;
}

.contact-us .contact-us-div .follow-us .go {
  background: url("../img/google-white.svg");
}

.contact-us .contact-us-div .follow-us .tw {
  background: url("../img/twitter-white.svg");
}

.contact-us .contact-us-div .follow-us .fb:hover {
  background: url("../img/facebook-h.svg");
}

.contact-us .contact-us-div .follow-us .in:hover {
  background: url("../img/instagram-h.svg");
}

.contact-us .contact-us-div .follow-us .go:hover {
  background: url("../img/google-h.svg");
}

.contact-us .contact-us-div .follow-us .tw:hover {
  background: url("../img/twitter-h.svg");
  margin-left: 1px;
}

.contact-us .contact-us-div .follow-us img {
  height: 15px;
}

.contact-us .contact-us-div .first-us {
  margin-left: 0;
}

.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;
  height: 35px;
}

.partner-wrapper .owl-footer-logos .owl-item img {
  width: 90px !important;
  height: 90%;
}

.partner-wrapper .owl-footer-logos .owl-nav {
  display: none !important;
}

footer {
  background-color: #161a19;
}

footer .main-nav {
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #161a19;
}

footer .main-nav li {
  flex: 1;
}

footer .main-nav li a {
  font-size: 14px;
}

footer .main-nav .aaaa {
  width: 180px;
}

footer .follow-us-menu > div {
  padding: 10px;
  background-color: #fff;
  width: 25px;
  height: 25px;
  margin-left: 10px;
  border-radius: 100px;
}

footer .follow-us-menu > div img {
  height: 14px;
}

footer .follow-us-menu > div .vk {
  height: 9px;
}

footer .social-icon1 {
  margin: 0 5px;
}

footer .social-icon1 img {
  cursor: pointer;
  width: 20px;
  height: 20px;
}

footer .logo-for-responsive {
  display: flex;
  justify-content: center;
}

footer .logo-for-responsive .info {
  margin-top: 10px;
}

footer .logo-for-responsive .info p {
  font-size: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
  text-align: center;
}

footer .logo-for-responsive .info p a {
  color: #fff;
  margin-left: 5px;
}

footer .logo-for-responsive .info p a:hover {
  color: #fff;
}

.end {
  height: 24px;
  background: #1c1e1e;
}

.end p {
  margin: 0;
  color: #fff;
  font-size: 12px !important;
}

.domain-valuation-display-none {
  background: url("../img/Domain-Valuation-&-Guidance.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  background-position-x: 62%;
  padding: 50px 0;
}

.domain-valuation-display-none .brokerage-half1 {
  right: 0;
  width: 50%;
  padding-right: 120px;
  text-align: left;
}

.domain-valuation-display-none .brokerage-half1 h2 {
  font-weight: 500;
}

.services-page {
  background: url("../img/services-bg.jpg");
  background-size: cover;
  padding-top: 55px;
  padding-bottom: 20px;
}

.services-page h2 {
  text-align: center;
  margin-top: 30px;
}

.services-page .white-div {
  height: 2px;
  width: 50px;
  background: linear-gradient(to right, #43cea2 0%, #185a9d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#43cea2', endColorstr='#185a9d', GradientType=1);
  margin: auto;
}

.services-page .arrow {
  position: absolute;
  height: 20px;
}

.services-page .arrow-left {
  left: 15px;
  top: 105px;
}

.services-page .arrow-right {
  right: 15px;
  top: 105px;
}

.services-page .bitcoins {
  margin-top: 50px;
  height: auto;
}

.services-page .bitcoins .domain-background {
  background-repeat: no-repeat !important;
  height: 80px;
  background-position-x: center !important;
  background-position-y: 0 !important;
}

.services-page .bitcoins .domain-brocerage-background {
  background: url("../img/Domain-brokerage-icon.svg");
}

.services-page .bitcoins .domain-acquistions-background {
  background: url("../img/Domain-acquisitions-icon.svg");
}

.services-page .bitcoins .domain-acquistions-valuation {
  background: url("../img/Domain-valuation-icon.svg");
}

.services-page .bitcoins .portfolio {
  background: url("../img/portfolio-management-icon.svg");
}

.services-page .bitcoins h3 {
  font-size: 16px !important;
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
}

.services-page .bitcoins p {
  font-size: 12px;
  text-align: center;
  margin-bottom: 20px;
}

.services-page .bitcoins:hover .domain-brocerage-background {
  background: url("../img/Domain-brokerage-icon-h.svg");
}

.services-page .bitcoins:hover .domain-acquistions-background {
  background: url("../img/Domain-acquisitions-icon-h.svg");
}

.services-page .bitcoins:hover .domain-acquistions-valuation {
  background: url("../img/Domain-valuation-icon-h.svg");
}

.services-page .bitcoins:hover .portfolio {
  background: url("../img/portfolio-management-icon-h.svg");
}

.services-page .bitcoins:hover h3 {
  background: -webkit-linear-gradient(#43cea2, #185a9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-page .bitcoins:hover p {
  background: -webkit-linear-gradient(#43cea2, #185a9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.portfolio-managment {
  background: url("../img/testimonils-bg.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  padding: 30px 0;
  background-size: cover;
}

.portfolio-managment h2 {
  text-align: center;
  background: -webkit-linear-gradient(#43cea2, #185a9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.portfolio-managment h2 p {
  font-weight: bold;
  color: #fff !important;
  background: -webkit-linear-gradient(#fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 10px;
}

.portfolio-managment .portfolio-discription {
  margin-top: 30px;
  padding: 0 50px;
  color: #fff;
  text-align: center;
}

.portfolio-managment .testimonials-slid {
  padding: 0 50px;
}

.portfolio-managment .white-div {
  height: 2px;
  width: 50px;
  background: linear-gradient(to right, #43cea2 0%, #185a9d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#43cea2', endColorstr='#185a9d', GradientType=1);
  margin: auto;
}

.portfolio-managment .arrow {
  position: absolute;
  height: 20px;
}

.portfolio-managment .arrow-left {
  left: 275px;
  top: 90px;
}

.portfolio-managment .arrow-right {
  right: 275px;
  top: 90px;
}

.portfolio-managment .bitcoins {
  height: auto;
  margin: auto;
  margin-top: 25px;
}

.portfolio-managment .bitcoins h3 {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}

.portfolio-managment .bitcoins p {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.portfolio-managment .bitcoins h2 {
  font-size: 14px !important;
  text-align: center;
  font-weight: bold;
  color: #43cea2;
  color: -moz-linear-gradient(45deg, #43cea2 0%, #185a9d 100%);
  color: -webkit-linear-gradient(45deg, #43cea2 0%, #185a9d 100%);
  color: linear-gradient(45deg, #43cea2 0%, #185a9d 100%);
}

.portfolio-managment .bitcoins h2 span {
  font-weight: normal;
  color: #fff;
}

.portfolio-managment .bitcoins .slider {
  margin-top: 30px;
}

.portfolio-managment .bitcoins .slider span {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: #fff;
  margin-right: 10px;
}

.portfolio-managment .moon-button {
  width: auto;
  padding: 0 10px;
  background: #0e0d0e;
  color: #fff;
  margin: 0;
  margin-top: 10px;
  border: none;
}

.queshions-contact {
  background: linear-gradient(to right, #43cea2 0%, #185a9d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#43cea2', endColorstr='#185a9d', GradientType=1);
  height: auto;
  padding: 40px 300px 150px 300px;
  text-align: center;
}

.queshions-contact p {
  font-size: 16px;
  color: #fff;
}

.queshions-contact .moon-button {
  width: auto;
  padding: 0 30px;
  background: #0e0d0e;
  color: #fff;
  margin: 0;
  margin-top: 10px;
  border: none;
}

.hero-image-about {
  background: url("../img/About-us-bg.jpg") no-repeat center;
  height: 450px;
  width: 100%;
  background-size: cover;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.hero-image-about h2 {
  font-weight: 500;
  max-width: 750px;
  font-size: 35px;
  margin-top: 65px;
}

.about-us-moon {
  padding: 30px 0;
  height: auto;
}

.about-us-moon h2 {
  text-align: center;
}

.about-us-moon p {
  text-align: left;
  color: #9198a7;
}

.about-us-moon .first {
  margin-top: 20px;
}

.faq {
  background: url("../img/faq-gb.jpg") no-repeat center;
  height: 450px;
  width: 100%;
  background-size: cover;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.faq h2 {
  font-weight: 500;
  max-width: 750px;
  font-size: 35px;
  margin-top: 65px;
}

.faq-page {
  padding: 30px 0;
  height: auto;
}

.faq-page h2 {
  text-align: left;
}

.faq-page p {
  text-align: left;
  color: #9198a7;
}

.faq-page .first {
  margin-top: 20px;
}

.faq-page .span {
  max-width: 100%;
  height: 1px;
  margin-top: 15px;
  margin-bottom: 15px;
  background-color: #d2d5db;
}

.faq-contact {
  background: url("../img/testimonils-bg.jpg");
  height: auto;
  padding: 30px 20px 150px 20px;
  text-align: center;
}

.faq-contact p {
  color: #fff;
}

.faq-contact button {
  border: none;
  margin: 0;
  padding-top: 0;
}

.pryvacy-page {
  padding-bottom: 130px;
}

.pryvacy-police {
  background: url("../img/Privacy-bg.jpg") no-repeat center;
  height: 450px;
  width: 100%;
  background-size: cover;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
}

.pryvacy-police h2 {
  font-weight: 500;
  max-width: 750px;
  font-size: 22px;
  margin-top: 65px;
}

.faq-page h2 {
  font-weight: 500;
  font-size: 22px !important;
}

.buy-domains-head {
  background: url("../img/past-sales-bg2.jpg") no-repeat center;
  height: 450px;
  width: 100%;
  background-size: cover;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.buy-domains-head > div,
.buy-domains-head p {
  margin-top: 20px;
}

.buy-domains-head > div a {
  margin: 0;
  padding: 8px 20px;
  width: auto;
}

.buy-domains-head h2 {
  font-weight: 500;
  max-width: 750px;
  font-size: 35px;
  margin-top: 65px;
}

.buy-domains {
  background-color: #f5f7fb;
  background-position-y: 50px;
  width: 100%;
  padding: 50px 0;
  object-fit: cover;
  margin-bottom: -50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.buy-domains h2 {
  text-align: center;
  background: -webkit-linear-gradient(#43cea2, #185a9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.buy-domains h2 p {
  font-weight: normal;
  color: #272d3b !important;
  background: -webkit-linear-gradient(#272d3b, #272d3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 10px;
}

.buy-domains .coins-div .row {
  margin: 0;
}

.buy-domains .coins-div .bitcoins1 {
  padding: 0;
  height: auto;
  border-radius: 50px;
}

.buy-domains .coins-div .bitcoins1 .coins {
  margin-right: 15px;
  margin-top: 15px;
  height: auto;
  padding: 50px 0;
  border-radius: 50px;
}

.buy-domains .coins-div .bitcoins1 .coins h3 {
  font-size: 25px !important;
  text-align: center;
  font-weight: bold;
}

.buy-domains .coins-div .bitcoins1 .coins p {
  text-align: center;
  margin-bottom: 20px;
}

.buy-domains .coins-div .bitcoins1 .coins .btn-main {
  width: 120px;
  box-shadow: none;
  font-size: 12px;
  margin: auto;
  background: transparent;
  color: #2989d8 !important;
  border: 1px solid #2989d8;
}

.buy-domains .coins-div .bitcoins1 .coins .btn-main:hover {
  border: none;
  color: #fff !important;
  background: #43cea2;
  background: -moz-linear-gradient(45deg, #43cea2 0%, #185a9d 100%);
  background: -webkit-linear-gradient(45deg, #43cea2 0%, #185a9d 100%);
  background: linear-gradient(45deg, #43cea2 0%, #185a9d 100%);
}

.buy-domains .coins-div .bitcoins1 .coins button {
  border: none;
  display: inline-block;
  border-radius: 99px;
  color: white;
  position: relative;
  z-index: 1;
  font-size: 14px;
  padding: 8px 20px;
  font-weight: 100;
  text-transform: uppercase;
  color: #2989d8;
}

.buy-domains .coins-div .bitcoins1 .coins button .btn-text--gradient {
  font-weight: 500;
  font-size: 12px;
  background: -webkit-linear-gradient(left, #43cea2, #185a9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.buy-domains .coins-div .bitcoins1 .coins button .btn-text {
  text-transform: uppercase;
  color: #fff;
}

.buy-domains .coins-div .bitcoins1 .coins button:hover .btn-text--gradient {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.buy-domains .coins-div .bitcoins1 .coins button:before,
.buy-domains .coins-div .bitcoins1 .coins button:after {
  content: " ";
  position: absolute;
  border-radius: 99px;
}

.buy-domains .coins-div .bitcoins1 .coins button:before {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -2;
  background: #503b9a;
  background: -moz-linear-gradient(left, #43cea2 0%, #185a9d 100%);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0%, #43cea2),
    color-stop(100%, #185a9d)
  );
  background: -webkit-linear-gradient(left, #43cea2 0%, #185a9d 100%);
  background: -o-linear-gradient(left, #43cea2 0%, #185a9d 100%);
  background: -ms-linear-gradient(left, #43cea2 0%, #185a9d 100%);
  background: linear-gradient(to right, #43cea2 0%, #185a9d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#43cea2', endColorstr='#185a9d', GradientType=1);
}

.buy-domains .coins-div .bitcoins1 .coins button:after {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  background-color: #fff;
  z-index: -1;
  opacity: 1;
  transition: all 0.6s ease-in-out;
}

.buy-domains .coins-div .bitcoins1 .coins button:hover:after {
  opacity: 0;
  color: #fff;
}

.buy-domains .coins-div .bitcoins1 .coins:hover {
  background: #fff;
}

.buy-domains .main-btn {
  margin: 0;
  width: 170px;
  color: #fff !important;
  margin-top: 40px;
}

.buy-domains .add {
  height: 40px !important;
  padding: 10px 15px !important;
}

.after-footer {
  min-width: 100%;
  height: 150px;
  background-color: #f5f7fb;
}

@media only screen and (min-width: 1300px) {
  .testimonials .arrow-left {
    left: 380px;
  }
  .testimonials .arrow-right {
    right: 380px;
  }
  .footer {
    height: 400px;
    margin-top: -160px;
  }
  .footer .footer-head img {
    margin-top: 105px;
  }
  .domain-valuation-display-none {
    padding: 100px 0;
  }
  .domain-valuation-display-none .brokerage-half1 {
    padding-right: 200px;
    margin-right: -95px;
  }
}

@media screen and (max-width: 1200px) {
  .main-menu-bg .menu-main-btn {
    color: #fff;
    background: none;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#962a68', endColorstr='#e8462a', GradientType=1);
  }
  .s1 {
    background: url("../images/proizvoditel1200.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 0;
    overflow: hidden;
  }
  .s2 {
    background: url("../images/distribyutor1200.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  .s3 {
    background: url("../images/chastnoe_lico1200.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 0;
    overflow: hidden;
  }
  .s4 {
    background: url("../images/buyer-sm.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  .s5 {
    background: url("../images/videnie1200.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 0;
    overflow: hidden;
  }
  .s6 {
    background: url("../images/zadacha1200.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    overflow: hidden;
  }
  .sec{
    margin: 10px 0;
  }
  .top .hero-image{
    margin-top: -10px;
  }
  .sec-l .sec-lb {
    width: 100%;
    color: #fff;
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
  }
  .sec-l .sec-lb ul li {
    text-align: left !important;
  }
  .sec-l .sec-lb .instument-icons {
    margin: auto;
  }
  .sec-l .sec-lb .sec-ni-icons {
    margin: auto;
  }
  .sec-r .sec-rb {
    width: 100%;
    color: #fff;
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
  }
  .sec-r .sec-rb .instument-icons {
    margin: auto;
  }
  .faq-contact {
    padding: 30px 20px 130px 20px;
  }
  .footer .footer-head img {
    margin-bottom: -25px;
  }
  .testimonials .testimonials-slid .owl-prev {
    bottom: 47px;
    left: 47px;
  }
  .testimonials .testimonials-slid .owl-next {
    bottom: 47px;
    right: 47px;
  }
  .testimonials .arrow-left {
    left: 130px;
  }
  .testimonials .arrow-right {
    right: 130px;
  }
  .for-sale-image .arrow-left {
    left: 0;
  }
  .for-sale-image .arrow-right {
    right: 0;
  }
  .for-sale-image .owl-prev {
    left: -15px;
  }
  .for-sale-image .owl-next {
    right: -25px;
  }
  .for-sale-image .coins-div {
    padding: 0 25px;
    padding-left: 35px;
  }
  .for-sale-image .coins-div .coins {
    margin-right: 0 !important;
  }
  .domain-brocerage .brokerage-half {
    padding-right: 60px;
    padding-left: 30px;
  }
  .domain-valuation .brokerage-half1 {
    padding-right: 40px !important;
  }
  .domain-valuation1 {
    background-image: url("../images/производитель120.jpg");
    color: #fff;
  }
  .domain-valuation1 .brokerage-half1 {
    width: 100%;
    padding: 30px;
    text-align: center;
  }
  .domain-valuation1 .brokerage-half1 .head-p {
    color: #fff;
  }
  .tit {
    justify-content: center;
  }
  .domain-valuation10 {
    background-image: url("../images/частное-лицо1200.jpg");
    text-align: center;
  }
  .domain-valuation3 {
    background-image: url("../images/Дистрибьютор1200.jpg");
    text-align: center;
  }
  .domain-valuation4 {
    background-image: url("../images/Задача1200.jpg");
    text-align: center;
  }
  .domain-valuation5 {
    background-image: url("../images/buyer-sm.jpg");
    text-align: center;
  }
  .domain-valuation2 {
    background-image: url("../images/видение1200.jpg");
    text-align: center;
  }
  .domain-valuation2 .tit {
    justify-content: center;
  }
  .buy-domains {
    padding: 35px 0;
  }
  .last-p {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 991px) {
  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;
  }
  .domain-brocerage .brokerage-half {
    padding-right: 40px;
    padding-left: 100px;
  }
  .footer .footer-menues ul {
    max-width: 195px;
  }
  .footer .footer-menues .follow-us-menu {
    max-width: none;
  }
  .testimonials .testimonials-slid .owl-prev {
    bottom: 69px;
    left: -5px;
  }
  .services-page {
    padding-top: 65px;
    padding-bottom: 30px;
  }
  .testimonials .testimonials-slid .owl-next {
    bottom: 69px;
    right: -5px;
  }
  .testimonials .bitcoins p {
    margin-top: -10px;
  }
  .queshions-contact {
    padding: 30px 0 110px 0;
  }
  .domain-valuation-display-none .brokerage-half1 {
    padding-left: 60px;
  }
  .domain-valuation-display-none .brokerage-half1 .head-p,
  .domain-valuation-display-none .brokerage-half1 p {
    display: none;
  }
  .we-are > div {
    margin: 0;
    max-width: 100%;
  }
  .we-are > div .we-are-text {
    padding-right: 80px;
  }
  .we-are img {
    margin-left: -65px;
  }
  .services {
    height: 630px;
  }
  .why-choose > div {
    margin: 0;
    max-width: 100%;
  }
  .why-choose > div .moon {
    max-width: 100%;
    padding: 0 100px;
  }
  .domain-brocerage-display-none {
    display: block;
    padding: 30px;
  }
  .domain-brocerage-display-none h2,
  .domain-brocerage-display-none .head-p {
    display: none;
  }
  .domain-brocerage .brokerage-half p {
    display: none;
  }
  .domain-brocerage .brokerage-half .head-p {
    display: block;
  }
  .domain-valuation .brokerage-half1 p {
    display: none;
  }
  .domain-valuation .brokerage-half1 .head-p {
    display: block;
  }
  .domain-acquisition {
    height: 500px;
  }
  .domain-acquisition .we-are-text .acquisition-p {
    display: none !important;
  }
  .domain-acquisition img {
    height: 415px;
  }
  .domain-acquisition-dislay-none {
    padding: 5px 50px;
    height: auto;
    display: block;
  }
  .domain-acquisition-dislay-none h2,
  .domain-acquisition-dislay-none .head-p {
    display: none;
  }
  .domain-acquisition-dislay-none > div {
    padding: 30px 50px;
  }
  .domain-acquisition-dislay-none img {
    max-height: 500px;
  }
  .domain-acquisition-dislay-none
    .we-are-text
    .acquisition-p
    .acquisitions-img {
    margin-top: 20px;
    height: 65px;
    width: 65px;
    background-repeat: no-repeat !important;
    background-position: center !important;
  }
  .domain-acquisition-dislay-none .we-are-text .acquisition-p p {
    margin-top: 40px;
    margin-left: 15px;
    font-size: 14px;
  }
  .domain-acquisition-dislay-none
    .we-are-text
    .acquisition-p
    .acquisitions-img1 {
    background: url("../img/Domain-acquisitions-1.svg");
  }
  .domain-acquisition-dislay-none
    .we-are-text
    .acquisition-p
    .acquisitions-img1:hover {
    background: url("../img/Domain-acquisitions-1-h.svg");
  }
  .domain-acquisition-dislay-none
    .we-are-text
    .acquisition-p
    .acquisitions-img2 {
    background: url("../img/Domain-acquisitions-2.svg");
  }
  .domain-acquisition-dislay-none
    .we-are-text
    .acquisition-p
    .acquisitions-img2:hover {
    background: url("../img/Domain-acquisitions-2-h.svg");
  }
  .domain-acquisition-dislay-none
    .we-are-text
    .acquisition-p
    .acquisitions-img3 {
    background: url("../img/Domain-acquisitions-3.svg");
  }
  .domain-acquisition-dislay-none
    .we-are-text
    .acquisition-p
    .acquisitions-img3:hover {
    background: url("../img/Domain-acquisitions-3-h.svg");
  }
  .domain-acquisition-dislay-none
    .we-are-text
    .acquisition-p
    .acquisitions-img4 {
    background: url("../img/Domain-acquisitions-4.svg");
  }
  .domain-acquisition-dislay-none
    .we-are-text
    .acquisition-p
    .acquisitions-img4:hover {
    background: url("../img/Domain-acquisitions-4-h.svg");
  }
  .domain-valuation {
    background-position-x: -100px;
  }
  .contact-us > div {
    max-width: 100%;
  }
  .contact-us > div .domain-name p {
    padding: 0;
  }
  .contact-us > div .contact-us-div {
    padding: 0;
  }
  footer .main-nav li {
    flex: auto;
  }
  .footer {
    background-position: center;
  }
  .footer ul {
    width: 30% !important;
  }
  .footer .follow-us-menu {
    width: 50% !important;
  }
  .portfolio-managment .container .row {
    display: flex;
    justify-content: center;
  }
  .portfolio-managment .container .row .bitcoins {
    margin: 0 !important;
    margin-top: 25px !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0 30px;
  }
  .footer .follow-us-menu {
    text-align: center !important;
  }
  .footer .follow-us-menu .d-flex {
    justify-content: center;
    margin-left: 20px;
  }
}

.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) {
  .instument-icons {
    display: flex;
    justify-content: center;
  }
  h2,
  h3 {
    font-size: 26px !important;
  }
  .head-p {
    font-size: 16px;
  }
  .what-is-urbenn-wrapper p {
    font-size: 16px;
  }
  .menu-cont1 ul {
    text-align: center;
    padding-left: 0px !important;
  }
  .services .top {
    margin-top: 0;
  }
  .domain-brocerage .brokerage-half {
    position: relative;
    float: right;
  }
  .domain-brocerage .brokerage-half h2 {
    position: absolute;
    top: 50px;
  }
  .testimonials .testimonials-slid .owl-prev {
    left: -35px;
  }
  .testimonials .testimonials-slid .owl-next {
    right: -35px;
  }
  .domain-valuation-display-none {
    height: 200px;
  }
  .domain-valuation-display-none .brokerage-half1 h2 {
    display: none;
  }
  .pasts-sale-image .owl-prev {
    left: -50px;
  }
  .pasts-sale-image .owl-next {
    right: -60px;
  }
  .domain-acquisition h2 {
    margin-top: 30px;
  }
  .menu-cont {
    display: none !important;
  }
  .menu-cont1 {
    padding: 10px 0;
  }
  .we-are .d-flex .we-are-text {
    padding: 0 !important;
  }
  .domain-acquisition-dislay-none
    .we-are-text
    .acquisition-p
    .acquisitions-img {
    width: 90px !important;
    height: 90px !important;
  }
  .pasts-sale-image .coins-div {
    padding: 0 60px;
  }
  .pasts-sale-image .coins-div > div {
    padding: 0;
  }
  .pasts-sale-image .coins-div > div > div > div {
    margin-left: 0 !important;
  }
  .we-are {
    height: auto;
    padding: 20px;
  }
  .we-are .d-flex {
    flex-direction: column;
  }
  .we-are .d-flex .we-are-text {
    padding: 0 20px;
    text-align: center;
    justify-content: center;
  }
  .we-are .d-flex .moon-image {
    display: flex;
    justify-content: center;
  }
  img {
    margin-left: 0 !important;
  }
  .domain-brocerage {
    height: 200px;
    background-repeat: no-repeat;
    background-position: 0;
  }
  .domain-brocerage .brokerage-half {
    padding-right: 20px;
  }
  .domain-acquisition {
    height: 315px;
  }
  .domain-acquisition img {
    height: 265px;
  }
  .domain-acquisition-dislay-none {
    padding: 0;
  }
  .domain-valuation1 {
    background-position-x: 0;
  }
  .domain-valuation .brokerage-half1 {
    padding-left: 0;
    display: none !important;
  }
  .contact-us .contact-us-div .contact-us-pad {
    padding-left: 20px;
  }
  .contact-us {
    height: auto;
    padding-bottom: 110px;
  }
  .footer .follow-us-menu {
    text-align: center !important;
  }
  .footer .follow-us-menu .d-flex {
    justify-content: center;
  }
  .for-sale-image .arrow-left {
    left: 30px;
  }
  .for-sale-image .arrow-right {
    right: 30px;
  }
  .for-sale-image .coins-div .row {
    margin-left: -10px !important;
  }
  .testimonials-slid .owl-prev {
    color: transparent;
    position: absolute;
    bottom: 30px;
    left: -50px;
  }
  .testimonials-slid .owl-next {
    color: transparent;
    position: absolute;
    bottom: 30px;
    right: -50px;
  }
  .faq-contact {
    padding: 30px 20px 120px 20px;
  }
  .footer .footer-head img {
    margin-top: 75px;
    margin-bottom: -25px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 30px !important;
  }
  .hero-image p {
    font-size: 35px !important;
  }
  .hero-image .urbenn-discription {
    width: 100% !important;
  }
  .hero-image .urbenn-discription p {
    font-size: 20px !important;
  }
  .logo-for-responsive {
    align-items: center;
  }
  .logo-for-responsive .info {
    margin-bottom: 10px;
  }
  .logo-for-responsive .info p {
    justify-content: center;
  }
}

@media screen and (max-width: 600px) {
  .top .hero-image .youtube-link .iframe {
    width: 100% !important;
    height: auto !important;
  }
}

@media screen and (max-width: 575px) {
  h1 {
    font-size: 25px !important;
  }
  .owl-carousel.owl-drag .owl-item .bitcoins {
    margin: auto;
    margin-top: 40px;
  }
  .for-sale-image .owl-prev {
    left: -15px;
  }
  .pasts-sale-image .coins-div .bitcoins {
    min-width: 220px;
    margin-left: 10px;
  }
  .faq-page {
    padding-bottom: 20px;
  }
  .services {
    height: auto;
  }
  .why-choose > div .moon {
    padding: 0 20px;
  }
  .domain-valuation {
    padding: 50px 0;
  }
  .domain-brocerage .brokerage-half h2 {
    display: none;
  }
  .domain-brocerage .brokerage-half .head-p {
    display: none;
  }
  .domain-brocerage-display-none h2,
  .domain-brocerage-display-none .head-p {
    display: block;
  }
  .domain-acquisition .we-are-text h2 {
    display: none;
  }
  .domain-acquisition-dislay-none {
    padding: 0 !important;
  }
  .domain-acquisition-dislay-none > div {
    padding: 0 !important;
    margin: 0 !important;
  }
  .domain-acquisition-dislay-none > div .we-are-text {
    padding: 0;
  }
  .pasts-sale-image .coins-div .owl-stage-outer {
    margin-left: 0 !important;
  }
  .domain-acquisition .we-are-text .head-p {
    display: none;
  }
  .domain-acquisition-dislay-none h2,
  .domain-acquisition-dislay-none .head-p {
    display: block;
  }
  .domain-acquisition img {
    height: 250px;
    position: absolute;
    left: -135px;
  }
  .domain-valuation .brokerage-half1 h2 {
    display: none;
  }
  .domain-valuation .brokerage-half1 .head-p {
    display: none;
  }
  .domain-valuation {
    background-position: 0;
  }
  .contact-us {
    height: auto;
    padding-bottom: 30px !important;
  }
  .contact-us > div .contact-us-div {
    flex-direction: column;
  }
  .contact-us .contact-us-div .contact-us-pad {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .domain-acquisition-dislay-none .we-are-text .acquisition-p {
    padding: 0;
  }
  .contact-us .domain-name {
    padding-bottom: 20px;
  }
  .footer {
    height: auto;
    margin-top: -50px;
  }
  .footer .footer-menues {
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
  }
  .footer .footer-menues ul {
    width: 100% !important;
  }
  .footer .footer-menues ul li {
    text-align: center;
  }
  .end {
    height: 45px;
    padding: 0 25px;
  }
  .end p {
    text-align: center;
  }
  .footer .footer-head img {
    margin-top: 80px;
  }
  .domain-acquisition-dislay-none h2 {
    text-align: center;
  }
  .we-are {
    padding: 30px 0;
    margin-top: -45px;
    padding-bottom: 0;
  }
  .we-are h2 {
    margin-top: 30px;
  }
  .we-are img {
    margin-top: 20px;
    margin-bottom: 50px;
  }
  .domain-acquisition-dislay-none {
    padding: 30px !important;
  }
  .contact-us .contact-us-div h2 {
    margin-top: 15px;
    margin-bottom: 0;
  }
  .contact-us .contact-us-div {
    margin-top: 0;
  }
  .contact-us .contact-us-div button {
    margin: 0;
  }
  .why-choose h2 {
    flex-direction: column;
  }
  .why-choose h2 p {
    text-align: center;
    margin-left: 0;
  }
  .services {
    padding: 20px 0;
  }
  .services .bitcoins {
    margin-top: 20px;
  }
  .why-choose p {
    text-align: center;
  }
  .domain-brocerage-display-none {
    text-align: center;
  }
  .domain-acquisition-dislay-none .head-p {
    text-align: center;
  }
  .menu-cont1 ul {
    padding-left: 5px !important;
  }
  .buy-domains {
    padding: 20px 0;
  }
  .buy-domains .coins-div .bitcoins .coins {
    margin-right: 0 !important;
  }
  .faq-contact {
    padding: 30px 20px 40px 20px;
  }
  .queshions-contact {
    padding: 30px 0 30px 0;
  }
  form h2 {
    text-align: center;
  }
  .buy-domains .coins-div .bitcoins .coins {
    width: 100%;
  }
  .portfolio-managment h2 {
    flex-direction: column;
  }
  .after-footer {
    display: none;
  }
  .buy-domains .coins-div {
    padding-bottom: 25px;
  }
  .faq-page p,
  .faq-page h2 {
    text-align: center;
  }
  .about-us-moon p,
  .about-us-moon h2 {
    text-align: center;
  }
  .services-page .bitcoins {
    margin-top: 30px;
  }
  .services-page .white-div {
    margin-bottom: 25px;
  }
  .testimonials .testimonials-slid .owl-prev {
    bottom: 60px;
    left: -25px;
  }
  .testimonials .testimonials-slid .owl-next {
    bottom: 60px;
  }
  .contact-us .contact-us-div .follow-head {
    margin-bottom: 25px;
  }
  .partner-wrapper .owl-footer-logos .owl-item {
    padding: 0 10px;
  }
}

@media screen and (max-width: 460px) {
  h1 {
    font-size: 20px !important;
    padding: 0 20px;
  }
  .hero-image {
    height: 600px !important;
  }
  .hero-image a {
    margin-top: 25px !important;
  }
  .hero-image .urbenn-discription {
    padding: 0 20px;
  }
  .hero-image .urbenn-discription p {
    font-size: 16px !important;
    width: 100%;
  }
  .tools-sec .block {
    flex-direction: column;
    align-items: center;
  }
  .tools-sec .block .tool {
    width: 100%;
  }
  .investors {
    font-size: 18px !important;
    margin: auto !important;
  }
  .testimonials .testimonials-slid .owl-prev {
    bottom: 80px;
  }
  .testimonials .testimonials-slid .owl-next {
    bottom: 80px;
  }
  .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: 1190px) {
  .menu-main-btn {
    width: 235px;
    margin-left: 10px;
  }
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.success-msg{
  color: white;
  text-align: center;
  font-weight: bold;
}
.error-msg{
  color: red;
  text-align: center;
  font-weight: bold;
}


.our-p{
  font-family: 'Roboto', sans-serif !important;
}


html{
  user-select: none;
}