.aside__doc-link, .title {
  font-family: "Poppins-Regular", sans-serif;
  font-weight: 400;
}

.header__page-title, .title-bold {
  font-family: "Poppins-Bold", sans-serif;
  font-weight: 700;
}

body {
  font-family: "helvetica_regular", sans-serif;
  font-weight: 400;
}

@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("../fonts/Poppins-Bold.woff2") format("woff2"), url("../fonts/Poppins-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "helvetica_light";
  src: url("../fonts/helvetica_light.woff2") format("woff2"), url("../fonts/helvetica_light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "helvetica_regular";
  src: url("../fonts/helvetica_regular.woff2") format("woff2"), url("../fonts/helvetica_regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "helvetica_bold";
  src: url("../fonts/helvetica_bold.woff2") format("woff2"), url("../fonts/helvetica_bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::after,
*::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

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

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  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;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    -o-transition-duration: 1ms !important;
       transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
      transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
      transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
      transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
      transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
      transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
      transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
      transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
      transform-origin: right bottom;
}

/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
      transform-origin: center;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
      transform-origin: left bottom;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
      transform-origin: right bottom;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
      transform-origin: left bottom;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
      transform-origin: right bottom;
}

/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
      transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
      transform-origin: center bottom;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
      transform-origin: left center;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
      transform-origin: right center;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
      transform-origin: center bottom;
}

/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox__backdrop {
  background: rgba(24, 24, 27, 0.85);
}

.fancybox__content {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.fancybox__content img {
  display: block;
  margin: 0 auto;
  background: #fff; /* если нужен белый фон за картинкой */
}


.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: rgb(30, 30, 30);
  opacity: 0;
  -webkit-transition-duration: inherit;
       -o-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
       -o-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
          transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
       -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  -o-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  -webkit-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  -o-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
          animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -ms-transform-origin: top left;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform: scaleX(0);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -ms-transform-origin: 0;
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
          animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Transition effects */
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
       -o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
          transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
          transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -ms-transform: rotate(-360deg);
  -webkit-transform: rotate(-360deg);
          transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -ms-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
          transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
          transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
          transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}
/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ffffff;
  color: #4c4b4b;
  font-size: 16px;
  line-height: 1.5;
  min-height: 100%;
  min-width: 320px;
  overflow-x: hidden;
}
body.lock {
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.post-password-form {
  max-width: 1230px;
  padding: 50px 15px;
  margin: 0 auto;
  text-align: center;
}

.post-password-form label {
    display: block;
    margin-bottom: 20px;
    font-size: 18px;
}

.post-password-form label input {
    border: 1px solid #dedede;
    padding: 10px 20px;
}

.post-password-form label + input {
    border: 1px solid #dedede;
    background-color: transparent;
    padding: 10px 20px;
}

label[for="pwbox-137"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}


.post-password-form input + p {
    margin-bottom: 45px;
    font-size: 22px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-narrow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.title {
  color: #222;
  font-size: 32px;
}

.title-bold {
  color: #222;
}

input:active, input:focus,
textarea:active,
textarea:focus {
  outline: transparent;
}

button:active, button:focus {
  outline: transparent;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

input:focus,
textarea:focus {
  border: 1px solid #9cc0f9;
}
input:hover,
.connect__input--select:hover,
textarea:hover {
  border: 1px solid #d11317;
}
input:active,
textarea:active {
  border: 1px solid yellowgreen;
}

.button {
  display: inline-block;
  padding: 14px 36px;
  background-color: #d11317;
  border: 2px solid #d11317;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: background-color 0.5s, color 0.5s ease 0s;
  -o-transition: background-color 0.5s, color 0.5s ease 0s;
  transition: background-color 0.5s, color 0.5s ease 0s;
}
.button:last-child {
  margin-right: 0;
}
.button:hover {
  background-color: transparent;
  color: #d11317;
  border: 2px solid #d11317;
}

.map {
  max-height: 400px;
}

.up {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  border: 1px solid #9c0e11;
  padding: 7px;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  visibility: hidden;
  opacity: 0;
}
.up:hover {
  background-color: #9c0e11;
}
.up:hover .up__svg {
  fill: #fff;
}
.up__svg {
  fill: #9c0e11;
  -webkit-transition: fill 0.8s ease 0s;
  -o-transition: fill 0.8s ease 0s;
  transition: fill 0.8s ease 0s;
}

.scroll.active .up {
  visibility: visible;
  opacity: 1;
}

.header {
  position: relative;
}


.header__slider:hover .slick-arrow {
  visibility: visible;
  opacity: 1;
}

.header__slider-list {
  height: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .slick-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  background-color: transparent;
  border: 2px solid #fff;
  width: 50px;
  height: 50px;
  cursor: pointer;
  -webkit-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  visibility: hidden;
  opacity: 0;
}

.header .slick-arrow:hover {
  background-color: #d11317;
  border-color: #d11317;
}

.header .slick-prev {
  left: 20px;
}

.header .slick-next {
  right: 20px;
}

.header .slider-arrow {
  fill: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.header .slick-dots {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .slick-dots li {
  margin-right: 10px;
}

.header .slick-dots li:last-child {
  margin-right: 0;
}

.header .slick-dots li button {
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 0;
  width: 15px;
  height: 15px;
  -webkit-transition: background-color 0.5s ease 0s;
  -o-transition: background-color 0.5s ease 0s;
  transition: background-color 0.5s ease 0s;
  padding: 0;
}

.header .slick-dots li.slick-active button {
  background-color: #fff;
}

.header__slider-item {
  height: 800px;
  position: relative;
  display: none;
}

.header__slider-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(27, 48, 83, 0.8);
  z-index: 2;
}

.header__item-wrap {
  overflow: hidden;
}

.header__item-wrap--first {
  max-width: 750px;
}

.header__item-wrap--second {
  max-width: 930px;
  margin: 0 auto;
}

.header__item-wrap--third {
  max-width: 617px;
  margin-left: auto;
}

.header__slider-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 800px;
  position: relative;
  z-index: 4;
  color: #fff;
  overflow: hidden;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-name: textbox;
          animation-name: textbox;
  -webkit-transition: -webkit-transform 3s ease 0s;
  transition: -webkit-transform 3s ease 0s;
  -o-transition: transform 3s ease 0s;
  transition: transform 3s ease 0s;
  transition: transform 3s ease 0s, -webkit-transform 3s ease 0s;
  text-align: left;
  padding-top: 150px;
}

@-webkit-keyframes textbox {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes textbox {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.header__slider-content--second {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 0 auto;
  -webkit-transform: translateX(-120%);
      -ms-transform: translateX(-120%);
          transform: translateX(-120%);
}

.header__slider-content--second p {
  max-width: 582px;
}

.header .slick-slide.slick-current .header__slider-content {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}

.header__slider-title {
  font-size: 55px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 700;
}

.header__slider-text {
  font-size: 20px;
  margin-bottom: 40px;
}

.header__slider-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

.header__btn {
  padding: 12px 28px;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: border-color 0.5s, background-color 0.5s ease 0s;
  -o-transition: border-color 0.5s, background-color 0.5s ease 0s;
  transition: border-color 0.5s, background-color 0.5s ease 0s;
}

.header__slider-link {
  display: block;
  margin-right: 20px;
  border: 2px solid #fff;
}

.header__slider-link:hover {
  border-color: #d11317;
  background-color: #d11317;
}

.header__slider-btn {
  border: 2px solid #d11317;
  background-color: #d11317;
  cursor: pointer;
}

.header__slider-btn:hover {
  background-color: transparent;
}

.header__wide {
  width: 100%;
  background-color: #000;
}

.header__top-wrapper {
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}

.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}

.header__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__social-item {
  margin-right: 20px;
}

.header__social-item:last-child {
  margin-right: 0;
}

.header__svg {
  fill: #fff;
  -webkit-transition: fill 0.5s;
  -o-transition: fill 0.5s;
  transition: fill 0.5s;
}

.header__svg:hover {
  fill: #d11317;
}

.header__contacts-item {
  margin-right: 20px;
  color: #fff;
  padding-left: 30px;
  position: relative;
  transition: color 0.5s ease;
}

.header__contacts-item:last-child {
  margin-right: 0;
}

.header__contacts-item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 17px;
  height: 17px;
}

.header__contacts-item--phone::before {
  background-image: url(../images/svg-sprite/sprite.svg#phone);
  height: 14px;
  width: 14px;
}

.header__contacts-item--mail::before {
  background-image: url(../images/svg-sprite/sprite.svg#envelope);
}

.header__contacts-item:hover {
  color: #D11317;
}

.header__nav-wrapper {
  width: 100%;
  position: absolute;
  top: 55px;
  left: 0;
  right: 0;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.header__top-wrapper {
  display: none;
}

.header__nav-wrapper.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 55;
  background-color: #fff;
  -webkit-box-shadow: 0px 6px 7px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 6px 7px -3px rgba(0, 0, 0, 0.1);
}

.header__nav {
  max-width: 1170px;
  margin: 0 auto;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.header__left {
  padding: 10px 0 10px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 195px;
  width: 100%;
}

.header__mobile-btn {
  width: 40px;
  height: 28px;
  position: relative;
  padding: 0;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  margin-right: 40px;
  cursor: pointer;
}

.header__mobile-btn::before,
.header__mobile-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #222;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  -o-transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.header__mobile-btn::before {
  top: 0;
  left: 0;
}

.header__mobile-btn::after {
  bottom: 0;
  left: 0;
}

.header__mobile-btn span {
  width: 100%;
  height: 2px;
  background-color: #222;
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 1s ease 0s;
  -o-transition: opacity 1s ease 0s;
  transition: opacity 1s ease 0s;
}

.header__mobile-btn.active span {
  visibility: hidden;
  opacity: 0;
}

.header__mobile-btn.active::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 13px;
}

.header__mobile-btn.active::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 13px;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu > li {
  padding: 13px;
  position: relative;
}

.menu > li::before {
  position: absolute;
  content: "";
  width: 0;
  height: 4px;
  background-color: #d11317;
  bottom: -15px;
  left: 0;
  right: 0;
  -webkit-transition: width 0.5s ease 0s;
  -o-transition: width 0.5s ease 0s;
  transition: width 0.5s ease 0s;
}

.menu > li:hover ul {
  top: 65px;
  visibility: visible;
  opacity: 1;
}

.menu > li:hover::before {
  width: 100%;
}

.menu > li > a {
  font-size: 13px;
  color: #4c4b4b;
  font-weight: 600;
  text-transform: uppercase;
  padding: 30px 0;
}

.menu > li:nth-child(1) > a {
  position: relative;
  padding-right: 20px;
}

.menu > li:nth-child(2) > a {
  position: relative;
  padding-right: 20px;
}

.header__arrow {
  position: absolute;
  top: 41%;
  right: 0;
}

.menu > li > ul {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: 120px;
  left: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 210px;
  border-bottom: 4px solid #d11317;
  padding-top: 5px;
  z-index: 5;
}

.menu > li > ul > li:hover {
  background-color: #efeded;
}

.menu > li > ul > div {
  background-color: #fff;
}

.menu > li > ul a {
  padding: 20px 0 10px 40px;
  display: block;
  color: #4c4b4b;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  -webkit-transition: color 0.5s ease 0s;
  -o-transition: color 0.5s ease 0s;
  transition: color 0.5s ease 0s;
}

.menu > li > ul a::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #d6d6d6;
  border-radius: 50%;
  left: 20px;
  top: 24px;
  -webkit-transition: background-color 0.5s ease 0s;
  -o-transition: background-color 0.5s ease 0s;
  transition: background-color 0.5s ease 0s;
}

.menu > li > ul a::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  left: 22px;
  top: 26px;
}

.menu > li > ul a:hover {
  color: #d11317;
}

.menu > li > ul a:hover::before {
  background-color: #d11317;
}

.header__search-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  border-left: 1px solid #efeded;
  cursor: pointer;
  -webkit-transition: background-color 0.5s, stroke 0.5s;
  -o-transition: background-color 0.5s, stroke 0.5s;
  transition: background-color 0.5s, stroke 0.5s;
}

.header__search-toggle:hover {
  background-color: #d11317;
}

.header__search-toggle:hover .header__search-svg {
  stroke: #fff;
}

.header__search-svg {
  stroke: #d11317;
}

.header__search-svg--white {
  stroke: #fff;
}

.header__form {
  position: absolute;
  top: 120px;
  right: 0;
  width: 300px;
  height: 80px;
  background-color: #d11317;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px dashed #fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.header__form.active {
  visibility: visible;
  opacity: 1;
  top: 80px;
}

.header__search-input {
  width: 210px;
  height: 40px;
  padding: 5px 10px;
  color: #636363;
}

.header__search-submit {
  width: 40px;
  height: 40px;
  border: none;
  background-color: #79080a;
  cursor: pointer;
}

.header__calc {
  width: 143px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #d11317;
  -webkit-transition: background-color 0.5s ease 0s;
  -o-transition: background-color 0.5s ease 0s;
  transition: background-color 0.5s ease 0s;
}

.header__calc:hover {
  background-color: #900b0b;
}

.header__calc-btn {
  background-color: transparent;
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  padding: 30px 20px;
  cursor: pointer;
}

.header__calc-btn:hover {
  color: #fff;
}

.breadcrumbs {
  display: flex;
  align-items: center;
}

.breadcrumbs span {
  margin-right: 5px;
}

.breadcrumbs span a {
  color: #4c4b4b;
}

.breadcrumbs__separator {
  width: 15px;
  height: 13px;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(209, 19, 23, 0.5);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  z-index: 50;
  overflow-y: auto;
}

.popup__area {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: default;
}

.popup:target {
  visibility: visible;
  opacity: 1;
}

.popup:target .popup__content {
  -webkit-transform: perspective(600px) translate(0, 0) rotateX(0deg);
          transform: perspective(600px) translate(0, 0) rotateX(0deg);
  opacity: 1;
}

.popup__body {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}

.popup__content {
  background-color: #fff;
  color: #4c4b4b;
  max-width: 800px;
  width: 100%;
  padding: 20px;
  position: relative;
  z-index: 5;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  -webkit-transform: perspective(600px) translate(0, -100%) rotateX(45deg);
          transform: perspective(600px) translate(0, -100%) rotateX(45deg);
}

.popup__close {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #900b0b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  right: -20px;
  top: -20px;
}

.popup__close-svg {
  fill: #fff;
}

.popup__text {
  text-align: center;
  margin-bottom: 15px;
}

.popup__title {
  font-size: 32px;
  font-weight: 400;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 10px;
}

.popup__title::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  background-color: #d11317;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}

.popup__warranty {
  max-width: 405px;
  font-size: 14px;
  margin: 0 auto;
  color: #d11317;
}

.popup__inputs-fillable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-bottom: 25px;
}

.popup__request-form {
  width: 100%;
}

.popup__request-form input {
  max-width: 360px;
  width: 100%;
  padding: 7px 15px;
  border: 1px solid #4c4b4b;
  margin: 0 auto;
}

.popup__send {
  width: 160px;
  height: 45px;
  border: 1px solid #d11317;
  background-color: #d11317;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: background-color 0.5s, color 0.5s ease 0s;
  -o-transition: background-color 0.5s, color 0.5s ease 0s;
  transition: background-color 0.5s, color 0.5s ease 0s;
  margin-bottom: 10px;
  margin-right: 20px;
}

.popup__send:hover {
  background-color: #fff;
  color: #d11317;
}

.popup__inputs-resultbox {
  border-top: 1px dashed #d11317;
  padding-top: 10px;
}

.popup__inputs-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.popup__calctext {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.popup__request-form {
  text-align: center;
}

.popup__input-wrap {
  margin-bottom: 20px;
  text-align: center;
}

.popup__input-wrap:last-child {
  margin-bottom: 0;
}

.popup__input-wrap input {
  font-size: 20px;
  text-align: center;
  color: #d11317;
  border: none;
}

.popup__input-wrap--error .popup__text-error {
  width: 100%;
}

.header__image-box {
  height: 46vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.header__image-box--stages {
  height: 52vh;
}
.header__image-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(27, 48, 83, 0.9);
}
.header__page-title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 85px;
  font-size: 48px;
  color: #fff;
  z-index: 0;
  padding: 0 15px;
}
.header__page-title--pages {
  max-width: 1170px;
  width: 100%;
  text-align: center;
}
.header__bottom {
  padding: 20px 0;
  border-bottom: 1px solid #e9e9e9;
}
.header__bottom-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__breadcrumbs-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__breadcrumbs-item:last-child .header__breadcrumbs-link {
  pointer-events: none;
  padding-right: 0;
}
.header__breadcrumbs-item:last-child .header__breadcrumbs-link::after {
  display: none;
}
.header__breadcrumbs-link {
  padding-right: 22px;
  position: relative;
  color: #4c4b4b;
  margin: 5px;
}
.header__breadcrumbs-link::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 13px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/svg-sprite/sprite.svg#angles-right);
}
.header__breadcrumbs-link:last-child {
  margin-right: 0;
}
.header__share-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__share-item {
  margin-right: 5px;
}
.header__share-item:last-child {
  margin-right: 0;
}
.header__share-link {
  width: 30px;
  height: 27px;
}
.header__share-img {
  width: 30px;
  height: 30px;
}

.aside {
  max-width: 370px;
  width: 100%;
}
.aside__menu-list {
  margin-bottom: 50px;
}
.aside__menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 20px;
  color: #4c4b4b;
  font-weight: 600;
  background-color: #f7f7f7;
  position: relative;
  -webkit-transition: background-color 0.5s, color 0.5s ease 0s;
  -o-transition: background-color 0.5s, color 0.5s ease 0s;
  transition: background-color 0.5s, color 0.5s ease 0s;
}
.aside__menu-link:hover {
  background-color: #d11317;
  color: #fff;
}
.aside__menu-link:hover .aside__menu-svg {
  opacity: 1;
}
.aside__menu-svg {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.aside__doc-title {
  font-size: 22px;
  font-weight: 400;
  color: #222;
  margin-bottom: 24px;
}
.aside__doc-list {
  margin-bottom: 40px;
}
.aside__doc-item {
  margin-bottom: 10px;
}
.aside__doc-link {
  padding: 15px 20px 15px 55px;
  display: block;
  border: 1px solid #e9e9e9;
  color: #4c4b4b;
  font-size: 18px;
  position: relative;
  -webkit-transition: background-color 0.5s, color 0.5s ease 0s;
  -o-transition: background-color 0.5s, color 0.5s ease 0s;
  transition: background-color 0.5s, color 0.5s ease 0s;
}
.aside__doc-link:hover {
  background-color: #d11317;
  color: #fff;
}
.aside__doc-link:hover .aside__doc-svg {
  fill: #fff;
}
.aside__doc-svg {
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  fill: #4c4b4b;
  -webkit-transition: fill 0.5s ease 0s;
  -o-transition: fill 0.5s ease 0s;
  transition: fill 0.5s ease 0s;
}
.aside__manager-box {
  padding: 30px 20px;
  background-color: #f9f9f9;
  border: 1px solid #e9e9e9;
}
.aside__manager-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #fff;
}
.aside__manager-item:last-child {
  margin-bottom: 0;
}
.aside__manager-img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 20px;
  border: 1px solid #e9e9e9;
}
.aside__manager-name {
  color: #d11317;
  margin-bottom: 5px;
}
.aside__manager-link {
  display: block;
  font-size: 13px;
  color: #4c4b4b;
  padding-left: 30px;
  position: relative;
  -webkit-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
.aside__manager-link::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.aside__manager-link:hover {
  color: #d11317;
}
.aside__manager-phone::before {
  background-image: url(../images/svg-sprite/sprite.svg#phone);
}
.aside__manager-mail::before {
  background-image: url(../images/svg-sprite/sprite.svg#envelope);
}

.aside__menu-list li {
  margin-bottom: 3px;
  position: relative;
}

.aside__menu-list li::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 22px;
  right: 75px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(http://1k/wp-content/themes/housing-coop/assets/images/svg-sprite/sprite.svg#arrow);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.5s, right 0.5s ease 0s;
  -o-transition: opacity 0.5s, right 0.5s ease 0s;
  transition: opacity 0.5s, right 0.5s ease 0s;
}

.aside__menu-list li:hover::after {
  right: 25px;
  visibility: visible;
  opacity: 1;
}

.programs {
  padding: 90px 0;
  background-color: #f9f9f9;
}
.programs__text-box {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 35px;
}
.programs__title {
  line-height: 1.2;
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
}
.programs__title::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background-color: #d11317;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.programs__text {
  color: #848484;
  font-size: 18px;
}
.programs__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -14px;
}
.programs__item {
  max-width: 570px;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0 14px;
}
.programs__item:hover .programs__hidden {
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
}
.programs__img {
  max-width: 570px;
  width: 100%;
}
.programs__bottom {
  border: 1px solid #e9e9e9;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.programs__bottom-logo {
  margin-right: 20px;
}
.programs__bottom-textbox {
  padding-left: 20px;
  border-left: 1px solid #e9e9e9;
}
.programs__bottom-title {
  font-size: 20px;
  color: #1c1c1c;
  text-transform: capitalize;
}
.programs__bottom-text {
  color: #949494;
  font-size: 13px;
  font-weight: 700;
}
.programs__hidden {
  height: 100%;
  width: 100%;
  padding: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#86080b), to(#d11317));
  background: -o-linear-gradient(top, #86080b, #d11317);
  background: linear-gradient(top, #86080b, #d11317);
  color: #f9f9f9;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translateY(-120%);
      -ms-transform: translateY(-120%);
          transform: translateY(-120%);
  font-size: 13px;
}
.programs__hidden-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.programs__hidden-img {
  margin-right: 10px;
}
.programs__hidden-textbox {
  padding-left: 20px;
  border-left: 1px solid #fff;
}
.programs__hidden-title {
  font-size: 18px;
}
.programs__hidden-list {
  margin-bottom: 20px;
}
.programs__hidden-item {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.programs__hidden-item:last-child {
  margin-bottom: 0;
}
.programs__hidden-item::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #941114;
  border: 2px solid #cc0d11;
  left: 0;
  top: 4px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.programs__link-box {
  padding-left: 20px;
}
.programs__hidden-link {
  display: inline-block;
  padding: 8px 10px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  border: 1px solid #fff;
  font-weight: 600;
  -webkit-transition: color 0.5s, background-color 0.5s ease 0s;
  -o-transition: color 0.5s, background-color 0.5s ease 0s;
  transition: color 0.5s, background-color 0.5s ease 0s;
}
.programs__hidden-link:hover {
  background-color: #fff;
  color: #d11317;
}
.programs__hidden-homeimg {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.4;
}

.about {
  padding: 75px 0;
}
.about__title {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 15px;
  position: relative;
}
.about__title::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background-color: #d11317;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}
.about__content-img {
  max-width: 570px;
  width: 100%;
}
.about__text-box {
  max-width: 570px;
  position: relative;
}
.about__content-title {
  font-size: 20px;
  color: #222;
  font-weight: 400;
  margin-bottom: 10px;
}
.about__content-title--bottom {
  color: #d11317;
}
.about__text {
  color: #4c4b4b;
  margin-bottom: 20px;
  line-height: 1.3;
}
.about__link {
  display: inline-block;
  padding: 8px 35px;
  background-color: #d11317;
  color: #fff;
  text-transform: uppercase;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #d11317;
  -webkit-transition: color 0.5s, background-color 0.5s ease 0s;
  -o-transition: color 0.5s, background-color 0.5s ease 0s;
  transition: color 0.5s, background-color 0.5s ease 0s;
}
.about__link:hover {
  background-color: #fff;
  color: #d11317;
}
.about__stamp-box {
  position: absolute;
  width: 160px;
  bottom: -50px;
  right: 150px;
}

.promotion__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.promotion__item {
  max-width: 370px;
  margin: 0 15px;
  padding: 20px;
  border: 1px solid #f4f4f4;
  -webkit-transition: border-color 0.5s ease 0s, -webkit-transform 0.5s;
  transition: border-color 0.5s ease 0s, -webkit-transform 0.5s;
  -o-transition: transform 0.5s, border-color 0.5s ease 0s;
  transition: transform 0.5s, border-color 0.5s ease 0s;
  transition: transform 0.5s, border-color 0.5s ease 0s, -webkit-transform 0.5s;
}
.promotion__item:hover {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  border-color: #d11317;
}
.promotion__title {
  font-size: 20px;
  color: #222;
  font-weight: 400;
  margin-bottom: 25px;
  padding-left: 50px;
  position: relative;
}
.promotion__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.promotion__title--guaranty::before {
  width: 35px;
  height: 29px;
  background-image: url(../images/svg-sprite/sprite.svg#dollar);
}
.promotion__title--joint::before {
  width: 30px;
  height: 30px;
  background-image: url(../images/svg-sprite/sprite.svg#users);
}
.promotion__title--protect::before {
  width: 30px;
  height: 29px;
  background-image: url(../images/svg-sprite/sprite.svg#shield);
}
.promotion__text {
  line-height: 1.4;
}

.advantage {
  padding: 65px;
  background-color: #f9f9f9;
}
.advantage__top {
  margin-bottom: 50px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
}
.advantage__top::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background-color: #d11317;
  left: 0;
  bottom: 0;
}

.advantage__slider {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.advantage__slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}

.advantage__slider-box {
  margin-bottom: 30px;
}
.advantage .slick-btn {
  background-color: transparent;
  border: none;
  position: absolute;
  top: -93px;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: fill 0.5s ease 0s;
  -o-transition: fill 0.5s ease 0s;
  transition: fill 0.5s ease 0s;
}
.advantage .slick-btn:hover {
  fill: #d11317;
}
.advantage .slick-next {
  right: 0;
}
.advantage .slick-prev {
  right: 30px;
}
.advantage__item {
  border: 1px solid #e9e9e9;
  padding: 5px;
}
.advantage__item:hover .advantage__img-box::before {
  height: 100%;
}
.advantage__item:hover .advantage__img-text {
  color: #fff;
}
.advantage .slick-list {
  margin: 0 -18px;
}
.advantage .slick-slide {
  width: 270px;
  margin: 0 18px;
}
.advantage .slick-dots {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.advantage .slick-dots li {
  margin-right: 10px;
}
.advantage .slick-dots li:last-child {
  margin-right: 0;
}
.advantage .slick-dots li.slick-active button {
  background-color: #d11317;
  border-color: #d11317;
}
.advantage .slick-dots button {
  width: 10px;
  height: 10px;
  font-size: 0;
  background-color: transparent;
  border: 1px solid #4c4b4b;
  border-radius: 50%;
  padding: 0;
  -webkit-transition: background-color 0.5s, border-color 0.5s ease 0s;
  -o-transition: background-color 0.5s, border-color 0.5s ease 0s;
  transition: background-color 0.5s, border-color 0.5s ease 0s;
}
.advantage__img-box {
  position: relative;
  width: 100%;
}
.advantage__img-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: rgba(209, 19, 23, 0.4);
  -webkit-transition: height 0.5s ease 0s;
  -o-transition: height 0.5s ease 0s;
  transition: height 0.5s ease 0s;
}
.advantage__img {
  width: 100%;
}
.advantage__img-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #222;
  font-size: 20px;
  -webkit-transition: color 0.5s ease 0s;
  -o-transition: color 0.5s ease 0s;
  transition: color 0.5s ease 0s;
  max-width: 212px;
  width: 100%;
  display: inline;
  text-align: center;
}
.advantage__text {
  padding: 25px 5px;
  text-align: center;
}
.advantage__questions-box {
  text-align: center;
}
.advantage__questions-text {
  margin-bottom: 35px;
}
.advantage__btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.advantage__btn {
  margin-right: 5px;
}
.advantage__btn:last-child {
  margin-right: 0;
}


.wpcf7-form-control-wrap {
    display: block;
}

.recaptcha {
    margin-bottom: 20px;
}

.popup__request-inputbox {
  margin-bottom: 20px;
}
.popup__request-label {
  text-align: center;
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.popup__request-input {
  width: 100%;
  padding: 8px 20px;
  border: 1px solid #b8b8b8;
  font-weight: 400;
}
.popup__request-input::-webkit-input-placeholder {
  opacity: 0.5;
}
.popup__request-input::-moz-placeholder {
  opacity: 0.5;
}
.popup__request-input:-ms-input-placeholder {
  opacity: 0.5;
}
.popup__request-input::-ms-input-placeholder {
  opacity: 0.5;
}
.popup__request-input::placeholder {
  opacity: 0.5;
}

.popup__submit-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.popup__submit-wrap p {
    width: 228px;
}

.popup__submit-box {
  width: 304px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.popup__submit {
  cursor: pointer;
  width: 228px;
}
.popup__bottom-text {
  text-align: center;
  position: relative;
  padding-left: 20px;
}
.popup__bottom-text p::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 21px;
  left: 0;
  top: 1px;
  background-image: url(../images/svg-sprite/sprite.svg#clock);
}

#recaptcha {
    margin-bottom: 20px;
}

.terms {
  padding: 60px 0 125px;
  background-color: #d11317;
  color: #fff;
}
.terms__item {
  text-align: center;
}
.terms__content-text {
  max-width: 750px;
  margin: 0 auto;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 70px;
}
.terms__bottom-span {
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
}
.terms .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -60px;
}
.terms .slick-dots li {
  margin-right: 15px;
}
.terms .slick-dots li:last-child {
  margin-right: 0;
}
.terms .slick-dots li.slick-active button {
  background-color: #fff;
}
.terms .slick-dots button {
  background-color: transparent;
  width: 13px;
  height: 13px;
  font-size: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 0;
  -webkit-transition: background-color 0.5s ease 0s;
  -o-transition: background-color 0.5s ease 0s;
  transition: background-color 0.5s ease 0s;
  cursor: pointer;
}

.faq {
  padding: 70px 0;
  background-color: #f9f9f9;
}
.faq__title {
  margin-bottom: 50px;
  padding-bottom: 15px;
  text-align: center;
  position: relative;
}
.faq__title::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background-color: #d11317;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}
.faq__questions-box {
  max-width: 410px;
  margin: 0 auto;
}
.faq__questions-text {
  margin-bottom: 25px;
}
.faq__btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.faq__btn {
  margin-right: 5px;
}
.faq__btn:last-child {
  margin-right: 0;
}

.faq-page {
  padding-bottom: 30px;
  background-color: transparent;
}

.accordion {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.accordion__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding: 0 20px;
  border: 1px solid #e9e9e9;
}
.accordion__box {
  margin-bottom: 10px;
  width: 100%;
  border-bottom: 1px solid #e9e9e9;
}
.accordion__box:last-child {
  margin-bottom: 0;
  border: none;
}
.accordion__title-box {
  position: relative;
  margin: 0;
  padding: 24px 0 20px 50px;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: color 0.5s ease 0s;
  -o-transition: color 0.5s ease 0s;
  transition: color 0.5s ease 0s;
}
.accordion__title-box::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid #e4e4e4;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  z-index: 20;
  -webkit-transition: border-color 0.5s ease 0s;
  -o-transition: border-color 0.5s ease 0s;
  transition: border-color 0.5s ease 0s;
}
.accordion__title-box.open {
  border-bottom: none;
}
.accordion__title-box.open::before {
  border-color: #d11317;
}
.accordion__title-box.open .accordion__title {
  color: #d11317;
}
.accordion__title-box.open .accordion__title::after {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  background-color: #d11317;
}
.accordion__title-box:hover::before {
  border-color: #d11317;
}
.accordion__title-box:hover .accordion__title {
  color: #d11317;
}
.accordion__title-box:hover .accordion__title::before, .accordion__title-box:hover .accordion__title::after {
  background-color: #d11317;
}
.accordion__title {
  font-size: 16px;
  font-weight: 400;
  color: #222;
  -webkit-transition: color 0.5s ease 0s;
  -o-transition: color 0.5s ease 0s;
  transition: color 0.5s ease 0s;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.accordion__title::before, .accordion__title::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 1px;
  background-color: #e4e4e4;
  left: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background-color 0.5s ease 0s, -webkit-transform 0.5s;
  transition: background-color 0.5s ease 0s, -webkit-transform 0.5s;
  -o-transition: transform 0.5s, background-color 0.5s ease 0s;
  transition: transform 0.5s, background-color 0.5s ease 0s;
  transition: transform 0.5s, background-color 0.5s ease 0s, -webkit-transform 0.5s;
}
.accordion__title::after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.accordion__content {
  padding-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
}
.accordion__content p {
  margin-bottom: 20px;
}
.accordion__content p:last-child {
  margin-bottom: 0;
}

.reviews {
  padding: 70px 0 50px;
}
.reviews__title {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 15px;
  position: relative;
}
.reviews__title::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 1px;
  background-color: #e9e9e9;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}
.reviews__title::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background-color: #d11317;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.reviews__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e9e9e9;
}
.reviews__item-title {
  font-size: 20px;
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
}
.reviews__text-box {
  max-width: 570px;
}
.reviews__text-box span {
  display: none;
}
.reviews__text {
  margin-bottom: 20px;
}
.reviews__text p {
  margin-bottom: 10px;
}
.reviews__text p:last-child {
  margin-bottom: 0;
}

.example {
  padding-bottom: 100px;
}
.example__top {
  text-align: center;
  margin-bottom: 50px;
}
.example__title {
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
}
.example__title::before, .example__title::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}
.example__title::before {
  width: 200px;
  height: 1px;
  background-color: #e9e9e9;
}
.example__title::after {
  width: 70px;
  height: 1px;
  background-color: #d11317;
}
.example__top-text {
  font-size: 18px;
  color: #848484;
}
.example__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.example__item {
  max-width: 370px;
  margin: 0 15px;
}
.example__item:hover .example__overlay {
  -webkit-transform: perspective(400px) rotateX(0deg);
          transform: perspective(400px) rotateX(0deg);
  opacity: 1;
}
.example__img-box {
  position: relative;
  margin-bottom: -40px;
  z-index: 0;
  max-width: 370px;
}
.example__img {
  -o-object-fit: cover;
     object-fit: cover;
}
.example__overlay {
  position: absolute;
  text-align: center;
  color: #fff;
  max-width: 370px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(209, 19, 23, 0.69);
  -webkit-transform: perspective(400px) rotateX(-90deg);
          transform: perspective(400px) rotateX(-90deg);
  opacity: 0;
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.example__text-span {
  display: block;
  padding-top: 25px;
  position: relative;
}
.example__text-span::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 15px;
  background-image: url(../images/svg-sprite/sprite.svg#home);
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.example__num-span {
  font-size: 30px;
  font-weight: 500;
}
.example__descr-box {
  max-width: 330px;
  margin: 0 auto;
  padding: 20px 15px 15px;
  border: 1px solid #e9e9e9;
  border-top: 3px solid #d11317;
  position: relative;
  z-index: 2;
  background-color: #fff;
  margin-bottom: 50px;
}
.example__descr-title {
  text-align: center;
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}
.example__descr-item {
  margin-bottom: 10px;
  padding-bottom: 2px;
  border-bottom: 1px dashed #e9e9e9;
}
.example__questions-box {
  text-align: center;
}
.example__questions-text {
  margin-bottom: 25px;
}

.partners__list {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.partners__list.slick-initialized {
  opacity: 1;
  visibility: visible;
}


.partners {
  padding-bottom: 70px;
}
.partners__title {
  padding-bottom: 10px;
  margin-bottom: 50px;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
}
.partners__title::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background-color: #d11317;
  left: 0;
  bottom: 0;
}
.partners__img-box {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.partners__img {
  height: 100%;
  margin: auto;
  border: 1px solid #e9e9e9;
}
.partners .slick-btn {
  position: absolute;
  right: 0;
  top: -85px;
  background-color: transparent;
  border: 2px solid #e9e9e9;
  padding-top: 6px;
  z-index: 5;
  cursor: pointer;
  width: 35px;
  height: 35px;
  -webkit-transition: border-color 0.5s ease 0s;
  -o-transition: border-color 0.5s ease 0s;
  transition: border-color 0.5s ease 0s;
}
.partners .slick-btn:hover {
  border-color: #d11317;
}
.partners .slick-btn:hover .slider-arrow {
  fill: #d11317;
}
.partners .slick-prev {
  right: 50px;
}
.partners .slider-arrow {
  fill: #ababab;
  -webkit-transition: fill 0.5s ease 0s;
  -o-transition: fill 0.5s ease 0s;
  transition: fill 0.5s ease 0s;
}

.connect {
  padding: 70px 0;
  background-color: #222;
  color: #fff;
}
.connect__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.connect__contacts-box {
  max-width: 370px;
  width: 100%;
  background-color: #2b2b2b;
  padding: 30px;
}
.connect__box-item {
  margin: 0 15px;
}
.connect__titles {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #222;
  position: relative;
}
.connect__titles::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background-color: #d11317;
  left: 0;
  bottom: 0;
}
.connect__contacts-title {
  font-size: 24px;
  font-weight: 400;
}
.connect__address {
  margin-bottom: 20px;
  color: #a7a7a7;
}
.connect__item {
  margin-bottom: 15px;
}
.connect__item-link {
  position: relative;
  padding-left: 40px;
  -webkit-transition: color 0.5s ease 0s;
  -o-transition: color 0.5s ease 0s;
  transition: color 0.5s ease 0s;
  color: #a7a7a7;
}
.connect__item-link::empty {
  display: none;
}
.connect__item-link::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/svg-sprite/sprite.svg#phone-bottom);
}
.connect__item-link--mail::before {
  top: 10px;
  background-image: url(../images/svg-sprite/sprite.svg#envelope);
}
.connect__item-link:hover {
  color: #d11317;
}
.connect__form-wrap {
  max-width: 770px;
  width: 100%;
}
.connect__form-title {
  font-size: 32px;
  font-weight: 400;
}
.connect__form-box p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.connect__form-box p span:last-child {
  margin-bottom: 25px;
  max-width: 370px;
  width: 100%;
}
.connect__input {
  max-width: 370px;
  width: 100%;
  margin-bottom: 5px;
  height: 50px;
  padding: 0 20px;
  color: #fff;
  border: 2px solid #3f3f3f;
  background-color: transparent;
  transition: border-color 0.5s ease;
  font-family: "helvetica_regular", sans-serif;
}
.connect__input--select {
  cursor: pointer;
  max-width: 370px;
  width: 100%;
  /* margin-bottom: 5px;
  height: 50px;
  padding: 0 20px;
  color: #fff;
  border: 2px solid #3f3f3f;
  transition: border-color 0.5s ease; */
  background-color: transparent;
}
.jq-selectbox__select {
  cursor: pointer;
  max-width: 370px;
  height: 50px;
  padding: 9px 20px 0;
  border: 2px solid #3f3f3f;
  transition: border-color 0.5s ease;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  text-shadow: none;
  color: #3f3f3f;
  font-size: 16px;
}

.jq-selectbox__trigger {
  border-left: 1px solid #3f3f3f;
}

.jq-selectbox__trigger-arrow {
  border-top: 5px solid #3f3f3f;
}

.jq-selectbox__select::placeholder {
  font-size: 20px;
  font-family: "helvetica_regular", sans-serif;
}

.jq-selectbox__select:hover {
  border: 1px solid #d11317;
  background: transparent;
}

.jq-selectbox__select:hover .jq-selectbox__trigger-arrow  {
  border-top: 5px solid #3f3f3f;
}

.connect__input--select:hover {
  border: none;
}

.jq-selectbox__trigger-arrow {
  top: 21px;
}

.jq-selectbox__dropdown {
  margin: 5px 0 0;
  border: 1px solid #3f3f3f;
  background: #222222;
  box-shadow: none;
  font-size: 16px;
}

.jq-selectbox li {
  color: #fff;
  transition: background 0.5s ease;
}

.jq-selectbox__dropdown li:first-child{
  background-color: #d11317;
  cursor: default;
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
}

.jq-selectbox .selected {
}

.jq-selectbox li:hover {
  background: #d11317;
}
.connect__input--select option {
  background-color: #222;
  color: #fff;
  font-family: "helvetica_regular", sans-serif;
}
.connect__input::-webkit-input-placeholder {
  color: #3f3f3f;
  font-family: "helvetica_regular", sans-serif;
}
.connect__input::-moz-placeholder {
  color: #3f3f3f;
  font-family: "helvetica_regular", sans-serif;
}
.connect__input:-ms-input-placeholder {
  color: #3f3f3f;
  font-family: "helvetica_regular", sans-serif;
}
.connect__input::-ms-input-placeholder {
  color: #3f3f3f;
  font-family: "helvetica_regular", sans-serif;
}
.connect__input::placeholder {
  color: #3f3f3f;
  font-family: "helvetica_regular", sans-serif;
}
.connect__button {
  cursor: pointer;
  margin-bottom: 30px;
}
.connect__form-bottom {
  color: #a7a7a7;
}
.connect__form-bottom p {
  position: relative;
  padding-left: 35px;
}
.connect__form-bottom p::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/svg-sprite/sprite.svg#clock);
}

.welcome {
  padding: 70px 0;
}
.welcome__title {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 40px;
  padding-bottom: 15px;
  position: relative;
}
.welcome__title::before, .welcome__title::after {
  content: "";
  position: absolute;
}
.welcome__title::before {
  width: 200px;
  height: 1px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #e9e9e9;
}
.welcome__title::after {
  width: 70px;
  height: 1px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #d11317;
}
.welcome__top-content {
  margin-bottom: 75px;
}
.welcome__img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}
.welcome__img {
  width: 570px;
  height: 395px;
  -o-object-fit: cover;
     object-fit: cover;
}
.welcome__text-item {
  max-width: 570px;
}
.welcome__text-wrap {
  margin-bottom: 10px;
}
.welcome__text-wrap:last-child {
  margin-bottom: 0;
}
.welcome__text-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #222;
}
.welcome__text-title--accent {
  color: #d11317;
}
.welcome__text p {
  margin-bottom: 10px;
}
.welcome__text p:last-child {
  margin-bottom: 0;
}
.welcome__text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.welcome__boxes {
  max-width: 570px;
}
.welcome__bottom-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.welcome__bottom-item {
  max-width: 370px;
  margin: 0 15px;
}
.welcome__bottom-img {
  width: 370px;
  height: 195px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-filter 0.8s;
  transition: -webkit-filter 0.8s;
  -o-transition: filter 0.8s;
  transition: filter 0.8s;
  transition: filter 0.8s, -webkit-filter 0.8s;
}
.welcome__bottom-img:hover {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.welcome__bottom-title {
  font-size: 20px;
  font-weight: 400;
  color: #222;
  margin-bottom: 15px;
}
.welcome__bottom-box {
  border: 1px solid #e9e9e9;
  padding: 20px;
  text-align: center;
}

.ask-question {
  padding: 45px 0;
  background-color: #d11317;
}
.ask-question__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ask-question__text {
  font-size: 22px;
  color: #fff;
}
.ask-question__link {
  display: block;
  padding: 13px 40px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: color 0.5s, background-color 0.5s ease 0s;
  -o-transition: color 0.5s, background-color 0.5s ease 0s;
  transition: color 0.5s, background-color 0.5s ease 0s;
}
.ask-question__link:hover {
  background-color: #fff;
  color: #d11317;
}

.stages {
  padding: 40px 0;
}
.stages__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.stages__content {
  max-width: 770px;
}
.stages__content-img {
  width: 770px;
  height: 372px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 30px;
}
.stages__content-title {
  font-size: 24px;
  font-weight: 400;
  color: #222;
  padding-bottom: 15px;
  margin-bottom: 40px;
  position: relative;
}
.stages__content-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #e9e9e9;
  left: 0;
  bottom: 0;
}
.stages__content-title::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background-color: #d11317;
  left: 0;
  bottom: 0;
}
.stages__content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
}
.stages__content-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.stages__content-textbox {
  max-width: 370px;
}
.stages__content-itemtitle {
  color: #d11317;
  font-size: 16px;
  margin-bottom: 10px;
}
.stages__contentitem-img {
  width: 370px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.requirement {
  padding: 40px 0;
}
.requirement__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.requirement__content {
  max-width: 770px;
}
.requirement__img {
  width: 770px;
  height: 372px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 25px;
}
.requirement__text-box {
  margin-bottom: 40px;
}
.requirement__text-box:last-child {
  margin-bottom: 0;
}
.requirement__title {
  margin-bottom: 20px;
  color: #d11317;
}
.requirement__item {
  text-indent: 22px;
  margin-bottom: 5px;
}
.requirement__item--bottom p::after {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  left: 5px;
  top: 4px;
}
.requirement__item p {
  position: relative;
}
.requirement__item p::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #d11317;
  border-radius: 50%;
  left: 0;
  top: 3px;
}
.requirement__item p::after {
  content: "";
  position: absolute;
  height: 15px;
  width: 13px;
  left: 2px;
  top: 5.5px;
  background-image: url(../images/svg-sprite/sprite.svg#angle-down);
  z-index: 100;
}
.requirement__item:last-child {
  margin-bottom: 0;
}
.requirement__item::before, .requirement__item::after {
  content: "";
  position: absolute;
}
.requirement__item-bottom {
  margin-bottom: 3px;
}
.requirement__item-bottom p {
  position: relative;
  padding-left: 22px;
}
.requirement__item-bottom p::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #21a50b;
  border-radius: 50%;
  left: 0;
  top: 3px;
}
.requirement__item-bottom p::after {
  content: "";
  position: absolute;
  height: 15px;
  width: 12px;
  left: 4px;
  top: 3.5px;
  background-image: url(../images/svg-sprite/sprite.svg#angle-down);
  z-index: 100;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.contacts-bottom__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contacts-bottom__form-inner {
  max-width: 770px;
  width: 100%;
  margin-bottom: 80px;
}
.contacts-bottom__form-box {
  margin-bottom: 25px;
}
.contacts-bottom__title {
  margin-bottom: 40px;
  padding-bottom: 7px;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
}
.contacts-bottom__title::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background-color: #d11317;
  bottom: -1px;
  left: -1px;
}
.contacts-bottom__inputs p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
}
.contacts-bottom__inputs:last-child {
  margin-bottom: 0;
}
.contacts-bottom__input {
  max-width: 370px;
  width: 100%;
  padding: 13px 20px;
  border: 1px solid #e9e9e9;
  transition: border-color 0.5s ease;
}
.contacts-bottom__input::-webkit-input-placeholder {
  color: #c2c2c2;
}
.contacts-bottom__input::-moz-placeholder {
  color: #c2c2c2;
}
.contacts-bottom__input:-ms-input-placeholder {
  color: #c2c2c2;
}
.contacts-bottom__input::-ms-input-placeholder {
  color: #c2c2c2;
}
.contacts-bottom__input::placeholder {
  color: #c2c2c2;
}
.contacts-bottom__msg {
  width: 100%;
  height: 190px;
  padding: 13px 20px;
  border: 1px solid #e9e9e9;
  resize: none;
  margin-bottom: 25px;
  transition: border-color 0.5s ease;
}
.contacts-bottom__msg::-webkit-input-placeholder {
  color: #c2c2c2 !important;
}
.contacts-bottom__msg::-moz-placeholder {
  color: #c2c2c2 !important;
}
.contacts-bottom__msg:-ms-input-placeholder {
  color: #c2c2c2 !important;
}
.contacts-bottom__msg::-ms-input-placeholder {
  color: #c2c2c2 !important;
}
.contacts-bottom__msg::placeholder {
  color: #c2c2c2 !important;
}
.contacts-bottom__btn {
  cursor: pointer;
}

.manager {
  max-width: 370px;
  width: 100%;
}
.manager__box {
  max-width: 370px;
  padding: 30px 20px;
  background-color: #f9f9f9;
  border: 1px solid #e9e9e9;
}
.manager__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #fff;
}
.manager__item:last-child {
  margin-bottom: 0;
}
.manager__img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 20px;
  border: 1px solid #e9e9e9;
}
.manager__name {
  color: #d11317;
  margin-bottom: 5px;
}
.manager__link {
  display: block;
  font-size: 13px;
  color: #4c4b4b;
  padding-left: 30px;
  position: relative;
}
.manager__link::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 12px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.manager__phone::before {
  background-image: url(../images/svg-sprite/sprite.svg#phone);
}
.manager__mail::before {
  background-image: url(../images/svg-sprite/sprite.svg#envelope);
}

.contacts {
  padding: 80px 0 100px;
}
.contacts__title {
  padding-bottom: 10px;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}
.contacts__title::before, .contacts__title::after {
  content: "";
  position: absolute;
  height: 1px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.contacts__title::before {
  width: 200px;
  background-color: #e9e9e9;
}
.contacts__title::after {
  width: 70px;
  background-color: #d11317;
}
.contacts__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px 30px;
}
.contacts__item {
  max-width: 370px;
  width: 100%;
  margin: 0 15px;
  padding: 35px 15px 35px;
  border: 1px solid #e9e9e9;
  -webkit-transition: -webkit-transform 0.5s, -webkit-box-shadow 0.5s ease 0s;
  transition: -webkit-transform 0.5s, -webkit-box-shadow 0.5s ease 0s;
  -o-transition: transform 0.5s, box-shadow 0.5s ease 0s;
  transition: transform 0.5s, box-shadow 0.5s ease 0s;
  transition: transform 0.5s, box-shadow 0.5s ease 0s, -webkit-transform 0.5s, -webkit-box-shadow 0.5s ease 0s;
}
.contacts__item:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}
.contacts__item--top {
  position: relative;
  padding-top: 100px;
}
.contacts__item--top::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.contacts__item--map::before {
  width: 55px;
  height: 44px;
  background-image: url(../images/svg-sprite/sprite.svg#map);
}
.contacts__item--clock::before {
  width: 57px;
  height: 54px;
  background-image: url(../images/svg-sprite/sprite.svg#clock);
}
.contacts__item--phone::before {
  width: 37px;
  height: 37px;
  background-image: url(../images/svg-sprite/sprite.svg#phone);
}
.contacts__item-title {
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}
.contacts__item-title::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background-color: #e9e9e9;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.contacts__item-title--top {
  margin-bottom: 25px;
}
.contacts__item-textbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contacts__item-text p {
  margin-bottom: 3px;
}
.contacts__item-text p:last-child {
  margin-bottom: 0;
}
.contacts__item-link {
  display: block;
  color: #d11317;
}
.contacts__item-link:hover {
  color: #d11317;
}
.contacts__item-link:empty {
  display: none;
}
.contacts__place {
  text-align: center;
  padding-top: 10px;
  margin-bottom: 15px;
}

.program {
  padding: 40px 0 70px;
}
.program__aside {
  margin-right: 20px;
}
.program__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.program__content {
  max-width: 770px;
}
.program__img {
  width: 770px;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 25px;
}
.program__text-title {
  color: #d11317;
  margin-bottom: 15px;
}
.program__text-title--box {
  color: #4c4b4b;
  margin-bottom: 5px;
}
.program__text-box {
  margin-bottom: 30px;
}
.program__text-item {
  text-indent: 20px;
  margin-bottom: 5px;
  position: relative;
}
.program__text-item::before {
  content: "";
  position: absolute;
  width: 17px;
  height: 15px;
  left: 0;
  top: 4px;
  background-image: url(../images/svg-sprite/sprite.svg#angle-right-red);
}
.program__passport-box {
  margin-bottom: 60px;
}
.program__passport-title {
  font-size: 24px;
  font-weight: 400;
  color: #222;
  padding-bottom: 15px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
}
.program__passport-title::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  left: 0;
  bottom: -1px;
  background-color: #d11317;
}
.program__passport-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.program__passport-content--conditions {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.program__passport-items {
  width: 100%;
}
.program__passport-items--answer {
  max-width: 460px;
  width: 100%;
}
.program__passport-item {
  margin-bottom: 2px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.program__passport-item p {
  background-color: #d11317;
  max-width: 310px;
  width: 100%;
  padding: 10px;
}
.program__passport-item p:last-child {
  max-width: 460px;
  width: 100%;
  background-color: #f9f9f9;
  color: #4c4b4b;
}
.program__passport-item:last-child {
  margin-bottom: 0;
}
.program__passport-conditions {
  max-width: 370px;
}
.program__passport-condition {
  margin-bottom: 10px;
}
.program__passport-condition:last-child {
  margin-bottom: 0;
}
.program__passport-condition span {
  font-weight: 700;
}
.program__passport-img {
  width: 370px;
  height: 176px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 20px;
}
.program__link {
  display: inline-block;
  max-width: 250px;
  margin: 0 auto;
}
.program__accordion {
  width: 100%;
}
.program__accordion-container {
  width: 100%;
}
.program__accordion-box {
  width: 100%;
}

.guarantee {
  padding: 40px 0 130px;
}
.guarantee__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 130px;
}
.guarantee__content {
  max-width: 770px;
}
.guarantee__img {
  width: 770px;
  height: 371px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 25px;
}
.guarantee__title {
  margin-bottom: 15px;
  color: #d11317;
}
.guarantee__text p {
  margin-bottom: 20px;
}
.guarantee__item {
  margin-bottom: 5px;
  text-indent: 18px;
  position: relative;
}
.guarantee__item::before {
  content: "";
  position: absolute;
  width: 17px;
  height: 15px;
  left: 0;
  top: 4px;
  background-image: url(../images/svg-sprite/sprite.svg#angle-right-red);
}
.guarantee__aside {
  margin-right: 20px;
}

.cabinet {
  padding: 40px 0 70px;
}
.cabinet__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cabinet__content {
  max-width: 770px;
}
.cabinet__img {
  width: 770px;
  height: 371px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 25px;
}
.cabinet__title {
  font-size: 24px;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
}
.cabinet__title::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background-color: #d11317;
  bottom: 0;
  left: 0;
}

.cabinet__table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.cabinet__table-wrap .tablepress {
    min-width: 100%;
    width: auto;
}

.cabinet__arrow-box {
    display: flex;
    align-items: center;
    display: none;
}

.cabinet__table-text {
    color: #D11317;
}

/* Для очень маленьких экранов */
@media screen and (max-width: 480px) {
/*     .cabinet__table-wrap {
    margin-left: -15px;
    margin-right: -15px;
    padding: 0 15px;
} */
}

.cabinet__table {
  width: 100%;
  margin-bottom: 115px;
}
.cabinet__item:nth-child(even) .cabinet__row {
  background-color: #f9f9f9;
}
.cabinet__row {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #e9e9e9;
}
.cabinet__row.recd {
  background-color: #65bc50 !important;
  color: #fff;
}
.cabinet__row.recd .cabinet__link {
  color: #fff;
}
.cabinet__head-item {
  background-color: #d9edf7;
}
.cabinet__col {
  max-width: 170px;
  width: 100%;
  margin-right: 20px;
}
.cabinet__col:first-child {
  max-width: 185px;
}
.cabinet__head-col {
  font-weight: 700;
}
.cabinet__documents {
  margin-bottom: 120px;
}
.cabinet__documents-title {
  margin-bottom: 100px;
}
.cabinet__documents-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.cabinet__documents-item {
  width: 236px;
  margin: 0 15px;
  padding: 50px 5px 40px;
  text-align: center;
  border: 1px solid #e9e9e9;
  position: relative;
  border-radius: 4px;
  margin-bottom: 40px;
}
.cabinet__documents-item::before {
  content: "";
  position: absolute;
  width: 65px;
  height: 65px;
  top: -32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid #e9e9e9;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: background-color 0.5s ease 0s;
  -o-transition: background-color 0.5s ease 0s;
  transition: background-color 0.5s ease 0s;
}
.cabinet__documents-item:hover::before {
  background-color: #d11317;
}
.cabinet__documents-item:hover .cabinet__documents-svg {
  fill: #fff;
}
.cabinet__documents-item:hover .cabinet__documents-link {
  background-color: #d11317;
  color: #fff;
  border-color: #d11317;
}
.cabinet__documents-itemtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.cabinet__documents-text {
  margin-bottom: 35px;
}
.cabinet__documents-link {
  display: inline-block;
  border: 2px solid #e9e9e9;
  padding: 10px 40px;
  border-radius: 3px;
  color: #d11317;
  -webkit-transition: background-color 0.5s, color 0.5s, border-color 0.5s ease 0s;
  -o-transition: background-color 0.5s, color 0.5s, border-color 0.5s ease 0s;
  transition: background-color 0.5s, color 0.5s, border-color 0.5s ease 0s;
}
.cabinet__documents-svg {
  position: absolute;
  top: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  fill: #d11317;
  -webkit-transition: fill 0.5s ease 0s;
  -o-transition: fill 0.5s ease 0s;
  transition: fill 0.5s ease 0s;
}

.cabinet__logout{
    margin-bottom: 100px;
    font-size: 18px;
    text-decoration: underline;
    color: #4c4b4b;
}

.cabinet__logout a{
    color: #4c4b4b;
}

.row-striping {
}

.row-striping a {
  color: #111;
}

.tablepress caption {
  padding-top: 20px !important;
}

.tablepress caption a {
  padding-top: 20px !important;
}

.admin-button {
    margin-bottom: 20px;
    display: inline-block;
    font-size: 18px;
    color: #4c4b4b;
    text-decoration: underline;
}

#tablepress-1 td:nth-child(1),
#tablepress-1 th:nth-child(1) {
  width: 180px;
}


.footer {
  color: #848484;
}
.footer__basic-content {
  padding: 70px 0 100px;
  background-color: #222;
}
.footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__item {
  max-width: 250px;
}
.footer__logo {
  margin-bottom: 30px;
}
.footer__text p {
  margin-bottom: 20px;
}
.footer__text p:last-child {
  margin-bottom: 0;
}
.footer__title {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 30px;
  padding-bottom: 15px;
  position: relative;
}
.footer__title::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background-color: #d11317;
  left: 0;
  bottom: 0;
}
.footer__menu-list {
  display: block;
}
.footer__menu-list li {
  margin-bottom: 10px;
}
.footer__menu-list li a {
  color: #848484;
  -webkit-transition: color 0.5s ease 0s;
  -o-transition: color 0.5s ease 0s;
  transition: color 0.5s ease 0s;
}
.footer__menu-list li a:hover {
  color: #d11317;
}
.footer__descr-text {
  margin-bottom: 20px;
}

.footer__form span input {
    background-image: url(../images/svg-sprite/sprite.svg#mail);
    background-repeat: no-repeat;
    background-size: 22px 20px;
    background-position: 10px 10px;
    width: 250px;
    padding-left: 50px;
}

.footer__form>p {
    position: relative;
}

.footer__form>p::after {
      content: "";
      position: absolute;
      width: 1px;
      height: 20px;
      background-color: #e9e9e9;
      left: 40px;
      top: 10px;
    }
    

.footer__form p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.footer__form p span span {
  width: 215px;
  border-radius: 0;
  margin-top: 15px;
}
.footer__input-box {
  width: 40px;
  background-color: #fff;
  position: relative;
  z-index: 5;
  display: inline-block;
  white-space: normal;
}
.footer__input {
  width: 215px;
}
.footer__input-box::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 20px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../images/svg-sprite/sprite.svg#mail);
}
.footer__input-box::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  background-color: #e9e9e9;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer__input:focus {
  border: none;
}
.footer__input {
  border: 1px solid #fff;
  height: 40px;
  padding: 0 10px;
  border-radius: 0;
}
.footer__input:hover {
  border: 1px solid #fff;
}
.footer__input:focus {
  border: 1px solid #fff;
}
.footer__input::-webkit-input-placeholder {
  color: #888;
  opacity: 0.8;
  text-transform: capitalize;
}
.footer__input::-moz-placeholder {
  color: #888;
  opacity: 0.8;
  text-transform: capitalize;
}
.footer__input:-ms-input-placeholder {
  color: #888;
  opacity: 0.8;
  text-transform: capitalize;
}
.footer__input::-ms-input-placeholder {
  color: #888;
  opacity: 0.8;
  text-transform: capitalize;
}
.footer__input::placeholder {
  color: #888;
  opacity: 0.8;
  text-transform: capitalize;
}
.footer__button {
  cursor: pointer;
  display: block;
}
.footer__bottom {
  background-color: #1b1b1b;
  padding: 25px 0;
}
.footer__bottom-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__copy {
  margin-bottom: 10px;
}
.footer__own {
  font-size: 10px;
}
.footer__confidentiality-link {
  color: #848484;
}

.rc-anchor-compact {
    height: 50px !important;
}

@media (max-width: 1198px) {
  .programs__item {
    margin-bottom: 20px;
  }
  .about__content {
    display: block;
    max-width: 570px;
    margin: 0 auto 40px;
  }
  .promotion__item {
    margin-bottom: 20px;
  }
  .promotion__item:last-child {
    margin-bottom: 0;
  }
  .about__content-img {
    margin-bottom: 20px;
  }
  .about__text-box {
    margin-bottom: 70px;
  }
  .reviews__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .reviews__text-box {
    margin-bottom: 20px;
  }
  .connect__contacts-box {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .footer__items {
    display: block;
  }
  .footer__item {
    max-width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer__item:last-child {
    margin-bottom: 0;
    border: none;
  }
  .welcome__text-box,
  .welcome__img-box {
    display: block;
  }
  .welcome__img-box {
    margin-bottom: 20px;
  }
  .welcome__img {
    margin: 0 auto 20px;
  }
  .welcome__text-item {
    max-width: 100%;
  }
  .welcome__boxes {
    min-width: 100%;
  }
  .welcome__bottom-item {
    margin-bottom: 30px;
  }
  .stages__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .aside {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px;
    max-width: 100%;
    padding-left: 30px;
  }
  .stages__content {
    margin-bottom: 30px;
    max-width: 100%;
  }
  .stages__content-img {
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .aside__aside-item {
    max-width: 100%;
    width: 100%;
    margin: 0 15px;
  }

  .aside__menu-list {
    padding-top: 55px;
  }

  .stages__content-textbox {
    max-width: 100%;
    margin-right: 20px;
  }
  .requirement__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .requirement__content {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .requirement__img {
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .contacts-bottom__inner {
    display: block;
  }
  .contacts-bottom__form-inner {
    max-width: 100%;
    margin-bottom: 50px;
  }
  .contacts-bottom__input {
    max-width: 49%;
  }
  
  .contacts__item:hover {
      transform: none;
  }
  .manager {
    max-width: 100%;
    padding-bottom: 30px;
  }
  .manager__box {
    margin: 0 auto;
  }
  
  .contacts__items--top .contacts__item--top {
    padding-top: 85px;
  }
  
  .contacts__item {
    max-width: 100%;
    margin-bottom: 30px;
    padding-top: 35px;
  }
  .contacts__item:last-child {
    margin-bottom: 0;
  }
  .program__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .program__content {
    max-width: 100%;
  }
  .program__img {
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .program__aside {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .program__aside-doc {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .guarantee__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .guarantee__content {
    max-width: 100%;
  }
  .guarantee__img {
    margin: 0 auto 25px;
  }
  .cabinet__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
  .aside__cabinet {
    margin-bottom: 30px;
  }
  .cabinet__content {
    max-width: 100%;
  }
  .cabinet__img {
    margin: 0 auto 25px;
  }

  .contacts-bottom__inputs p {
    display: block;
    margin-bottom: 0;
  }
  
  .contacts-bottom__inputs p input {
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .contacts-bottom__inputs p span:last-child {
    margin-bottom: 0;
  }
  
  .contacts-bottom__msg {
      height: 145px;
  }
}
@media (max-width: 1122px) {
  .header__image-box--stages {
    height: 40vh;
  }

  .header__mobile-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__menu .menu {
    display: block;
    position: absolute;
    left: 0;
    top: 80px;
    width: 100%;
    height: 100vh;
    background-color: #d11317;
    border-top: 1px solid #fff;
    padding-top: 20px;
    z-index: 55;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    transition: -webkit-transform 0.5s ease 0s;
    -o-transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  }
  .menu.active {
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
  }
  .header__menu li {
    padding-top: 0;
  }
  .header__menu a {
    color: #fff !important;
    padding: 10px 0;
  }
  .header__menu .menu li {
    padding: 5px 15px;
  }
  
  .header__menu a::after {
    display: none;
  }
  .header__menu .sub-menu {
    visibility: visible;
    opacity: 1;
    position: static;
    background-color: transparent;
    width: 100%;
  }

  .header__menu .sub-menu a {
    padding-top: 10px;
    padding-bottom: 0;
  }
  .header__menu .sub-menu a::before {
    top: 15px;
  }

  .header__submenu-link {
    color: #fff;
    padding-top: 0;
    padding-left: 20px;
  }
  .header__submenu-link::before, .header__submenu-link::after {
    display: none;
  }
  .header__left {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header__top {
    display: none;
  }
  .header__nav-wrapper {
    top: 0;
  }
  
.menu-glavnoe-menyu-container .sub-menu li a:hover {
  background-color: #D11317 !important;
  color: #fff;
}
.menu-glavnoe-menyu-container .sub-menu li a:hover::before {
  background-color: #fff !important;
}

.menu-glavnoe-menyu-container .sub-menu li:hover a {
  background-color: #D11317 !important;
  color: #fff;
}

.menu-glavnoe-menyu-container ul > li > a {
    padding: 15px 0;
}

    .header__menu .menu li {
        padding: 10px 15px;
    }

  .programs {
    padding: 50px 0;
  }
  .about {
    padding: 50px 0;
  }
  .advantage {
    padding: 50px 0;
  }
  .faq {
    padding: 50px 0;
  }
  .accordion {
    display: block;
  }
  .accordion__container {
    max-width: 100%;
    margin-bottom: 15px;
  }
  .accordion__container:last-child {
    margin-bottom: 0;
  }
  .reviews {
    padding: 50px 0;
  }
  .reviews__item {
    margin-bottom: 0;
  }
  .example {
    padding-bottom: 50px;
  }
  .partners {
    padding-bottom: 50px;
  }
  .connect {
    padding: 50px 0;
  }
  .footer__basic-content {
    padding: 50px 0;
  }
  .up {
    display: none;
  }
  .footer__bottom-inner {
    display: block;
    text-align: center;
  }
  .footer__copy-box {
    margin-bottom: 10px;
  }
  .header__page-title {
    font-size: 36px;
    text-align: center;
  }
  .welcome {
    padding: 50px 0;
  }
  .welcome__top-content {
    margin-bottom: 50px;
  }
  .contacts {
    padding: 50px 0;
  }
  .program {
    padding-bottom: 50px;
  }
  .guarantee {
    padding: 30px 0 50px;
  }
  .guarantee__inner {
    margin-bottom: 50px;
  }
  .cabinet {
    padding: 40px 0 50px;
  }
  .cabinet__table {
    margin-bottom: 50px;
  }
  .cabinet__documents {
    margin-bottom: 50px;
  }
  .cabinet__documents-title {
    margin-bottom: 70px;
  }

  .contacts-bottom__inputs {
    display: block;
  }
}
@media (max-width: 864px) {
  .header__breadcrumbs {
    margin-bottom: 20px;
  }

  .header__slider-title {
    font-size: 48px;
  }
  .popup {
    padding-top: 50px;
  }
  .popup__close {
    top: 0;
    right: 0;
  }
  .popup__inputs-fillable {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .popup__request-form--top {
    margin-bottom: 20px;
  }
  .partners .slick-btn {
    top: -100px;
  }
  .connect__form-wrap {
    max-width: 100%;
  }
  .connect__form-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
  }
  
  .connect__form-box p span input {
    margin-bottom: 20px;
      
  }
  
  .connect__input {
    max-width: 100%;
  }
  .connect__form-box p span {
      /* margin-bottom: 20px; */
  }
  
  .connect__form-box p span:last-child {
      max-width: 100%;
     margin-bottom: 0;
  }
  
  .connect__form-box p span:last-child {
      max-width: 100%;
     margin-bottom: 0;
  }
  
  .connect__input--select {
      margin-bottom: 20px;
  }
  
  .jq-selectbox__select {
      margin-bottom: 0 !important;
  }
  .header__bottom-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__breadcrumbs-items {
    margin-bottom: 10px;
  }
  .header__share-list {
    padding-left: 5px;
  }
  .stages__content-img {
    width: 100%;
    height: 100%;
  }
  .stages__content-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .stages__content-textbox {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-right: 0;
    text-align: center;
  }
  .stages__contentitem-img {
    margin: 0 auto 20px;
  }
  .aside {
    max-width: 100%;
  }
  .aside__aside-item {
    max-width: 100%;
    margin: 0;
  }
  .aside__menu-svg {
    display: none;
  }
  .requirement__img {
    width: 100%;
    height: 100%;
  }
  .program__img {
    width: 100%;
    height: 100%;
  }
  .program__passport-content--conditions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .program__passport-img {
    margin-bottom: 20px;
  }
  .program__passport-conditions {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .program__manager-box {
    margin-bottom: 20px;
  }
  .guarantee__img {
    width: 100%;
    height: 100%;
  }
  .cabinet__img {
    width: 100%;
    height: 100%;
  }

  .connect__form-box p {
    display: block;
  }

  .jq-selectbox {
    max-width: 100%;
    
  }
  
  .jq-selectbox__select {
    margin-bottom: 20px;
    max-width: 100%;
}
}

@media (max-width: 796px) {
  .cabinet__documents-item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 634px) {
  .advantage__btn-box {
    display: block;
  }
  .advantage__btn {
    margin-bottom: 20px;
    margin-right: 0;
  }
  .advantage__btn:last-child {
    margin-bottom: 0;
  }
  .ask-question__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ask-question__text {
    margin-bottom: 20px;
  }
  .header__page-title--pages {
    font-size: 28px;
  }
  .contacts-bottom__inputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 15px;
  }
  .contacts-bottom__inputs p span:last-child input {
    margin-bottom: 0;
  }
  
  .contacts-bottom__inputs p {
      margin-bottom: 20px;
  }

  .contacts-bottom__input {
    max-width: 100%;
    margin-bottom: 15px;
  }
  .contacts-bottom__input:last-child {
  }
  .contacts-bottom__msg {
    margin-bottom: 15px;
  }
}
@media (max-width: 584px) {
  .popup {
    padding-top: 70px;
  }
  .popup__title {
    font-size: 24px;
  }
  .popup__inputs-result {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .popup__input-wrap {
    margin-bottom: 5px;
  }
  .programs {
    padding: 30px 0;
  }
  .programs__title {
    font-size: 26px;
  }
  .programs__hidden {
    display: none;
  }
  .programs__text {
    font-size: 14px;
  }
  .about {
    padding: 30px 0;
  }
  .about__title {
    font-size: 26px;
  }
  .about__text-box {
    margin-bottom: 20px;
  }
  .about__stamp-box {
    position: absolute;
    width: 100px;
    bottom: 20px;
    right: 30px;
  }
  .advantage {
    padding: 30px;
  }
  .advantage__title {
    font-size: 26px;
  }
  .terms__content-text {
    font-size: 24px;
  }
  .faq {
    padding: 30px 0;
  }
  .faq__title {
    font-size: 26px;
  }
  .reviews {
    padding: 30px 0;
  }
  .reviews__title {
    font-size: 26px;
  }
  .reviews__text {
    font-size: 14px;
  }
  .example {
    padding-bottom: 30px;
  }
  .example__title {
    font-size: 26px;
  }
  .partners {
    padding-bottom: 30px;
  }
  .connect {
    padding: 30px 0;
  }
  .connect__form-title {
    font-size: 26px;
  }
  .footer__basic-content {
    padding: 30px 0;
  }
  .welcome__title {
    font-size: 26px;
  }
  .welcome {
    padding: 30px 0;
  }
  .welcome__top-content {
    margin-bottom: 30px;
  }
  .welcome__img {
    width: 90%;
    height: 90%;
  }
  .contacts-bottom__form-inner {
    margin-bottom: 30px;
  }
  .contacts {
    padding: 30px 0;
  }
  .program__passport-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .program__passport-item p {
    max-width: 100%;
  }
  .program {
    padding: 30px 0 10px;
  }
  .program__passport-box {
    margin-bottom: 30px;
  }
  .guarantee {
    padding: 30px 0 30px;
  }
  .guarantee__inner {
    margin-bottom: 30px;
  }
  .cabinet {
    padding: 40px 0 30px;
  }
  .cabinet__title {
    padding-top: 30px;
  }
  .cabinet__table-box {
    max-width: 700px;
    overflow-x: scroll;
  }
  .cabinet__table {
    width: 700px;
    margin-bottom: 30px;
  }
  .cabinet__documents-title {
    margin-bottom: 45px;
  }
  .cabinet__documents {
    margin-bottom: 30px;
  }
}

@media (max-width: 526px) {
  .cabinet__arrow-box {
      display: block;
  }
}

@media (max-width: 500px) {
  .header__slider-list {
    height: 700px;
  }
  .header__slider-title {
    font-size: 40px;
  }
  .header__right {
    display: none;
  }
  .header__breadcrumbs-link {
    font-size: 14px;
  }
  .programs__title {
    padding-top: 50px;
  }
  .accordion__title {
    font-size: 12px;
  }
  .accordion__content {
    font-size: 12px;
  }
  .faq__questions-text {
    font-size: 14px;
    text-align: center;
  }
  .faq__btn-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .faq__btn {
    margin-bottom: 10px;
  }
  .faq__btn:last-child {
    margin-bottom: 0;
  }
  .ask-question__text {
    font-size: 16px;
  }
  .ask-question__link {
    padding: 8px 20px;
  }
}
@media (max-width: 486px) {
  .header__breadcrumbs {
    display: none;
  }

  .programs__bottom-title {
    font-size: 16px;
  }
  .programs__bottom-text {
    font-size: 11px;
  }
  .programs__bottom {
    padding: 10px 10px 10px 5px;
  }
  .programs__bottom-logo {
    margin-right: 10px;
  }
  .programs__bottom-textbox {
    padding: 10px;
  }
}
@media (max-width: 408px) {
  .header__slider-title {
    font-size: 32px;
  }
  .header__slider-text {
    font-size: 16px;
  }
  .header__slider-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header__btn {
    display: block;
  }
  .header__slider-link {
    margin-bottom: 20px;
    margin-right: 0;
  }
  .header__page-title--pages {
    font-size: 24px;
  }
  .terms__content-text {
    font-size: 18px;
  }
  .stages__contentitem-img {
    width: 100%;
    height: 100%;
  }
  .aside__doc-link,
  .aside__menu-link {
    font-size: 12px;
  }
  .aside__manager-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .aside__manager-img {
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .aside__manager-name {
    text-align: center;
  }
}
@media (max-width: 370px) {
  .header__breadcrumbs-link {
    font-size: 11px;
  }
}
@media (max-width: 342px) {
  .programs__bottom-title {
    font-size: 14px;
  }
  .advantage__btn {
    padding: 14px 20px;
  }
}

.menu-glavnoe-menyu-container > ul {
  display: flex;
}
.menu-glavnoe-menyu-container ul > li {
  padding: 13px;
  position: relative;
}
.menu-glavnoe-menyu-container ul > li::before {
  position: absolute;
  content: "";
  width: 0;
  height: 4px;
  background-color: #d11317;
  bottom: -15px;
  left: 0;
  right: 0;
  transition: width 0.5s ease 0s;
}
.menu-glavnoe-menyu-container ul > li:hover ul {
  top: 65px;
  visibility: visible;
  opacity: 1;
}
.menu-glavnoe-menyu-container ul > li:hover::before {
  width: 100%;
}
.menu-glavnoe-menyu-container ul > li > a {
  font-size: 13px;
  color: #4c4b4b;
  font-weight: 600;
  text-transform: uppercase;
  padding: 30px 0;
}
.menu-glavnoe-menyu-container ul > li:nth-child(2) > a {
  position: relative;
  padding-right: 20px;
}
.menu-glavnoe-menyu-container ul > li:nth-child(2) > a {
  position: relative;
  padding-right: 20px;
}
.menu-glavnoe-menyu-container > ul > li:nth-child(2) > a::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 12px;
  right: 0;
  top: 31px;
  background-image: url('http://1k.kg/wp-content/themes/cooperative/assets/images/svg-sprite/sprite.svg#caret-down');
}
.menu-glavnoe-menyu-container ul > li:nth-child(1) > a {
  position: relative;
  padding-right: 20px;
}
.menu-glavnoe-menyu-container ul > li:nth-child(1) > a {
  position: relative;
  padding-right: 20px;
}
.menu-glavnoe-menyu-container > ul > li:nth-child(1) > a::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 12px;
  right: 0;
  top: 31px;
  background-image: url('http://1k.kg/wp-content/themes/cooperative/assets/images/svg-sprite/sprite.svg#caret-down');
}
.header__arrow {
  position: absolute;
  top: 41%;
  right: 0;
}
.sub-menu {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: 120px;
  left: 0;
  transition: all 0.5s;
  width: 210px;
  border-bottom: 4px solid #d11317;
  padding-top: 5px;
  z-index: 5;
  background-color: #fff;
}
.sub-menu .menu-item-type-post_type {
  padding: 0;
}

.sub-menu li:hover a {
  background-color: #fff;
}
.sub-menu li:hover::before {
  display: none;
  background-color: #fff;
}
.menu-glavnoe-menyu-container ul > li > ul > li:hover {
  background-color: transparent;
}
.menu-glavnoe-menyu-container ul > li > ul > div {
  background-color: #fff;
}
.menu-glavnoe-menyu-container ul > li > ul a {
  padding: 20px 0 10px 40px;
  display: block;
  color: #4c4b4b;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  transition: color 0.5s ease 0s;
}
.menu-glavnoe-menyu-container ul > li > ul a::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #d6d6d6;
  border-radius: 50%;
  left: 20px;
  top: 24px;
  transition: background-color 0.5s ease 0s;
}
.menu-glavnoe-menyu-container ul > li > ul li a::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  left: 22px;
  top: 26px;
}
.menu-glavnoe-menyu-container ul > li > ul a:hover {
  color: #d11317;
}
.menu-glavnoe-menyu-container ul > li > ul a:hover::before {
  background-color: #d11317;
}

.no-results {
  text-align: center;
}

.page-header {
  margin-bottom: 25px;
}

.page-content {
  margin: 0 auto;
  max-width: 650px;
}

.page-content p {
  margin-bottom: 45px;
}

.page-title {
  text-align: center;
  margin-bottom: 45px;
}

.search-wrap {
  padding: 50px 0;
}

.status-publish {
  margin-bottom: 30px;
}

.comments-link {
  display: none;
}

.entry-title a {
  color: #d11317;
}

.single_wrap {
  /* padding: 50px 0; */
}

.status-publish {
  margin-bottom: 0;
}

.search-form input {
  padding: 8px;
  border-radius: 0;
  border: 2px solid #d11317;
}

.search-form input:hover {
}

.search-form {
  display: flex;
  max-width: 290px;
  margin: 0 auto;
}

.search-submit {
  border-radius: 0;
  border: 2px solid #d11317;
  background-color: #d11317;
  color: #fff;
  cursor: pointer;
}

.privacy {
  padding: 100px 0;
}

.privacy__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.privacy__content {
  max-width: 770px;

}

.privacy__title {
  font-size: 22px;
  margin-bottom: 25px;
}

.privacy__text p {
  margin-bottom: 10px;
}

.error-404 {
  padding: 100px 0;
}

.page-content {
  max-width: 100%;
  text-align: center;
}

.error-404__inner {
  display: flex;
  justify-content: space-between;
}

.error-404__content {
  max-width: 770px;
  
}

.error-404__img {
  margin-bottom: 30px;
}

.rc-anchor {
    margin-bottom: 20px;
}


/* Vote styles */

.vote {
    padding: 80px 0;
}

.vote__title {
  padding-bottom: 10px;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}
.vote__title::before, .vote__title::after {
  content: "";
  position: absolute;
  height: 1px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.vote__title::before {
  width: 200px;
  background-color: #e9e9e9;
}
.vote__title::after {
  width: 70px;
  background-color: #d11317;
}

.vote__label {
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 400px;
  width: 100%;
  z-index: 55;
  background-color: #fff;
  margin-bottom: 16px;
}

.vote__checkbox {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  position: absolute;
}

.vote__checkbox:checked + .vote__styling::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #D11317;
}

.vote__styling {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #D11317;
  border-radius: 50%;
  margin-left: -30px;
  cursor: pointer;
}

.vote__button-voting {
    cursor: pointer;
    color: #fff;
}

.vote__rezult-title {
    margin-bottom: 20px;
    font-size: 22px;
}

.vote__percent {
    background:#eee;
    max-width:400px;
    margin-bottom: 10px;
}

.vote__item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9e9e9;
}

.vote__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.vote ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.vote ol li {
    padding:  5px 0 5px;
}

.vote ol li:nth-child(odd) {
    background-color: #F9F9F9;
}

.vote__no-voice {
    margin-bottom: 20px;
    
}

.vote__button-box p{
    margin-right: 5px;
}

.vote__button {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #D11317;
}

.vote__button-box {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 20px;
}

/* balance-apartments */
.balance-apartments__title-box {
    max-width: 450px;
    text-align: center;
    margin: 0 auto 40px;
}

.balance-apartments__title {
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
}

.balance-apartments__title::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background-color: #d11317;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.balance-apartments {
    padding: 88px;
}

.balance-apartments__wrap {
    display: flex;
    justify-content: space-between;
}

.balance-apartments__aside {
    min-width: 320px;
}

@media (max-width: 1070px) {
  .balance-apartments__wrap {
    flex-wrap: wrap;
    max-width: 100%;
}

    .balance-apartments__aside {
    width: 100%;
    margin-bottom: 40px;
}

.balance-apartments__content {
    margin: 0 auto;
}

}

.balance-apartments__content {
    max-width: 770px;
    width: 100%;
}

.balance-apartments__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    
}

.balance-apartments__item {
    max-width: 220px;
}


/*Light box*/

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;

  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.show {
  display: flex;
}

.lightbox.active {
  opacity: 1;
}

.lightbox__img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.8);

  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.lightbox.active .lightbox__img {
  transform: scale(1);
}

.lightbox.closing .lightbox__img {
  transform: scale(0.8); /* zoom-out при закрытии */
}

/* --- Кнопки --- */
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  user-select: none;
  transition: 0.3s;
  z-index: 10000; /* чтобы всегда были сверху */
}

.lightbox__close { top: 20px; right: 30px; }
.lightbox__prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 30px; top: 50%; transform: translateY(-50%); }

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  color: #ffcc00;
}

