﻿
:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

.f-throwOutUp {
  animation: 0.175s ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: 0.175s ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, -150px, 0);
    opacity: 0;
  }
}

@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, 150px, 0);
    opacity: 0;
  }
}

.f-zoomInUp {
  animation: var(--f-transition-duration, 0.2s) ease-out 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }

  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) ease both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: var(--f-transition-duration, 0.2s) ease both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}

.f-fadeSlowIn {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}

.f-fadeFastIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastOut;
  z-index: 2;
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}

.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both
    f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}

.f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-slideInNext;
}

.f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-slideInPrev;
}

.f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-slideOutPrev;
}

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }

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

@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }

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

@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}

@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}

.f-classicIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-classicOutPrev;
  z-index: 1;
}

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }

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

@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }

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

@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}

@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}

:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}

.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition);
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}

.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px)
    var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.15s ease;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
  transform: rotate(90deg);
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body {
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(
    var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px)
  );
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

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

.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-zooming-in
  .fancybox__viewport:not(.is-dragging)
  .fancybox__slide:not(.is-selected)
  .fancybox__content,
.is-zooming-out .fancybox__slide:not(.is-selected) .fancybox__content {
  visibility: hidden;
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
  filter: blur(0px);
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  user-select: none;
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0
    var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  z-index: 40;
  user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden="false"]
  > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden="false"]
  .fancybox__carousel
  > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden="false"]
  .fancybox__slide
  > *:not(.fancybox__content) {
  animation: 0.25s ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden="false"] .fancybox__backdrop {
  animation: 0.35s ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden="true"]
  > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden="true"]
  .fancybox__carousel
  > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden="true"]
  .fancybox__slide
  > *:not(.fancybox__content) {
  animation: 0.15s ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden="true"] .fancybox__backdrop {
  animation: 0.35s ease forwards f-fadeOut;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.fancybox__container:not(.is-compact) .has-iframe .fancybox__content,
.fancybox__container:not(.is-compact) .has-map .fancybox__content,
.fancybox__container:not(.is-compact) .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 20px;
  --f-thumb-clip-width: 46px;
}

.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
  perspective: 1000px;
  transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.f-thumbs__track {
  display: flex;
  will-change: transform;
}

.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  min-width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--left, 0) * 1px);
  width: calc(100% - var(--width, 0) * 1px);
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  --clip-path: inset(
    0
      calc(
        (var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * 0.5 *
          (1 - var(--progress, 0))
      )
      round var(--f-thumb-border-radius, 0)
  );
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}

.is-modern .f-thumbs__slide > * {
  clip-path: var(--clip-path);
}

.is-modern:not(.is-using-mouse) .f-thumbs__slide:focus-within {
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color))
    drop-shadow(2px 0px 0px var(--f-thumb-outline-color))
    drop-shadow(0px -1px 0px var(--f-thumb-outline-color))
    drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.is-modern.in-touch .f-thumbs__slide {
  filter: none;
}

.is-modern.is-resting .f-thumbs__slide {
  transition: all 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide > * {
  transition: all 0.33s ease;
}

.f-thumbs__slide__button {
  appearance: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid
    var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  object-fit: cover;
}

.f-thumbs.is-horizontal .f-thumbs__track {
  margin: 0 auto;
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  margin: auto 0;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 20px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted",
    "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(
    --fancybox-toolbar-text-shadow,
    1px 1px 1px rgba(0, 0, 0, 0.5)
  );
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  user-select: none;
  pointer-events: none;
}




/**
 * Swiper 9.3.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 15, 2023
 */

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition:
    0.2s transform,
    0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s left;
}

.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
:host(.swiper-horizontal.swiper-rtl)
  .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(
    --swiper-pagination-progressbar-bg-color,
    rgba(0, 0, 0, 0.25)
  );
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification,
swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}




@charset "UTF-8";

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@-webkit-keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

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

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

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

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

@-webkit-keyframes flash {
  0%,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

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

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

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

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

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

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

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(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: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(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: scaleX(1);
    transform: scaleX(1);
  }
}

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

@-webkit-keyframes shake {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

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

@keyframes shake {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

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

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

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

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

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

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

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

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

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

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

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

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

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

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

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

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

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

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

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

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

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

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

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

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

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

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }

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

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

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

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

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }

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

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

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

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

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

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

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

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

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

@-webkit-keyframes jello {
  0%,
  11.1%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0%,
  11.1%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

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

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

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

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

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

@-webkit-keyframes 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);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(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: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes bounceIn {
  0%,
  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: scaleX(1);
    transform: scaleX(1);
  }
}

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

@-webkit-keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

@-webkit-keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

@-webkit-keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

@-webkit-keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

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

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

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

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

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

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95)
      translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
      rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

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

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

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95)
      translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
      rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

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

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

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

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

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

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

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

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

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

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes lightSpeedIn {
  0% {
    -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: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes lightSpeedIn {
  0% {
    -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: translateZ(0);
    transform: translateZ(0);
  }
}

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

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

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

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes jackInTheBox {
  0% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

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

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

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

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

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

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

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

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

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

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

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

@keyframes rollOut {
  0% {
    opacity: 1;
  }

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  0% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInLeft {
  0% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInRight {
  0% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInUp {
  0% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomOut {
  0% {
    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 {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

.animated.faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion: reduce), (print) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}




details,
main {
  display: block;
}

h1 {
  font-size: 2em;
}

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

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

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

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

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

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

summary {
  display: list-item;
}

[hidden],
template {
  display: none;
}

@font-face {
  font-family: Gilroy;
  src: url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-ExtraBold.eot);
  src:
    local("Gilroy ExtraBold"),
    local("Gilroy-ExtraBold"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-ExtraBold.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../../local/templates/СleanLife/fonts/Gilroy/Gilroy-ExtraBold.woff)
      format("woff"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-ExtraBold.ttf)
      format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  src: url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Heavy.eot);
  src:
    local("Gilroy Heavy"),
    local("Gilroy-Heavy"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Heavy.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../../local/templates/СleanLife/fonts/Gilroy/Gilroy-Heavy.woff)
      format("woff"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Heavy.ttf)
      format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  src: url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-LightItalic.eot);
  src:
    local("Gilroy Light Italic"),
    local("Gilroy-LightItalic"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-LightItalic.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../../local/templates/СleanLife/fonts/Gilroy/Gilroy-LightItalic.woff)
      format("woff"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-LightItalic.ttf)
      format("truetype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: Gilroy;
  src: url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-ThinItalic.eot);
  src:
    local("Gilroy Thin Italic"),
    local("Gilroy-ThinItalic"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-ThinItalic.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../../local/templates/СleanLife/fonts/Gilroy/Gilroy-ThinItalic.woff)
      format("woff"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-ThinItalic.ttf)
      format("truetype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: Gilroy;
  src: url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-BlackItalic.eot);
  src:
    local("Gilroy Black Italic"),
    local("Gilroy-BlackItalic"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-BlackItalic.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../../local/templates/СleanLife/fonts/Gilroy/Gilroy-BlackItalic.woff)
      format("woff"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-BlackItalic.ttf)
      format("truetype");
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: Gilroy;
  src: url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-BoldItalic.eot);
  src:
    local("Gilroy Bold Italic"),
    local("Gilroy-BoldItalic"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-BoldItalic.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../../local/templates/СleanLife/fonts/Gilroy/Gilroy-BoldItalic.woff)
      format("woff"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-BoldItalic.ttf)
      format("truetype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: Gilroy;
  src: url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-SemiBold.eot);
  src:
    local("Gilroy SemiBold"),
    local("Gilroy-SemiBold"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-SemiBold.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../../local/templates/СleanLife/fonts/Gilroy/Gilroy-SemiBold.woff)
      format("woff"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-SemiBold.ttf)
      format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  src: url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-UltraLightItalic.eot);
  src:
    local("Gilroy UltraLight Italic"),
    local("Gilroy-UltraLightItalic"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-UltraLightItalic.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../../local/templates/СleanLife/fonts/Gilroy/Gilroy-UltraLightItalic.woff)
      format("woff"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-UltraLightItalic.ttf)
      format("truetype");
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: Gilroy;
  src: url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-SemiBoldItalic.eot);
  src:
    local("Gilroy SemiBold Italic"),
    local("Gilroy-SemiBoldItalic"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-SemiBoldItalic.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../../local/templates/СleanLife/fonts/Gilroy/Gilroy-SemiBoldItalic.woff)
      format("woff"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-SemiBoldItalic.ttf)
      format("truetype");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: Gilroy;
  src: url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Light.eot);
  src:
    local("Gilroy Light"),
    local("Gilroy-Light"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Light.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../../local/templates/СleanLife/fonts/Gilroy/Gilroy-Light.woff)
      format("woff"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Light.ttf)
      format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  src: url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-MediumItalic.eot);
  src:
    local("Gilroy Medium Italic"),
    local("Gilroy-MediumItalic"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-MediumItalic.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../../local/templates/СleanLife/fonts/Gilroy/Gilroy-MediumItalic.woff)
      format("woff"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-MediumItalic.ttf)
      format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: Gilroy;
  src: url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-ExtraBoldItalic.eot);
  src:
    local("Gilroy ExtraBold Italic"),
    local("Gilroy-ExtraBoldItalic"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-ExtraBoldItalic.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../../local/templates/СleanLife/fonts/Gilroy/Gilroy-ExtraBoldItalic.woff)
      format("woff"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-ExtraBoldItalic.ttf)
      format("truetype");
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: Gilroy;
  src: url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Regular.eot);
  src:
    local("Gilroy Regular"),
    local("Gilroy-Regular"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Regular.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../../local/templates/СleanLife/fonts/Gilroy/Gilroy-Regular.woff)
      format("woff"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Regular.ttf)
      format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  src: url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-HeavyItalic.eot);
  src:
    local("Gilroy Heavy Italic"),
    local("Gilroy-HeavyItalic"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-HeavyItalic.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../../local/templates/СleanLife/fonts/Gilroy/Gilroy-HeavyItalic.woff)
      format("woff"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-HeavyItalic.ttf)
      format("truetype");
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: Gilroy;
  src: url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Medium.eot);
  src:
    local("Gilroy Medium"),
    local("Gilroy-Medium"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Medium.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../../local/templates/СleanLife/fonts/Gilroy/Gilroy-Medium.woff)
      format("woff"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Medium.ttf)
      format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  src: url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-RegularItalic.eot);
  src:
    local("Gilroy Regular Italic"),
    local("Gilroy-RegularItalic"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-RegularItalic.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../../local/templates/СleanLife/fonts/Gilroy/Gilroy-RegularItalic.woff)
      format("woff"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-RegularItalic.ttf)
      format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: Gilroy;
  src: url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-UltraLight.eot);
  src:
    local("Gilroy UltraLight"),
    local("Gilroy-UltraLight"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-UltraLight.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../../local/templates/СleanLife/fonts/Gilroy/Gilroy-UltraLight.woff)
      format("woff"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-UltraLight.ttf)
      format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  src: url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Bold.eot);
  src:
    local("Gilroy Bold"),
    local("Gilroy-Bold"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Bold.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../../local/templates/СleanLife/fonts/Gilroy/Gilroy-Bold.woff)
      format("woff"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Bold.ttf)
      format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  src: url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Thin.eot);
  src:
    local("Gilroy Thin"),
    local("Gilroy-Thin"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Thin.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../../local/templates/СleanLife/fonts/Gilroy/Gilroy-Thin.woff)
      format("woff"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Thin.ttf)
      format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  src: url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Black.eot);
  src:
    local("Gilroy Black"),
    local("Gilroy-Black"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Black.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../../local/templates/СleanLife/fonts/Gilroy/Gilroy-Black.woff)
      format("woff"),
    url(/local/templates/СleanLife/styles/../fonts/Gilroy/Gilroy-Black.ttf)
      format("truetype");
  font-weight: 900;
  font-style: normal;
}

*,
::after,
::before {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  font-family: Gilroy;
  background-color: #fff;
  font-size: 0.5208335vw;
  color: #000;
  line-height: 1.3;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 1.6rem;
}

body.lock {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
  font: inherit;
}

ul {
  list-style: none;
}

input,
textarea {
  -webkit-animation: 1s infinite bugfix;
  line-height: inherit;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
}

a {
  background-color: transparent;
  color: unset;
  color: inherit;
  font: inherit;
  text-decoration: none;
}

a,
a:hover {
  text-decoration: none;
}

a,
button,
input,
textarea {
  outline: 0;
  cursor: pointer;
  font: inherit;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 0;
}

a:active,
button:active,
input:active,
textarea:active {
  outline: 0;
}

button {
  display: inline-block;
  background-color: inherit;
  border: none;
  padding: 0;
  margin: 0;
}

img,
svg {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}

picture {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.form__inner {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.2rem;
}

.form__item {
  padding: 2rem 1.2rem;
  width: 100%;
}

.form__item--50 {
  width: 50%;
}

.form__item--33 {
  width: 33.3333%;
}

.form__label {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.form__input,
.form__textarea {
  width: 100%;
  font-size: 1.6rem;
  background-color: #fff;
  border: 1px solid #020e20;
  border-radius: 0.8rem;
  color: #fff;
}

.form__input.error,
.form__input.just-validate-error-field,
.form__textarea.error,
.form__textarea.just-validate-error-field {
  border: 1px solid #c52b2b !important;
  background-color: #fff;
}

.form__input::-moz-placeholder,
.form__textarea::-moz-placeholder {
  color: #5a6e72;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #5a6e72;
}

.form__input:hover,
.form__textarea:hover {
  background-color: #e6ebf0;
  border-color: #e6ebf0;
}

.form__input:active,
.form__input:focus,
.form__textarea:active,
.form__textarea:focus {
  background-color: #fff;
  border-color: #0b5c93;
}

.form__input {
  height: 4.8rem;
  padding: 1.5rem 1.6rem;
}

.form__textarea {
  height: 4.8rem;
  padding: 1.5rem 1.6rem;
  padding-top: 1rem;
}

.form__textarea--big {
  height: 14.6rem;
}

.form__input-error {
  color: #c52b2b;
  font-size: 1.2rem;
  padding-top: 0.4rem;
}

.form__select {
  width: 100%;
  height: 8rem;
  padding: 1rem 3rem;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  box-shadow: 2rem 3rem 6rem rgba(15, 7, 62, 0.05);
  border-radius: 1rem;
  color: #848794;
  font: inherit;
  font-size: 16px;
}

.form__file {
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
  position: relative;
}

.form__file label {
  display: block;
}

.form__file svg {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 0.8rem;
}

.form__file:hover .form__file-area {
  background-color: #fff;
}

.form__file-reset {
  position: absolute;
  right: 6px;
  top: 18px;
}

.form__file-area {
  color: #0b5c93;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border: 1px solid #0b5c93;
  border-radius: 4px;
  white-space: nowrap;
  min-width: 245px;
  width: 100%;
}

.form__file-name {
  display: inline-flex;
  flex-direction: column;
  padding-right: 5px;
  white-space: pre-line;
}

.form__file-name.hide,
.form__file-reset.hide,
.form__file-title.hide {
  display: none;
}

.form__police {
  margin-top: 0.5rem;
  font-size: 1.4rem;
  color: #5a6e72;
}

.form__actions {
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid #020e20;
}

.form .just-validate-error-label {
  padding: 0 1.6rem;
  padding-top: 0.2rem;
  color: #c52b2b !important;
  width: 100%;
}

.form .just-validate-error-label[data-tooltip="true"] {
  width: auto;
  color: #fff !important;
}

.alert {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1500;
  display: flex;
  flex-direction: column-reverse;
  max-width: 100vw;
}

.alert__item {
  padding: 1.2rem 2.4rem;
  border-radius: 4px;
  background-color: #fff;
  color: #000;
  opacity: 0;
  transition:
    transform 0.3s ease-in,
    opacity 0.3s ease-in;
  margin: 0.4rem 0;
  margin-left: 2.4rem;
  border: 1px solid #000;
  transform: translateY(-100%);
}

.alert__item:first-child {
  margin-bottom: 4rem;
}

.alert__item.active {
  opacity: 1;
  transform: translateY(0);
}

.alert__item.escape {
  opacity: 0;
  transform: translateY(100%);
}

.alert__item.success {
  background-color: #0b5c93;
  color: #fff;
  border-color: #0b5c93;
}

.alert__item.error {
  background-color: #c52b2b;
  color: #fff;
  border-color: #c52b2b;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 0 0.4rem 1.7rem 0 rgba(26, 54, 98, 0.05);
  transition: background-color 0.25s ease-in-out;
}

.header.down,
.header.scroll {
  transform: translateY(0);
}

.header.dark,
.header.mode-dark,
.header.mode-dark-mobile {
  background-color: rgba(255, 255, 255, 0);
  color: #fff;
}

.header.dark .header__logo,
.header.dark .header__nav-item--conf,
.header.mode-dark .header__logo,
.header.mode-dark .header__nav-item--conf,
.header.mode-dark-mobile .header__logo,
.header.mode-dark-mobile .header__nav-item--conf {
  color: #fff;
}

.header.dark .header__nav-item--conf a,
.header.mode-dark .header__nav-item--conf a,
.header.mode-dark-mobile .header__nav-item--conf a {
  background-color: #010d1f;
}

.header.dark .header__burger div::before,
.header.dark .header__burger:after,
.header.dark .header__burger:before,
.header.mode-dark .header__burger div::before,
.header.mode-dark .header__burger:after,
.header.mode-dark .header__burger:before,
.header.mode-dark-mobile .header__burger div::before,
.header.mode-dark-mobile .header__burger:after,
.header.mode-dark-mobile .header__burger:before {
  background: #fff;
}

.header.dark .feedback-btn,
.header.dark .feedback-btn:hover,
.header.mode-dark .feedback-btn,
.header.mode-dark .feedback-btn:hover,
.header.mode-dark-mobile .feedback-btn,
.header.mode-dark-mobile .feedback-btn:hover {
  color: #fff;
}

.header.light,
.header.mode-light,
.header.scroll {
  background-color: #020e20;
  color: #010d1f;
}

.header.light .header__logo,
.header.mode-light .header__logo,
.header.scroll .header__logo {
  color: #0b5c93;
}

.header.light .header__nav-item--conf,
.header.mode-light .header__nav-item--conf,
.header.scroll .header__nav-item--conf {
  color: #fff;
}

.header.light .header__nav-item--conf a,
.header.mode-light .header__nav-item--conf a,
.header.scroll .header__nav-item--conf a {
  background-color: #0b5c93;
}

.header.light .header__burger div::before,
.header.light .header__burger:after,
.header.light .header__burger:before,
.header.mode-light .header__burger div::before,
.header.mode-light .header__burger:after,
.header.mode-light .header__burger:before,
.header.scroll .header__burger div::before,
.header.scroll .header__burger:after,
.header.scroll .header__burger:before {
  background: #fff;
}

.header.light .feedback-btn,
.header.mode-light .feedback-btn,
.header.scroll .feedback-btn {
  color: #0b5c93;
}

.header.light .feedback-btn:hover,
.header.mode-light .feedback-btn:hover,
.header.scroll .feedback-btn:hover {
  color: #fff;
}

.header.mode-dark-mobile {
  background-color: #000;
  color: #fff;
}

.header.mode-dark-mobile .header__logo,
.header.mode-dark-mobile .header__nav-item--conf {
  color: #fff;
}

.header.mode-dark-mobile .header__nav-item--conf a {
  background-color: #010d1f;
}

.header.mode-dark-mobile .header__burger div::before,
.header.mode-dark-mobile .header__burger:after,
.header.mode-dark-mobile .header__burger:before {
  background: #fff;
}

.header.mode-dark-mobile .feedback-btn,
.header.mode-dark-mobile .feedback-btn:hover {
  color: #fff;
}

.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(240, 243, 246, 0.2);
}

.header__logo {
  display: inline-block;
  width: 150px;
  height: 60px;
  flex-shrink: 0;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

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

.header__contacts--sp {
  display: none;
}

.header__tel-wrap {
  text-align: right;
  margin-right: 2.4rem;
}

.header__tel {
  font-size: 1.8rem;
  font-weight: 600;
  transition: color 0.3s;
}

.header__tel:hover {
  color: #0b5c93;
}

.header__tel-item {
  margin-bottom: 10px;
}

.header__graf {
  color: #5a6e72;
  font-size: 1.2rem;
  font-weight: 600;
}

.header__social {
  color: #fff;
}

.header__bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
}

.header__nav,
.header__nav-list {
  display: flex;
  align-items: center;
}

.header__nav-item {
  font-size: 1.6rem;
  font-weight: 600;
  margin-right: 3.2rem;
}

.header__nav-item a {
  transition: color 0.3s;
  color: #fff;
}

.header__nav-item a:hover {
  color: #0b5c93;
}

.header__nav-item--conf a {
  display: inline-flex;
  align-items: center;
  border-radius: 2.4rem;
  padding: 1rem 2.4rem;
  background-color: #000;
  transition: background 0.3s;
}

.header__nav-item--conf a svg {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 0.8rem;
}

.header__nav-item--conf a:hover {
  background-color: #3f7e4a !important;
  color: #fff !important;
}

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

.header__burger {
  display: none;
  width: 2.4rem;
  position: relative;
  right: 0.4rem;
}

.header__burger div,
.header__burger div::before,
.header__burger:after,
.header__burger:before {
  background: #fff;
  content: "";
  display: block;
  height: 0.2rem;
  border-radius: 0.2rem;
  margin: 0.4rem 0;
  transition: 0.5s;
}

.header__burger div {
  position: relative;
  display: flex;
  justify-content: flex-end;
  background-color: transparent;
}

.header__burger div::before {
  width: 70%;
  margin: 0;
}

.header__burger.active:before {
  transform: translateY(0.6rem) rotate(135deg);
}

.header__burger.active:after {
  transform: translateY(-0.6rem) rotate(-135deg);
}

.header__burger.active div {
  transform: scale(0);
}

.header__feedback-ico {
  display: none;
}

.footer {
  background-color: #020e20 !important;
  padding-top: 3.2rem;
  padding-bottom: 5.1rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2.4rem;
  border-bottom: 1px solid #cfd9e2;
  padding-bottom: 5.4rem;
  margin-bottom: 1.6rem;
}

.footer__logo {
  display: inline-block;
  width: 100px;
  height: 100px;
  color: #0b5c93;
  margin-bottom: 0.9rem;
}

.footer__logo svg {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__social {
  color: #fff;
}

.footer__grey {
  color: #5a6e72;
  font-size: 1.6rem;
  font-weight: 500;
  font-style: normal;
}

.footer__grey[href]:hover {
  text-decoration: underline;
}

.footer__address {
  margin-bottom: 2.4rem;
}

.footer__uls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2.4rem;
  grid-column: 2/4;
  padding-top: 1.4rem;
}

.footer__ul li {
  margin-bottom: 1.6rem;
}

.footer__ul a {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff !important;
}

.footer__ul a:hover {
  text-decoration: underline;
}

.footer__contacts {
  grid-column: 4/5;
  padding-top: 1.4rem;
}

.footer__tel {
  display: block;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__graf {
  margin-bottom: 1.6rem;
}

.footer__bot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2.4rem;
}

.footer__octo {
  display: inline-block;
  margin-top: 3.5rem;
}

.footer__octo svg {
  width: 10.8rem;
  height: 2.8rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__sp-show {
  display: none;
}

.osmi-container {
  width: 100%;
  width: 140rem;
  margin: 0 auto;
}

.h1 {
  font-size: 4.8rem;
  line-height: 1.1;
  font-weight: 700;
}

.h2 {
  font-size: 3.6rem;
  line-height: 1.1;
  font-weight: 700;
}

.h3 {
  font-size: 2.8rem;
  line-height: 1.1;
  font-weight: 700;
}

.tbb {
  font-size: 2rem;
  font-weight: 700;
}

.tbsm {
  font-size: 2rem;
  font-weight: 600;
}

.tbr {
  font-size: 2rem;
  font-weight: 400;
}

.tbm {
  font-size: 2rem;
  font-weight: 500;
}

.t1 {
  font-size: 1.8rem;
  font-weight: 500;
}

.t2 {
  font-size: 1.6rem;
  font-weight: 700;
}

.t3 {
  font-size: 1.6rem;
  font-weight: 500;
}

.t4 {
  font-size: 1.4rem;
  font-weight: 500;
}

.link,
.link-2,
.link-3 {
  transition: color 0.3s;
}

.link-2:hover,
.link-3:hover,
.link:hover {
  color: #0b5c93;
}

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

.swiper-wrapper {
  height: auto;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1.6rem 3.2rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: #0b5c93;
  border-radius: 0.8rem;
  transition-duration: 0.3s;
  transition-property: color, background, border;
}

.btn img,
.btn svg {
  flex-shrink: 0;
  height: 2.4rem;
  width: 2.4rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.btn--r-ico img,
.btn--r-ico svg {
  margin-left: 1rem;
}

.btn--l-ico img,
.btn--l-ico svg {
  margin-right: 1rem;
}

.btn--lg {
  padding: 1.6rem 3.2rem;
}

.btn--md {
  font-size: 1.6rem;
  padding: 1.4rem 3.2rem;
}

.btn--sm {
  font-size: 1.1rem;
  padding: 1.1rem 2.4rem;
}

.btn--sm img,
.btn--sm svg {
  flex-shrink: 0;
  height: 1.6rem;
  width: 1.6rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.btn:hover {
  background-color: #3f7e4a;
}

.btn:active,
.btn:focus {
  background-color: #2e5c36;
}

.btn:disabled {
  cursor: default;
  pointer-events: none;
  background-color: #c4c4c4;
}

.btn--second {
  color: #0b5c93;
  background-color: #eef3ef;
}

.btn--second:hover {
  background-color: #dcefe0;
}

.btn--second:active,
.btn--second:focus {
  background-color: #c7e5cd;
}

.btn--second:disabled {
  opacity: 0.6;
  color: #5a6e72;
  background-color: #eef3ef;
}

.btn--ghost {
  color: #0b5c93;
  background-color: rgba(255, 255, 255, 0);
}

.btn--ghost:hover {
  color: #0b5c93;
  background-color: #eef3ef;
}

.btn--ghost:active,
.btn--ghost:focus {
  color: #0b5c93;
  background-color: #dcefe0;
}

.btn--ghost:disabled {
  opacity: 0.6;
  color: #5a6e72;
  background-color: rgba(255, 255, 255, 0);
}

.btn.loading {
  background-image: url(../../../../../../local/templates/СleanLife/img/spinner.gif);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #fff !important;
  color: transparent !important;
  border: 1px solid #0b5c93 !important;
}

.feedback-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 2.4rem;
  color: #0b5c93;
  font-size: 1.6rem;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #0b5c93;
  border-radius: 0.8rem;
  transition-duration: 0.3s;
  transition-property: color, background, border;
}

.feedback-btn--header {
  color: inherit;
}

.feedback-btn:hover {
  background-color: #0b5c93;
  color: #fff;
}

.feedback-btn:active,
.feedback-btn:focus {
  background-color: #0b5c93;
  color: #fff;
}

.feedback-btn:disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.3;
}

.cfr-btn {
  display: inline-flex;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 3.2rem;
  overflow: hidden;
  position: relative;
}

.cfr-btn::before {
  content: "";
  display: block;
  position: absolute;
  border-radius: 3.2rem;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background-color: #0b5c93;
  transform: translateX(0);
  transition-duration: 0.5s;
  transition-property: transform;
}

.cfr-btn__text {
  display: inline-block;
  text-align: center;
  padding: 1.6rem 3rem;
  border-radius: 3.2rem;
  background-color: #0b5c93;
  position: relative;
  z-index: 2;
}

.cfr-btn__ico {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0b5c93;
  border-radius: 100%;
  min-height: 100%;
  min-width: 5.4rem;
  margin-left: 0.4rem;
  position: relative;
  z-index: 2;
}

.cfr-btn img,
.cfr-btn svg {
  flex-shrink: 0;
  height: 2.4rem;
  width: 2.4rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.cfr-btn--full {
  border-radius: 3.2rem;
  background-color: #0b5c93;
}

.cfr-btn:hover::before {
  transform: translateX(100%);
}

.slider-pag--bullets {
  width: auto !important;
  display: flex;
  align-items: center;
}

.slider-pag--bullets span {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  margin-right: 1.2rem;
  background-color: #5a6e72;
}

.slider-pag--bullets span.active {
  background-color: #0b5c93;
  opacity: 1;
}

.slider-pag--bullets span:last-child {
  margin-right: 0;
}

.slider-pag--progressbar {
  position: relative;
  height: 0.3rem !important;
}

.slider-pag--progressbar .swiper-pagination-progressbar-fill {
  background-color: #fff;
}

.section {
  margin-bottom: 4rem;
  padding: 6.4rem 0;
}

.section:last-child {
  margin-bottom: 0;
}

.slider-btns {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.slider-next,
.slider-prev {
  width: 4.8rem;
  height: 4.8rem;
  color: inherit;
  transition: color 0.2s;
}

.slider-next.swiper-button-lock,
.slider-prev.swiper-button-lock {
  display: inherit;
}

.slider-next svg,
.slider-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.slider-next:hover,
.slider-prev:hover {
  color: #0b5c93;
}

.slider-next.disabled,
.slider-next.swiper-button-disabled,
.slider-prev.disabled,
.slider-prev.swiper-button-disabled {
  opacity: 0.2;
}

.brc {
  margin-top: 4rem;
  margin-bottom: 4rem;
  color: #5a6e72;
  font-size: 1.8rem;
  font-weight: 500;
}

.brc__inner {
  display: flex;
  flex-wrap: wrap;
}

.brc li {
  display: inline-flex;
  align-items: center;
  margin-right: 0.8rem;
}

.brc li svg {
  width: 1.6rem;
  height: 1.6rem;
  -o-object-fit: contain;
  object-fit: contain;
  margin-left: 0.8rem;
}

.brc li:last-child {
  color: #0b5c93;
  font-weight: 600;
  margin-right: 0;
  pointer-events: none;
}

.brc li:last-child svg {
  display: none;
}

.pag {
  display: flex;
  flex-wrap: wrap;
}

.pag__link {
  min-width: 3.2rem;
  height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  border-radius: 0.5rem;
  color: #5a6e72;
  background-color: #fff;
}

.pag__link.current {
  color: #fff;
  background-color: #0b5c93;
  pointer-events: none;
}

.pag__link:hover {
  background-color: #eef3ef;
}

.social {
  display: inline-flex;
  align-items: center;
}

.social__item {
  width: 3.2rem;
  height: 3.2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 1.6rem;
}

.social__item:last-child {
  margin-right: 0;
}

.social__item svg {
  width: 98%;
  height: 98%;
  -o-object-fit: contain;
  object-fit: contain;
}

.social__item .bg {
  color: #5a6e72;
  transition: color 0.3s;
}

.social__item--instagram:hover .bg {
  color: #f00073;
}

.social__item--youtube:hover .bg {
  color: #f00000;
}

.social__item--whatsapp:hover .bg {
  color: #25d366;
}

.social__item--telegram:hover .bg {
  color: #08c;
}

.social--header .social__item {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 0.8rem;
}

.line-top {
  position: relative;
  padding-top: 0.9em;
  line-height: 1.2;
}

.line-top::before {
  content: "";
  display: inline-block;
  height: 0.3rem;
  width: 18rem;
  border-radius: 0.1rem;
  background-color: #0b5c93;
  position: absolute;
  left: 0;
  top: 0;
}

.scroll-up {
  position: fixed;
  bottom: 2rem;
  right: 0;
  width: 100%;
  z-index: 90;
  transform: translateY(14rem);
  transition: transform 0.3s;
}

.scroll-up.down {
  transform: translateY(0);
}

.scroll-up__inner {
  height: 0;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.scroll-up__btn {
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 100%;
  background-color: #0b5c93;
  color: #fff;
  padding: 1.6rem;
}

.scroll-up__btn svg {
  width: 4rem;
  height: 4rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.scroll-up__btn:hover {
  background-color: #3f7e4a;
}

.sort {
  font-size: 1.8rem;
}

.sort__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.sort__label {
  display: inline-block;
  width: auto;
  height: auto;
  border: none;
}

.sort__label span {
  display: inline-block;
  font-weight: 500;
  line-height: 1.333;
  color: #5a6e72;
  padding: 1rem 2.4rem;
  background-color: #020e20;
  border-radius: 4.8rem;
  cursor: pointer;
  transition-property: background, color;
  transition-duration: 0.2s;
}

.sort__label:hover span {
  color: #fff;
  background-color: #3f7e4a;
}

.sort__label input:active + span,
.sort__label input:focus + span {
  background-color: #2e5c36;
}

.sort__label input:checked + span {
  color: #fff;
  font-weight: 700;
  background-color: #0b5c93;
}

.check-group__list {
  display: flex;
  flex-direction: column;
}

.check-group__item {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 1.6rem;
  font-weight: 500;
}

.check-group__item:last-child {
  margin-bottom: 0;
}

.check-group__item span {
  width: 2.1rem;
  height: 2.1rem;
  flex-shrink: 0;
  border-radius: 0.4rem;
  border: 1px solid #5a6e72;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 110%;
  margin-right: 0.8rem;
}

.check-group__item input:checked + span {
  border-color: #0b5c93;
  background-color: #0b5c93;
  background-image: url(../../../../../../local/templates/СleanLife/img/tick-square.svg);
}

.select {
  display: inline-block;
  position: relative;
}

.select svg {
  width: 2.4rem;
  height: 2.4rem;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  z-index: 3;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 5.6rem;
  padding: 0.8rem 1.6rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  border-radius: 0.8rem;
  border: 1px solid #020e20;
  position: relative;
  z-index: 2;
  padding-right: 4.3rem;
  cursor: pointer;
}

.select select:active,
.select select:focus,
.select select:focus-visible {
  outline: #0b5c93 auto 1px;
}

.select select::-ms-expand {
  display: none;
}

.select--full,
.select--full select {
  width: 100%;
}

.radio-group__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-bottom: 1rem;
}

.radio-group__item {
  flex-shrink: 0;
  display: inline-block;
  cursor: pointer;
}

.radio-group__item[disabled="true"] {
  opacity: 0.5;
  cursor: default;
}

.radio-group__item span {
  width: 4.8rem;
  height: 4.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.radio-group__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.radio-group__item input:checked + span {
  width: 5.6rem;
  height: 5.6rem;
  border: 2px solid #0b5c93;
}

.radio-group__item input:checked + span img {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}

.radio-group__value {
  font-size: 1.6rem;
  color: #5a6e72;
}

.radio-group__value span {
  font-weight: 500;
  color: #0b5c93;
}

.exchange {
  margin-bottom: 2.4rem;
}

.exchange__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem;
  border-radius: 0.8rem;
  background-color: #020e20;
  margin-bottom: 1rem;
}

.exchange__inner:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}

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

.exchange__radios label {
  display: inline-flex;
  align-items: center;
  margin-right: 0.4rem;
  cursor: pointer;
}

.exchange__radios span {
  border-radius: 0.6rem;
  padding: 0.8rem 1.6rem;
  opacity: 0.4;
  font-weight: 600;
  transition: opacity 0.2s;
}

.exchange__radios span:hover {
  opacity: 1;
}

.exchange__radios input:checked + span {
  background-color: #fff;
  opacity: 1;
}

.exchange__value {
  color: #0b5c93;
  font-weight: 600;
  padding-right: 0.8rem;
}

.exchange__subtitle {
  font-size: 1.4rem;
  color: #5a6e72;
}

.exchange__subtitle:first-child {
  font-size: 1.2rem;
}

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.preloader.index {
  background-color: #000;
}

.preloader.hide {
  animation-name: preloaderHide;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}

.preloader svg {
  width: 5.6rem;
  height: 5.6rem;
  animation-name: preloader, preloaderColor;
  animation-iteration-count: infinite, infinite;
  animation-duration: 4s, 7s;
}

@keyframes preloaderColor {
  0%,
  100%,
  32%,
  64% {
    color: #0b5c93;
  }

  16%,
  48%,
  80% {
    color: #5a6e72;
  }
}

@keyframes preloader {
  0% {
    transform: rotate(0) scale(1);
  }

  25% {
    transform: rotate(90deg) scale(1.2);
  }

  50% {
    transform: rotate(180deg) scale(1);
  }

  75% {
    transform: rotate(270deg) scale(1.2);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes preloaderHide {
  0% {
    opacity: 1;
  }

  75% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    display: none;
    z-index: -100;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: auto;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem 0;
  z-index: -100;
  opacity: 0;
}

.modal.hide {
  animation-name: modalHide;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
}

.modal.active {
  animation-name: modalShow;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
}

.modal__inner {
  margin: auto;
  position: relative;
}

.modal__close {
  position: absolute;
  right: 3.2rem;
  top: 3.2rem;
  top: 4.8rem;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  border: none;
  background-color: #020e20;
  padding: 1.4rem;
  border-radius: 100%;
}

.modal__close svg {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.modal__content {
  position: relative;
  z-index: 2;
}

.modal--preview .modal__close {
  left: 0;
  top: 0;
  right: auto;
  transform: translateX(-3.4rem);
}

.modal--preview .modal__content::before {
  content: "";
  display: block;
  position: absolute;
  right: calc((100vw - 100%) / -2);
  top: 0;
  background-color: #fff;
  width: 50vw;
  height: 100%;
}

@keyframes modalShow {
  0% {
    opacity: 0;
  }

  100%,
  75% {
    opacity: 1;
  }
}

@keyframes modalHide {
  0% {
    opacity: 1;
  }

  75% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    display: none;
    z-index: -100;
  }
}

.card {
  border-radius: 0.8rem;
  box-shadow: 0 0.4rem 1.7rem 0 rgba(26, 54, 98, 0.05);
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.card__img img {
  width: 100%;
  aspect-ratio: 16/11;
  -o-object-fit: contain;
  object-fit: contain;
}

.card__stock {
  padding: 1rem 3.2rem;
  font-size: 1.6rem;
  position: absolute;
  top: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(0.8rem);
  backdrop-filter: blur(0.8rem);
}

.card__content {
  padding: 1.6rem 2.4rem 3.2rem;
  position: relative;
}

.card__tags {
  position: absolute;
  right: 0.8rem;
  top: 0;
  display: flex;
  flex-wrap: wrap;
}

.card__tag {
  padding: 0.2rem 1.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7;
  border-radius: 0 0 0.8rem 0.8rem;
  color: #fff;
  background: #cba135;
  margin-right: 0.8rem;
}

.card__tag--bestseller {
  background: #cba135;
}

.card__tag--hot {
  background: #b92525;
}

.card__tag--new {
  background: #006bce;
}

.card__top {
  margin-bottom: 1.6rem;
}

.card__type {
  font-size: 1.4rem;
  color: #5a6e72;
  margin-bottom: 0.4rem;
}

.preview__grey_card {
  font-size: 1.4rem;
  font-weight: 500;
  color: #5a6e72;
}

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

.card__color-image {
  max-width: 25px;
  margin-left: 1rem;
}

.card__name {
  font-size: 2.4rem;
  font-weight: 700;
}

.card__bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card__price {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.main-banner {
  position: relative;
  color: #fff;
}

.main-banner__bg {
  height: 108rem;
  position: relative;
  z-index: 1;
  background-color: #000;
}

.main-banner__bg img,
.main-banner__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.main-banner__bg video + img {}

.main-banner__bg::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
}

.main-banner__inner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  height: 108rem;
}

.main-banner__content {
  height: 108rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.main-banner__title {
  font-size: 9.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12rem;
}

.main-banner__title--sp,
.main-banner__title--tab {
  display: none;
}

.main-banner__bot-wrap {
  height: 35rem;
}

.main-banner__bot {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3.2rem 2.4rem;
  background: rgba(23, 28, 29, 0.8);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 2.4rem;
  box-shadow: 0 0.4rem 1.2rem 0 rgba(0, 0, 0, 0.15);
}

.main-banner__suptitle {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.main-banner__text {
  font-size: 2rem;
  font-weight: 500;
}

.main-banner__control {
  position: absolute;
  bottom: 38.3rem;
  width: 100%;
  z-index: 3;
}

.main-banner__pag {
  margin-top: 1.5rem;
}

.main-banner__pag .swiper-pagination-progressbar {
  background-color: rgba(255, 255, 255, 0.2);
}

.main-banner__thumbs {
  display: none;
}

.text-block {
  text-align: center;
  position: relative;
  z-index: 5;
  background-color: #fff;
  border-radius: 1.6rem;
  margin-top: -1.6rem;
  box-shadow: 0 0.4rem 1.7rem 0 rgba(26, 54, 98, 0.05);
}

.text-block__suptitle {
  color: #0b5c93;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.text-block__title {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 112.5%;
  max-width: 79.2rem;
  margin: 0 auto;
  margin-bottom: 2.4rem;
}

.text-block__text {
  font-size: 2rem;
  font-weight: 500;
  max-width: 99.6rem;
  margin: 0 auto;
}

.car-slider__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.car-slider__slider {
  max-width: 130.2rem;
  margin: 0 auto;
  filter: drop-shadow(0 0.4rem 1.7rem rgba(26, 54, 98, 0.05));
}

.car-slider .swiper-slide {
  padding: 10rem 2rem 8rem;
}

.car-slider .swiper-slide.swiper-slide-active {
  transform: scale(1.15);
  position: relative;
  z-index: 2;
}

.car-slider .card {
  box-shadow: none;
}

.car-slider__bot {
  display: flex;
  justify-content: center;
  align-items: center;
}

.car-slider__bot .btn {
  margin-right: 1.6rem;
}

.car-slider__bot .btn:last-child {
  margin-right: 0;
}

.info-block {
  padding: 8rem 0;
}

.info-block__inner {
  display: grid;
  grid-template-columns: 9726fr 20000fr;
  grid-gap: 2.4rem;
}

.info-block__left {
  height: 31.4rem;
  border-radius: 1.6rem;
  overflow: hidden;
}

.info-block__left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.info-block__right {
  padding: 3.2rem 2.4rem;
  background-color: #020e20;
  border-radius: 1.6rem;
}

.info-block__title {
  margin-bottom: 2.4rem;
}

.info-block__text {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 2.4rem;
}

.info-block__btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.info-block__link {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0b5c93;
  text-decoration: underline;
}

.info-block__tel {
  border: 2px solid #0b5c93;
}

.why-block {
  padding: 8rem 0;
  background-color: #020e20;
}

.why-block__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2.4rem;
  margin-bottom: 4rem;
}

.why-block__subtitle {
  font-size: 2rem;
  font-weight: 500;
}

.why-block__list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 2.4rem;
}

.why-block__item {
  padding: 3.4rem 2.4rem 4.6rem;
  background-color: #fff;
  border-radius: 1.6rem;
  display: flex;
  justify-content: space-between;
}

.why-block__item:nth-child(4n + 1) {
  grid-column: 1/8;
}

.why-block__item:nth-child(4n + 2) {
  grid-column: 8/13;
}

.why-block__item:nth-child(4n + 3) {
  grid-column: 1/6;
}

.why-block__item:nth-child(4n + 4) {
  grid-column: 6/13;
}

.why-block__ico {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 100%;
  background-color: #0b5c93;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.why-block__ico img,
.why-block__ico svg {
  width: 3.2rem;
  height: 3.2rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.why-block__title {
  margin-bottom: 2.4rem;
}

.about {
  padding: 8rem 0;
}

.about:first-child {
  padding-top: 1.6rem;
}

.about__title {
  margin-bottom: 2.4rem;
}

.about__subtitle {
  color: #0b5c93;
  font-weight: 600;
  margin-bottom: 2.4rem;
}

.about__text {
  margin-bottom: 3.2rem;
}

.about__video {
  width: 100%;
  margin-bottom: 2.4rem;
  border-radius: 1.6rem;
  overflow: hidden;
}

.about__video video {
  display: block;
  width: 100%;
}

.about__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-row-gap: 2rem;
}

.about__item {
  border-left: 1px solid #020e20;
  padding-left: 2.4rem;
}

.about__item:nth-child(4n + 1) {
  padding-left: 0;
  border: none;
}

.about__k {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about__v {
  font-size: 1.8rem;
  font-weight: 500;
}

.work__top {
  margin-bottom: 4rem;
}

.work__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2.4rem;
  margin-bottom: 3.2rem;
}

.work__item {
  display: flex;
  flex-direction: column;
}

.work__img {
  padding: 0 3.6rem;
  position: relative;
  z-index: 2;
}

.work__img img {
  aspect-ratio: 16/10.9;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 0.4rem 1.7rem 0 rgba(26, 54, 98, 0.05);
}

.work__content {
  flex-grow: 1;
  padding: 9rem 2.4rem 2rem;
  border-radius: 1.6rem;
  background-color: #020e20;
  margin-top: -6.6rem;
  position: relative;
  z-index: 1;
}

.work__title {
  margin-bottom: 1.6rem;
}

.work__progress {
  width: 100%;
  border-radius: 0.8rem;
  background-color: #f3f9f4;
  margin-bottom: 2.4rem;
}

.work__bar {
  display: block;
  transition: width 0.3s;
  background-color: #0b5c93;
  height: 0.8rem;
  border-radius: 0.8rem;
  width: 0;
}

.work__time {
  text-align: right;
}

.work__key {
  display: none;
}

@keyframes key {
  0%,
  100% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(50deg);
  }
}

.mark-slider {
  padding: 8rem 0;
}

.mark-slider__top {
  margin-bottom: 4rem;
}

.mark-slider__inner {
  color: #fff;
  padding: 3.2rem 2.4rem;
  border-radius: 1.6rem;
  background: linear-gradient(93deg, #010d1f 56.08%, #2d3739 71.71%);
}

.mark-slider .slider-pag {
  margin-bottom: 1.1rem;
}

.mark-slider__slider-wrap {
  overflow: hidden;
  width: calc(100% + 1rem);
  position: relative;
  left: -0.5rem;
  padding: 0 3rem;
}

.mark-slider__slider {
  padding: 5rem 0 3.5rem;
  overflow: visible;
}

.mark-slider .swiper-slide {
  padding: 2.4rem 3.2rem;
  border-radius: 1.6rem;
  background-color: #fff;
  transition: transform 0.3s;
  transform: translateX(-2.4rem);
}

.mark-slider .swiper-slide img {
  transition: transform 0.3s;
}

.mark-slider .swiper-slide.swiper-slide-active {
  transform: scale(1.2);
}

.mark-slider .swiper-slide.swiper-slide-active img {
  transform: scale(1.1);
}

.mark-slider .swiper-slide.swiper-slide-active ~ .swiper-slide {
  transform: translateX(2.4rem);
}

.mark-slider__btns {
  display: flex;
  justify-content: center;
}

.contacts:first-child {
  padding-top: 1.6rem;
}

.contacts__top {
  margin-bottom: 4rem;
}

.contacts__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2.4rem;
}

.contacts__map {
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
}

.contacts__map #map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.contacts__title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 3.2rem;
}

.contacts__tel {
  margin-bottom: 0.8rem;
}

.contacts__graf {
  font-size: 2rem;
  font-weight: 500;
  color: #5a6e72;
  opacity: 0.6;
  margin-bottom: 3.2rem;
}

.contacts__mail-soc {
  display: flex;
  align-items: center;
  margin-bottom: 3.2rem;
}

.contacts__email {
  margin-right: 3rem;
  padding-bottom: 0.3em;
}

.contacts__social {
  color: #fff;
}

.catalog {
  margin-bottom: 18.8rem;
}

.catalog__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.catalog__filter {
  margin-bottom: 4rem;
}

.catalog__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
}

.catalog__footer {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.catalog__footer .btn {
  min-width: 23rem;
}

.catalog__conf-footer {
  display: none;
}

.preview {
  position: relative;
  z-index: 5;
}

.preview__inner {
  padding: 4rem 0 4.8rem 4.4rem;
  background-color: #fff;
  border-radius: 1.6rem;
}

.preview__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.preview__top-btns {
  display: flex;
  align-items: center;
  width: calc(45.4% - 2rem);
}

.preview__top-btns button {
  margin-left: 1.6rem;
}

.preview__mid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.preview__left {
  width: calc(55% - 2rem);
}

.preview__right {
  width: calc(45.4% - 2rem);
}

.preview__slider {
  margin-bottom: 0.8rem;
}

.preview__slider .swiper-slide {
  aspect-ratio: 1.47/1;
}

.preview__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1.6rem;
  overflow: hidden;
}

.preview__thumbs .swiper-slide {
  aspect-ratio: 1.49/1;
}

.preview__thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.8rem;
  overflow: hidden;
}

.preview__thumbs .swiper-slide.swiper-slide-thumb-active {
  border: solid #0b5c93;
  padding: 0.2rem;
  border-radius: 0.8rem;
}

.preview__control {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 1.6rem;
}

.preview__control .swiper-pagination-fraction {
  width: auto;
  color: #5a6e72;
  font-size: 1.8rem;
  font-weight: 700;
}

.preview__control .swiper-pagination-current {
  color: #000;
}

.preview__control .slider-next,
.preview__control .slider-prev {
  width: 3.2rem;
  height: 3.2rem;
}

.preview__price-wrap {
  min-width: 100%;
  max-width: 100%;
  margin-top: 2.4rem;
  order: 2;
}

.preview__grey {
  font-size: 1.6rem;
  font-weight: 500;
  color: #5a6e72;
  margin-bottom: 0.8rem;
}

.preview__char-wrap {
  padding-top: 2.4rem;
  margin-top: 2.4rem;
  border-top: 1px solid #020e20;
}

.preview__char-title {
  margin-bottom: 2.4rem;
}

.preview__char-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2.4rem 1.6rem;
}

.preview__value {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.preview__descr-title {
  margin-bottom: 1.6rem;
}

.preview__descr-content {
  font-size: 2rem;
  font-weight: 500;
}

.preview__feedback--mob,
.preview__feedback--tab,
.preview__tel--mob,
.preview__tel--tab {
  display: none;
}

.feedback {
  position: relative;
  z-index: 5;
}

.feedback__top {
  text-align: center;
  margin-bottom: 4.4rem;
}

.feedback__inner {
  padding: 5.2rem 4.8rem;
  background-color: #fff;
  border-radius: 1.6rem;
  width: 76.8rem;
}

.feedback .form__actions .btn {
  min-width: 23rem;
}

.police {
  padding-bottom: 20rem;
}

.police h1 {
  margin-bottom: 0.8em;
}

.police h2 {
  margin-bottom: 0.1em;
}

.police h3 {
  margin-bottom: 0.8em;
}

.police p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

.police a {
  text-decoration: underline;
}

.police .p {
  margin-bottom: 3.7em;
}

.police .p:last-child {
  margin-bottom: 0;
}

.cars-info {
  margin-top: 9.6rem;
  padding-bottom: 21.7rem;
}

.cars-info__title {
  margin-bottom: 3.2rem;
}

.cars-info__text {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.cars-info__video {
  margin-bottom: 12rem;
}

.cars-info__video video {
  width: 100%;
  border-radius: 1.6rem;
  overflow: hidden;
}

.cars-info__item {
  margin-bottom: 12rem;
}

.cars-info__item:last-child {
  margin-bottom: 0;
}

.cars-info__item-in {
  display: flex;
  justify-content: space-between;
}

.cars-info__img {
  flex-shrink: 0;
  width: 69rem;
  border-radius: 1.6rem;
  overflow: hidden;
  margin-left: 2.3rem;
}

.cars-info__img img {
  display: block;
}

.cars-info__list .cars-info__item:nth-child(even) .cars-info__item-in {
  flex-direction: row-reverse;
}

.cars-info__list .cars-info__item:nth-child(even) .cars-info__img {
  margin-right: 2.3rem;
  margin-left: 0;
}

.error-page__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
  min-height: 80vh;
}

.error-page__img {
  width: 46.3rem;
  margin-bottom: 4rem;
}

.error-page__text {
  color: #5a6e72;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 4rem;
}

.error-page .show-on-mob {
  display: none;
}

.cookies {
  position: fixed;
  left: 2.4rem;
  bottom: 4rem;
  background-color: #0b5c93;
  color: #fff;
  z-index: 999;
  font-size: 16px;
  padding: 1.2rem 2.4rem;
  max-width: calc(100vw - 4.8rem);
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.cookies.hidden {
  display: none;
}

.cookies__btn {
  margin-left: 20px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 8px;
  padding: 8px;
}

.cookies__text a {
  text-decoration: underline;
}

.cookies__text a:hover {
  text-decoration: none;
}

@media (max-width: 1440px) {
  html {
    font-size: 0.694vw;
  }

  .form__item {
    padding: 1.2rem 0.8rem;
  }

  .header__top {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .header__bot {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .footer__logo {
    margin-bottom: 0.9rem;
  }

  .footer__uls {
    padding-top: 1.1rem;
  }

  .footer__tel {
    font-size: 2.8rem;
  }

  .footer__contacts {
    padding-top: 1rem;
  }

  .footer__octo {
    margin-top: 2.3rem;
  }

  .h1 {
    font-size: 3.6rem;
  }

  .h2 {
    font-size: 3rem;
  }

  .h3 {
    font-size: 2rem;
  }

  .tbb,
  .tbm,
  .tbr,
  .tbsm {
    font-size: 1.8rem;
  }

  .cfr-btn {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .cfr-btn__text {
    padding: 1.2rem 3.2rem;
  }

  .cfr-btn__ico {
    min-width: 4.8rem;
  }

  .section {
    padding: 5.6rem 0;
  }

  .social__item {
    width: 3.2rem;
    height: 3.2rem;
    margin-right: 1.6rem;
  }

  .modal__close {
    top: 4rem;
    right: 3.2rem;
    padding: 1.1rem;
  }

  .modal__close svg {
    width: 1rem;
    height: 1rem;
  }

  .modal--preview .modal__close {
    left: 0;
    top: 0;
    right: auto;
    transform: translateX(-1.4rem);
  }

  .modal--preview .modal__content::before {
    content: "";
    display: block;
    position: absolute;
    right: calc((100vw - 100%) / -2);
    top: 0;
    background-color: #fff;
    width: 50vw;
    height: 100%;
  }

  .main-banner__bg,
  .main-banner__content,
  .main-banner__inner {
    height: 82.9rem;
  }

  .main-banner__bot-wrap {
    height: 25rem;
  }

  .main-banner__control {
    bottom: 29rem;
  }

  .main-banner__title {
    font-size: 7.2rem;
  }

  .main-banner__text {
    font-size: 1.6rem;
  }

  .text-block {
    padding: 5.6rem 0;
  }

  .text-block__title {
    font-size: 3.6rem;
  }

  .text-block__text {
    font-size: 1.8rem;
  }

  .car-slider__slider {
    max-width: 123rem;
    margin: 0 auto;
    filter: drop-shadow(0 0.4rem 1.7rem rgba(26, 54, 98, 0.05));
  }

  .car-slider .swiper-slide {
    padding: 6.3rem 2rem;
  }

  .info-block {
    padding: 6.4rem 0;
  }

  .why-block {
    padding: 7.9rem 0;
  }

  .why-block__subtitle {
    font-size: 1.6rem;
  }

  .why-block__item {
    padding: 4rem 2.4rem 4.6rem;
    border-radius: 1.6rem;
    position: relative;
  }

  .why-block__ico {
    width: 6.4rem;
    height: 6.4rem;
    right: 2.4rem;
    top: 3.5rem;
  }

  .why-block__ico img,
  .why-block__ico svg {
    width: 3.2rem;
    height: 3.2rem;
  }

  .why-block__title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }

  .why-block__text {
    font-size: 1.8rem;
  }

  .about__title {
    margin-bottom: 1.5rem;
  }

  .about__subtitle {
    margin-bottom: 1rem;
  }

  .about__k {
    font-size: 2.8rem;
    margin-bottom: 0.6rem;
  }

  .about__v {
    font-size: 1.6rem;
  }

  .work__top {
    margin-bottom: 3.6rem;
  }

  .work__title {
    font-size: 2.8rem;
  }

  .work__text {
    line-height: 1.12;
    font-size: 1.6rem;
  }

  .work__list {
    margin-bottom: 2.4rem;
  }

  .work__time {
    font-size: 3.6rem;
  }

  .mark-slider__top {
    margin-bottom: 3.6rem;
  }

  .mark-slider__text {
    font-size: 1.6rem;
  }

  .contacts__top {
    margin-bottom: 2.6rem;
  }

  .contacts__title {
    font-size: 2.4rem;
  }

  .preview__descr-content {
    font-size: 1.8rem;
  }

  .feedback__top {
    margin-bottom: 3.2rem;
  }

  .feedback__top .h2 {
    font-size: 2.8rem;
  }

  .feedback__inner {
    padding: 4rem 3.2rem;
    width: 54rem;
  }

  .police {
    padding-bottom: 15rem;
  }

  .cars-info__text,
  .police p {
    font-size: 1.8rem;
  }
}

@media (max-width: 1023px) {
  html {
    font-size: 1.302vw;
  }

  .form__inner {
    margin: 0 -0.5rem;
  }

  .form__item {
    padding: 1.2rem 0.5rem;
  }

  .form__item--33 {
    width: 50%;
  }

  .alert__item {
    margin-left: 0.8rem;
    margin-right: 0.8rem;
  }

  .header__feedback-ico {
    display: inline-block;
    padding: 1rem;
    border-radius: 100%;
    background-color: #0b5c93;
  }

  .header__feedback-ico svg {
    width: 1.6rem;
    height: 1.6rem;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .header .feedback-btn--header {
    display: none;
  }

  .footer {
    padding-top: 3.2rem;
    padding-bottom: 8.2rem;
  }

  .footer__inner {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
    padding-bottom: 7.2rem;
  }

  .footer__logo {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
  }

  .footer__grey {
    font-size: 1.4rem;
  }

  .footer__address {
    margin-bottom: 1.6rem;
  }

  .footer__uls {
    display: block;
    grid-column: 2/3;
  }

  .footer__ul a {
    font-size: 1.6rem;
  }

  .footer__contacts {
    grid-column: 3/4;
  }

  .footer__tel {
    font-size: 2rem;
    margin-bottom: 0.4rem;
  }

  .footer__bot {
    grid-gap: 2rem;
  }

  .footer__octo {
    margin-top: 1.6rem;
  }

  .osmi-container {
    max-width: none;
    width: 100%;
  }

  .h1 {
    font-size: 3.6rem;
  }

  .h2 {
    font-size: 2.4rem;
  }

  .h3 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 1.2rem 3.2rem;
  }

  .btn--ghost {
    font-size: 1.6rem;
  }

  .btn--tab-full,
  .feedback-btn--tab-full {
    width: 100%;
    max-width: 34.4rem;
  }

  .only-pc {
    display: none;
  }

  .slider-pag--bullets {
    width: auto !important;
    display: flex;
    align-items: center;
  }

  .slider-pag--bullets span {
    width: 1rem;
    height: 1rem;
    display: inline-block;
    margin-right: 1.2rem;
    background-color: #5a6e72;
  }

  .slider-pag--bullets span.active {
    background-color: #0b5c93;
    opacity: 1;
  }

  .slider-pag--bullets span:last-child {
    margin-right: 0;
  }

  .slider-pag--progressbar {
    height: 0.2rem !important;
  }

  .section {
    padding: 5.6rem 0;
  }

  .slider-next,
  .slider-prev {
    width: 3.2rem;
    height: 3.2rem;
  }

  .brc {
    margin-top: 3.2rem;
    margin-bottom: 4rem;
  }

  .pag {
    display: flex;
    flex-wrap: wrap;
  }

  .social__item {
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 0.8rem;
  }

  .scroll-up {
    bottom: 2.4rem;
  }

  .scroll-up__btn {
    padding: 1.2rem;
  }

  .scroll-up__btn svg {
    width: 3.2rem;
    height: 3.2rem;
  }

  .sort {
    font-size: 1.6rem;
  }

  .modal__close {
    top: 4rem;
    right: 3.2rem;
    padding: 1.1rem;
  }

  .modal__close svg {
    width: 1rem;
    height: 1rem;
  }

  .modal--preview .modal__close {
    left: auto;
    right: 3.2rem;
    top: 4rem;
    transform: translateX(0);
  }

  .modal--preview .modal__content::before {
    display: none;
  }

  .card__content {
    padding: 1.6rem 1.6rem 2.5rem;
  }

  .card__tags {
    position: absolute;
    right: 0.8rem;
    top: auto;
    bottom: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  .card__tag {
    padding: 0.2rem 1.4rem;
    font-size: 1.2rem;
    border-radius: 0.8rem 0.8rem 0 0;
    margin-right: 0.4rem;
  }

  .main-banner {
    padding-top: 3.2rem;
  }

  .main-banner__bg,
  .main-banner__inner {
    height: 43.4rem;
  }

  .main-banner__slider .swiper-slide {
    height: auto;
    background-color: #fff;
  }

  .main-banner__content {
    height: 43.4rem;
  }

  .main-banner__title {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 2.4rem;
    display: none;
    color: #010d1f;
  }

  .main-banner__title--tab {
    display: block;
  }

  .main-banner__bot-wrap {
    height: 15.2rem;
  }

  .main-banner__bot {
    padding: 1.6rem;
    border-radius: 1.6rem;
  }

  .main-banner__suptitle {
    font-size: 1.2rem;
  }

  .main-banner__text {
    font-size: 1.6rem;
    font-weight: 500;
  }

  .main-banner__right {
    display: none;
  }

  .main-banner__control {
    bottom: 17.6rem;
  }

  .text-block {
    padding: 5.6rem 0;
    box-shadow: 0 2px 12px 5px rgba(26, 54, 98, 0.05);
  }

  .text-block__suptitle {
    font-size: 1.4rem;
  }

  .text-block__title {
    font-size: 3.6rem;
    max-width: 70.8rem;
  }

  .text-block__text {
    font-size: 1.4rem;
    max-width: 70.8rem;
  }

  .car-slider__slider {
    max-width: 100%;
  }

  .car-slider .swiper-slide {
    padding: 10rem 3rem;
    transition: transform 0.3s;
    position: relative;
    z-index: 3;
  }

  .car-slider .card {
    margin: 0 auto;
  }

  .info-block {
    padding: 6.4rem 0;
  }

  .info-block__inner {
    grid-template-columns: 3fr 5fr;
    grid-gap: 2rem;
  }

  .info-block__left {
    height: 21.2rem;
    border-radius: 1.2rem;
  }

  .info-block__right {
    padding: 1.6rem;
    border-radius: 1.2rem;
  }

  .info-block__title {
    margin-bottom: 1.6rem;
  }

  .info-block__text {
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
  }

  .info-block__link {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }

  .info-block__btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-block {
    padding: 6.4rem 0;
  }

  .why-block__top {
    grid-template-columns: 5fr 3fr;
    grid-gap: 1rem;
    margin-bottom: 2.4rem;
  }

  .why-block__subtitle {
    font-size: 1.4rem;
  }

  .why-block__list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem 1.6rem;
  }

  .why-block__item {
    padding: 1.6rem 1.7rem 2rem;
    border-radius: 1.2rem;
    position: relative;
  }

  .why-block__item:nth-child(4n + 1) {
    grid-column: auto;
  }

  .why-block__item:nth-child(4n + 2) {
    grid-column: auto;
  }

  .why-block__item:nth-child(4n + 3) {
    grid-column: auto;
  }

  .why-block__item:nth-child(4n + 4) {
    grid-column: auto;
  }

  .why-block__ico {
    width: 3.2rem;
    height: 3.2rem;
    position: absolute;
    right: 1.7rem;
    top: 1.6rem;
  }

  .why-block__ico img,
  .why-block__ico svg {
    width: 1.6rem;
    height: 1.6rem;
  }

  .why-block__title {
    margin-bottom: 1.6rem;
    padding-right: 3.5rem;
  }

  .why-block__text {
    font-size: 1.4rem;
  }

  .about {
    padding: 6.4rem 0;
  }

  .about:first-child {
    padding-top: 0rem;
  }

  .about__subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.6rem;
  }

  .about__text {
    font-size: 1.4rem;
  }

  .about__video {
    border-radius: 1.2rem;
  }

  .about__list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2.4rem 0;
  }

  .about__item {
    padding-left: 1.6rem;
  }

  .about__item:nth-child(4n + 1) {
    padding-left: 0;
    border: none;
  }

  .about__item:nth-child(2n + 1) {
    padding-left: 0;
    padding-right: 1.6rem;
    border: none;
  }

  .about__k {
    font-size: 2rem;
  }

  .about__v {
    font-size: 1.4rem;
  }

  .work {
    padding: 5.6rem 0;
  }

  .work__top {
    margin-bottom: 2.4rem;
  }

  .work__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 3.2rem;
    margin-bottom: 2.4rem;
  }

  .work__item {
    display: block;
    position: relative;
  }

  .work__img {
    padding: 0;
    position: absolute;
    z-index: 2;
    left: 0;
    top: -1.6rem;
    width: 18.6rem;
  }

  .work__img img {
    border-radius: 1.2rem;
  }

  .work__content {
    width: calc(100% - 1.6rem);
    padding: 2.4rem 1.6rem 3.2rem 18.2rem;
    border-radius: 1.2rem;
    background-color: #020e20;
    margin-top: 0;
    margin-left: 1.6rem;
  }

  .work__title {
    margin-bottom: 0.8rem;
  }

  .work__text {
    font-size: 1.4rem;
  }

  .work__progress {
    width: 100%;
    border-radius: 0.8rem;
    background-color: #f3f9f4;
    margin-bottom: 2.4rem;
  }

  .work__bar {
    height: 0.4rem;
    border-radius: 0.4rem;
  }

  .work__time {
    text-align: right;
  }

  .mark-slider {
    padding: 5.6rem 0;
  }

  .mark-slider__top {
    margin-bottom: 2.4rem;
  }

  .mark-slider__text {
    font-size: 1.4rem;
  }

  .mark-slider .slider-pag {
    margin-bottom: 0.8rem;
  }

  .mark-slider__slider-wrap {
    width: calc(100% + 3.2rem);
    left: -1.6rem;
    padding: 0 3.2rem;
  }

  .mark-slider__slider {
    padding: 3.6rem 0;
  }

  .mark-slider .swiper-slide {
    transform: translateX(-2.6rem);
  }

  .mark-slider .swiper-slide.swiper-slide-active {
    transform: scale(1.22);
  }

  .mark-slider .swiper-slide.swiper-slide-active img {
    transform: scale(1.1);
  }

  .mark-slider .swiper-slide.swiper-slide-active ~ .swiper-slide {
    transform: translateX(2.6rem);
  }

  .contacts {
    padding: 5.6rem 0;
  }

  .contacts:first-child {
    padding-top: 0rem;
  }

  .contacts__top {
    margin-bottom: 2.5rem;
  }

  .contacts__inner {
    display: flex;
    flex-direction: column-reverse;
  }

  .contacts__map {
    margin-top: 3.2rem;
    position: relative;
    height: 35.2rem;
    border-radius: 0.8rem;
  }

  .contacts__map > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .contacts__title {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
  }

  .contacts__tel {
    font-size: 2rem;
  }

  .contacts__graf {
    font-size: 1.6rem;
    margin-bottom: 2.4rem;
  }

  .contacts__mail-soc {
    margin-bottom: 2.4rem;
  }

  .contacts__email {
    font-size: 2rem;
    margin-right: 1.6rem;
  }

  .catalog {
    margin-bottom: 15.6rem;
  }

  .catalog__filter {
    margin-bottom: 2.4rem;
  }

  .catalog__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem 2.4rem;
  }

  .catalog__footer {
    margin-top: 3.2rem;
  }

  .catalog__footer .btn {
    min-width: 16.5rem;
  }

  .preview__inner {
    padding: 4rem 3.2rem;
    border-radius: 0.8rem;
  }

  .preview__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .preview__price-wrap {
    order: 0;
    min-width: 30%;
    max-width: 30%;
    margin-top: 0;
  }

  .preview__top {
    margin-bottom: 2.4rem;
  }

  .preview__top .h2 {
    width: auto;
  }

  .preview__top-btns {
    display: none;
  }

  .preview__mid {
    display: block;
    margin-bottom: 3.2rem;
  }

  .preview__left {
    width: 100%;
    margin-bottom: 3.2rem;
  }

  .preview__right {
    width: 100%;
  }

  .preview__slider {
    margin-bottom: 1.4rem;
  }

  .preview__slider .swiper-slide img {
    border-radius: 0.8rem;
  }

  .preview__control {
    justify-content: center;
  }

  .preview__grey {
    font-size: 1.6rem;
  }

  .preview__char-title {
    margin-bottom: 1.6rem;
  }

  .preview__descr-title {
    margin-bottom: 2.4rem;
  }

  .preview__descr-content {
    font-size: 1.6rem;
  }

  .preview .osmi-container {
    padding: 0;
    max-width: 74rem;
  }

  .preview__feedback--tab,
  .preview__tel--tab {
    display: inline-flex;
  }

  .feedback__top {
    margin-bottom: 3.2rem;
  }

  .feedback__top .h2 {
    font-size: 2.8rem;
  }

  .feedback__inner {
    padding: 4rem 3.2rem;
    border-radius: 0.8rem;
    width: 58rem;
  }

  .police {
    padding-bottom: 5rem;
  }

  .police p {
    font-size: 1.4rem;
  }

  .cars-info {
    margin-top: 5.7rem;
  }

  .cars-info__title {
    margin-bottom: 2.4rem;
  }

  .cars-info__text {
    font-size: 1.4rem;
    margin-bottom: 3.2rem;
  }

  .cars-info__item,
  .cars-info__video {
    margin-bottom: 7.2rem;
  }

  .cars-info__img {
    width: 43.5rem;
    margin-left: 2rem;
  }

  .cars-info__list .cars-info__item:nth-child(even) .cars-info__img {
    margin-right: 2rem;
    margin-left: 0;
  }

  .cookies {
    left: 0.8rem;
    bottom: 0.8rem;
    padding: 1.6rem 1.2rem;
    max-width: calc(100vw - 1.6rem);
  }
}

@media (max-width: 767px) {
  html {
    font-size: 2.778vw;
  }

  .form__inner {
    margin: 0 -0.5rem;
  }

  .form__item {
    padding: 0.6rem 0.5rem;
  }

  .form__item--33,
  .form__item--50 {
    width: 100%;
  }

  .form__input,
  .form__label,
  .form__textarea {
    font-size: 1.4rem;
  }

  .form__actions {
    margin-top: 1.6rem;
    padding-top: 1.6rem;
  }

  .form__police {
    font-size: 1.2rem;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }

  .header.mode-dark {
    background-color: #000;
  }

  .header.mode-dark-mobile .header__top {
    background-color: #010d1f;
  }

  .header__burger {
    display: block;
  }

  .header__top {
    border-bottom: none;
    position: relative;
    z-index: 100;
  }

  .header__bot {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    overflow: auto;
    transform: translateY(-100%);
    transition:
      transform 0.3s,
      opacity 0.3s;
    background-color: #010d1f;
    padding: 1.6rem;
    padding-top: 8rem;
    display: block;
    z-index: 99;
    opacity: 0;
  }

  .header__bot.active {
    transform: translateY(0);
    opacity: 1;
  }

  .header__nav {
    display: block;
    margin-bottom: 2.4rem;
    padding-bottom: 2.4rem;
    border-bottom: 1px solid rgba(90, 110, 114, 0.2);
  }

  .header__nav-list {
    display: block;
  }

  .header__nav-item {
    font-size: 1.6rem;
    margin-right: 0;
    margin-bottom: 2rem;
  }

  .header__nav-item--conf a {
    border-radius: 0;
    padding: 0;
    background-color: transparent;
  }

  .header__nav-item--conf a svg {
    display: none;
  }

  .header__nav-item:last-child {
    margin-bottom: 0;
  }

  .header__contacts--pc {
    display: none;
  }

  .header__contacts--sp {
    display: block;
    margin-bottom: 1.6rem;
    padding-bottom: 10vh;
  }

  .header__contacts .feedback-btn--header {
    display: inline-flex;
    margin-bottom: 2.4rem;
  }

  .header__tel-wrap {
    text-align: left;
    margin-bottom: 1.6rem;
  }

  .header__grey {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.8rem;
  }

  .header__address,
  .header__tel {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
  }

  .header__graf {
    font-size: 1.4rem;
    color: #fff;
  }

  .header__address-wrap {
    text-align: left;
    margin-bottom: 2.4rem;
  }

  .header__feedback-ico {
    display: none;
  }

  .footer {
    padding-top: 2.4rem;
    padding-bottom: 7.2rem;
    text-align: center;
  }

  .footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0.7rem;
    margin-bottom: 1.6rem;
    grid-gap: 0;
    gap: 0;
  }

  .footer__logo {
    margin-bottom: 0.6rem;
  }

  .footer__social {
    margin-bottom: 2.5rem;
  }

  .footer__grey {
    font-size: 1.4rem;
  }

  .footer__address {
    font-weight: 600;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .footer__address br {
    display: none;
  }

  .footer__uls {
    margin-bottom: 1.2rem;
  }

  .footer__ul li {
    margin-bottom: 1.7rem;
    text-align: center;
  }

  .footer__ul:last-child li:last-child {
    margin-bottom: 0;
  }

  .footer__contacts,
  .footer__graf {
    margin-bottom: 1.6rem;
  }

  .footer__tel {
    font-size: 1.6rem;
  }

  .footer__bot {
    grid-gap: 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__bot br {
    display: none;
  }

  .footer__bot .footer__grey {
    font-size: 1.2rem;
    display: block;
  }

  .footer__octo {
    margin-top: 2.4rem;
  }

  .footer__sp-hide {
    display: none;
  }

  .footer__sp-show {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .osmi-container {
    width: 100%;
    padding: 0 1.6rem;
  }

  .h1 {
    font-size: 2rem;
  }

  .h2 {
    font-size: 1.8rem;
  }

  .h3 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 1.2rem 2.4rem;
    line-height: 1.5;
    font-size: 1.6rem;
  }

  .btn--tab-full {
    max-width: none;
  }

  .btn--mob-full {
    width: 100%;
    max-width: none;
  }

  .feedback-btn {
    padding: 1rem 2.4rem;
    font-size: 1.4rem;
  }

  .feedback-btn--tab-full {
    max-width: none;
  }

  .feedback-btn--mob-full {
    width: 100%;
    max-width: none;
  }

  .cfr-btn {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .cfr-btn__text {
    padding: 1.2rem 4rem;
  }

  .cfr-btn__ico {
    min-width: 4.8rem;
  }

  .section {
    margin-bottom: 3.2rem;
    padding: 3.2rem 0;
  }

  .brc {
    font-size: 1.4rem;
    margin-top: 1.6rem;
    margin-bottom: 2.4rem;
  }

  .line-top {
    position: relative;
    padding-top: 0.4em;
    line-height: 1.2;
  }

  .line-top::before {
    height: 0.1rem;
    width: 7.2rem;
  }

  .line-top--big {
    padding-top: 0.65em;
    line-height: 1.14;
  }

  .line-top--big::before {
    height: 0.2rem;
    width: 14rem;
  }

  .scroll-up {
    bottom: 2rem;
  }

  .scroll-up__btn {
    padding: 1rem;
  }

  .scroll-up__btn svg {
    width: 2.4rem;
    height: 2.4rem;
  }

  .sort {
    font-size: 1.4rem;
  }

  .sort__inner {
    gap: 1.2rem;
  }

  .sort__label span {
    padding: 0.7rem 1.6rem;
    border-radius: 4.8rem;
  }

  .check-group__item {
    font-size: 1.4rem;
  }

  .select svg {
    width: 1.6rem;
    height: 1.6rem;
  }

  .select select {
    height: 4.8rem;
    font-size: 1.4rem;
  }

  .radio-group__list {
    margin-bottom: 0.8rem;
  }

  .radio-group__item span {
    width: 4rem;
    height: 4rem;
  }

  .radio-group__item input:checked + span {
    width: 4rem;
    height: 4rem;
  }

  .radio-group__value {
    font-size: 1.4rem;
  }

  .exchange {
    margin-bottom: 2.4rem;
  }

  .exchange__inner {
    display: block;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    margin-bottom: 2.4rem;
  }

  .exchange__radios {
    padding: 0.4rem;
    border-radius: 0.8rem;
    background-color: #020e20;
    margin-bottom: 1rem;
    margin-bottom: 0.8rem;
  }

  .exchange__subtitle,
  .exchange__value {
    font-size: 1.2rem;
  }

  .preloader svg {
    width: 3.2rem;
    height: 3.2rem;
  }

  .modal__close {
    right: 1.6rem;
    top: 2.4rem;
    padding: 0.7rem;
  }

  .modal__close svg {
    width: 1rem;
    height: 1rem;
  }

  .modal--preview .modal__close {
    right: 1.6rem;
    top: 2.4rem;
  }

  .card__stock {
    padding: 0.7rem 2.2rem;
  }

  .card__top {
    margin-bottom: 1rem;
  }

  .card__img img {
    width: 100%;
    aspect-ratio: 16/10.7;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .card__content {
    padding: 1.6rem 1.6rem 1.7rem;
  }

  .card__type {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }

  .card__name,
  .card__price {
    font-size: 1.8rem;
  }

  .main-banner {
    background-color: #000;
    padding-top: 5px;
    padding-bottom: 3.2rem;
    overflow: hidden;
    border-radius: 0 0 0.8rem 0.8rem;
    margin-bottom: 3.2rem;
  }

  .main-banner__title {
    font-size: 2.8rem;
    margin-bottom: 1.6rem;
    display: none;
    color: inherit;
    line-height: 1.15;
  }

  .main-banner__title--tab {
    display: none;
  }

  .main-banner__title--sp {
    display: block;
  }

  .main-banner__bot-wrap {
    height: auto;
  }

  .main-banner__bg {
    width: 26rem;
    height: 16.2rem;
    border-radius: 0.8rem;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 6.4rem;
  }

  .main-banner__bg img,
  .main-banner__bg video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .main-banner__bg video {
    display: none;
  }

  .main-banner__bg video + img {
    display: block;
  }

  .main-banner__bg::after {
    display: none;
  }

  .main-banner__inner {
    height: auto;
    position: static;
  }

 .main-banner__slider {
    margin: 4.8rem 0;
  }

  .main-banner__slider .swiper-slide {
    background-color: #000;
    display: flex;
    flex-direction: column-reverse;
    transform: none;
    height: auto;
  }

  .main-banner__slider .swiper-slide .main-banner__bg {
    display: none;
    transition: transform 0.3s;
    transform: translate(9rem, -1.6rem);
  }

  .main-banner__content {
    height: auto;
  }

  .main-banner__bot {
    display: block;
    -webkit-backdrop-filter: unset;
    backdrop-filter: unset;
    box-shadow: none;
    padding: 0;
    background-color: #000;
  }

  .main-banner__suptitle {
    margin-bottom: 0.6rem;
  }

  .main-banner__text {
    font-size: 1.4rem;
    margin-bottom: 2.1rem;
  }

  .main-banner__right {
    display: block;
  }

  .main-banner__control {
    display: none;
  }

  .main-banner__thumbs {
    display: block;
    width: 100vw;
    position: relative;
    overflow: hidden;
  }

  .main-banner__thumbs .swiper {
    width: 300vw;
    position: relative;
    left: -100vw;
  }

  .main-banner__thumbs .swiper-slide {
    padding: 1.6rem 5rem;
    background-color: transparent;
    transition: transform 0.3s;
  }

  .main-banner__thumbs .swiper-slide img {
    height: 16.2rem;
    width: 100%;
    border-radius: 0.8rem;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .main-banner__thumbs .swiper-slide-prev {
    transform: translate(9rem, -1.6rem);
  }

  .main-banner__thumbs .swiper-slide-next {
    transform: translate(-9rem, -1.6rem);
  }

  .main-banner__thumbs .swiper-slide:first-child:last-child {
    transform: translate(0, 0);
  }

  .text-block {
    padding: 2.4rem 0 4.4rem;
    text-align: left;
    margin-top: 0;
    border-radius: 0.8rem;
  }

  .text-block__suptitle {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .text-block__title {
    font-size: 2rem;
    max-width: 100%;
    margin-bottom: 0;
  }

  .text-block__text {
    display: none;
  }

  .car-slider__top {
    padding-bottom: 2rem;
  }

  .car-slider__slider {
    max-width: 100%;
    width: calc(100% - 1.6rem);
    margin-left: 1.6rem;
    margin-bottom: 1.6rem;
  }

  .car-slider .swiper-slide {
    padding: 0;
    transform: scale(1);
  }

  .car-slider .swiper-slide.swiper-slide-active,
  .car-slider .swiper-slide.swiper-slide-active + .swiper-slide {
    transform: scale(1);
  }

  .car-slider .card {
    width: 100%;
  }

  .car-slider__bot {
    flex-direction: column;
  }

  .car-slider__bot .btn {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .car-slider__bot .btn:first-child {
    padding-right: 3.2rem;
    padding-left: 3.2rem;
  }

  .car-slider__bot .btn:last-child {
    margin-bottom: 0;
  }

  .info-block {
    padding: 3.2rem 0;
  }

  .info-block__inner {
    display: block;
    padding: 1.6rem;
    background-color: #020e20;
    border-radius: 1.2rem;
  }

  .info-block__left {
    height: 19.2rem;
    margin-bottom: 1.6rem;
  }

  

  .info-block__title {
    margin-bottom: 0.8rem;
  }

  .info-block__link {
    font-size: 1.4rem;
  }

  .why-block {
    padding: 6.4rem 0;
    padding-top: 4.4rem;
    background-color: #fff;
  }

  .why-block__top {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }

  .why-block__list {
    display: block;
  }

  .why-block__item {
    background-color: #020e20;
    padding: 1.6rem 1.6rem 2.4rem;
    box-shadow: 0 0.4rem 2.5rem 0 rgba(26, 54, 98, 0.12);
    margin-top: -3rem;
  }

  .why-block__item:first-child {
    margin-top: 0;
  }

  .why-block__item:last-child .why-block__text {
    display: block;
    padding-bottom: 0;
  }

  .why-block__item:hover .why-block__text {
    display: block;
  }

  .why-block__title {
    margin-bottom: 1.6rem;
    padding-right: 3.5rem;
  }

  .why-block__text {
    font-size: 1.4rem;
    padding-bottom: 2rem;
  }

  .about {
    padding: 3.2rem 0;
  }

  .about__title {
    margin-bottom: 1.6rem;
  }

  .about__subtitle {
    margin-bottom: 1rem;
  }

  .about__text {
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
    line-height: 1.15;
  }

  .about__video {
    margin-bottom: 1.6rem;
  }

  .about__list {
    grid-gap: 1.6rem 0;
  }

  .about__k {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }

  .about__v {
    font-size: 1.2rem;
  }

  .work {
    padding: 3.2rem 0;
  }

  .work__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2.4rem 2rem;
    margin-bottom: 0;
  }

  .work__item {
    display: flex;
    flex-direction: column;
  }

  .work__img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 1.6rem;
  }

  .work__img img {
    border-radius: 0.8rem;
  }

  .work__content {
    margin-left: 0;
    width: 100%;
    flex-grow: 1;
    padding: 5rem 0.8rem 1.6rem;
    border-radius: 0.8rem;
    margin-top: -4.1rem;
  }

  .work__title {
    margin-bottom: 0.8rem;
  }

  .work__text {
    font-size: 1.2rem;
    line-height: 1.25;
  }

  .work__progress {
    display: none;
  }

  .work__bar {
    display: block;
    transition: width 0.3s;
    background-color: #0b5c93;
    height: 0.8rem;
    border-radius: 0.8rem;
    width: 0;
  }

  .work__time {
    text-align: left;
    font-size: 2.8rem;
    margin-top: 1.6rem;
  }

  .work__time--bot {
    display: none;
  }

  .work__key {
    display: block;
    padding-top: 5.4rem;
  }

  .work__key svg {
    width: 6.4rem;
    height: 6.4rem;
    -o-object-fit: contain;
    object-fit: contain;
    animation-name: key;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  }

  .mark-slider {
    padding: 3.2rem 0;
    padding-bottom: 5.6rem;
  }

  .mark-slider__inner {
    padding: 1.6rem;
  }

  .mark-slider__slider-wrap {
    width: 100vw;
    left: -3.2rem;
    padding: 0;
  }

  .mark-slider__slider {
    padding: 4rem 0 2.4rem;
  }

  .mark-slider .swiper-slide {
    padding: 1.1rem 0.4rem;
    transform: translateX(-2.2rem);
  }

  .mark-slider .swiper-slide.swiper-slide-active {
    transform: scale(1.27);
  }

  .mark-slider .swiper-slide.swiper-slide-active img {
    transform: scale(1);
  }

  .mark-slider .swiper-slide.swiper-slide-active ~ .swiper-slide {
    transform: translateX(2.2rem);
  }

  .contacts {
    padding: 3.2rem 0;
    padding-bottom: 4rem;
  }

  .contacts__map {
    margin-top: 0rem;
    position: relative;
    height: 35.2rem;
  }

  .contacts__map > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .contacts__tel,
  .contacts__title {
    font-size: 1.6rem;
  }

  .contacts__graf {
    font-size: 1.4rem;
  }

  .contacts__email {
    font-size: 1.6rem;
  }

  .catalog {
    margin-bottom: 0;
  }

  .catalog__top {
    margin-bottom: 1.6rem;
  }

  .catalog__list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1.6rem;
  }

  .catalog__footer {
    flex-direction: column;
    align-items: center;
    margin-top: 2.4rem;
  }

  .catalog__footer .btn {
    min-width: auto;
  }

  .catalog__conf-top {
    display: none;
  }

  .catalog__conf-footer {
    display: inline-flex;
    margin-top: 1.6rem;
  }

  .preview__inner {
    padding: 2.4rem 1.6rem;
  }

  .preview__price-wrap {
    min-width: 100%;
    max-width: 100%;
  }

  .preview__top {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .preview__top .h2 {
    font-size: 2rem;
  }

  .preview__tel--mob {
    margin-top: 0;
    width: 100%;
    display: inline-flex;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    margin-bottom: 1.4rem;
  }

  .preview__tel:not(.preview__tel--mob) {
    display: none;
  }

  .preview__mid {
    margin-bottom: 3.2rem;
  }

  .preview__left {
    margin-bottom: 2.4rem;
  }

  .preview__slider {
    margin-bottom: 0.4rem;
  }

  .preview__slider .swiper-slide {
    aspect-ratio: 1.57/1;
  }

  .preview__slider .swiper-slide img {
    border-radius: 0.8rem;
  }

  .preview__thumbs .swiper-slide img {
    border-radius: 0.6rem;
  }

  .preview__thumbs .swiper-slide.swiper-slide-thumb-active {
    border: 2px solid #0b5c93;
    padding: 2px;
    border-radius: 0.8rem;
  }

  .preview__control {
    margin-top: 1.6rem;
  }

  .preview__price {
    font-size: 2rem;
  }

  .preview__grey {
    font-size: 1.4rem;
  }

  .preview__char-title {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }

  .preview__char-list {
    grid-gap: 1.6rem 1rem;
  }

  .preview__key {
    margin-bottom: 0.2rem;
  }

  .preview__value {
    font-size: 1.4rem;
  }

  .preview__descr-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .preview__descr-content {
    font-size: 1.4rem;
  }

  .preview__feedback--mob {
    margin-top: 0;
    width: 100%;
    display: inline-flex;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
  }

  .preview__feedback:not(.preview__feedback--mob) {
    display: none;
  }

  .preview .osmi-container {
    max-width: calc(100vw - 3.2rem);
  }

  .preview__bot {
    margin-bottom: 1.5rem;
    padding-bottom: 2.7rem;
    border-bottom: 1px solid #eef3ef;
  }

  .feedback__top {
    margin-bottom: 2.4rem;
  }

  .feedback__top .h2 {
    font-size: 2rem;
  }

  .feedback__inner {
    padding: 2.4rem 1.6rem;
    width: calc(100vw - 3.2rem);
  }

  .police {
    padding-bottom: 2rem;
  }

  .police h1 {
    margin-bottom: 0.3em;
  }

  .police h2 {
    margin-bottom: 0.1em;
  }

  .police h3 {
    margin-bottom: 0.7em;
  }

  .police p {
    line-height: 1.15;
  }

  .police .p {
    margin-bottom: 2em;
  }

  .cars-info {
    margin-top: 5.3rem;
    padding-bottom: 8rem;
  }

  .cars-info__title {
    margin-bottom: 2.6rem;
  }

  .cars-info__text {
    margin-bottom: 2.4rem;
    line-height: 1.15;
  }

  .cars-info__video .cars-info__title {
    margin-bottom: 1.6rem;
  }

  .cars-info__video video {
    border-radius: 0.8rem;
  }

  .cars-info__img {
    width: 100%;
    margin-left: 0;
    margin-bottom: 1.6rem;
    border-radius: 0.8rem;
  }

  .cars-info__item-in {
    flex-direction: column-reverse;
  }

  .cars-info__item-in .cars-info__text {
    margin-bottom: 0;
  }

  .cars-info__list .cars-info__item:nth-child(even) .cars-info__item-in {
    flex-direction: column-reverse;
  }

  .cars-info__list .cars-info__item:nth-child(even) .cars-info__img {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 1.6rem;
  }

  .error-page .hide-on-mob {
    display: none;
  }

  .error-page .show-on-mob {
    display: inline-block;
  }

  .error-page__inner {
    padding: 8rem 0;
    min-height: auto;
  }

  .error-page__img {
    width: 25rem;
    margin-bottom: 3.2rem;
  }

  .error-page__text {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 3.2rem;
  }
}

@media (max-width: 575px) {
  .cookies {
    font-size: 13px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}







.hide {
  display: none !important;
}




.custom__CAPTCHA {
  display: none;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 4px;
  background-color: #fdcfc9;
}

.error.custom__CAPTCHA {
  display: grid;
}

.custom__CAPTCHA p {
  grid-area: auto / 1 / auto / 3;
  text-align: center;
  color: #fdcfc9;
}

.custom__CAPTCHA input,
.custom__CAPTCHA textarea {
  margin: 0px !important;
  padding: 4px 15px !important;
  height: 26px !important;
  border: 1px solid #fdcfc9 !important;
  overflow: hidden;
}




/* .card__img {position: relative;}
.card__img .btn {top: 50%;transform: translate(-50%, -50%);padding: 1rem 2rem;opacity: 0;z-index: 2;pointer-events: auto;transition: .3s;}
.card__img::after {content: '';opacity: 0;width: 100%;height: 100%;background-color: rgba(0,0,0,.3);position: absolute;z-index: 1;left: 0px;top: 0px;backdrop-filter: blur(0.8rem);transition: .3s;}
.card__img:hover::after {opacity: 1;}
.card__img:hover .btn {opacity: 1;} */











