.slider .slick-list,
.slider .slick-track,
.slider__slide {
  height: 100%
}

.slider__slide {
  position: relative
}

.slick-slider .slick-list,
.slick-slider .slick-slide,
.slick-slider .slick-track {
  height: 100%
}

.slick-slider .slick-slide {
  position: relative
}

.slick-slide {
  outline: none
}

.table {
  display: table
}

.tr {
  display: table-row
}

.td {
  display: table-cell
}

.svg-container {
  display: none
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%
}

body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%
}

h1 {
  font-size: 2em;
  margin: .67em 0
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible
}

pre {
  font-family: monospace, monospace;
  font-size: 1em
}

a {
  background-color: transparent
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted
}

b,
strong {
  font-weight: bolder
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em
}

small {
  font-size: 80%
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sub {
  bottom: -.25em
}

sup {
  top: -.5em
}

img {
  border-style: none
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0
}

a {
  color: inherit;
  text-decoration: none;
  outline: none
}

ul {
  list-style: none;
  margin: 0;
  padding: 0
}

button {
  box-sizing: border-box;
  background: none;
  padding: 0
}

button,
input {
  overflow: visible;
  border-radius: 0
}

button,
select {
  text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText
}

fieldset {
  padding: .35em .75em .625em
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal
}

progress {
  vertical-align: baseline
}

textarea {
  overflow: auto
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}

details {
  display: block
}

summary {
  display: list-item
}

[hidden],
template {
  display: none
}

/*!
* 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 {

  0%,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: translateZ(0)
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -30px, 0)
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -15px, 0)
  }

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

@keyframes bounce {

  0%,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: translateZ(0)
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -30px, 0)
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -15px, 0)
  }

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

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  transform-origin: center bottom
}

@-webkit-keyframes flash {

  0%,
  50%,
  to {
    opacity: 1
  }

  25%,
  75% {
    opacity: 0
  }
}

@keyframes flash {

  0%,
  50%,
  to {
    opacity: 1
  }

  25%,
  75% {
    opacity: 0
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash
}

@-webkit-keyframes pulse {
  0% {
    transform: scaleX(1)
  }

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

  to {
    transform: scaleX(1)
  }
}

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

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

  to {
    transform: scaleX(1)
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse
}

@-webkit-keyframes rubberBand {
  0% {
    transform: scaleX(1)
  }

  30% {
    transform: scale3d(1.25, .75, 1)
  }

  40% {
    transform: scale3d(.75, 1.25, 1)
  }

  50% {
    transform: scale3d(1.15, .85, 1)
  }

  65% {
    transform: scale3d(.95, 1.05, 1)
  }

  75% {
    transform: scale3d(1.05, .95, 1)
  }

  to {
    transform: scaleX(1)
  }
}

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

  30% {
    transform: scale3d(1.25, .75, 1)
  }

  40% {
    transform: scale3d(.75, 1.25, 1)
  }

  50% {
    transform: scale3d(1.15, .85, 1)
  }

  65% {
    transform: scale3d(.95, 1.05, 1)
  }

  75% {
    transform: scale3d(1.05, .95, 1)
  }

  to {
    transform: scaleX(1)
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand
}

@-webkit-keyframes shake {

  0%,
  to {
    transform: translateZ(0)
  }

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

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

@keyframes shake {

  0%,
  to {
    transform: translateZ(0)
  }

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

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

.shake {
  -webkit-animation-name: shake;
  animation-name: shake
}

@-webkit-keyframes headShake {
  0% {
    transform: translateX(0)
  }

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

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

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

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

  50% {
    transform: translateX(0)
  }
}

@keyframes headShake {
  0% {
    transform: translateX(0)
  }

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

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

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

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

  50% {
    transform: translateX(0)
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake
}

@-webkit-keyframes swing {
  20% {
    transform: rotate(15deg)
  }

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

  60% {
    transform: rotate(5deg)
  }

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

  to {
    transform: rotate(0deg)
  }
}

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

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

  60% {
    transform: rotate(5deg)
  }

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

  to {
    transform: rotate(0deg)
  }
}

.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing
}

@-webkit-keyframes tada {
  0% {
    transform: scaleX(1)
  }

  10%,
  20% {
    transform: scale3d(.9, .9, .9) rotate(-3deg)
  }

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

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

  to {
    transform: scaleX(1)
  }
}

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

  10%,
  20% {
    transform: scale3d(.9, .9, .9) rotate(-3deg)
  }

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

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

  to {
    transform: scaleX(1)
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada
}

@-webkit-keyframes wobble {
  0% {
    transform: translateZ(0)
  }

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

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

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

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

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

  to {
    transform: translateZ(0)
  }
}

@keyframes wobble {
  0% {
    transform: translateZ(0)
  }

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

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

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

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

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

  to {
    transform: translateZ(0)
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble
}

@-webkit-keyframes jello {

  0%,
  11.1%,
  to {
    transform: translateZ(0)
  }

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

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

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

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

  66.6% {
    transform: skewX(-.78125deg) skewY(-.78125deg)
  }

  77.7% {
    transform: skewX(.39062deg) skewY(.39062deg)
  }

  88.8% {
    transform: skewX(-.19531deg) skewY(-.19531deg)
  }
}

@keyframes jello {

  0%,
  11.1%,
  to {
    transform: translateZ(0)
  }

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

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

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

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

  66.6% {
    transform: skewX(-.78125deg) skewY(-.78125deg)
  }

  77.7% {
    transform: skewX(.39062deg) skewY(.39062deg)
  }

  88.8% {
    transform: skewX(-.19531deg) skewY(-.19531deg)
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center
}

@-webkit-keyframes bounceIn {

  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

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

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

  40% {
    transform: scale3d(.9, .9, .9)
  }

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

  80% {
    transform: scale3d(.97, .97, .97)
  }

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

@keyframes bounceIn {

  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

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

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

  40% {
    transform: scale3d(.9, .9, .9)
  }

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

  80% {
    transform: scale3d(.97, .97, .97)
  }

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

.bounceIn {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

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

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

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

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

  to {
    transform: translateZ(0)
  }
}

@keyframes bounceInDown {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

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

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

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

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

  to {
    transform: translateZ(0)
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

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

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

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

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

  to {
    transform: translateZ(0)
  }
}

@keyframes bounceInLeft {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

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

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

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

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

  to {
    transform: translateZ(0)
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

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

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

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

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

  to {
    transform: translateZ(0)
  }
}

@keyframes bounceInRight {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

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

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

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

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

  to {
    transform: translateZ(0)
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

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

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

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

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

  to {
    transform: translateZ(0)
  }
}

@keyframes bounceInUp {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

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

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

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

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

  to {
    transform: translateZ(0)
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9)
  }

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

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

@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9)
  }

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

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

.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0)
  }

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

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

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0)
  }

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

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

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0)
  }

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

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

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

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0)
  }

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

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

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

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0)
  }

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

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

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0)
  }

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

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

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -50px, 0)
  }

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

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

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

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown
}

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

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

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

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

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig
}

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

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

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

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

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft
}

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

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

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

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

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig
}

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

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

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

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

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight
}

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

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

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

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

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig
}

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

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

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

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

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp
}

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

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

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

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

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutDown {
  0% {
    opacity: 1
  }

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

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutDownBig {
  0% {
    opacity: 1
  }

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

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutLeft {
  0% {
    opacity: 1
  }

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

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1
  }

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

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutRight {
  0% {
    opacity: 1
  }

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

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutRightBig {
  0% {
    opacity: 1
  }

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

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutUp {
  0% {
    opacity: 1
  }

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

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutUpBig {
  0% {
    opacity: 1
  }

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

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig
}

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

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

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

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  to {
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
}

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

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

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

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  to {
    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 {
  0% {
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

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

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

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

  to {
    transform: perspective(400px)
  }
}

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

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

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

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

  to {
    transform: perspective(400px)
  }
}

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

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

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

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

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

  to {
    transform: perspective(400px)
  }
}

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

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

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

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

  to {
    transform: perspective(400px)
  }
}

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

@-webkit-keyframes flipOutX {
  0% {
    transform: perspective(400px)
  }

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

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

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

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

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

.flipOutX {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
  0% {
    transform: perspective(400px)
  }

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

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

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

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

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

.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY
}

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

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

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

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

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

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

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

  to {
    transform: translateZ(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 {
  0% {
    opacity: 1
  }

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

@keyframes lightSpeedOut {
  0% {
    opacity: 1
  }

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

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate(-200deg);
    opacity: 0
  }

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

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

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

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0
  }

  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1
  }
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0
  }

  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(45deg);
    opacity: 0
  }

  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1
  }
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(45deg);
    opacity: 0
  }

  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0
  }

  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1
  }
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0
  }

  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0
  }

  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1
  }
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0
  }

  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1
  }

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

@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1
  }

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

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1
  }

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

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1
  }

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

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1
  }

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

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1
  }

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

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1
  }

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

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1
  }

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

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1
  }

  to {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0
  }
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1
  }

  to {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }

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

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

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

@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }

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

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

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

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge
}

@-webkit-keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(.1) rotate(30deg);
    transform-origin: center bottom
  }

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

  70% {
    transform: rotate(3deg)
  }

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

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

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

  70% {
    transform: rotate(3deg)
  }

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

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox
}

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

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

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

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

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1
  }

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

@keyframes rollOut {
  0% {
    opacity: 1
  }

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

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3)
  }

  50% {
    opacity: 1
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3)
  }

  50% {
    opacity: 1
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1
  }

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

  to {
    opacity: 0
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1
  }

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

  to {
    opacity: 0
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center
  }
}

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

  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp
}

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

  to {
    transform: translateZ(0)
  }
}

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

  to {
    transform: translateZ(0)
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown
}

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

  to {
    transform: translateZ(0)
  }
}

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

  to {
    transform: translateZ(0)
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft
}

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

  to {
    transform: translateZ(0)
  }
}

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

  to {
    transform: translateZ(0)
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight
}

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

  to {
    transform: translateZ(0)
  }
}

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

  to {
    transform: translateZ(0)
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
  0% {
    transform: translateZ(0)
  }

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

@keyframes slideOutDown {
  0% {
    transform: translateZ(0)
  }

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

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
  0% {
    transform: translateZ(0)
  }

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

@keyframes slideOutLeft {
  0% {
    transform: translateZ(0)
  }

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

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
  0% {
    transform: translateZ(0)
  }

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

@keyframes slideOutRight {
  0% {
    transform: translateZ(0)
  }

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

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
  0% {
    transform: translateZ(0)
  }

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

@keyframes slideOutUp {
  0% {
    transform: translateZ(0)
  }

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

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp
}

[data-aos][data-aos][data-aos-duration="50"],
body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms
}

[data-aos][data-aos][data-aos-delay="50"],
body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate,
body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms
}

[data-aos][data-aos][data-aos-duration="100"],
body[data-aos-duration="100"] [data-aos] {
  transition-duration: .1s
}

[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate,
body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: .1s
}

[data-aos][data-aos][data-aos-duration="150"],
body[data-aos-duration="150"] [data-aos] {
  transition-duration: .15s
}

[data-aos][data-aos][data-aos-delay="150"],
body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate,
body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: .15s
}

[data-aos][data-aos][data-aos-duration="200"],
body[data-aos-duration="200"] [data-aos] {
  transition-duration: .2s
}

[data-aos][data-aos][data-aos-delay="200"],
body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate,
body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: .2s
}

[data-aos][data-aos][data-aos-duration="250"],
body[data-aos-duration="250"] [data-aos] {
  transition-duration: .25s
}

[data-aos][data-aos][data-aos-delay="250"],
body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate,
body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: .25s
}

[data-aos][data-aos][data-aos-duration="300"],
body[data-aos-duration="300"] [data-aos] {
  transition-duration: .3s
}

[data-aos][data-aos][data-aos-delay="300"],
body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate,
body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: .3s
}

[data-aos][data-aos][data-aos-duration="350"],
body[data-aos-duration="350"] [data-aos] {
  transition-duration: .35s
}

[data-aos][data-aos][data-aos-delay="350"],
body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate,
body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: .35s
}

[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
  transition-duration: .4s
}

[data-aos][data-aos][data-aos-delay="400"],
body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate,
body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: .4s
}

[data-aos][data-aos][data-aos-duration="450"],
body[data-aos-duration="450"] [data-aos] {
  transition-duration: .45s
}

[data-aos][data-aos][data-aos-delay="450"],
body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate,
body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: .45s
}

[data-aos][data-aos][data-aos-duration="500"],
body[data-aos-duration="500"] [data-aos] {
  transition-duration: .5s
}

[data-aos][data-aos][data-aos-delay="500"],
body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate,
body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: .5s
}

[data-aos][data-aos][data-aos-duration="550"],
body[data-aos-duration="550"] [data-aos] {
  transition-duration: .55s
}

[data-aos][data-aos][data-aos-delay="550"],
body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate,
body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: .55s
}

[data-aos][data-aos][data-aos-duration="600"],
body[data-aos-duration="600"] [data-aos] {
  transition-duration: .6s
}

[data-aos][data-aos][data-aos-delay="600"],
body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate,
body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: .6s
}

[data-aos][data-aos][data-aos-duration="650"],
body[data-aos-duration="650"] [data-aos] {
  transition-duration: .65s
}

[data-aos][data-aos][data-aos-delay="650"],
body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate,
body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: .65s
}

[data-aos][data-aos][data-aos-duration="700"],
body[data-aos-duration="700"] [data-aos] {
  transition-duration: .7s
}

[data-aos][data-aos][data-aos-delay="700"],
body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate,
body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: .7s
}

[data-aos][data-aos][data-aos-duration="750"],
body[data-aos-duration="750"] [data-aos] {
  transition-duration: .75s
}

[data-aos][data-aos][data-aos-delay="750"],
body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate,
body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: .75s
}

[data-aos][data-aos][data-aos-duration="800"],
body[data-aos-duration="800"] [data-aos] {
  transition-duration: .8s
}

[data-aos][data-aos][data-aos-delay="800"],
body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate,
body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: .8s
}

[data-aos][data-aos][data-aos-duration="850"],
body[data-aos-duration="850"] [data-aos] {
  transition-duration: .85s
}

[data-aos][data-aos][data-aos-delay="850"],
body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate,
body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: .85s
}

[data-aos][data-aos][data-aos-duration="900"],
body[data-aos-duration="900"] [data-aos] {
  transition-duration: .9s
}

[data-aos][data-aos][data-aos-delay="900"],
body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate,
body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: .9s
}

[data-aos][data-aos][data-aos-duration="950"],
body[data-aos-duration="950"] [data-aos] {
  transition-duration: .95s
}

[data-aos][data-aos][data-aos-delay="950"],
body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate,
body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: .95s
}

[data-aos][data-aos][data-aos-duration="1000"],
body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s
}

[data-aos][data-aos][data-aos-delay="1000"],
body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate,
body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s
}

[data-aos][data-aos][data-aos-duration="1050"],
body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s
}

[data-aos][data-aos][data-aos-delay="1050"],
body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate,
body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s
}

[data-aos][data-aos][data-aos-duration="1100"],
body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s
}

[data-aos][data-aos][data-aos-delay="1100"],
body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate,
body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s
}

[data-aos][data-aos][data-aos-duration="1150"],
body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s
}

[data-aos][data-aos][data-aos-delay="1150"],
body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate,
body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s
}

[data-aos][data-aos][data-aos-duration="1200"],
body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s
}

[data-aos][data-aos][data-aos-delay="1200"],
body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate,
body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s
}

[data-aos][data-aos][data-aos-duration="1250"],
body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s
}

[data-aos][data-aos][data-aos-delay="1250"],
body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate,
body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s
}

[data-aos][data-aos][data-aos-duration="1300"],
body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s
}

[data-aos][data-aos][data-aos-delay="1300"],
body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate,
body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s
}

[data-aos][data-aos][data-aos-duration="1350"],
body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s
}

[data-aos][data-aos][data-aos-delay="1350"],
body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate,
body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s
}

[data-aos][data-aos][data-aos-duration="1400"],
body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s
}

[data-aos][data-aos][data-aos-delay="1400"],
body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate,
body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s
}

[data-aos][data-aos][data-aos-duration="1450"],
body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s
}

[data-aos][data-aos][data-aos-delay="1450"],
body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate,
body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s
}

[data-aos][data-aos][data-aos-duration="1500"],
body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s
}

[data-aos][data-aos][data-aos-delay="1500"],
body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate,
body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s
}

[data-aos][data-aos][data-aos-duration="1550"],
body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s
}

[data-aos][data-aos][data-aos-delay="1550"],
body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate,
body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s
}

[data-aos][data-aos][data-aos-duration="1600"],
body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s
}

[data-aos][data-aos][data-aos-delay="1600"],
body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate,
body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s
}

[data-aos][data-aos][data-aos-duration="1650"],
body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s
}

[data-aos][data-aos][data-aos-delay="1650"],
body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate,
body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s
}

[data-aos][data-aos][data-aos-duration="1700"],
body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s
}

[data-aos][data-aos][data-aos-delay="1700"],
body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate,
body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s
}

[data-aos][data-aos][data-aos-duration="1750"],
body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s
}

[data-aos][data-aos][data-aos-delay="1750"],
body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate,
body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s
}

[data-aos][data-aos][data-aos-duration="1800"],
body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s
}

[data-aos][data-aos][data-aos-delay="1800"],
body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate,
body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s
}

[data-aos][data-aos][data-aos-duration="1850"],
body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s
}

[data-aos][data-aos][data-aos-delay="1850"],
body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate,
body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s
}

[data-aos][data-aos][data-aos-duration="1900"],
body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s
}

[data-aos][data-aos][data-aos-delay="1900"],
body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate,
body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s
}

[data-aos][data-aos][data-aos-duration="1950"],
body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s
}

[data-aos][data-aos][data-aos-delay="1950"],
body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate,
body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s
}

[data-aos][data-aos][data-aos-duration="2000"],
body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s
}

[data-aos][data-aos][data-aos-delay="2000"],
body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate,
body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s
}

[data-aos][data-aos][data-aos-duration="2050"],
body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s
}

[data-aos][data-aos][data-aos-delay="2050"],
body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate,
body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s
}

[data-aos][data-aos][data-aos-duration="2100"],
body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s
}

[data-aos][data-aos][data-aos-delay="2100"],
body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate,
body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s
}

[data-aos][data-aos][data-aos-duration="2150"],
body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s
}

[data-aos][data-aos][data-aos-delay="2150"],
body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate,
body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s
}

[data-aos][data-aos][data-aos-duration="2200"],
body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s
}

[data-aos][data-aos][data-aos-delay="2200"],
body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate,
body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s
}

[data-aos][data-aos][data-aos-duration="2250"],
body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s
}

[data-aos][data-aos][data-aos-delay="2250"],
body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate,
body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s
}

[data-aos][data-aos][data-aos-duration="2300"],
body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s
}

[data-aos][data-aos][data-aos-delay="2300"],
body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate,
body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s
}

[data-aos][data-aos][data-aos-duration="2350"],
body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s
}

[data-aos][data-aos][data-aos-delay="2350"],
body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate,
body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s
}

[data-aos][data-aos][data-aos-duration="2400"],
body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s
}

[data-aos][data-aos][data-aos-delay="2400"],
body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate,
body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s
}

[data-aos][data-aos][data-aos-duration="2450"],
body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s
}

[data-aos][data-aos][data-aos-delay="2450"],
body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate,
body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s
}

[data-aos][data-aos][data-aos-duration="2500"],
body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s
}

[data-aos][data-aos][data-aos-delay="2500"],
body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate,
body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s
}

[data-aos][data-aos][data-aos-duration="2550"],
body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s
}

[data-aos][data-aos][data-aos-delay="2550"],
body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate,
body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s
}

[data-aos][data-aos][data-aos-duration="2600"],
body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s
}

[data-aos][data-aos][data-aos-delay="2600"],
body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate,
body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s
}

[data-aos][data-aos][data-aos-duration="2650"],
body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s
}

[data-aos][data-aos][data-aos-delay="2650"],
body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate,
body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s
}

[data-aos][data-aos][data-aos-duration="2700"],
body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s
}

[data-aos][data-aos][data-aos-delay="2700"],
body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate,
body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s
}

[data-aos][data-aos][data-aos-duration="2750"],
body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s
}

[data-aos][data-aos][data-aos-delay="2750"],
body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate,
body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s
}

[data-aos][data-aos][data-aos-duration="2800"],
body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s
}

[data-aos][data-aos][data-aos-delay="2800"],
body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate,
body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s
}

[data-aos][data-aos][data-aos-duration="2850"],
body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s
}

[data-aos][data-aos][data-aos-delay="2850"],
body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate,
body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s
}

[data-aos][data-aos][data-aos-duration="2900"],
body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s
}

[data-aos][data-aos][data-aos-delay="2900"],
body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate,
body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s
}

[data-aos][data-aos][data-aos-duration="2950"],
body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s
}

[data-aos][data-aos][data-aos-delay="2950"],
body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate,
body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s
}

[data-aos][data-aos][data-aos-duration="3000"],
body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s
}

[data-aos][data-aos][data-aos-delay="3000"],
body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate,
body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s
}

[data-aos] {
  pointer-events: none
}

[data-aos].aos-animate {
  pointer-events: auto
}

[data-aos][data-aos][data-aos-easing=linear],
body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(.25, .25, .75, .75)
}

[data-aos][data-aos][data-aos-easing=ease],
body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease
}

[data-aos][data-aos][data-aos-easing=ease-in],
body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in
}

[data-aos][data-aos][data-aos-easing=ease-out],
body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out
}

[data-aos][data-aos][data-aos-easing=ease-in-out],
body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out
}

[data-aos][data-aos][data-aos-easing=ease-in-back],
body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(.6, -.28, .735, .045)
}

[data-aos][data-aos][data-aos-easing=ease-out-back],
body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(.175, .885, .32, 1.275)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back],
body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55)
}

[data-aos][data-aos][data-aos-easing=ease-in-sine],
body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(.47, 0, .745, .715)
}

[data-aos][data-aos][data-aos-easing=ease-out-sine],
body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(.39, .575, .565, 1)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine],
body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(.445, .05, .55, .95)
}

[data-aos][data-aos][data-aos-easing=ease-in-quad],
body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(.55, .085, .68, .53)
}

[data-aos][data-aos][data-aos-easing=ease-out-quad],
body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(.25, .46, .45, .94)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad],
body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(.455, .03, .515, .955)
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic],
body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(.55, .085, .68, .53)
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic],
body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(.25, .46, .45, .94)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],
body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(.455, .03, .515, .955)
}

[data-aos][data-aos][data-aos-easing=ease-in-quart],
body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(.55, .085, .68, .53)
}

[data-aos][data-aos][data-aos-easing=ease-out-quart],
body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(.25, .46, .45, .94)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart],
body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(.455, .03, .515, .955)
}

@media screen {
  html:not(.no-js) [data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition-property: opacity, transform
  }

  html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: none
  }

  html:not(.no-js) [data-aos=fade-up] {
    transform: translate3d(0, 50px, 0)
  }

  html:not(.no-js) [data-aos=fade-down] {
    transform: translate3d(0, -50px, 0)
  }

  html:not(.no-js) [data-aos=fade-right] {
    transform: translate3d(-50px, 0, 0)
  }

  html:not(.no-js) [data-aos=fade-left] {
    transform: translate3d(50px, 0, 0)
  }

  html:not(.no-js) [data-aos=fade-up-right] {
    transform: translate3d(-50px, 50px, 0)
  }

  html:not(.no-js) [data-aos=fade-up-left] {
    transform: translate3d(50px, 50px, 0)
  }

  html:not(.no-js) [data-aos=fade-down-right] {
    transform: translate3d(-50px, -50px, 0)
  }

  html:not(.no-js) [data-aos=fade-down-left] {
    transform: translate3d(50px, -50px, 0)
  }

  html:not(.no-js) [data-aos^=zoom][data-aos^=zoom] {
    opacity: 0;
    transition-property: opacity, transform
  }

  html:not(.no-js) [data-aos^=zoom][data-aos^=zoom].aos-animate {
    opacity: 1;
    transform: translateZ(0) scale(1)
  }

  html:not(.no-js) [data-aos=zoom-in] {
    transform: scale(.6)
  }

  html:not(.no-js) [data-aos=zoom-in-up] {
    transform: translate3d(0, 50px, 0) scale(.6)
  }

  html:not(.no-js) [data-aos=zoom-in-down] {
    transform: translate3d(0, -100px, 0) scale(.6)
  }

  html:not(.no-js) [data-aos=zoom-in-right] {
    transform: translate3d(-50px, 0, 0) scale(.6)
  }

  html:not(.no-js) [data-aos=zoom-in-left] {
    transform: translate3d(50px, 0, 0) scale(.6)
  }

  html:not(.no-js) [data-aos=zoom-out] {
    transform: scale(1.2)
  }

  html:not(.no-js) [data-aos=zoom-out-up] {
    transform: translate3d(0, 50px, 0) scale(1.2)
  }

  html:not(.no-js) [data-aos=zoom-out-down] {
    transform: translate3d(0, -100px, 0) scale(1.2)
  }

  html:not(.no-js) [data-aos=zoom-out-right] {
    transform: translate3d(-50px, 0, 0) scale(1.2)
  }

  html:not(.no-js) [data-aos=zoom-out-left] {
    transform: translate3d(50px, 0, 0) scale(1.2)
  }

  html:not(.no-js) [data-aos^=slide][data-aos^=slide] {
    transition-property: transform;
    visibility: hidden
  }

  html:not(.no-js) [data-aos^=slide][data-aos^=slide].aos-animate {
    visibility: visible;
    transform: translateZ(0)
  }

  html:not(.no-js) [data-aos=slide-up] {
    transform: translate3d(0, 100%, 0)
  }

  html:not(.no-js) [data-aos=slide-down] {
    transform: translate3d(0, -100%, 0)
  }

  html:not(.no-js) [data-aos=slide-right] {
    transform: translate3d(-100%, 0, 0)
  }

  html:not(.no-js) [data-aos=slide-left] {
    transform: translate3d(100%, 0, 0)
  }

  html:not(.no-js) [data-aos^=flip][data-aos^=flip] {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition-property: transform
  }

  html:not(.no-js) [data-aos=flip-left] {
    transform: perspective(2500px) rotateY(-100deg)
  }

  html:not(.no-js) [data-aos=flip-left].aos-animate {
    transform: perspective(2500px) rotateY(0)
  }

  html:not(.no-js) [data-aos=flip-right] {
    transform: perspective(2500px) rotateY(100deg)
  }

  html:not(.no-js) [data-aos=flip-right].aos-animate {
    transform: perspective(2500px) rotateY(0)
  }

  html:not(.no-js) [data-aos=flip-up] {
    transform: perspective(2500px) rotateX(-100deg)
  }

  html:not(.no-js) [data-aos=flip-up].aos-animate {
    transform: perspective(2500px) rotateX(0)
  }

  html:not(.no-js) [data-aos=flip-down] {
    transform: perspective(2500px) rotateX(100deg)
  }

  html:not(.no-js) [data-aos=flip-down].aos-animate {
    transform: perspective(2500px) rotateX(0)
  }
}

html:not(.no-js) [data-aos=custom-fade] {
  transition: opacity 1s ease, transform 1s ease;
  transform: translate3d(0, 50px, 1px) scaleY(1.3) rotate(1deg);
  opacity: 0;
  transform-origin: 0 0;
  font-family: MicrosoftJhengHeiUILight;
	font-size: 2rem;
	line-height: 43px;
	letter-spacing: 0px;
    color: #ffffff;
    font-weight: lighter;

}

html:not(.no-js) [data-aos=custom-fade].aos-animate {
  transform: none;
  opacity: 1
}

html:not(.no-js) [data-aos=custom-fade][data-aos-delay="200"] {
  transition-delay: .2s
}

html:not(.no-js) [data-aos=custom-fade][data-aos-delay="300"] {
  transition-delay: .3s
}

html:not(.no-js) [data-aos=custom-fade][data-aos-delay="500"] {
  transition-delay: .5s
}

html:not(.no-js) [data-aos=custom-fade][data-aos-delay="1000"] {
  transition-delay: 1s
}

html:not(.no-js) [data-aos=custom-fade][data-aos-delay="1500"] {
  transition-delay: 1.5s
}

html:not(.no-js) [data-aos=title-fade]>.line {
  overflow: hidden
}

html:not(.no-js) [data-aos=title-fade]>.line>.line {
  transition: opacity 1s ease, transform 1s ease;
  transform: translate3d(0, 40px, 1px) rotate(6deg);
  opacity: 0;
  transform-origin: 0 0
}

html:not(.no-js) [data-aos=title-fade].aos-animate>.line>.line {
  transform: none;
  opacity: 1
}

html:not(.no-js) [data-aos=title-fade][data-aos-delay="0"]>.line:first-child>.line {
  transition-delay: 0s
}

html:not(.no-js) [data-aos=title-fade][data-aos-delay="0"]>.line:nth-child(2)>.line {
  transition-delay: .1s
}

html:not(.no-js) [data-aos=title-fade][data-aos-delay="0"]>.line:nth-child(3)>.line,
html:not(.no-js) [data-aos=title-fade][data-aos-delay="200"]>.line:first-child>.line {
  transition-delay: .2s
}

html:not(.no-js) [data-aos=title-fade][data-aos-delay="200"]>.line:nth-child(2)>.line {
  transition-delay: .3s
}

html:not(.no-js) [data-aos=title-fade][data-aos-delay="200"]>.line:nth-child(3)>.line {
  transition-delay: .4s
}

html:not(.no-js) [data-aos=title-fade][data-aos-delay="500"]>.line:first-child>.line {
  transition-delay: .5s
}

html:not(.no-js) [data-aos=title-fade][data-aos-delay="500"]>.line:nth-child(2)>.line {
  transition-delay: .6s
}

html:not(.no-js) [data-aos=title-fade][data-aos-delay="500"]>.line:nth-child(3)>.line {
  transition-delay: .7s
}

html:not(.no-js) [data-aos=title-fade][data-aos-delay="1000"]>.line:first-child>.line {
  transition-delay: 1s
}

html:not(.no-js) [data-aos=title-fade][data-aos-delay="1000"]>.line:nth-child(2)>.line {
  transition-delay: 1.1s
}

html:not(.no-js) [data-aos=title-fade][data-aos-delay="1000"]>.line:nth-child(3)>.line {
  transition-delay: 1.2s
}

html:not(.no-js) [data-aos=title-fade][data-aos-delay="2000"]>.line:first-child>.line {
  transition-delay: 2s
}

html:not(.no-js) [data-aos=title-fade][data-aos-delay="2000"]>.line:nth-child(2)>.line {
  transition-delay: 2.1s
}

html:not(.no-js) [data-aos=title-fade][data-aos-delay="2000"]>.line:nth-child(3)>.line {
  transition-delay: 2.2s
}

html:not(.no-js) [data-aos=custom-fade].aos-final {
  transition: opacity .6s ease, transform .6s ease;
  transform: translate3d(0, 50px, 1px) scaleY(1.3) rotate(1deg);
  opacity: 0;
  transition-delay: 0s !important
}

[data-aos][data-aos][data-aos-delay="900"].aos-final,
body[data-aos-delay="900"] [data-aos].aos-final {
  transition-delay: 0s !important
}

html:not(.no-js) [data-aos=title-fade].aos-final>.line>.line {
  transition: opacity .6s ease, transform .6s ease;
  transform: translate3d(0, 40px, 1px) rotate(6deg);
  opacity: 0;
  transform-origin: 0 0;
  transition-delay: 0s !important
}

html:not(.no-js) [data-aos=fade-in].aos-final {
  opacity: 0;
  transition: opacity .6s ease;
  transition-delay: 0s !important
}

html:not(.no-js) [data-aos=title-fade].aos-final>.line:first-child>.line,
html:not(.no-js) [data-aos=title-fade].aos-final>.line:nth-child(2)>.line,
html:not(.no-js) [data-aos=title-fade].aos-final>.line:nth-child(3)>.line {
  transition: opacity .6s ease, transform .6s ease;
  transform: translate3d(0, 40px, 1px) rotate(6deg);
  opacity: 0;
  transition-delay: 0s !important
}

.slick-slider {
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent
}

.slick-list,
.slick-slider {
  position: relative;
  display: block
}

.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0
}

.slick-list:focus {
  outline: none
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  transform: translateZ(0)
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto
}

.slick-track:after,
.slick-track:before {
  content: "";
  display: table
}

.slick-track:after {
  clear: both
}

.slick-loading .slick-track {
  visibility: hidden
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none
}

[dir=rtl] .slick-slide {
  float: right
}

.slick-slide img {
  display: block
}

.slick-slide.slick-loading img {
  display: none
}

.slick-slide.dragging img {
  pointer-events: none
}

.slick-initialized .slick-slide {
  display: block
}

.slick-loading .slick-slide {
  visibility: hidden
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent
}

@font-face {
  font-family: "Fatum";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/_nuxt/fonts/AGFatumC.de52936.woff) format("woff"), url(/_nuxt/fonts/AGFatumC.c6d97c8.woff2) format("woff2")
}

@font-face {
  font-family: "Fatum";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/_nuxt/fonts/AGFatumC-Bold.a883c00.woff) format("woff"), url(/_nuxt/fonts/AGFatumC-Bold.2dcd6a2.woff2) format("woff2")
}

@font-face {
  font-family: "Avanti";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/_nuxt/fonts/AvantiBold.e193c5a.woff) format("woff"), url(/_nuxt/fonts/AvantiBold.3f5cf3d.woff2) format("woff2")
}

.opacity,
.slick-arrow.slick-hidden {
  display: none
}

html {
  overflow-x: hidden
}

#app {
  min-width: 100%;
  overflow: hidden
}

* {
  box-sizing: border-box
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  padding: 0
}

.line {
  white-space: nowrap;
  text-align: inherit !important
}

body {
  /* -webkit-font-smoothing: antialiased; */
  overflow: hidden;
  /* font: 16px/16px "Fatum", Arial, Helvetica, sans-serif; */
  /* color: #1c1c1c; */
  /* background-color: #f5f5f3 */
}

button {
  cursor: pointer
}

button,
input {
  border: none;
  border-radius: 0;
  box-shadow: none;
  -webkit-appearance: none;
  outline: none
}

.aos-no-animate {
  transition: none !important
}

[data-no-aos] {
  transition: none
}

.aos-hidden,
[data-aos] {
  visibility: hidden
}

[data-aos].aos-animate {
  visibility: visible
}

@media screen and (min-width:1200px) {
  html.custom-scroll {
    overflow-y: scroll !important
  }

  html.custom-scroll::-webkit-scrollbar {
    width: 4px;
    border: none;
    padding: 0;
    box-shadow: none
  }

  html.custom-scroll::-webkit-scrollbar-track {
    background: #f5f5f3
  }

  html.custom-scroll::-webkit-scrollbar-thumb {
    background: #1c1c1c
  }

  html.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: #000
  }

  html.custom-scroll.black::-webkit-scrollbar-track {
    background: #1c1c1c
  }

  html.custom-scroll.black::-webkit-scrollbar-thumb:hover {
    background: #f5f5f3
  }

  html.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: #dedede
  }
}

.nuxt-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  width: 0;
  opacity: 1;
  transition: width .1s, opacity .4s;
  background-color: #000;
  z-index: 999999
}

.nuxt-progress.nuxt-progress-notransition {
  transition: none
}

.nuxt-progress-failed {
  background-color: red
}

.list[data-v-73866a8f] {
  width: calc(77.36% + 50px);
  margin: 103px auto;
  max-width: 90%;
  font-size: 0;
  overflow: hidden
}

.content[data-v-73866a8f] {
  transition: opacity .5s ease .5s
}

.content[data-v-73866a8f],
.content[data-v-73866a8f] .h {
  opacity: 0
}

.content.show[data-v-73866a8f] {
  opacity: 1;
  transition: opacity .5s ease
}

.content.show[data-v-73866a8f] .h {
  opacity: 1
}

html:not(.no-js) [data-aos=circle] .play__line[data-v-73866a8f] {
  transform-origin: 0 0;
  transform: scaleX(0);
  transition: transform 2s ease;
  transition-delay: 1s
}

html:not(.no-js) [data-aos=circle] .play__line[data-v-73866a8f]:after {
  opacity: 0;
  transition: opacity .5s ease 3s
}

html:not(.no-js) [data-aos=circle] svg[data-v-73866a8f] {
  opacity: 0;
  transition: opacity .5s ease;
  transition-delay: 1s
}

html:not(.no-js) [data-aos=circle] svg .play__c1[data-v-73866a8f] {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  transition: stroke-dashoffset 1s ease;
  transition-delay: 1.5s
}

html:not(.no-js) [data-aos=circle].aos-animate .play__line[data-v-73866a8f] {
  transform: none
}

html:not(.no-js) [data-aos=circle].aos-animate .circle__inner[data-v-73866a8f],
html:not(.no-js) [data-aos=circle].aos-animate .play__line[data-v-73866a8f]:after,
html:not(.no-js) [data-aos=circle].aos-animate svg[data-v-73866a8f] {
  opacity: 1
}

html:not(.no-js) [data-aos=circle].aos-animate svg .play__c1[data-v-73866a8f] {
  stroke-dashoffset: 0
}

html:not(.no-js) [data-aos=circle].aos-animate .play__btn[data-v-73866a8f] {
  padding-top: 70px
}

html:not(.no-js) [data-aos=circle].aos-animate .play__btn[data-v-73866a8f]:after {
  transform: none;
  transition: transform 1s ease 1s
}

html:not(.no-js) [data-aos=circle].aos-init .play__text span[data-v-73866a8f]:first-child {
  opacity: 1;
  transform: translateZ(1px) rotate(.001deg);
  transition: transform 1.2s ease 1s, opacity 0s linear .2s;
  -webkit-animation: hide-data-v-73866a8f 0s ease 2s forwards;
  animation: hide-data-v-73866a8f 0s ease 2s forwards
}

@-webkit-keyframes hide-data-v-73866a8f {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

@keyframes hide-data-v-73866a8f {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

html:not(.no-js) [data-aos=circle].aos-init .play__text span[data-v-73866a8f]:nth-child(2) {
  visibility: hidden;
  -webkit-animation: show-data-v-73866a8f 0s ease 2s forwards;
  animation: show-data-v-73866a8f 0s ease 2s forwards
}

@-webkit-keyframes show-data-v-73866a8f {
  0% {
    visibility: hidden
  }

  to {
    visibility: visible
  }
}

@keyframes show-data-v-73866a8f {
  0% {
    visibility: hidden
  }

  to {
    visibility: visible
  }
}

.play[data-v-73866a8f] {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%
}

.play__label[data-v-73866a8f] {
  color: #f5f5f3;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 17px 0
}

.play__text[data-v-73866a8f] {
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden
}

.play__text span[data-v-73866a8f]:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1
}

.play__text span[data-v-73866a8f]:first-child {
  transition: opacity 0s ease
}

.play__text span[data-v-73866a8f]:first-child,
.play__text span[data-v-73866a8f]:nth-child(3) {
  display: inline-block;
  transform: translate3d(0, 25px, 1px) rotate(6deg);
  opacity: 0
}

.play__text span[data-v-73866a8f]:nth-child(3) {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0s ease, transform 1.2s ease
}

.play__line[data-v-73866a8f] {
  height: 1px;
  background-color: hsla(0, 0%, 87.1%, .23)
}

.play__line[data-v-73866a8f]:after {
  content: "";
  display: block;
  width: 1px;
  height: 1px;
  margin: auto;
  background: #fff
}

.play svg[data-v-73866a8f] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(180deg)
}

.play svg .play__c2[data-v-73866a8f] {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  transition: stroke-dashoffset 1s ease
}

.play__btn[data-v-73866a8f] {
  display: block;
  width: 222px;
  height: 222px;
  border-radius: 50%;
  margin: -111px auto 0;
  padding-top: 2px;
  position: relative
}

@media screen and (min-width:1200px) {
  .play__btn:hover svg .play__c2[data-v-73866a8f] {
    stroke-dashoffset: 0
  }

  .play__btn:hover .play__label .play__text span[data-v-73866a8f]:nth-child(2) {
    opacity: 0;
    transition: opacity .5s ease
  }

  .play__btn:hover .play__label .play__text span[data-v-73866a8f]:nth-child(3) {
    transform: translateZ(1px) rotate(.001deg);
    opacity: 1
  }
}

.poster[data-v-73866a8f] {
  /* padding-top: 41.9%; */
  background-color: #000;
  position: relative;
  min-height: auto!important;
}

.poster__bg[data-v-73866a8f] {
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat
}

.poster__bg[data-v-73866a8f],
.poster__bg[data-v-73866a8f]:after {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%
}

.poster__bg[data-v-73866a8f]:after {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, .5)
}

.poster__content[data-v-73866a8f] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  padding-top: 10.1%
}

.poster__text[data-v-73866a8f] {
  position: absolute;
  bottom: calc(50% + 24px);
  width: 100%;
  text-align: left;
  color: #fff
}

.poster__wrapper[data-v-73866a8f] {
  width: 77.36%;
  margin: auto;
  max-width: 90%
}

.poster__date[data-v-73866a8f] {
  font: 11px "Fatum", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ebebeb
}

.poster__date span[data-v-73866a8f],
.poster__divider[data-v-73866a8f] {
  display: inline-block;
  vertical-align: middle
}

.poster__divider[data-v-73866a8f] {
  width: 36px;
  height: 1px;
  background: #ebebeb;
  margin: -1px 13px 0
}

.poster__title[data-v-73866a8f] {
  /* font: 700 20px/1.4 "Avanti", Arial, Helvetica, sans-serif; */
  color: #fff;
  max-width: 600px;
  margin-top: 15px
}

.poster__read[data-v-73866a8f] {
  font: 11px "Fatum", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ebebeb;
  margin-bottom: -68px;
  margin-top: 54px
}

body.lang-ru .play__label[data-v-73866a8f],
body.lang-ua .play__label[data-v-73866a8f] {
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 14px
}

@media screen and (max-width:1200px) {
  .play[data-v-73866a8f]:after {
    content: "";
    display: block;
    background: hsla(0, 0%, 100%, .17);
    height: 1px;
    transform: scaleX(0);
    transition: transform 1s ease .5s;
    transform-origin: 0 0
  }

  .play__line[data-v-73866a8f] {
    display: none
  }

  .play__line[data-v-73866a8f]:after {
    display: none !important
  }

  .play svg[data-v-73866a8f] {
    display: none
  }

  .play__btn[data-v-73866a8f] {
    display: inline-block;
    padding-top: 0 !important
  }

  .play__dot[data-v-73866a8f] {
    width: 1px;
    height: 1px;
    background: #fff;
    vertical-align: middle !important;
    margin-top: -2px !important;
    opacity: 0;
    transition: opacity .5s ease 1.5s
  }

  html:not(.no-js) [data-aos=circle].aos-animate[data-v-73866a8f]:after {
    transform: none
  }

  html:not(.no-js) [data-aos=circle].aos-animate .play__dot[data-v-73866a8f] {
    opacity: 1
  }

  .poster[data-v-73866a8f] {
    height: 603px;
    text-align: center;
    min-height: 0
  }

  .poster[data-v-73866a8f],
  .poster__content[data-v-73866a8f] {
    padding-top: 0
  }

  .poster__text[data-v-73866a8f] {
    bottom: 278px;
    text-align: center
  }

  .poster__title[data-v-73866a8f] {
    font-size: 18px;
    max-width: 330px;
    margin: 22px auto 0
  }

  .poster__read[data-v-73866a8f] {
    margin-top: 92px
  }

  .list[data-v-73866a8f] {
    max-width: none;
    width: calc(100% + 30px);
    padding: 0 32px;
    margin: 77px 0 77px -15px
  }

  .play[data-v-73866a8f] {
    top: auto;
    bottom: 273px
  }

  .play__btn[data-v-73866a8f] {
    width: auto;
    border-radius: 0;
    height: auto;
    margin-top: -19px;
    border: none;
    padding: 0
  }

  .play__btn[data-v-73866a8f]:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    left: 0;
    bottom: -1px;
    background-color: #fff;
    transform-origin: 0 0;
    transition: transform .5s ease
  }

  .play__label[data-v-73866a8f] {
    font-size: 11px;
    letter-spacing: 3px;
    margin: 0;
    padding-left: 5px
  }

  .play__dot[data-v-73866a8f],
  .play__label[data-v-73866a8f] {
    display: inline-block;
    vertical-align: top
  }

  .play__dot[data-v-73866a8f] {
    margin: 0 6px
  }

  .play__icon[data-v-73866a8f] {
    display: inline-block;
    vertical-align: top;
    width: 7px;
    margin: 0 7px
  }

  .play__icon img[data-v-73866a8f] {
    width: 100%
  }

  .play__line[data-v-73866a8f]:after {
    position: relative;
    top: -13px
  }
}

@media screen and (max-width:650px) {
  .list[data-v-73866a8f] {
    margin: 65px auto;
    width: 100%;
    padding: 0 27px
  }

  .poster[data-v-73866a8f] {
    height: 439px
  }

  .poster__wrapper[data-v-73866a8f] {
    max-width: 100%;
    width: 100%;
    padding: 0 24px
  }

  .poster__text[data-v-73866a8f] {
    bottom: 147px
  }

  .poster__read[data-v-73866a8f] {
    margin-top: 75px
  }

  .play[data-v-73866a8f] {
    bottom: 123px
  }
}

@media screen and (max-width:400px) {
  .list[data-v-73866a8f] {
    margin: 60px auto;
    padding: 0 23px
  }
}

@media screen and (max-width:350px) {
  .list[data-v-73866a8f] {
    margin: 56px auto;
    padding: 0 14px
  }

  .poster[data-v-73866a8f] {
    height: 431px
  }

  .poster__read[data-v-73866a8f] {
    margin-top: 72px
  }
}
/* 
.card[data-v-bc327956] {
  display: inline-block;
  vertical-align: top;
  height: 548px;
  overflow: hidden;
  position: relative;
  width: calc(33.33333% - 50px);
  margin: 0 25px 103px
}

.card__case[data-v-bc327956] {
  transition: opacity .3s ease .8s
}

.card__stub[data-v-bc327956] {
  position: absolute;
  pointer-events: none;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity .2s ease;
  height: 205px;
  padding: 34px 39px 0
}

.card__stub .card__title[data-v-bc327956] {
  color: #fff;
  padding-right: 0
}

.card__stub .card__date[data-v-bc327956] {
  color: hsla(0, 0%, 100%, .7)
}

.card__stub .card__divider[data-v-bc327956] {
  background-color: hsla(0, 0%, 100%, .62)
}

.card__stub .card__read[data-v-bc327956] {
  color: hsla(0, 0%, 100%, .7)
}

.card__image[data-v-bc327956] {
  height: 440px;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  background-color: #000;
  position: relative;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  transition: -webkit-filter .5s ease;
  transition: filter .5s ease;
  transition: filter .5s ease, -webkit-filter .5s ease
}

.card__image[data-v-bc327956]:before {
  content: "";
  display: block;
  height: 100%;
  background: rgba(53, 53, 53, .06)
}

.card__image[data-v-bc327956]:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(53, 53, 53, .45);
  transition: opacity .5s ease;
  opacity: 0
}

.card_special .card__image[data-v-bc327956] {
  background-color: #222
}

.card__date[data-v-bc327956] {
  font: 11px "Fatum", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(28, 28, 28, .7);
  transition: color .5s ease
}

.card__date span[data-v-bc327956],
.card__divider[data-v-bc327956] {
  display: inline-block;
  vertical-align: middle
}

.card__divider[data-v-bc327956] {
  width: 36px;
  height: 1px;
  background-color: rgba(93, 93, 92, .62);
  margin: -1px 13px 0;
  transition: background-color .5s ease
}

.card__title[data-v-bc327956] {
  font: 700 18px/1.6 "Avanti", Arial, Helvetica, sans-serif;
  margin-top: 14px;
  padding-right: 40px;
  color: #1c1c1c;
  transition: color .5s ease .3s
}

.card__content[data-v-bc327956] {
  height: 102px;
  padding-top: 25px;
  transition: transform .5s ease .3s;
  position: relative
}

.card__content[data-v-bc327956]:before {
  content: "";
  display: block;
  width: 100%;
  height: 205px;
  position: absolute;
  bottom: 0;
  background-color: #1c1c1c;
  opacity: 1;
  transition: opacity .5s ease, transform .5s ease .3s;
  transform: scaleY(0);
  transform-origin: 0 100%
}

.card__hover[data-v-bc327956] {
  visibility: hidden;
  position: absolute;
  top: 170px;
  left: 0;
  width: 100%;
  text-align: center;
  transition: opacity .5s ease, z-index .5s step-end, visibility .5s step-end;
  opacity: 0
}

.card__hover[data-v-bc327956]:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: hsla(0, 0%, 100%, .3);
  margin-left: -100%;
  transform-origin: 0 0;
  transition: transform 0s linear .5s
}

.card__inner[data-v-bc327956] {
  display: inline-block;
  width: 83px;
  margin-top: -20px
}

.card__word[data-v-bc327956] {
  overflow: hidden;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700
}

.card__word span[data-v-bc327956] {
  display: block;
  transform: translate3d(0, 15px, 1px) rotate(6deg);
  transform-origin: 0 0;
  transition: transform 0s linear .5s
}

.card__read_mobile[data-v-bc327956] {
  display: none
}

.card__line[data-v-bc327956] {
  width: 100%;
  height: 1px;
  background: #fff;
  margin: 3px 0 6px;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition: transform 0 linear .5s
}

.card__read[data-v-bc327956] {
  font: 11px/1 "Fatum", Arial, Helvetica, sans-serif;
  color: hsla(0, 0%, 100%, .5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 32px
}

@media screen and (min-width:1201px) {
  .card:hover .card__content[data-v-bc327956]:before {
    transform: scaleY(1);
    opacity: 1
  }

  .card:hover .card__stub[data-v-bc327956] {
    opacity: 1;
    transition: opacity .5s ease .5s
  }

  .card:hover .card__case[data-v-bc327956] {
    opacity: 0;
    transition: opacity .3s ease
  }

  .card:hover .card__image[data-v-bc327956] {
    -webkit-filter: grayscale(0);
    filter: grayscale(0)
  }

  .card:hover .card__image[data-v-bc327956]:before {
    opacity: .7
  }

  .card:hover .card__image[data-v-bc327956]:after {
    opacity: 1
  }

  .card:hover .card__hover[data-v-bc327956] {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    transition: opacity 0s linear, z-index 0s step-start, visibility 0s step-start
  }

  .card:hover .card__hover[data-v-bc327956]:before {
    transform: translate3d(100%, 0, 1px);
    transition: transform 1s ease
  }

  .card:hover .card__word span[data-v-bc327956] {
    transform: translateZ(1px) rotate(.001deg);
    transition: transform 1s ease .7s
  }

  .card:hover .card__line[data-v-bc327956] {
    transition: transform .5s ease .5s;
    transform: scaleX(1)
  }
} */

@media screen and (max-width:1200px) {
  /* .card[data-v-bc327956] {
    width: calc(50% - 30px);
    margin: 0 15px 75px;
    height: auto;
    overflow: visible
  }

  .card__image[data-v-bc327956] {
    height: 440px
  }

  .card__image[data-v-bc327956]:before {
    display: none
  }

  .card__image[data-v-bc327956]:after {
    background-color: rgba(0, 0, 0, .6);
    opacity: 1
  }

  .card__content[data-v-bc327956] {
    height: auto
  }

  .card__read[data-v-bc327956] {
    display: none
  }

  .card__title[data-v-bc327956] {
    margin-top: 9px
  }

  .card__word[data-v-bc327956] {
    font-size: 13px;
    letter-spacing: 4px
  }

  .card__read[data-v-bc327956] {
    display: block;
    position: absolute;
    top: calc(50% + 50px);
    margin-top: 0;
    width: 100%;
    text-align: center;
    left: 0;
    color: hsla(0, 0%, 82.4%, .8)
  }

  .card__line[data-v-bc327956] {
    background: none;
    margin: 5px 0 6px
  }

  .card .card__image[data-v-bc327956] {
    -webkit-filter: grayscale(0);
    filter: grayscale(0)
  }

  .card .card__image[data-v-bc327956]:before {
    opacity: .7
  }

  .card .card__hover[data-v-bc327956] {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    transition: opacity 0s linear, z-index 0s step-start, visibility 0s step-start;
    top: 50%
  }

  .card .card__hover[data-v-bc327956]:before {
    transform: translate3d(100%, 0, 1px);
    transition: transform 1s ease
  }

  .card .card__word span[data-v-bc327956] {
    transform: translateZ(1px) rotate(.001deg);
    transition: transform 1s ease .7s
  }

  .card .card__line[data-v-bc327956] {
    transition: transform .5s ease .5s;
    transform: scaleX(1)
  } */
}

@media screen and (max-width:650px) {
  /* .card[data-v-bc327956] {
    width: 100%;
    margin: 0 0 56px
  }

  .card__image[data-v-bc327956] {
    height: 467px
  }

  .card__content[data-v-bc327956] {
    padding-top: 23px
  } */
}

/* @media screen and (max-width:400px) {
  .card[data-v-bc327956] {
    margin: 0 0 51px
  }

  .card__image[data-v-bc327956] {
    height: 431px
  }
}

@media screen and (max-width:350px) {
  .card[data-v-bc327956] {
    margin: 0 0 48px
  }

  .card__image[data-v-bc327956] {
    height: 392px
  }

  .card__title[data-v-bc327956] {
    padding-right: 0
  }
} */

.footer[data-v-567e4c08] {
  height: 58px;
  margin-top: -58px;
  color: hsla(0, 0%, 100%, .65);
  padding: 0 66px;
  text-align: center;
  table-layout: fixed;
  width: 100%;
  font-size: 0;
  position: relative
}

.footer[data-v-567e4c08]:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%
}

.footer__link[data-v-567e4c08] {
  margin-right: 14px;
  transition: opacity .5s ease;
  color: hsla(0, 0%, 100%, .9);
  opacity: .75
}

@media screen and (min-width:1200px) {
  .footer__link[data-v-567e4c08]:hover {
    opacity: 1
  }
}

.footer__links[data-v-567e4c08] {
  text-align: left
}

.footer__container[data-v-567e4c08] {
  display: table-row
}

.footer__copy[data-v-567e4c08],
.footer__dev[data-v-567e4c08],
.footer__links[data-v-567e4c08] {
  display: inline-block;
  vertical-align: middle;
  width: 33.33333%;
  font-size: 15px
}

.footer__dev[data-v-567e4c08] {
  text-align: right;
  font-size: 10px;
  letter-spacing: 4px;
  color: hsla(0, 0%, 100%, .65);
  text-transform: uppercase
}

.footer__dev a[data-v-567e4c08] {
  display: inline-block;
  color: #fff
}

@media screen and (min-width:1200px) {
  .footer__dev a[data-v-567e4c08]:after {
    content: "";
    display: block;
    height: 1px;
    background-color: #fff;
    width: calc(100% - 4px);
    margin-top: -2px;
    transform: scaleX(0);
    transition: transform .5s ease;
    transform-origin: 0 0
  }

  .footer__dev a[data-v-567e4c08]:hover:after {
    transform: scaleX(1)
  }
}

.footer_type_1 .footer__link[data-v-567e4c08] {
  color: hsla(0, 0%, 100%, .9);
  opacity: .75
}

@media screen and (min-width:1200px) {
  .footer_type_1 .footer__link[data-v-567e4c08]:hover {
    opacity: 1
  }
}

.footer_type_2[data-v-567e4c08] {
  color: rgba(28, 28, 28, .65)
}

.footer_type_2 .footer__link[data-v-567e4c08] {
  color: rgba(28, 28, 28, .9)
}

.footer_type_2 .footer__dev[data-v-567e4c08] {
  color: rgba(28, 28, 28, .65)
}

.footer_type_2 .footer__dev a[data-v-567e4c08] {
  color: rgba(28, 28, 28, .9)
}

.footer_type_2 .footer__dev a[data-v-567e4c08]:after {
  background-color: rgba(28, 28, 28, .9)
}

@media screen and (max-width:1200px) {
  .footer[data-v-567e4c08] {
    height: 90px;
    margin-top: -90px
  }

  .footer__link[data-v-567e4c08] {
    margin: 0 5px
  }

  .footer__copy[data-v-567e4c08],
  .footer__dev[data-v-567e4c08],
  .footer__links[data-v-567e4c08] {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 14px
  }

  .footer__dev[data-v-567e4c08] {
    font-size: 11px;
    margin-top: 12px
  }

  .footer__copy[data-v-567e4c08] {
    margin-top: 11px
  }

  .footer[data-v-567e4c08]:before {
    display: none
  }
}

@media screen and (max-width:650px) {
  .footer[data-v-567e4c08] {
    margin-top: -94px;
    height: 94px;
    padding: 0 28px
  }

  .footer_type_1[data-v-567e4c08],
  .footer_type_1 .footer__copy[data-v-567e4c08],
  .footer_type_1 .footer__dev[data-v-567e4c08],
  .footer_type_1 .footer__links[data-v-567e4c08] {
    text-align: left
  }

  .footer_type_1 .footer__link[data-v-567e4c08] {
    margin: auto 10px auto auto
  }
}

@media screen and (max-width:400px) {
  .footer[data-v-567e4c08] {
    margin-top: -92px;
    height: 92px;
    padding: 0 22px
  }
}

@media screen and (max-width:350px) {
  .footer[data-v-567e4c08] {
    margin-top: -93px;
    height: 93px;
    padding: 0 14px
  }
}

.d[data-v-757ff202] {
  top: -11px;
  right: -28px;
  width: 37px;
  transition: opacity .3s ease .5s
}

.d[data-v-757ff202],
.d__el[data-v-757ff202] {
  position: absolute
}

.d__el[data-v-757ff202] {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  left: calc(50% - 1px);
  background-color: #fff;
  transition: transform .5s ease
}

.d__el[data-v-757ff202]:first-child {
  top: 13px
}

.d__el[data-v-757ff202]:nth-child(2) {
  top: 17px
}

.d__el[data-v-757ff202]:nth-child(3) {
  top: 21px
}

.d__link[data-v-757ff202] {
  display: block;
  margin-bottom: 3px;
  transition: opacity .5s ease
}

.d__link[data-v-757ff202]:last-child {
  margin-bottom: 0
}

@media screen and (min-width:1200px) {
  .d__link[data-v-757ff202]:hover {
    opacity: .7
  }
}

.d__icon[data-v-757ff202] {
  max-width: 15px
}

.d__icon_white[data-v-757ff202] {
  display: none
}

.d__btn[data-v-757ff202] {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  position: relative
}

.d__btn[data-v-757ff202]:after {
  width: 35px;
  height: 35px;
  top: 1px;
  background-color: rgba(28, 28, 28, 0);
  transition: background-color .3s ease;
  z-index: -1
}

.d__btn[data-v-757ff202]:after,
.d__btn[data-v-757ff202]:before {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  border-radius: 50%
}

.d__btn[data-v-757ff202]:before {
  -webkit-animation: btn-data-v-757ff202 1.5s ease infinite alternate;
  animation: btn-data-v-757ff202 1.5s ease infinite alternate;
  width: 100%;
  height: 100%;
  top: 0;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMzkiIHZpZXdCb3g9IjAgMCAzNyAzOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAuOTE2OTkyIDEyLjA4MDRDMy42OTQwMSA1LjM5Mzc0IDEwLjI4NzMgMC42OTE0MDYgMTcuOTc4OSAwLjY5MTQwNkMyOC4xNzc5IDAuNjkxNDA2IDM2LjQ0NTkgOC45NTkzNCAzNi40NDU5IDE5LjE1ODRDMzYuNDQ1OSAyOS4zNTc0IDI4LjE3NzkgMzcuNjI1MyAxNy45Nzg5IDM3LjYyNTNDMTAuMjg3MyAzNy42MjUzIDMuNjk0MDEgMzIuOTIzIDAuOTE2OTkyIDI2LjIzNjMiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS1vcGFjaXR5PSIwLjMiLz4KPC9zdmc+Cg==) no-repeat 50%;
  background-size: contain;
  z-index: 0
}

@-webkit-keyframes btn-data-v-757ff202 {
  0% {
    transform: scale(1)
  }

  to {
    transform: scale(1.15);
    opacity: .6
  }
}

@keyframes btn-data-v-757ff202 {
  0% {
    transform: scale(1)
  }

  to {
    transform: scale(1.15);
    opacity: .6
  }
}

.d__container[data-v-757ff202] {
  width: 37px;
  border: 1px solid hsla(0, 0%, 100%, .3);
  padding: 19px 0 12px;
  text-align: center;
  font-size: 0;
  margin-top: 7px;
  border-radius: 20px;
  background-color: rgba(28, 28, 28, .65);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 10px, 1px);
  transition: opacity .5s ease, transform .5s ease, visibility .5s step-end
}

@media screen and (min-width:1200px) {
  .d:hover .d__container[data-v-757ff202] {
    opacity: 1;
    visibility: visible;
    transform: translateZ(1px);
    transition: opacity .5s ease, transform .5s ease, visibility 0s step-end
  }

  .d:hover .d__btn[data-v-757ff202]:after {
    background-color: rgba(28, 28, 28, .65)
  }

  .d:hover .d__btn[data-v-757ff202]:before {
    -webkit-animation: none;
    animation: none;
    opacity: 1;
    transform: scale(1)
  }

  .d:hover .d__el[data-v-757ff202]:first-child {
    transform: translate3d(0, 4px, 1px)
  }

  .d:hover .d__el[data-v-757ff202]:nth-child(3) {
    transform: translate3d(0, -4px, 1px)
  }
}

.b[data-v-757ff202] {
  height: 70px;
  float: right;
  color: #fff;
  text-transform: uppercase;
  width: 359px;
  position: relative;
  text-align: left;
  padding-left: 45px;
  margin-left: 0;
  z-index: 1
}

.b__bg[data-v-757ff202] {
  background-color: #1c1c1c;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0
}

.b__els[data-v-757ff202]:after,
.b__els[data-v-757ff202]:before {
  content: "";
  display: block;
  position: absolute;
  width: 45px;
  height: 1px;
  background-color: #fff;
  right: 33px;
  transition: transform .5s ease
}

.b__els[data-v-757ff202]:before {
  top: 31px
}

.b__els[data-v-757ff202]:after {
  top: 38px
}

.b__t[data-v-757ff202] {
  font-size: 10px;
  letter-spacing: 4px;
  position: relative
}

@media screen and (min-width:1200px) {
  .b:hover .b__els[data-v-757ff202]:before {
    transform: translate3d(0, 3px, 1px)
  }

  .b:hover .b__els[data-v-757ff202]:after {
    transform: translate3d(0, -4px, 1px)
  }
}

.b_active .b__els[data-v-757ff202]:before {
  transform: translate3d(0, 3px, 1px)
}

.b_active .b__els[data-v-757ff202]:after {
  transform: translate3d(0, -4px, 1px)
}

.b_active .b__bg[data-v-757ff202] {
  opacity: 0;
  transition: opacity 0s ease 1s
}

@media screen and (min-width:1200px) {
  .b_active:hover .b__els[data-v-757ff202]:before {
    transform: translate3d(0, 3px, 1px) rotate(-48deg) scale(.6)
  }

  .b_active:hover .b__els[data-v-757ff202]:after {
    transform: translate3d(0, -4px, 1px) rotate(48deg) scale(.6)
  }
}

.m[data-v-757ff202] {
  float: right;
  margin-top: 9px;
  width: 760px
}

.m[data-v-757ff202],
.m__i[data-v-757ff202] {
  font-size: 14px
}

.m__i[data-v-757ff202] {
  margin-left: 54px;
  display: inline-block;
  vertical-align: middle;
  margin-top: 26px;
  transition: opacity .5s ease;
  position: relative
}

.m__i[data-v-757ff202]:first-child {
  margin-left: 0
}

.m__i_active[data-v-757ff202]:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -4px;
  left: 0
}

.m__container[data-v-757ff202] {
  margin-left: 54px;
  display: inline-block;
  vertical-align: middle;
  margin-top: 26px;
  position: relative
}

.m__container .m__i[data-v-757ff202] {
  display: block;
  margin: 0;
  position: relative
}

.m a.m__i[data-v-757ff202]:not(.m__i_large) {
  transition: opacity .5s ease
}

@media screen and (min-width:1201px) {
  .m a.m__i[data-v-757ff202]:not(.m__i_large):hover {
    opacity: .7
  }
}

.m .m__i_large[data-v-757ff202] {
  font-size: 13px
}

@media screen and (min-width:1200px) {
  .m .m__i_large[data-v-757ff202]:hover {
    opacity: .7
  }
}

.l[data-v-757ff202] {
  transition: opacity .5s ease;
  margin-top: 26px;
  display: block;
  width: 93px;
  float: left
}

.l__img[data-v-757ff202] {
  width: 100%;
  display: none
}

@media screen and (min-width:1200px) {
  .l[data-v-757ff202]:hover {
    opacity: .7
  }
}

.h[data-v-757ff202] {
  position: absolute;
  padding-left: 66px;
  padding-right: 9px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  height: 88px;
  transition: opacity .5s ease
}

.h__content[data-v-757ff202] {
  height: 100%;
  transform: translateZ(1px)
}

.h[data-v-757ff202]:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  margin-left: -66px;
  width: calc(100% + 75px);
  margin-bottom: -88px;
  transition: opacity .5s ease;
  opacity: 0;
  will-change: opacity
}

.h_fixed_show[data-v-757ff202] {
  transform: translate3d(0, 100%, 1px)
}

.h_fixed_hide[data-v-757ff202],
.h_fixed_show[data-v-757ff202] {
  position: fixed;
  top: -88px;
  transition: transform .5s ease, opacity .5s ease
}

.h_fixed_hide[data-v-757ff202] {
  transform: translateZ(1px)
}

.h_fixed_super[data-v-757ff202] {
  position: fixed !important;
  top: -88px !important;
  transform: translate3d(0, 100%, 1px) !important
}

.h_fixed_super .d[data-v-757ff202],
.h_fixed_super .l[data-v-757ff202],
.h_fixed_super .m__i[data-v-757ff202],
.h_fixed_super[data-v-757ff202]:before {
  opacity: 0 !important
}

.h_fixed_super .d[data-v-757ff202] {
  pointer-events: none;
  transition: opacity .3s ease 0s
}

.h_type_0 .l__img_0[data-v-757ff202] {
  display: block
}

.h_type_0[data-v-757ff202]:before {
  background-color: #f5f5f3
}

.h_type_0.h_fixed_hide[data-v-757ff202]:before,
.h_type_0.h_fixed_show[data-v-757ff202]:before {
  opacity: 1
}

.h_type_0 .d__el[data-v-757ff202] {
  background-color: #1f1f1f
}

.h_type_0 .d__btn[data-v-757ff202]:after {
  display: none
}

.h_type_0 .d__btn[data-v-757ff202]:before {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMzkiIHZpZXdCb3g9IjAgMCAzNyAzOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAuNDcxMTkxIDExLjkzMjdDMy4yNDgyMSA1LjI0NjAzIDkuODQxNTIgMC41NDM3MDEgMTcuNTMzMSAwLjU0MzcwMUMyNy43MzIxIDAuNTQzNzAxIDM2LjAwMDEgOC44MTE2MyAzNi4wMDAxIDE5LjAxMDZDMzYuMDAwMSAyOS4yMDk3IDI3LjczMjEgMzcuNDc3NiAxNy41MzMxIDM3LjQ3NzZDOS44NDE1MiAzNy40Nzc2IDMuMjQ4MjEgMzIuNzc1MyAwLjQ3MTE5MSAyNi4wODg2IiBzdHJva2U9IiNlNmU2ZTQiLz4KPC9zdmc+Cg==) no-repeat 50%;
  background-size: contain
}

.h_type_0 .d__container[data-v-757ff202] {
  border-color: rgba(0, 0, 0, .06);
  background-color: #f5f5f3
}

.h_type_0 .d__icon[data-v-757ff202] {
  display: none
}

.h_type_0 .d__icon_white[data-v-757ff202] {
  display: inline-block
}

.h_type_1 .l__img_1[data-v-757ff202] {
  display: block
}

.h_type_1 .m__i[data-v-757ff202] {
  color: #fff
}

.h_type_1 .b[data-v-757ff202] {
  color: #1c1c1c
}

.h_type_1 .b__bg[data-v-757ff202] {
  background-color: #f5f5f3
}

.h_type_1 .b__els[data-v-757ff202]:after,
.h_type_1 .b__els[data-v-757ff202]:before,
.h_type_1[data-v-757ff202]:before {
  background-color: #1c1c1c
}

.h_type_1.h_fixed_hide[data-v-757ff202]:before,
.h_type_1.h_fixed_show[data-v-757ff202]:before {
  opacity: 1
}

.h_type_2 .l__img_1[data-v-757ff202] {
  display: block
}

.h_type_2 .m__i[data-v-757ff202] {
  color: #fff
}

.h_type_2 .b[data-v-757ff202] {
  color: #f5f5f3
}

.h_type_2 .b__els[data-v-757ff202]:after,
.h_type_2 .b__els[data-v-757ff202]:before {
  background-color: #f5f5f3
}

@media screen and (max-width:1200px) {
  .b[data-v-757ff202] {
    margin-left: 0
  }

  .b_active .b__els[data-v-757ff202]:before {
    transform: translate3d(0, 3px, 1px)
  }

  .b_active .b__els[data-v-757ff202]:after {
    transform: translate3d(0, -4px, 1px)
  }

  .m[data-v-757ff202] {
    margin-top: 8px;
    width: auto
  }

  .m__i[data-v-757ff202] {
    display: none
  }

  .h[data-v-757ff202] {
    padding-left: 31px;
    padding-right: 8px
  }

  .d[data-v-757ff202],
  .m__container[data-v-757ff202] {
    display: none !important
  }
}

@media screen and (max-width:650px) {
  .l[data-v-757ff202] {
    width: 78px;
    margin-top: 25px
  }

  .b[data-v-757ff202] {
    width: 215px;
    height: 67px;
    padding-left: 29px
  }

  .b__els[data-v-757ff202]:after,
  .b__els[data-v-757ff202]:before {
    right: 25px
  }

  .b__els[data-v-757ff202]:before {
    top: 28px
  }

  .b__els[data-v-757ff202]:after {
    top: 35px
  }

  .b__t[data-v-757ff202] {
    font-size: 8px;
    letter-spacing: 3px;
    white-space: normal;
    width: 91px;
    text-align: right;
    line-height: 12px
  }

  .m[data-v-757ff202] {
    margin-top: 5px
  }

  .h[data-v-757ff202] {
    padding-right: 5px;
    padding-left: 28px;
    height: 76px
  }

  .h_fixed_hide[data-v-757ff202],
  .h_fixed_show[data-v-757ff202] {
    top: -76px
  }

  .h_fixed_super[data-v-757ff202] {
    top: -76px !important
  }

  .h[data-v-757ff202]:before {
    margin-bottom: -76px
  }
}

@media screen and (max-width:400px) {
  .h[data-v-757ff202] {
    padding-left: 22px
  }
}

@media screen and (max-width:350px) {
  .b[data-v-757ff202] {
    width: 187px;
    padding-left: 21px
  }

  .b__els[data-v-757ff202]:after,
  .b__els[data-v-757ff202]:before {
    right: 11px
  }

  .h[data-v-757ff202] {
    padding-left: 14px
  }
}

.social[data-v-2dc60d4b] {
  margin-right: 56px;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  opacity: .9;
  margin-top: -5px;
  position: absolute;
  bottom: 39px;
  right: 0
}

.social__item[data-v-2dc60d4b] {
  margin-left: 33px
}

@media screen and (min-width:1200px) {
  .social__item[data-v-2dc60d4b] {
    transition: opacity .5s ease
  }

  .social__item[data-v-2dc60d4b]:hover {
    opacity: .5
  }
}

.social__item[data-v-2dc60d4b]:first-child {
  margin-left: 0
}

.lang[data-v-2dc60d4b] {
  font-size: 14px;
  line-height: 1;
  color: #fff;
  opacity: .9;
  font-family: "Fatum", sans-serif;
  padding: 0 10px;
  position: relative;
  cursor: default;
  margin-top: -54px;
  margin-left: 46px;
  display: inline-block;
  position: absolute;
  bottom: 39px;
  left: 0
}

.lang__item[data-v-2dc60d4b] {
  overflow: hidden;
  padding: 0 10px;
  margin: 8px 0
}

.lang__text[data-v-2dc60d4b] {
  transform: translate3d(0, 20px, 1px) rotate(10deg);
  transform-origin: 0 0;
  transition: transform 1s ease, opacity .5s ease;
  display: block;
  color: inherit
}

@media screen and (min-width:1200px) {
  .lang__text[data-v-2dc60d4b]:hover {
    opacity: .5
  }
}

.lang__dropdown[data-v-2dc60d4b] {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  padding-bottom: 2px
}

.lang:hover .lang__text[data-v-2dc60d4b] {
  transform: translateZ(1px) rotate(.001deg)
}

.l[data-v-2dc60d4b] {
  position: absolute;
  top: 17px;
  left: 57px;
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 1
}

.l[data-v-2dc60d4b],
.l__img[data-v-2dc60d4b] {
  width: 93px
}

.word[data-v-2dc60d4b] {
  display: inline-block;
  transform: translate3d(0, 100%, 1px) rotate(6deg);
  transition: transform 0s linear .5s
}

.nav[data-v-2dc60d4b] {
  height: 100%;
  counter-reset: section
}

.menu[data-v-2dc60d4b] {
  position: fixed;
  top: 9px;
  left: 9px;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  background-color: #1c1c1c;
  pointer-events: none;
  transition: transform .7s ease, visibility .7s step-end;
  z-index: 2;
  visibility: hidden;
  transform: scale(0);
  transform-origin: 100% 0
}

.menu[data-v-2dc60d4b]:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: -9px;
  left: -9px;
  border: 9px solid #fff;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease
}

.menu__wrapper[data-v-2dc60d4b] {
  width: 100%;
  height: 100%;
  position: relative
}

.menu__outer[data-v-2dc60d4b] {
  height: 100%;
  opacity: 0;
  transition: opacity .2s ease;
  overflow: hidden
}

.menu__container[data-v-2dc60d4b] {
  width: 100%;
  height: 100%;
  margin-bottom: calc(-100vh + 18px);
  opacity: 1;
  overflow: hidden
}

.menu__bg[data-v-2dc60d4b]:after {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.menu_type_0[data-v-2dc60d4b] {
  background-color: #1c1c1c
}

.menu_type_0[data-v-2dc60d4b]:after {
  border-color: #f5f5f3
}

.menu_type_0 .menu__bg[data-v-2dc60d4b]:after {
  background-color: rgba(0, 0, 0, .63)
}

.menu_type_0 .menu__row[data-v-2dc60d4b] {
  color: #fff;
  border-color: hsla(0, 0%, 100%, .08)
}

.menu_type_0 .menu__row[data-v-2dc60d4b]:after {
  color: #fff
}

.menu_type_0 .l__img_0[data-v-2dc60d4b] {
  display: none
}

.menu_type_0 .lang[data-v-2dc60d4b],
.menu_type_0 .social[data-v-2dc60d4b] {
  color: #fff
}

.menu_type_1[data-v-2dc60d4b] {
  background-color: #f5f5f3
}

.menu_type_1[data-v-2dc60d4b]:after {
  border-color: #1c1c1c
}

.menu_type_1 .menu__bg[data-v-2dc60d4b]:after {
  background-color: hsla(0, 0%, 100%, .85)
}

.menu_type_1 .menu__row[data-v-2dc60d4b] {
  color: #1c1c1c;
  border-color: rgba(0, 0, 0, .1)
}

.menu_type_1 .menu__row[data-v-2dc60d4b]:after {
  color: #1c1c1c
}

.menu_type_1 .l__img_1[data-v-2dc60d4b] {
  display: none
}

.menu_type_1 .lang[data-v-2dc60d4b],
.menu_type_1 .social[data-v-2dc60d4b] {
  color: #1c1c1c
}

.menu_type_1 .menu__langs a[data-v-2dc60d4b] {
  color: #1c1c1c;
  margin-left: 8px;
  margin-right: 8px;
  text-transform: uppercase
}

.menu_type_1 .menu__langs a.active[data-v-2dc60d4b] {
  opacity: 1
}

.menu_type_2[data-v-2dc60d4b] {
  background-color: #1c1c1c
}

.menu_type_2[data-v-2dc60d4b]:after {
  border-color: #f5f5f3
}

.menu_type_2 .menu__bg[data-v-2dc60d4b]:after {
  background-color: rgba(0, 0, 0, .63)
}

.menu_type_2 .menu__row[data-v-2dc60d4b] {
  color: #fff;
  border-color: hsla(0, 0%, 100%, .08)
}

.menu_type_2 .menu__row[data-v-2dc60d4b]:after {
  color: #fff
}

.menu_type_2 .l__img_0[data-v-2dc60d4b] {
  display: none
}

.menu_type_2 .lang[data-v-2dc60d4b],
.menu_type_2 .social[data-v-2dc60d4b] {
  color: #fff
}

.menu__langs[data-v-2dc60d4b],
.menu__social[data-v-2dc60d4b] {
  display: none
}

.menu_open[data-v-2dc60d4b] {
  pointer-events: all;
  visibility: visible;
  transform: none;
  transition: transform .7s ease, visibility 0s step-start
}

.menu_open .l[data-v-2dc60d4b] {
  opacity: 1;
  transition: opacity .5s ease .5s
}

.menu_open .word[data-v-2dc60d4b] {
  transition: transform .7s ease .5s;
  transform: none
}

.menu_open .menu__outer[data-v-2dc60d4b],
.menu_open[data-v-2dc60d4b]:after {
  opacity: 1;
  transition: opacity .5s ease .5s
}

.menu__bg[data-v-2dc60d4b] {
  background-size: cover;
  background-position: 50%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-bottom: calc(-100vh + 18px);
  opacity: 0;
  transform: scale(1.2);
  transition: opacity 1.2s ease, transform 1.2s ease, visibility 1.2s step-end, -webkit-filter .6s ease;
  transition: opacity 1.2s ease, transform 1.2s ease, visibility 1.2s step-end, filter .6s ease;
  transition: opacity 1.2s ease, transform 1.2s ease, visibility 1.2s step-end, filter .6s ease, -webkit-filter .6s ease;
  visibility: hidden;
  -webkit-filter: blur(3px);
  filter: blur(3px)
}

.menu__bg_active[data-v-2dc60d4b] {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.2s ease, transform 1.2s ease, visibility 0s step-start, -webkit-filter .6s ease;
  transition: opacity 1.2s ease, transform 1.2s ease, visibility 0s step-start, filter .6s ease;
  transition: opacity 1.2s ease, transform 1.2s ease, visibility 0s step-start, filter .6s ease, -webkit-filter .6s ease;
  visibility: visible;
  -webkit-filter: blur(0);
  filter: blur(0)
}

.menu__row[data-v-2dc60d4b] {
  text-align: center;
  display: block;
  height: 25%;
  border-bottom: 1px solid hsla(0, 0%, 100%, .08);
  font: 700 65px/1 "Avanti", Arial, Helvetica, sans-serif;
  color: #fff;
  position: relative
}

.menu__row_blog[data-v-2dc60d4b] {
  display: none
}

.menu__row[data-v-2dc60d4b]:last-child {
  border-bottom: none
}

.menu__row[data-v-2dc60d4b]:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%
}

.menu__row[data-v-2dc60d4b]:after {
  counter-increment: section;
  content: ".0"counter(section);
  font: 400 10px/21px "Fatum", sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  top: 16%;
  left: 50%;
  transform: translate(-50%);
  position: absolute;
  opacity: 0;
  transition: opacity .5s ease
}

.menu__row span[data-v-2dc60d4b] {
  display: inline-block;
  vertical-align: middle;
  transition: opacity .5s ease;
  opacity: .3;
  overflow: hidden
}

@media screen and (min-width:1200px) {

  .menu__row[data-v-2dc60d4b]:hover:after,
  .menu__row:hover span[data-v-2dc60d4b] {
    opacity: 1
  }
}

@media screen and (max-width:1200px) {

  .lang[data-v-2dc60d4b],
  .social[data-v-2dc60d4b] {
    display: none
  }

  .l[data-v-2dc60d4b] {
    top: -33px;
    left: 22px
  }

  .menu[data-v-2dc60d4b] {
    padding: 50px 0
  }

  .menu_type_0 .menu__langs a[data-v-2dc60d4b],
  .menu_type_0 .menu__langs button[data-v-2dc60d4b],
  .menu_type_0 .menu__social a[data-v-2dc60d4b],
  .menu_type_2 .menu__langs a[data-v-2dc60d4b],
  .menu_type_2 .menu__langs button[data-v-2dc60d4b],
  .menu_type_2 .menu__social a[data-v-2dc60d4b] {
    color: hsla(0, 0%, 100%, .9)
  }

  .menu__container[data-v-2dc60d4b] {
    display: none
  }

  .menu__item[data-v-2dc60d4b] {
    height: calc(25% - 25px)
  }

  .menu__row[data-v-2dc60d4b] {
    height: 20%
  }

  .menu__row_blog[data-v-2dc60d4b] {
    display: block
  }

  .menu__row span[data-v-2dc60d4b] {
    display: inline-block;
    position: relative;
    top: 6px
  }

  .menu__langs[data-v-2dc60d4b],
  .menu__social[data-v-2dc60d4b] {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity .2s ease
  }

  .menu__social[data-v-2dc60d4b] {
    bottom: 25px
  }

  .menu__social a[data-v-2dc60d4b] {
    margin: 0 16px;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    color: #1c1c1c
  }

  .menu_open .menu__langs[data-v-2dc60d4b],
  .menu_open .menu__social[data-v-2dc60d4b] {
    opacity: 1;
    transition: opacity .5s ease 1s
  }

  .menu__langs[data-v-2dc60d4b] {
    bottom: 57px;
    z-index: 1
  }

  .menu__langs button[data-v-2dc60d4b] {
    margin: 0 10px;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    color: #1c1c1c;
    opacity: .5
  }

  .menu__langs button.active[data-v-2dc60d4b] {
    opacity: 1
  }

  .menu__langs a[data-v-2dc60d4b] {
    color: hsla(0, 0%, 100%, .9);
    margin-left: 8px;
    margin-right: 8px;
    text-transform: uppercase
  }

  .menu__langs a.active[data-v-2dc60d4b] {
    opacity: 1
  }
}

@media screen and (max-width:1200px) and (orientation:landscape) {
  .menu[data-v-2dc60d4b] {
    padding: 50px 0 80px
  }

  .menu__row[data-v-2dc60d4b] {
    font-size: 8vh
  }

  .menu__row span[data-v-2dc60d4b] {
    top: 0
  }
}

@media screen and (max-width:650px) {
  .l[data-v-2dc60d4b] {
    top: -18px;
    left: 23px
  }

  .l[data-v-2dc60d4b],
  .l__img[data-v-2dc60d4b] {
    width: 78px
  }

  .menu[data-v-2dc60d4b] {
    padding: 34px 0 68px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    top: 5px;
    left: 5px
  }

  .menu[data-v-2dc60d4b]:after {
    top: -5px;
    left: -5px;
    border-width: 5px
  }

  .menu__social[data-v-2dc60d4b] {
    bottom: 21px
  }

  .menu__langs[data-v-2dc60d4b] {
    bottom: 60px
  }

  .menu__row[data-v-2dc60d4b] {
    font-size: 36px
  }

  .menu__row span[data-v-2dc60d4b] {
    top: 2px
  }
}

@media screen and (max-width:400px) {
  .menu[data-v-2dc60d4b] {
    padding: 72px 0 92px
  }

  .menu__langs[data-v-2dc60d4b] {
    bottom: 56px
  }

  .menu__social[data-v-2dc60d4b] {
    bottom: 17px
  }

  .l[data-v-2dc60d4b] {
    left: 17px;
    top: -56px
  }
}

@media screen and (max-width:350px) {
  .menu[data-v-2dc60d4b] {
    padding: 68px 0 77px
  }

  .menu__langs[data-v-2dc60d4b] {
    bottom: 43px
  }

  .menu__social[data-v-2dc60d4b] {
    bottom: 12px
  }

  .l[data-v-2dc60d4b] {
    left: 9px;
    top: -52px
  }
}

.cookie[data-v-531fd3af] {
  position: fixed;
  bottom: 9px;
  right: 9px;
  background-color: #1c1c1c;
  z-index: 1;
  padding: 15px 46px 13px 19px;
  width: 335px
}

.cookie_white[data-v-531fd3af] {
  background-color: #f5f5f3
}

.cookie_white .cookie__text[data-v-531fd3af] {
  color: rgba(0, 0, 0, .7)
}

.cookie_white .cookie__text a[data-v-531fd3af] {
  color: rgba(0, 0, 0, .9)
}

.cookie_white .cookie__btn[data-v-531fd3af] {
  color: #000
}

.cookie_white .cookie__close[data-v-531fd3af] {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMCAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC44Ij4KPHBhdGggZD0iTTQuNTIyMTQgNS4wMDE1M0wwLjA5NTcyMTUgOS40NTg4OEMtMC4wMjcyNTIxIDkuNTgyNzEgLTAuMDI3MjUyMSA5Ljc4MzMzIDAuMDk1NzIxNSA5LjkwNzE2QzAuMTU3MTMgOS45NjkxNiAwLjIzNzc1OCAxMCAwLjMxODIzIDEwQzAuMzk4ODU4IDEwIDAuNDc5MzMgOS45NjkxNiAwLjU0MDczOSA5LjkwNzE2TDUuMDAwNDQgNS40MTYzTDkuNDYwMTUgOS45MDcxNkM5LjUyMTcxIDkuOTY5MTYgOS42MDIxOSAxMCA5LjY4MjY2IDEwQzkuNzYzMTMgMTAgOS44NDM3NiA5Ljk2OTE2IDkuOTA1MTcgOS45MDcxNkMxMC4wMjgxIDkuNzgzMzMgMTAuMDI4MSA5LjU4MjcxIDkuOTA1MTcgOS40NTg4OEw1LjQ3ODkgNS4wMDE1M0w5LjkwODE0IDAuNTQxMDRDMTAuMDMxMSAwLjQxNzIwOCAxMC4wMzExIDAuMjE2NTg5IDkuOTA4MTQgMC4wOTI3NTY1QzkuNzg1MTYgLTAuMDMwOTE4OCA5LjU4NTk0IC0wLjAzMDkxODggOS40NjMxMiAwLjA5Mjc1NjVMNS4wMDA2IDQuNTg2NzdMMC41Mzc2MTQgMC4wOTI5MTM4QzAuNDE0NjQgLTAuMDMwNzYxNSAwLjIxNTU3IC0wLjAzMDc2MTUgMC4wOTI1OTY0IDAuMDkyOTEzOEMtMC4wMzAzNzcyIDAuMjE2NzQ3IC0wLjAzMDM3NzIgMC40MTczNjUgMC4wOTI1OTY0IDAuNTQxMTk4TDQuNTIyMTQgNS4wMDE1M1oiIGZpbGw9ImJsYWNrIi8+CjwvZz4KPC9zdmc+Cg==) no-repeat 50%
}

.cookie_hide[data-v-531fd3af] {
  transition: transform 1s ease, opacity 1s ease !important;
  transform: translate3d(0, 20px, 1px) !important;
  opacity: 0 !important
}

.cookie__right[data-v-531fd3af] {
  text-align: right
}

.cookie__text[data-v-531fd3af] {
  font-size: 13px;
  color: hsla(0, 0%, 100%, .7)
}

.cookie__text a[data-v-531fd3af] {
  color: hsla(0, 0%, 100%, .9);
  text-decoration: underline;
  margin-left: 3px;
  transition: opacity .5s ease
}

@media screen and (min-width:1200px) {
  .cookie__text a[data-v-531fd3af]:hover {
    opacity: .7
  }
}

.cookie__btn[data-v-531fd3af] {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 11px;
  overflow: hidden;
  position: relative
}

.cookie__btn span[data-v-531fd3af]:first-child {
  transform: translateZ(1px) rotate(.001deg);
  display: inline-block
}

.cookie__btn span[data-v-531fd3af]:nth-child(2) {
  transform: translate3d(0, 100%, 1px) rotate(6deg);
  transform-origin: 0 0;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  transition: transform 0s ease, visibility 0s step-end
}

@media screen and (min-width:1200px) {
  .cookie__btn:hover span[data-v-531fd3af]:first-child {
    opacity: 0;
    transition: opacity .5s ease
  }

  .cookie__btn:hover span[data-v-531fd3af]:nth-child(2) {
    transform: translateZ(1px) rotate(.001deg);
    transition: transform 1s ease, visibility 0s step-start;
    visibility: visible
  }
}

.cookie__close[data-v-531fd3af] {
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMCAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC44Ij4KPHBhdGggZD0iTTQuNTIyMTQgNS4wMDE1M0wwLjA5NTcyMTUgOS40NTg4OEMtMC4wMjcyNTIxIDkuNTgyNzEgLTAuMDI3MjUyMSA5Ljc4MzMzIDAuMDk1NzIxNSA5LjkwNzE2QzAuMTU3MTMgOS45NjkxNiAwLjIzNzc1OCAxMCAwLjMxODIzIDEwQzAuMzk4ODU4IDEwIDAuNDc5MzMgOS45NjkxNiAwLjU0MDczOSA5LjkwNzE2TDUuMDAwNDQgNS40MTYzTDkuNDYwMTUgOS45MDcxNkM5LjUyMTcxIDkuOTY5MTYgOS42MDIxOSAxMCA5LjY4MjY2IDEwQzkuNzYzMTMgMTAgOS44NDM3NiA5Ljk2OTE2IDkuOTA1MTcgOS45MDcxNkMxMC4wMjgxIDkuNzgzMzMgMTAuMDI4MSA5LjU4MjcxIDkuOTA1MTcgOS40NTg4OEw1LjQ3ODkgNS4wMDE1M0w5LjkwODE0IDAuNTQxMDRDMTAuMDMxMSAwLjQxNzIwOCAxMC4wMzExIDAuMjE2NTg5IDkuOTA4MTQgMC4wOTI3NTY1QzkuNzg1MTYgLTAuMDMwOTE4OCA5LjU4NTk0IC0wLjAzMDkxODggOS40NjMxMiAwLjA5Mjc1NjVMNS4wMDA2IDQuNTg2NzdMMC41Mzc2MTQgMC4wOTI5MTM4QzAuNDE0NjQgLTAuMDMwNzYxNSAwLjIxNTU3IC0wLjAzMDc2MTUgMC4wOTI1OTY0IDAuMDkyOTEzOEMtMC4wMzAzNzcyIDAuMjE2NzQ3IC0wLjAzMDM3NzIgMC40MTczNjUgMC4wOTI1OTY0IDAuNTQxMTk4TDQuNTIyMTQgNS4wMDE1M1oiIGZpbGw9IiNEQ0RDREMiLz4KPC9nPgo8L3N2Zz4K) no-repeat 50%;
  top: 7px;
  right: 7px;
  transition: opacity .5s ease
}

@media screen and (min-width:1200px) {
  .cookie__close[data-v-531fd3af]:hover {
    opacity: .7
  }
}

@media screen and (max-width:650px) {
  .cookie[data-v-531fd3af] {
    width: calc(100% - 44px);
    right: 22px;
    padding-left: 24px;
    padding-right: 30px
  }

  .cookie[data-v-531fd3af],
  .cookie__right[data-v-531fd3af] {
    text-align: center
  }
}

svg[data-v-2c796ce0] {
  width: 278px;
  height: 278px;
  display: block;
  transform: rotate(180deg)
}

svg .circle__c1[data-v-2c796ce0] {
  stroke-dasharray: 862;
  stroke-dashoffset: 862;
  transition: stroke-dashoffset 2s ease;
  will-change: stroke-dashoffset
}

svg .circle__c1.back[data-v-2c796ce0] {
  stroke-dashoffset: -862 !important;
  transition: stroke-dashoffset 1.5s ease !important
}

svg .circle__c2[data-v-2c796ce0] {
  stroke-dasharray: 862;
  stroke-dashoffset: 862;
  will-change: stroke-dashoffset
}

svg .circle__c2.back[data-v-2c796ce0] {
  stroke-dashoffset: -862 !important;
  transition: stroke-dashoffset 1.5s ease !important
}

.preloader[data-v-2c796ce0] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #1c1c1c;
  font-size: 0;
  text-align: center;
  z-index: 1000;
  transform: translateZ(2px)
}

.preloader_hide[data-v-2c796ce0] {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.5s ease
}

.preloader__logo[data-v-2c796ce0] {
  width: 90px;
  height: 31px;
  position: absolute;
  top: calc(50% - 16px);
  left: calc(50% - 44px);
  overflow: hidden;
  padding-top: 2px
}

.preloader__logo img[data-v-2c796ce0] {
  transition: transform .7s ease .5s;
  transform: translate3d(0, 40px, 1px) rotate(10deg);
  transform-origin: 0 0;
  margin-bottom: 2px
}

.preloader__block-1[data-v-2c796ce0],
.preloader__block-2[data-v-2c796ce0] {
  position: absolute;
  height: 12px;
  width: 100%;
  top: calc(50% - 5px);
  left: 0;
  overflow: hidden
}

.preloader__block-1 span[data-v-2c796ce0],
.preloader__block-2 span[data-v-2c796ce0] {
  font-size: 12px;
  line-height: 1;
  color: #efeeeb;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 6px;
  display: block;
  transition: transform .7s ease .5s;
  transform: translate3d(0, 15px, 1px) rotate(10deg);
  transform-origin: 0 0
}

.preloader[data-v-2c796ce0]:before {
  content: "";
  height: 100%
}

.preloader[data-v-2c796ce0]:before,
.preloader__inner[data-v-2c796ce0] {
  display: inline-block;
  vertical-align: middle
}

.preloader__inner[data-v-2c796ce0] {
  text-align: center;
  position: relative
}

.preloader_active_1 svg .circle__c1[data-v-2c796ce0] {
  stroke-dashoffset: 0
}

.preloader_active_1 svg .circle__c2[data-v-2c796ce0] {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 3s ease .5s
}

.preloader_active_1 .preloader__logo img[data-v-2c796ce0] {
  transition: transform .7s ease .5s;
  transform: translateZ(1px) rotate(.001deg)
}

.preloader_active_2 svg .circle__c1[data-v-2c796ce0] {
  stroke-dashoffset: 0
}

.preloader_active_2 svg .circle__c2[data-v-2c796ce0] {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 3s ease .5s
}

.preloader_active_2 .preloader__block-1 span[data-v-2c796ce0] {
  transition: transform .7s ease .5s;
  transform: translateZ(1px) rotate(.001deg)
}

.preloader_active_3 svg .circle__c1[data-v-2c796ce0] {
  stroke-dashoffset: 0
}

.preloader_active_3 svg .circle__c2[data-v-2c796ce0] {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 3s ease .5s
}

.preloader_active_3 .preloader__block-2 span[data-v-2c796ce0] {
  transition: transform .7s ease .5s;
  transform: translateZ(1px) rotate(.001deg)
}