@charset "UTF-8";

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* .swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
} */

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

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

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

: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;
  -webkit-animation: f-spinner-rotate 2s linear infinite;
          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);
  -webkit-animation: f-spinner-dash 2s ease-in-out infinite;
          animation: f-spinner-dash 2s ease-in-out infinite;
}

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

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

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

@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 {
  -webkit-animation: 0.175s ease-out both f-throwOutUp;
          animation: 0.175s ease-out both f-throwOutUp;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

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

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

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

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

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

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

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

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

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
            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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: content-box;
          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);
  -webkit-box-shadow: var(--f-button-shadow);
          box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  -webkit-transition: var(--f-button-transition);
  -o-transition: var(--f-button-transition);
  transition: var(--f-button-transition);
}

.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;
  -webkit-box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
          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;
  -webkit-transition: opacity 0.15s ease;
  -o-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  -webkit-transform: var(--f-button-transform);
      -ms-transform: var(--f-button-transform);
          transform: var(--f-button-transform);
  -webkit-filter: var(--f-button-svg-filter);
          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%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-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%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-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 {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

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

html.with-fancybox body {
  -ms-touch-action: none;
      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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          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;
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          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 {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

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

.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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          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: -webkit-grab;
  cursor: grab;
}

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

.fancybox__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          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: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0px;
          flex: 0 0 0;
  margin: auto;
}

.fancybox__content {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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: -webkit-grab;
  cursor: grab;
}

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

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

.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  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;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          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 {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  will-change: transform, width, height;
}

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

.fancybox__caption {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  max-width: 100%;
  -ms-flex-negative: 0;
      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);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  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 {
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          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;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          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) {
  -webkit-animation: 0.25s ease 0.1s backwards f-fadeIn;
          animation: 0.25s ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  -webkit-animation: 0.35s ease backwards f-fadeIn;
          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) {
  -webkit-animation: 0.15s ease forwards f-fadeOut;
          animation: 0.15s ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  -webkit-animation: 0.35s ease forwards f-fadeOut;
          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%;
  -ms-flex-negative: 1;
      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;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ebeff2), to(#e2e8f0));
  background-image: -o-linear-gradient(#ebeff2, #e2e8f0);
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  will-change: transform;
}

.f-thumbs__slide {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 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: -webkit-max-content;
  width: -moz-max-content;
  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) );
  -webkit-transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
          transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  pointer-events: none;
}

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

.is-modern:not(.is-using-mouse) .f-thumbs__slide:focus-within {
  -webkit-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));
          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 {
  -webkit-filter: none;
          filter: none;
}

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

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

.f-thumbs__slide__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          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;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  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);
  -webkit-animation: f-fadeIn 0.2s ease-out;
          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);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
  -o-object-fit: cover;
     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 {
  -ms-flex-wrap: wrap;
      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);
  -webkit-transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 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: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.05)));
  background-image: -o-linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  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: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.05)));
  background-image: -o-linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  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 {
  -webkit-transition: none !important;
  -o-transition: none !important;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      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;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          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: -webkit-box;
  display: -ms-flexbox;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

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

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

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

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

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

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

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

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

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background-color: #fff;
  padding: 40px;
  width: 100%;
  max-width: 500px;
  border-radius: 0x;
}

.lock .popup__content {
  visibility: visible;
}

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

.tabs__title {
  border: 1px solid #eee;
  padding: 0.625rem 0.9375rem;
  border-radius: 0.3125rem;
}

.tabs__title._tab-active {
  border: 1px solid #000;
}

.tabs__content {
  border: 1px solid #eee;
  padding: 0.625rem 0.9375rem;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #000;
  line-height: 1;
  font-family: "OpenSans";
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "OpenSans";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

.wrapper > main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/

[class*=__container] {
  max-width: 89.375rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

:root {
  --accent-color: #2969e3;
  --blue-color: #114cbf;
  --text-color: #292a2e;
  --grey-color: #f5f6fa;
  --grey-color_2: #838591;
  --red-color: #f04438;
  --red4: #F04438;
  --border-color: #e7e8f0;
  --placeholder-color: #292A2E;
  --fontFamily: OpenSans, sans-serif;
  --font-weight: 400;
  --font-weight1: 500;
  --font-weight2: 600;
  --font-weight3: 700;
}

/* Стилизация скролла для Mozilla Firefox */

html,
body {
  scrollbar-color: #458245 #714826;
  /* «цвет ползунка» | «цвет полосы скроллбара» */
  scrollbar-width: thin;
  /* толщина: auto | thin | none */
}

/*  Для Google Chrome, Яндекс.Браузер, Safari и Opera используйте следующие CSS свойства. */

/* полоса прокрутки (скроллбар) */

.box::-webkit-scrollbar {
  width: 0.625rem;
  /* ширина для вертикального скролла */
  height: 0.25rem;
  /* высота для горизонтального скролла */
  background-color: #458245;
}

/* ползунок скроллбара */

.box::-webkit-scrollbar-thumb {
  background-color: #143861;
  border-radius: 0.5rem;
}

* {
  outline: none;
}

html {
  -webkit-overflow-scrolling: touch;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fontFamily);
  font-size: var(--fontSize);
  font-weight: 400;
  min-width: 20rem;
  color: var(--text-color);
  background-color: #222;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

h1,
.h1 {
  font-style: normal;
  font-weight: var(--font-weight2);
  line-height: 115%;
}

h2,
.h2 {
  font-style: normal;
  font-weight: var(--font-weight2);
  line-height: 115%;
}
h2 a,
.h2 a {
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
h2 a:hover,
.h2 a:hover {
  text-decoration: none;
  color: var(--accent-color)
}

h3,
.h3 {
  font-style: normal;
  font-weight: var(--font-weight2);
  line-height: 150%;
}

h4,
.h4 {
  font-style: normal;
  font-weight: var(--font-weight2);
  line-height: 150%;
}

h5,
h6,
.h5,
.h6 {
  font-style: normal;
  font-weight: var(--font-weight2);
  line-height: 150%;
}

.title {
  text-transform: uppercase;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.8125rem;
}

.title.flex-vcenter {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.title .btn {
  text-decoration: none;
  white-space: nowrap;
  text-transform: none;
  font-size: 1rem;
}

.title .btn:hover {
  text-decoration: none;
}

.subtitle {
  line-height: 160%;
  text-transform: none;
}

.block--title {
  margin-bottom: 1.875rem;
  text-transform: uppercase;
}

.title_no-block {
  margin-bottom: 0.625rem;
}

.btn {
  padding: 0.75rem 2.875rem;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: var(--font-weight2);
  line-height: 160%;
  border: 0.125rem solid var(--accent-color);
  font-family: var(--fontFamily);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  cursor: pointer;
}

.btn-white {
  background-color: #fff;
}

.btn-white:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.btn-blue {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.btn-blue:hover {
  background-color: #fff;
  color: var(--text-color);
}

.btn-black {
  border: 0.125rem solid var(--text-color);
  background-color: var(--text-color);
  color: #fff;
}

.btn-black:hover {
  background-color: #fff;
  color: var(--text-color);
}

.btn-border {
  border: 0.125rem solid var(--accent-color);
  background-color: transparent;
  color: #fff;
}

.btn-border:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.showmore {
  font-family: var(--fontFamily);
  color: var(--placeholder-color);
  font-size: 0.875rem;
  font-weight: var(--font-weight3);
  line-height: 130%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.showmore svg {
  margin-right: 0.625rem;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.showmore._active svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.fw {
  width: 100%;
}

.fw > * {
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wrapper P {
  font-size: 1rem;
  font-weight: var(--font-weight);
  line-height: 155%;
  margin-bottom: 1rem;
}

.wrapper P:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.list-rest ul {
  margin: 0;
  padding: 0;
}

.list-rest ul li {
  list-style: none;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--placeholder-color);
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--placeholder-color);
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--placeholder-color);
}

:-moz-placeholder {
  /* Firefox 18- */
  color: var(--placeholder-color);
}

input:not([type=submit]) {
  border: 0.125rem solid var(--border-color);
  background: #fff;
  padding: 0.875rem 1.25rem;
  color: var(--text-color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
}

input:not([type=submit]):focus {
  outline: 0;
  border-color: var(--accent-color);
}

.single__calculation-form input:not([type=submit]):focus {
  outline: 0;
  border-color: #fff;
}

button,
textarea,
input {
  font-family: var(--fontFamily);
}

.input-item-reset {
  padding-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1.25rem;
}

.input-item-reset svg {
  cursor: pointer;
}

.input-item-reset svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.input-item-reset svg:hover path {
  fill: var(--red-color) !important;
}

.btn-up {
  cursor: pointer;
}

.btn-up svg rect {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.btn-up:hover svg rect {
  fill: var(--red-color);
}

.label-top {
  display: block;
  text-align: left;
  margin-bottom: 0.625rem;
  font-weight: var(--font-weight2);
  color: var(--text-color);
  white-space: nowrap;
}

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

.input-submit > * {
  margin-top: auto;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

form.search-form {
  padding: 0.3125rem;
  background-color: var(--grey-color);
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

form.search-form .input-submit {
  max-width: 7.5rem;
}

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

.flex-vcenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.reset__list ul li {
  list-style: none;
}

.popup__close {
  margin-left: auto;
  display: block;
}

.popup__close svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.popup__close:hover svg path {
  fill: rgba(255, 0, 0, 0.577);
}

.popup__form__body .input-item {
  margin-bottom: 1.5625rem;
}

.swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  padding: 0 1.875rem;
}

.swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  background-color: #D3D5E0;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  cursor: default;
}

.swiper-button-center {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  width: 2.75rem;
  height: 2.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-center.swiper-button-prev {
  background-image: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" fill=\"none\"><rect x=\"5\" y=\"5\" width=\"54\" height=\"54\" rx=\"27\" fill=\"%23292A2E\" stroke=\"white\" stroke-width=\"10\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.7071 38.7071C34.3166 39.0976 33.6834 39.0976 33.2929 38.7071L27.2929 32.7071C26.9024 32.3166 26.9024 31.6834 27.2929 31.2929L33.2929 25.2929C33.6834 24.9024 34.3166 24.9024 34.7071 25.2929C35.0976 25.6834 35.0976 26.3166 34.7071 26.7071L29.4142 32L34.7071 37.2929C35.0976 37.6834 35.0976 38.3166 34.7071 38.7071Z\" fill=\"white\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>");
}

.swiper-button-center.swiper-button-next {
  background-image: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" fill=\"none\"><rect x=\"5\" y=\"5\" width=\"54\" height=\"54\" rx=\"27\" fill=\"%23292A2E\" stroke=\"white\" stroke-width=\"10\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.2929 38.7071C29.6834 39.0976 30.3166 39.0976 30.7071 38.7071L36.7071 32.7071C37.0976 32.3166 37.0976 31.6834 36.7071 31.2929L30.7071 25.2929C30.3166 24.9024 29.6834 24.9024 29.2929 25.2929C28.9024 25.6834 28.9024 26.3166 29.2929 26.7071L34.5858 32L29.2929 37.2929C28.9024 37.6834 28.9024 38.3166 29.2929 38.7071Z\" fill=\"white\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>");
}

.swiper-button-center svg {
  width: 2.5rem;
  height: 2.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-button-center.swiper-button-prev {
  left: -1.375rem;
}

.swiper-button-center.swiper-button-prev.swiper-button-disabled {
  opacity: 0.8;
  cursor: default;
}

.swiper-button-center.swiper-button-next {
  right: -1.375rem;
}

.swiper-button-center.swiper-button-next.swiper-button-disabled {
  opacity: 0.8;
  cursor: default;
}

.swiper-slide--ibg {
  position: relative;
}

.swiper-slide--ibg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.departure-to,
.departure-from {
  position: relative;
  padding-left: 2.25rem;
}

.departure-to::before,
.departure-from::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.departure-to::before {
  background-image: url(../img/departure-to.svg);
}

.departure-from::before {
  background-image: url(../img/departure-from.svg);
}

.select {
  margin: 0 auto;
  position: relative;
  min-width: 13.4375rem;
}

.select.is-active-select .select__body {
  display: block;
}

.select.is-active-select .select__icon svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.select__header {
  border: 0.125rem solid var(--border-color);
  background: #fff;
  padding: 0;
  color: var(--placeholder-color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.select.is-active-select .select__header {
  border-color: var(--accent-color);
}

.single__calculation-form .select.is-active-select .select__header {
  border-color: #fff;
}

.is-focus-select .select__header {
  color: var(--text-color);
}

.select__current {
  line-height: 160%;
  padding: 0.6875rem;
  white-space: nowrap;
}

.select__icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 2.5rem;
  margin-left: auto;
  text-align: center;
  width: 2.5rem;
}

.select__body {
  border: 0.125rem solid var(--border-color);
  background: #fff;
  padding: 0.875rem 1.25rem;
  color: var(--text-color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 100%;
  display: none;
  z-index: 1;
}

.select__item {
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem;
}

.select__item:hover {
  background-color: #f2f2f2;
}

.icon-menu {
  display: none;
}

.header {
  background-color: #fff;
  -webkit-box-shadow: 0 1.25rem 1.25rem 0 rgba(17, 76, 191, 0.1);
          box-shadow: 0 1.25rem 1.25rem 0 rgba(17, 76, 191, 0.1);
}

.header__container {
  padding-top: 0.5625rem;
  padding-bottom: 0.625rem;
  position: relative;
}

.header__top {
  color: var(--text-color);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
  position: relative;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  text-decoration: none;
}

.header__logo .logo-text {
  text-decoration: none;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}

.header__logo._dynamic_adapt_ {
  margin-bottom: 1rem;
}

.header__logo._dynamic_adapt_ img {
  width: 1.875rem;
  height: 1.875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__top__info {
  margin-right: auto;
}

.header__top__info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__top__info ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__top__info ul li a {
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.2;
  white-space: nowrap;
}

.header__top__info ul li a:hover {
  color: var(--accent-color);
}

.header__top__info ul li::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 0.5rem;
  height: 0.5rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0.5rem;
          flex: 0 0 0.5rem;
  border-radius: 50%;
  background-color: var(--accent-color);
  margin-right: 0.625rem;
}

.header__top__time {
  -ms-grid-column-align: center;
      justify-self: center;
  font-size: 0.875rem;
}

.header__top__time--time {
  white-space: nowrap;
}

.header__top__contacts {
  margin-left: auto;
}

.phone--link {
  font-size: 1.375rem;
  font-weight: 600;
  text-decoration: none;
  margin-right: 1.25rem;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
}

.phone--link:hover {
  color: var(--accent-color);
}

.phone--label {
  color: var(--accent-color);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  white-space: nowrap;
}

.contacts__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
.social--link {
  font-size: 0.01px;
}
.social--link span{
  position: absolute;
  top: 0;
  right: -150%;
}
.header__bottom {
  padding-top: 0.5625rem;
}

.header__bottom__logo {
  margin-right: auto;
}

.menu__body {
  padding: 0 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}

.menu__body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu__body ul li:last-child {
  margin-right: 0;
}

.menu__body ul li:first-child {
  margin-left: 0;
}

.menu__body ul a {
  text-decoration: none;
  font-weight: var(--font-weight2);
  color: currentColor;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.menu__body ul a:hover {
  color: var(--accent-color);
}

.header__bottom__btn {
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__bottom__btn span {
  display: none;
}

.menu-open .header__bottom__menu {
  display: block;
}

.footer {
  background-color: var(--text-color);
  color: #fff;
}

.footer__menu-top {
  margin-bottom: 3.5625rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem;
}

.footer__menu__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0.0625rem;
          flex: 1 1 0.0625rem;
  position: relative;
  padding-top: 3.25rem;
  padding-right: 1.5625rem;
}

.footer__menu__item ul li {
  margin-bottom: 1.25rem;
}

.footer__menu__item ul li:last-child {
  margin-bottom: 0;
}

.footer__menu__item ul li a {
  color: currentColor;
  font-size: 0.875rem;
  font-weight: var(--font-weight);
  line-height: 120%;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer__menu__item ul li a:hover {
  color: var(--red-color);
}

.footer__menu--label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.125rem;
  color: var(--placeholder-color);
  font-weight: var(--font-weight3);
  line-height: 120%;
  white-space: nowrap;
}

.footer__menu-bottom {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 0.125rem solid hsla(0deg, 0%, 100%, 0.2);
  gap: 1.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer__link {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer__link a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: var(--font-weight3);
  line-height: 120%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
  color: #fff;
}

.footer__link a:hover {
  color: var(--red-color);
}

.footer__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}

.footer__btn > * {
  white-space: nowrap;
}

.footer__btn .btn-blue:hover {
  background-color: transparent;
  color: #fff;
}

.footer__desc {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.footer__desc--logo a {
  display: inline-block;
  max-width: 11.875rem;
}

.footer__desc--copy,
.footer__desc--politic {
  color: hsla(0deg, 0%, 100%, 0.4);
  font-size: 0.875rem;
  line-height: 130%;
}

.footer__desc--copy a,
.footer__desc--politic a {
  color: currentColor;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer__desc--copy a:hover,
.footer__desc--politic a:hover {
  color: var(--red-color);
}

/* .hero--bg {
  background-color: var(--grey-color);
} */

.hero {
  max-width: 120rem;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  /* background-color: var(--grey-color); */
  text-align: left;
}

.hero__container {
  position: relative;
  z-index: 2;
}

/* .hero::after{
} */
  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 4.625rem;
    width: 62.5rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
    background-image: url(../img/hero/hero_bg.png);
  }

.hero__title {
  margin-bottom: 1.625rem;
  max-width: 37.5rem;
  position: relative;
}

.hero__container {
  border-bottom: 0.0625rem solid var(--border-color);
}

.label-title {
  background-color: var(--accent-color);
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: var(--font-weight3);
  line-height: 160%;
  padding: 0.9375rem 1.25rem;
  border-radius: 0.625rem 0.625rem 0.625rem 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.hero__form--title {
  color: var(--accent-color);
  font-style: normal;
  font-weight: var(--font-weight2);
  line-height: 160%;
}

.hero__form {
  background-color: #fff;
  -webkit-box-shadow: 0 1.25rem 1.25rem 0 rgba(17, 76, 191, 0.1);
          box-shadow: 0 1.25rem 1.25rem 0 rgba(17, 76, 191, 0.1);
  padding: 2.1875rem 2.5rem;
  margin-bottom: 3.75rem;
}

.input-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
}

.row-top {
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.row-bottom {
  padding-top: 1.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nput-item__options {
  max-width: 15rem;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
}

.input-item__50 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}

.input-add-row {
  position: relative;
  color: var(--text-color);
  font-size: 1rem;
  font-style: normal;
  font-weight: var(--font-weight2);
  line-height: 160%;
  padding-left: 2.5rem;
  cursor: pointer;
  white-space: nowrap;
  padding-right: 1.25rem;
}

.input-add-row::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,<svg width=\"26\" height=\"26\" viewBox=\"0 0 26 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path id=\"icon_plus\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.7432 18.5839V14.2584H7.41609C5.76367 14.2584 5.76367 11.7437 7.41609 11.7437H11.7432V7.4166C11.7432 5.76418 14.2579 5.76418 14.2579 7.4166V11.7437H18.5834C20.2358 11.7437 20.2358 14.2584 18.5834 14.2584H14.2579V18.5839C14.2579 20.2363 11.7432 20.2363 11.7432 18.5839ZM13 26C20.18 26 26 20.1805 26 13C26 5.82004 20.18 0 13 0C5.82004 0 0 5.82004 0 13C0 20.18 5.82004 26 13 26Z\" fill=\"%23292A2E\"/></svg>");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}

.form-desc {
  color: var(--grey-color_2);
  font-size: 0.8125rem;
  line-height: 130%;
}

.row--added {
  display: none;
}

.row--added .input-item {
  padding-top: 1.875rem;
  gap: 1.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.row--added .input-item .input_group {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
}

.hero__advs {
  -webkit-column-gap: 4.375rem;
     -moz-column-gap: 4.375rem;
          column-gap: 4.375rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -ms-grid;
  display: grid;
  gap: 3.125rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.hero__adv {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}

.hero__adv svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3.75rem;
          flex: 0 0 3.75rem;
}

.hero__adv--label {
  font-size: 1rem;
  font-style: normal;
  line-height: 160%;
  display: block;
}

.destinations-bg {
  background-color: var(--grey-color);
}

.destinations__cart {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  flex: 1 1 auto;
}

.destinations__img {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 45%;
          flex: 1 1 45%;
          min-width: 16.875rem;
}

.destinations__flight,
.destinations__discount {
  position: absolute;
  z-index: 2;
}

.destinations__discount {
  top: 0;
  left: 0;
  right: 0;
  background: var(--red4);
  color: #fff;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: var(--font-weight3);
  line-height: 160%;
  padding: 0.625rem 1.25rem;
  text-align: center;
}

.destinations__flight {
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 0.625rem;
  text-align: center;
  background: rgba(41, 42, 46, 0.4);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  font-size: 0.875rem;
  color: #fff;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}

.destinations__img-ibg {
  height: 100%;
}

.destinations__content {
  padding: 1.875rem 2.5rem 2.5rem 2.5rem;
}

.destinations__header {
  font-style: normal;
  font-weight: var(--font-weight2);
  line-height: 150%;
  margin-bottom: 1.25rem;
}

.destinations__inner,
.destinations__slider {
  position: relative;
}

.sity-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.3125rem;
  margin-bottom: 1.25rem;
}

.sity-list--to,
.sity-list--from {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
  padding: 0.9375rem 1.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #fff;
  font-style: normal;
  font-weight: var(--font-weight2);
  line-height: 160%;
  min-width: 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-content: center;
}

.sity-list--from {
  background-color: var(--text-color);
  margin-right: -0.625rem;
  -webkit-clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0 100%, 0% 50%, 0 0);
          clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0 100%, 0% 50%, 0 0);
}

.sity-list--to {
  background-color: var(--blue-color);
  -webkit-clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 5% 50%, 0% 0%);
          clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 5% 50%, 0% 0%);
}

.logo__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
  margin-bottom: 1.6875rem;
}

.logo__list__item {
  background-color: #fff;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.logo__list__item img {
  width: 100%;
  height: auto;
}

.destinations__footer {
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.prices__top {
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.prices__curent {
  color: var(--blue-color);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: var(--font-weight3);
  line-height: 160%;
  white-space: nowrap;
}

.prices__old {
  color: var(--placeholder-color);
  font-size: 0.875rem;
  font-style: normal;
  line-height: 160%;
  text-decoration: line-through;
  white-space: nowrap;
}

.prices__bottom {
  font-size: 0.875rem;
  font-style: normal;
  line-height: 160%;
  white-space: nowrap;
}

.destinations__slider__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.4375rem;
}

.destinations__slider__bottom .swiper-pagination-bullets {
  width: initial !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
  padding: 0 0.9375rem;
}

.destinations .swiper-pagination {
  position: static;
}

.destinations .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  background-color: #D3D5E0;
  opacity: 1;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.destinations .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #2969E3;
}

.destinations__wrapper {
  padding: 0.3125rem 0;
}

.services {
  background-color: #fff;
}

.services__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(21rem, 1fr));
  position: relative;
}

.services__item {
  max-width: 27.5rem;
  /* border-bottom: 2px solid var(--accent-color); */
}
.page__services .services__item{
  display: flex;
  flex-direction: column;
}

.page__services .services__item__body{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page__services .services__item__btn{
  margin-top: auto;
}

.services__item:hover .services__item__desc {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.services__item--title {
  padding: 0.875rem 1.875rem 1rem;
  background-color: var(--grey-color);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: var(--font-weight2);
  line-height: 150%;
  border-top: 0.125rem solid var(--blue-color);
}
.services__item--link a{
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.services__item--link a:hover{
  color:  var(--blue-color);
  text-decoration: none;
}
.services__item__body {
  position: relative;
}

.services__item--ibg {
  padding-bottom: 56%;
}

.services__item__desc {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9;
  background: rgba(41, 42, 46, 0.8);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  font-size: 0.875rem;
  color: #fff;
  font-style: normal;
  font-weight: var(--font-weight2);
  line-height: 160%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  overflow-y: auto;
}

.services__item__desc--text {
  margin-bottom: 1.25rem;
}

.services__item__list-sity {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.poge-home .services__item__btn {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
}

.btn-wrp_border {
  padding: 0.3125rem 0 0 0.3125rem;
  background-color: #fff;
}

.services__showmore {
  margin-top: 2.5rem;
  position: absolute;
  left: 0;
}

.home-page .transport {
  background-color: var(--grey-color);
}

.transport__container {
  border-bottom: 1px solid var(--border-color);
}

.transport__list,
.transport__list__adv {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(21rem, 1fr));
  position: relative;
}

.transport__item {
  background-color: #fff;
  border-bottom: 2px solid var(--accent-color);
  position: relative;
}
.transport__item--page{
  display: flex;
  flex-direction: column;
  height: 100%;
}
.transport__item--img{
padding-bottom: 38%;
}
.inner-page__to .transport__item--img {
  padding-bottom: 32%;
}
.transport__item__body{
  padding: 2.0625rem 2.5rem .75rem 2.5rem;
}
.transport__item--title {
  color: #292A2E;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: var(--font-weight2);
  line-height: 140%;
  margin-bottom: 1.4375rem;
}

.transport__item__list li {
  line-height: 1.6;
  margin-bottom: 0.3125rem;
  list-style: none;
}

.transport__item__list li a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.transport__item__list li a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.transport__btn {
  margin-top: auto;
  text-align: right;
}

.transport__btn .btn {
  border-width: 0.125rem;
  border-bottom: 0;
}

.transport__list__adv ul li {
  max-width: 22.5rem;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.transport__list__adv ul li::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 10px;
  height: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--accent-color);
  margin-right: 0.625rem;
}

.transport__list__adv ul li:last-child {
  margin-bottom: 0;
}

.accompaniment {
  background-color: var(--grey-color);
}

.accompaniment__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(21rem, 1fr));
  margin-bottom: 2.5rem;
}

.accompaniment__item {
  position: relative;
}

.accompaniment__item--ibg {
  padding-bottom: 56%;
}

.accompaniment__item--label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.875rem 1.25rem 1.125rem 1.875rem;
  /*border-left: 0.125rem solid var(--accent-color);*/
  /*border-right: 0.125rem solid var(--accent-color);*/
  background: var(--FFFFFF, #FFF);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: var(--font-weight2);
  line-height: 160%;
}
.accompaniment__item--label a{
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.accompaniment__item--label a:hover{
  color: var(--accent-color);
}
.accompaniment__list__adv a{
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.accompaniment__list__adv a:hover{
  color: var(--accent-color);
}
/* .accompaniment__item--label::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../img/icon_info.svg);
  cursor: pointer;
} */

.accompaniment__item--label-info {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9;
  padding: 1.25rem;
  background: rgba(41, 42, 46, 0.8);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  font-size: 0.875rem;
  color: #fff;
  font-style: normal;
  font-weight: var(--font-weight2);
  line-height: 160%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  overflow-y: auto;
}

.accompaniment__item:hover .accompaniment__item--label-info {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.cooperation {
  background-color: #fff;
}

.cooperation-tab__navigation {
  position: relative;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
}

.cooperation-tab__navigation::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1875rem;
  border-bottom: 0.125rem solid var(--border-color);
}

.cooperation-tab__title {
  font-weight: 600;
  line-height: 160%;
  padding: 1.25rem 0;
  position: relative;
  white-space: nowrap;
}

.cooperation-tab__title::after {
  content: "";
  position: absolute;
  bottom: 0.1875rem;
  left: 0;
  width: 100%;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  border-bottom: 0.125rem solid var(--text-color);
  z-index: 2;
}
.cooperation-tab__title:hover,
.cooperation-tab__title._tab-active{
  color: var(--accent-color);
}
/* .cooperation-tab__title:hover::after, */
.cooperation-tab__title._tab-active::after {
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.cooperation-tab__body {
  padding-top: 1.25rem;
}

.cooperation-tab__body__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16.875rem, 1fr));
}

.cooperation-tab__body__item {
  position: relative;
  border: 2px solid transparent;
  outline: 1px solid var(--border-color);
  padding: 1.25rem 1.875rem;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.cooperation-tab__body__item::after {
  content: "";
  position: absolute;
  top: -0.0625rem;
  bottom: -0.0625rem;
  left: -0.125rem;
  width: 0.0625rem;
  background-color: var(--accent-color);
  outline: 1px solid var(--accent-color);
}

.cooperation-tab__body__label {
  max-width: 11.875rem;
  font-weight: var(--font-weight2);
  line-height: 150%;
}

.cooperation-tab__body__link-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cooperation-tab__body__link-download a {
  font-style: normal;
  font-weight: var(--font-weight7);
  line-height: 160%;
  color: var(--accent-color);
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.cooperation-tab__body__link-download a:hover {
  text-decoration: underline;
}

.cooperation-tab__body__link-download span {
  margin-left: auto;
  margin-right: 0.875rem;
  font-size: 0.75rem;
  font-style: normal;
  line-height: 160%;
}

.cooperation-tab__body__link-download svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.cooperation-tab__body__item:hover {
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  border-color: var(--accent-color);
  outline: 1px solid var(--accent-color);
}

.cooperation-tab__body__item:hover svg path {
  fill: var(--accent-color);
}

.form-block {
  background-color: var(--accent-color);
  color: #fff;
}

.form-block .form__title {
  padding-right: 6.25rem;
}

.form-block .input_submit .btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 20rem;
          flex: 1 0 20rem;
}

.form__header {
  gap: 1.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form__subtitle {
  margin-top: 0.9375rem;
  display: block;
  text-transform: none;
}

.form__user {
  gap: 1.25rem;
}

.form__user__name {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: var(--font-weight3);
  line-height: 130%;
  text-align: right;
  position: relative;
}

.form__user__name::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: -5.625rem;
  width: 4.375rem;
  height: 3.125rem;
  background-image: url(../img/form/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.form__user__name small {
  font-size: 0.875rem;
  font-style: normal;
  line-height: 130%;
  font-weight: var(--font-weight);
  text-align: right;
}

.form__user__avatar {
  width: 6.25rem;
  height: 6.25rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 6.25rem;
          flex: 0 0 6.25rem;
  margin-top: -0.625rem;
}

.form__user__avatar img {
  max-width: 100%;
  border-radius: 50%;
}

.input_row > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
}

.form_politics {
  font-size: 0.75rem;
  font-style: normal;
  line-height: 140%;
}

.form__bottom .input_row.flex-vcenter,
.form__bottom .input_submit.flex-vcenter {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form__bottom .input_submit.flex-vcenter {
  width: 100%;
}

.form__bottom .input_submit.flex-vcenter > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
}

.form__bottom .input-group.flex-vcenter {
  width: 100%;
}

.contacts-block {
  background-color: var(--blue-color);
  color: #fff;
}

.contacts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contacts__label {
  font-size: 0.875rem;
  font-style: normal;
  line-height: 130%;
  margin-bottom: 0.9375rem;
}

.contacts__content {
  font-style: normal;
  font-weight: var(--font-weight2);
  line-height: 120%;
  padding-bottom: 0.9375rem;
  margin-bottom: 0.9375rem;
  border-bottom: 0.125rem solid rgba(255, 255, 255, 0.2);
}

.contacts__content a {
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
}

.contacts__link {
  margin: 0 -0.25rem;
}

.contacts__link > * {
  padding: 0 0.25rem;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contacts__link > *:hover {
  text-decoration: none;
}

.contacts__link a {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: var(--font-weight3);
  line-height: 130%;
  color: #fff;
}

.map_block {
  background-color: #fff;
}

.map__header {
  margin-bottom: 8.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.875rem;
}

.map__title {
  margin-bottom: 0;
}

.map__adv {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.map__adv svg {
  position: relative;
  top: 0.3125rem;
}

.map__adv__item {
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  white-space: nowrap;
}

.adv-count {
  font-weight: 700;
  color: var(--accent-color);
  margin-right: 5px;
}

.map__content {
  position: relative;
}

.map__region__inner {
  width: 14.25rem;
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  z-index: 2;
}

.map__region__inner a {
  text-decoration: none;
}

.map__region {
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.map__region::after {
  content: "";
  position: absolute;
  width: 3.5625rem;
  height: 4.75rem;
  background-image: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57\" height=\"76\" viewBox=\"0 0 57 76\" fill=\"none\"><circle cx=\"27\" cy=\"28.999\" r=\"16\" fill=\"white\"/><path d=\"M28.5 0C20.9444 0.010054 13.7012 3.01595 8.35856 8.35856C3.01595 13.7012 0.010054 20.9444 0 28.5C0 48.9606 26.5525 74.5869 27.6806 75.6675C27.9001 75.8808 28.194 76.0001 28.5 76.0001C28.806 76.0001 29.0999 75.8808 29.3194 75.6675C30.4475 74.5869 57 48.9606 57 28.5C56.9899 20.9444 53.984 13.7012 48.6414 8.35856C43.2988 3.01595 36.0556 0.010054 28.5 0ZM28.5 41.5625C25.9165 41.5625 23.391 40.7964 21.2429 39.3611C19.0947 37.9257 17.4205 35.8857 16.4318 33.4988C15.4432 31.1119 15.1845 28.4855 15.6885 25.9516C16.1925 23.4178 17.4366 21.0902 19.2634 19.2634C21.0902 17.4366 23.4178 16.1925 25.9516 15.6885C28.4855 15.1845 31.1119 15.4432 33.4988 16.4318C35.8857 17.4205 37.9257 19.0947 39.3611 21.2429C40.7964 23.391 41.5625 25.9165 41.5625 28.5C41.5603 31.9637 40.1834 35.2849 37.7341 37.7341C35.2849 40.1834 31.9637 41.5603 28.5 41.5625Z\" fill=\"%232969E3\"/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.map__region:hover .map__region--title {
  text-decoration: none;
}

.map__region:hover::after {
  background-image: url("data:image/svg+xml,<svg width=\"57\" height=\"76\" viewBox=\"0 0 57 76\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g id=\"pin\"><circle id=\"Ellipse 259\" cx=\"27\" cy=\"28.999\" r=\"16\" fill=\"white\"/><path id=\"Vector\" d=\"M28.5 0C20.9444 0.010054 13.7012 3.01595 8.35856 8.35856C3.01595 13.7012 0.010054 20.9444 0 28.5C0 48.9606 26.5525 74.5869 27.6806 75.6675C27.9001 75.8808 28.194 76.0001 28.5 76.0001C28.806 76.0001 29.0999 75.8808 29.3194 75.6675C30.4475 74.5869 57 48.9606 57 28.5C56.9899 20.9444 53.984 13.7012 48.6414 8.35856C43.2988 3.01595 36.0556 0.010054 28.5 0ZM28.5 41.5625C25.9165 41.5625 23.391 40.7964 21.2429 39.3611C19.0947 37.9257 17.4205 35.8857 16.4318 33.4988C15.4432 31.1119 15.1845 28.4855 15.6885 25.9516C16.1925 23.4178 17.4366 21.0902 19.2634 19.2634C21.0902 17.4366 23.4178 16.1925 25.9516 15.6885C28.4855 15.1845 31.1119 15.4432 33.4988 16.4318C35.8857 17.4205 37.9257 19.0947 39.3611 21.2429C40.7964 23.391 41.5625 25.9165 41.5625 28.5C41.5603 31.9637 40.1834 35.2849 37.7341 37.7341C35.2849 40.1834 31.9637 41.5603 28.5 41.5625Z\" fill=\"%23F04438\"/></g></svg>");
}

.map__region--title {
  font-style: normal;
  font-weight: var(--font-weight2);
  line-height: 130%;
  margin-bottom: 0.625rem;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.map__region--adv {
  font-size: 0.875rem;
  font-style: normal;
  line-height: 130%;
}

.map_img-ibg {
  padding-bottom: 39%;
}

.map_img-ibg img {
  -o-object-fit: contain;
     object-fit: contain;
}

.region__north-america {
  display: block;
  padding-left: 2.625rem;
  top: -6%;
  left: -1%;
}

.region__north-america .map__region::after {
  top: 3.6875rem;
  left: 0.9375rem;
}

.region__europe {
  display: block;
  max-width: 14.25rem;
  top: -14%;
  left: 37%;
}

.region__europe .map__region::after {
  top: 4.75rem;
  left: -2.375rem;
}

.region__asiatic {
  max-width: 14.25rem;
  text-align: center;
  display: block;
  left: 75%;
  top: -10%;
}

.region__asiatic .map__region::after {
  top: 149%;
  left: -25%;
}

.region__asia {
  text-align: center;
  display: block;
  left: 63%;
  top: 48%;
}

.region__asia .map__region {
  text-align: left;
}

.region__asia .map__region::after {
  top: -114%;
  left: -105%;
}

.region__africa {
  display: block;
  left: 36%;
  top: 61%;
}

.region__africa .map__region {
  text-align: right;
}

.region__africa .map__region::after {
  top: -114%;
  left: -105%;
}

.region__central-america {
  display: block;
  left: 6%;
  top: 65%;
}

.region__central-america .map__region {
  text-align: right;
}

.region__central-america .map__region::after {
  top: -51%;
  left: 34px;
}

.airlines {
  background-color: #fff;
}

.airlines__logo {
  position: relative;
}

.airlines__logo img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.airlines__logo:hover img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.airlines__logo a {
  font-size: 0.01px;
  color: transparent;
  padding: 0;
  margin: 0;
}

.airlines__logo a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.logo__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20%;
  grid-template-columns: 20%;
  grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
  border: 0.0625rem solid var(--border-color);
}

.logo-img {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 20%;
          flex: 1 1 20%;
  border: 0.0625rem solid var(--border-color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.unique {
  background-color: var(--grey-color);
}

.unique__slider__inner {
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.unique__slider__inner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#F5F6FA), color-stop(45.31%, rgba(245, 246, 250, 0.9)), to(rgba(245, 246, 250, 0)));
  background: -o-linear-gradient(left, #F5F6FA 0%, rgba(245, 246, 250, 0.9) 45.31%, rgba(245, 246, 250, 0) 100%);
  background: linear-gradient(90deg, #F5F6FA 0%, rgba(245, 246, 250, 0.9) 45.31%, rgba(245, 246, 250, 0) 100%);
  z-index: 10;
  width: 20%;
}

.unique__slider__inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, right top, from(#F5F6FA), color-stop(45.31%, rgba(245, 246, 250, 0.9)), to(rgba(245, 246, 250, 0)));
  background: -o-linear-gradient(left, #F5F6FA 0%, rgba(245, 246, 250, 0.9) 45.31%, rgba(245, 246, 250, 0) 100%);
  background: linear-gradient(90deg, #F5F6FA 0%, rgba(245, 246, 250, 0.9) 45.31%, rgba(245, 246, 250, 0) 100%);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: 10;
  width: 20%;
}

.unique__slider {
  max-width: 93.125rem;
  padding: 0 0.9375rem;
}

.unique__slider.swiper-initialized {
  max-width: 72.5rem;
  padding: 0;
}

.unique__slide {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.unique__content {
  background-color: #fff;
  -webkit-box-shadow: 0 1.25rem 1.25rem 0 rgba(131, 133, 145, 0.2);
          box-shadow: 0 1.25rem 1.25rem 0 rgba(131, 133, 145, 0.2);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 100;
}

.unique__content__text {
  padding: 2.5rem;
}

.unique__crat-flags {
  margin-bottom: 1.25rem;
}

.unique__crat-flags > * {
  padding: 0.625rem 1.25rem;
  font-size: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.unique__crat-flags > *.flag-red {
  background-color: var(--red-color);
  color: #fff;
}

.unique__crat-title {
  font-size: 1.25rem;
  font-weight: var(--font-weight2);
  line-height: 150%;
  margin-bottom: 1.875rem;
}

.crat__table__row {
  gap: 0.625rem;
  line-height: 160%;
  gap: 1.25rem;
  margin-bottom: 0.625rem;
}

.crat__table__row > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
}

.crat__table_label {
  font-weight: var(--font-weight2);
  min-width: 6.8125rem;
}

.crat__ptices {
  gap: 1.875rem;
}

.crat__ptices--libel {
  font-weight: var(--font-weight);
  margin-bottom: 0.125rem;
}

.crat__ptices--prices {
  color: var(--accent-color);
  font-size: 1.25rem;
  font-weight: var(--font-weight3);
  line-height: 160%;
}

.unique__content-ibg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31.25rem;
          flex: 0 0 31.25rem;
}

.unique__slider__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.875rem;
}

.unique__slider__bottom .swiper-pagination {
  margin-bottom: 15px;
}

.unique__slider {
  position: relative;
}

.unique__slider.swiper {
  overflow: visible;
  margin: 0 auto;
}

.unique__slider .swiper-button-prev,
.unique__slider .swiper-button-next {
  display: none;
}

.unique__slider.swiper-initialized .swiper-button-prev,
.unique__slider.swiper-initialized .swiper-button-next {
  display: block;
  width: 3.375rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 3.375rem;
          flex: 1 1 3.375rem;
  height: 3.375rem;
  z-index: 11;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -1.875rem;
}

.unique__slider.swiper-initialized .swiper-button-prev svg path,
.unique__slider.swiper-initialized .swiper-button-next svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.unique__slider.swiper-initialized .swiper-button-prev:hover svg path,
.unique__slider.swiper-initialized .swiper-button-next:hover svg path {
  stroke: var(--accent-color);
}

.unique__slider.swiper-initialized .swiper-button-next {
  right: -1.875rem;
}

.unique__slider.swiper-initialized .swiper-button-prev {
  left: -1.875rem;
}

.departures {
  background-color: #fff;
}

.departures__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.departures__slide {
  padding: 0.9375rem 0;
}

.departures__slide__wrp {
  border: 1px solid var(--border-color);
  background: #FFF;
  padding-left: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.departures__slide__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 480px;
          flex: 1 1 480px;
  position: relative;
  z-index: 2;
}

.departures__slide__title {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: var(--font-weight2);
  line-height: 150%;
  margin-bottom: 1.25rem;
}

.departures__slide__text {
  font-size: 0.875rem;
  line-height: 150%;
}

.departures__val {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
}

.departures__val--volume,
.departures__val--weight {
  background-color: var(--grey-color);
  font-size: 1.125rem;
  font-weight: var(--font-weight2);
  line-height: 150%;
  padding: 0.625rem 0.9375rem;
}

.departures__val--time {
  color: var(--placeholder-color);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 160%;
  padding: 0.625rem;
  background-color: #fff;
  position: absolute;
  top: -1.25rem;
}

.departures__slide-ibg {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 12.5rem;
          flex: 1 1 12.5rem;
  min-width: 11.5rem;
  max-width: 15.625rem;
  position: relative;
}

.logo_partner {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 1.25rem;
  padding-bottom: 34%;
  width: 80%;
  background: #fff;
  z-index: 1;
}

.departures__slider__swiper-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
}

.departures__slider__swiper-button .button__nav-sl svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.departures__slider__swiper-button .button__nav-sl:hover svg path {
  stroke: var(--accent-color);
}

.single-sidebar {
  max-width: 20rem;
  padding-top: 2.5rem;
  float: left;
  position: relative;
}

.sidebar__nav {
  margin-bottom: 0.0625rem;
  position: relative;
}

.sidebar__nav:last-child {
  margin-bottom: 0;
}

.sidebar__nav ul {
  max-height: 17.5rem;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.3125rem;
  transition: all 0.3s ease 0s;
}

.sidebar__nav li {
  border-left: 1px solid var(--border-color);
  padding-left: 1.625rem;
  padding-right: 0.9375rem;
  list-style: none;
  position: relative;
}

.sidebar__nav li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.1875rem;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.sidebar__nav li:hover::before {
  background-color: var(--accent-color);
}

.sidebar__nav a {
  font-size: 0.875rem;
  line-height: 155%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: none;
  padding: 0.3125rem 0;
  display: inline-block;
}

.sidebar__nav a:hover {
  color: #A4A8BA;
}

.sidebar__nav ._is-active ul {
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
}

.sidebar__nav--hed {
  font-size: 1rem;
  font-weight: var(--font-weight3);
  line-height: 155%;
  padding: 0.375rem 0 0.5625rem;
  background-color: var(--accent-color);
  color: #fff;
  text-align: center;
}

.sidebar__nav._active ul {
  height: 18.75rem;
  max-height: initial;
  overflow-y: auto;
}

.sidebar__nav._active .sidebar__nav--hed::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.title-page {
  background-color: var(--accent-color);
  color: #fff;
  text-align: center;
}

.title-page h1 {
  font-weight: var(--font-weight2);
  line-height: 115%;
  text-transform: uppercase;
}

.single-page__inner {
  background: #F5F6FA;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #F5F6FA 0%, #F5F6FA 50%, #ffffff 50%);
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, right top, from(#F5F6FA), color-stop(50%, #F5F6FA), color-stop(50%, #ffffff));
  background: linear-gradient(to right, #F5F6FA 0%, #F5F6FA 50%, #ffffff 50%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F5F6FA", endColorstr="#ffffff", GradientType=1);
  /* IE6-9 */
}

.single-page__container::after {
  content: "";
  display: block;
  clear: both;
}

.single-contant {
  float: right;
  width: calc(100% - 23.125rem);
  max-width: 65rem;
  background-color: #fff;
}

.single-contant-container {
  position: relative;
}

.single__link-anchor {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 0.0625rem solid var(--border-color);
}

.single__link-anchor a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
}

.single__link-anchor a:hover {
  color: var(--accent-color);
}

.single__link-anchor a:focus {
  color: var(--accent-color);
}

.text__post img {
  margin: 3.125rem 0;
  display: block;
}

.single__text_top {
  line-height: 155%;
}

.single__text_top b {
  font-weight: var(--font-weight2);
}

.single__calculate h3 {
  font-weight: var(--font-weight2);
  line-height: 160%;
  text-transform: uppercase;
}

.single__calculate h4 {
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
}

.single__calculate li {
  margin-bottom: 1.125rem;
  position: relative;
  padding-left: 1rem;
}

.single__calculate li::before {
  content: "";
  position: absolute;
  top: 0.3125rem;
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--text-color);
}

.hide__list ul {
  position: relative;
}

.hide__list ul::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3.75rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#FFF));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
  z-index: 1;
}

.hide__list._is-active ul::after {
  display: none;
}

.single__calculation-form {
  background-color: var(--accent-color);
  -webkit-box-shadow: 0 1.25rem 1.25rem 0 rgba(17, 76, 191, 0.2);
          box-shadow: 0 1.25rem 1.25rem 0 rgba(17, 76, 191, 0.2);
  color: #fff;
}

.single__calculation-form .input-item-reset svg path {
  fill: #fff;
}

.single__calculation-form .row-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.375rem;
  padding-top: 1.25rem;
}

.single__calculation-form .row-center .input-submit {
  max-width: 15.625rem;
}

.single__calculation-form .input-add-row,
.single__calculation-form .form-desc,
.single__calculation-form .label-top {
  color: #fff;
}

.single__calculation-form .input-add-row::before {
  content: "";
  background-color: #fff;
  background-size: 110%;
  background-position: -0.0625rem -0.0625rem;
}

.single__calculate__text {
  border-bottom: 0.0625rem solid var(--border-color);
}

.single__calculate__text.hide__list ul {
  max-height: 12.5rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.single__calculate__text.hide__list._is-active ul {
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
}

.destinations__inner:not(.destinations__slider__inner) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}

.single__destinations .destinations__cart {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 0.0625rem solid var(--border-color);
}

.single__destinations .destinations__img-ibg {
  padding-bottom: 10rem;
}

.single__destinations .destinations__discount {
  top: initial;
  right: initial;
  bottom: 0;
  width: 50%;
}

.single__destinations .destinations__flight {
  right: 0;
  left: initial;
  width: 50%;
  bottom: 0;
}

.single__destinations .destinations__img {
  width: 100%;
}

.single__destinations .destinations__img-ibg {
  display: block;
  width: 100%;
}

.input-item {
  position: relative;
}

.input-item .input_clear {
  position: absolute;
  right: 1.25rem;
  bottom: 0.8125rem;
  cursor: pointer;
}

.input-item .input_clear svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.input-item .input_clear:hover svg path {
  fill: var(--red-color);
}

.transportation .input-submit {
  position: relative;
  max-width: 7.5rem;
}

.transportation .input-submit .btn {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.transportation__table h2,
.transportation__table .h2 {
  margin-bottom: 1.25rem;
}

.transportation__table .table {
  width: 100%;
}

.transportation__table .table__row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  padding-left: 1.125rem;
  padding-right: 1.125rem;
}

.transportation__table .table__row:nth-child(odd) {
  background-color: var(--grey-color);
}

.transportation__table table {
  border-bottom: 0.0625rem solid var(--border-color);
}

.transportation__table table tr th {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.transportation__table table tr th.table__col-airline {
  margin-left: auto;
  text-align: right;
}

.transportation__table table tr th.table__col-airline a {
  color: #292A2E;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  border-bottom: 0.0625rem solid transparent;
  text-decoration: none;
}

.transportation__table table tr th.table__col-airline a:hover {
  border-bottom-color: #D3D5E0;
}

.transportation__table table tr th:last-child {
  text-align: right;
}

.transportation__table table tr th:last-child .btn-link {
  color: var(--accent-color);
  font-weight: var(--font-weight2);
  line-height: 160%;
  text-decoration: none;
}

.table__col-name {
  text-align: left;
  line-height: 160%;
  font-weight: var(--font-weight);
  padding-right: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}

.table__col-name>span{
  max-width: 13.125rem;
}

.table__col-name a {
  text-decoration: none;
  display: inline-block;
  margin: 0 0.3125rem;
  border-bottom: 0.0625rem solid #D3D5E0;
  line-height: 1;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.table__col-name a:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.table__col-price {
  font-weight: var(--font-weight3);
  line-height: 160%;
  text-align: right;
  white-space: nowrap;
}

.single__unique .unique__content-ibg {
  -webkit-box-flex: 0;
      -ms-flex: 0 3 22.3125rem;
          flex: 0 3 22.3125rem;
}

.single__unique .unique__content {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0.1875rem solid var(--red-color);
}

.single__unique .unique__crat-flags {
  position: absolute;
  top: 0;
  left: 0;
}

.single__unique .swiper-button-next,
.single__unique .swiper-button-prev {
  position: absolute;
  top: 48%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 10;
}

.single__unique .swiper-button-next svg,
.single__unique .swiper-button-prev svg {
  width: 2.5rem;
  height: 2.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.single__unique .swiper-button-next.swiper-button-disabled,
.single__unique .swiper-button-prev.swiper-button-disabled {
  opacity: 0.8;
}

.single__unique .swiper-button-next {
  right: -1.375rem;
}

.single__unique .swiper-button-prev {
  left: -1.375rem;
}

.single__unique__wrp {
  position: relative;
}

.single__unique__wrp .swiper-pagination {
  position: absolute;
  bottom: -1rem;
  z-index: 10;
}

.single__unique__slider:not(.swiper-initialized) .single__unique__slide {
  width: 100%;
}

.single__unique__slider {
  position: relative;
}

.alphabet__cities {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(3.125rem, 1fr));
  position: relative;
  gap: 0.3125rem;
}

.alphabet__cities__item {
  background-color: var(--grey-color);
  font-size: 0.875rem;
  font-weight: var(--font-weight2);
  line-height: 160%;
  height: 2.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.alphabet__cities__item._active {
  background-color: var(--accent-color);
  color: #fff;
}

.alphabet__cities__item:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.directions {
  border-bottom: 0.0625rem solid var(--border-color);
}

.list__cities__items {
  margin-left: -1.875rem;
}

.list__cities__item {
  margin-bottom: 1.875rem;
  width: 20%;
  position: relative;
  padding-left: 1.875rem;
}

.list__cities__item--title {
  font-size: 0.875rem;
  font-weight: var(--font-weight2);
  line-height: 160%;
  margin-bottom: 0.625rem;
  text-align: center;
  padding: 0.625rem 0.9375rem;
  text-transform: uppercase;
  background-color: var(--grey-color);
}
.cities__container .alphabet__cities__item,
.cities__container .list__cities__item--title{
  background-color: #fff;
}
.cities__container .alphabet__cities__item._active,
.cities__container .alphabet__cities__item:hover{
  background-color: var(--accent-color);
}
.list__cities__item--list-link a {
  display: block;
  margin-bottom: 0.625rem;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 160%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.list__cities__item--list-link a:hover {
  color: var(--accent-color);
}

.single__cooperation__inner {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(21rem, 1fr));
  position: relative;
  gap: 1.25rem;
}

.single__transport.transport {
  background-color: transparent;
}

.single__transport .transport__item {
  background-color: var(--grey-color);
}

.single__cooperation .cooperation-tab__body__label {
  margin-bottom: 0.9375rem;
}

.single__spare__slider_inner {
  position: relative;
}

.single__spare__slider .swiper-slide--ibg {
  padding-bottom: 100%;
}

.terminals h2,
.terminals .h2 {
  margin-bottom: 1.875rem;
  text-transform: uppercase;
}

.terminals__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}

.terminals__cart {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 0.125rem solid #E7E8F0;
  background: #FFF;
}

.terminals__img-ibg {
  padding-bottom: 10rem;
}

.terminals__sity--title {
  position: relative;
  border-bottom: 0.0625rem solid var(--border-color);
  padding: 1.5625rem 0 0.875rem 0;
  margin-bottom: 1rem;
  padding-right: 5.75rem;
}

.terminals__sity--title .departure-from,
.terminals__sity--title .departure-to {
  color: #292A2E;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 150%;
  padding-left: 3.0625rem;
}

.terminals__sity--title .departure-from::before,
.terminals__sity--title .departure-from::before,
.terminals__sity--title .departure-to::before,
.terminals__sity--title .departure-to::before {
  content: "";
  position: absolute;
  top: -0.3125rem;
  left: 0;
  width: 2.25rem;
  height: 2.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.terminals__content {
  padding: 0 1.875rem 1.875rem 1.875rem;
  background-color: #fff;
}

.terminals__sity-flag {
  position: absolute;
  bottom: 1.6875rem;
  right: -0.625rem;
  padding: 0.625rem 0.625rem 0.5rem 0.625rem;
  border-radius: 0.375rem 0.375rem 1.25rem 1.25rem;
  border: 0.0625rem solid var(--blue-color);
  background-color: #fff;
}

.terminals__address i,
.terminals__address {
  font-style: normal;
}

.terminals__address--title {
  display: block;
  color: var(--blue-color);
  font-size: 1rem;
  font-weight: 600;
  line-height: 160%;
  margin-bottom: 0.3125rem;
}

.terminals__contacts .terminals__address--content {
  margin-bottom: 0;
}

.terminals__address--content {
  font-size: 1rem;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 1rem;
}

.terminals__address--content a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: inline-block;
  margin-right: 1.25rem;
}

.terminals__address--content a:hover {
  color: var(--accent-color);
}

.terminals__one-cart .terminals__cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}

.terminals__one-cart .terminals__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 250px;
          flex: 0 0 250px;
}

.terminals__one-cart .terminals__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.terminals__one-cart .terminals__img .terminals__img-ibg {
  height: 100%;
}

.terminals__one-cart .terminals__content {
  width: 100%;
}

.terminals__one-cart .terminals__sity--title {
  max-width: 26.25rem;
  position: static;
}

.terminals__one-cart .terminals__sity-flag {
  bottom: initial;
  top: 1.5625rem;
  right: 1.5625rem;
}

.geography__list {
  padding-bottom: 0.3125rem;
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
}

.geography__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  position: relative;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.geography__flag {
  padding: 0.4375rem 0.4375rem 0.3125rem 0.4375rem;
  border: 0.857px solid #2969E3;
  border-radius: 0.375rem 0.375rem 0.9375rem 0.9375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.geography__sity {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.geography__sity a {
  color: var(--blue-color);
  border-bottom: 1px dashed currentColor;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.geography__sity a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.geography__sity a:hover {
  border-bottom-color: transparent;
}

@media (min-width: 68.75em) {
  .sidebar__inner {
    width: 1000%;
    max-width: 20rem;
  }

  .sidebar__nav ul {
    padding-top: 2rem;
  }

  .sidebar__nav .spollers__body {
    padding-bottom: 2rem;
  }
}

@media (min-width: 89.375em) {
  h1,
  .h1 {
    font-size: 3.875rem;
  }

  h2,
  .h2 {
    font-size: 2rem;
  }

  h3,
  .h3 {
    font-size: 1.25rem;
  }

  h4,
  .h4 {
    font-size: 1.125rem;
  }

  h5,
  h6,
  .h5,
  .h6 {
    font-size: 1.0625rem;
  }

  .title {
    margin-bottom: 3.125rem;
  }

  .title {
    gap: 0.8125rem;
  }

  .block--title {
    font-size: 1.5rem;
  }

  ._padding {
    padding-top: 4.375rem;
  }

  ._padding {
    padding-bottom: 3.75rem;
  }

  .header__logo {
    margin-right: 4.75rem;
  }

  .header__top__info ul li {
    margin-right: 3.25rem;
  }

  .contacts__phone {
    margin-right: 4.375rem;
  }

  .menu__body ul li {
    margin-right: 1.25rem;
  }

  .menu__body ul li {
    margin-left: 1.25rem;
  }

  .footer {
    padding-top: 3.375rem;
  }

  .footer {
    padding-bottom: 2.3125rem;
  }

  .footer__menu-bottom {
    padding-bottom: 2.5rem;
  }

  .footer__link {
    gap: 2.5rem;
  }

  .footer__desc {
    padding-top: 2.125rem;
  }

  .hero__form--title {
    font-size: 1.75rem;
  }

  .hero__form--title {
    margin-bottom: 1.25rem;
  }

  .hero__adv {
    padding-right: 1.875rem;
  }

  .destinations__header {
    font-size: 1.25rem;
  }

  .sity-list--to,
  .sity-list--from {
    font-size: 1rem;
  }

  .services__list {
    gap: 2.5rem;
  }

  .services__list:not(.no-padding) {
    padding-bottom: 11.25rem;
  }

  .services__item__desc {
    padding: 1.875rem;
  }

  .services__showmore {
    bottom: 5rem;
  }

  .transport__list,
  .transport__list__adv {
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }

  .transport__list,
  .transport__list__adv {
    row-gap: 1.25rem;
  }

  .transport__list {
    gap: 2.5rem;
  }

  .transport__list {
    margin-bottom: 2.5rem;
  }

  .accompaniment__list {
    gap: 2.5rem;
  }

  .cooperation-tab__body__list {
    gap: 2.5rem;
  }

  .cooperation-tab__body__label {
    margin-bottom: 3rem;
  }

  .form-block {
    padding-top: 5rem;
  }

  .form-block {
    padding-bottom: 4.375rem;
  }

  .input_row {
    gap: 2.5rem;
  }

  .input-group {
    gap: 2.5rem;
  }

  .input_submit {
    gap: 2.5rem;
  }

  .contacts-block {
    padding-top: 4.1875rem;
  }

  .contacts-block {
    padding-bottom: 4.875rem;
  }

  .contacts__list {
    gap: 7.5rem;
  }

  .contacts__content {
    font-size: 1.75rem;
  }

  .map__adv {
    gap: 3.75rem;
  }

  .map__adv__item {
    font-size: 1.25rem;
  }

  .map__region--title {
    font-size: 1.25rem;
  }

  .unique__content__text {
    padding-left: 5rem;
  }

  .unique__content__text {
    padding-right: 3.125rem;
  }

  .unique__crat__table {
    margin-bottom: 2.5rem;
  }

  .crat__table__row {
    gap: 3.75rem;
  }

  .departures__title {
    margin-bottom: 0.9375rem;
  }

  .departures__title {
    gap: 1.25rem;
  }

  .departures__slide__content {
    padding: 2.5rem;
  }

  .departures__slide__text {
    margin-bottom: 1.875rem;
  }

  .departures__val--time {
    left: 1.875rem;
  }

  .departures__slider__swiper-button {
    gap: 1.25rem;
  }

  .departures__slider__swiper-button .button__nav-sl svg {
    width: 2.75rem;
  }

  .departures__slider__swiper-button .button__nav-sl svg {
    height: 2.75rem;
  }

  .title-page {
    padding-top: 2.9375rem;
  }

  .title-page {
    padding-bottom: 2.9375rem;
  }

  .title-page h1 {
    font-size: 3rem;
  }

  .single__img {
    margin-bottom: 3.125rem;
  }

  .single-contant-container {
    padding-left: 5rem;
  }

  .single-contant-container {
    padding-bottom: 3.125rem;
  }

  .single__link-anchor {
    gap: 1.875rem;
  }

  .single__link-anchor {
    padding-bottom: 1.25rem;
  }

  .single__link-anchor {
    margin-bottom: 3.125rem;
  }

  .single__text_top {
    font-size: 1.125rem;
  }

  .single__text_top {
    margin-bottom: 3.125rem;
  }

  .single__text_top > *:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .single__calculate h3 {
    margin-bottom: 1.875rem;
  }

  .single__calculate h3 {
    font-size: 1.5rem;
  }

  .single__calculate h4 {
    font-size: 1.125rem;
  }

  .single__calculation-form {
    padding: 2.5rem;
  }

  .single__calculation-form {
    margin-bottom: 3.125rem;
  }

  .single__calculate__text {
    padding-bottom: 3.125rem;
  }

  .single__calculate__text {
    margin-bottom: 3.125rem;
  }

  .single__destinations {
    margin-bottom: 3.125rem;
  }

  .single__destinations .destinations__content {
    padding: 1.875rem;
  }

  .transportation-form {
    margin-bottom: 1.375rem;
  }

  .transportation__table table {
    padding-bottom: 2.5rem;
  }

  .transportation__table table {
    margin-bottom: 3.125rem;
  }

  .single__unique .unique__content__text {
    padding-left: 2.5rem;
  }

  .single__unique .unique__content__text {
    padding-right: 2.5rem;
  }

  .single__unique .unique__content__text {
    padding-bottom: 2.5rem;
  }

  .single__unique .unique__content__text {
    padding-top: 3.75rem;
  }

  .single__unique__wrp {
    margin-bottom: 3.125rem;
  }

  .alphabet__cities {
    margin-bottom: 1.875rem;
  }

  .directions {
    padding-bottom: 1.25rem;
  }

  .directions {
    margin-bottom: 3.125rem;
  }

  .single__transport {
    padding-bottom: 1.25rem;
  }

  .single__cooperation {
    margin-bottom: 3.125rem;
  }

  .interest {
    margin-bottom: 3.125rem;
  }

  .single__spare {
    margin-bottom: 3.125rem;
  }

  .terminals {
    margin-bottom: 3.125rem;
  }

  .single-contant-container.no-img_top {
    padding-top: 3.125rem;
  }

  .geography__list__inner {
    margin-bottom: 3.125rem;
  }

  .geography__list {
    padding-top: 1.875rem;
  }
}

@media (max-width: 75em) {
  .header {
    padding-bottom: 0;
  }

  .header__container {
    padding: 0;
  }

  .header__top {
    padding: 0.625rem 0.9375rem;
  }

  .header__logo._dynamic_adapt_ {
    margin: 0;
  }

  .header__top__info {
    padding: 0 0.9375rem;
  }

  .header__top__info ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.9375rem;
  }

  .header__top__info ul li {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .header__top__contacts {
    padding-right: 3.125rem;
  }

  .phone--link {
    font-size: 1.125rem;
  }

  .header__bottom {
    padding-top: 0;
  }

  .menu__body {
    margin-bottom: 1.875rem;
  }

  .menu__body ul li {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    text-align: center;
  }

  .header__bottom__menu {
    display: none;
    position: fixed;
    top: 3.75rem;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    padding-top: 1.25rem;
    padding-bottom: 3.75rem;
    overflow-y: auto;
    z-index: 10;
    padding-bottom: 6.25rem;
  }

  ul.menu__list {
    margin-top: 1.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.25rem;
  }

  ul.menu__list li {
    margin-left: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  ul.menu__list li a {
    font-size: 1rem;
  }

  .hero__form {
    margin: 0 -0.9375rem 1.25rem;
  }

  .row-top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 0.9375rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .nput-item__options {
    max-width: initial;
  }

  .map__region {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }

  .map__region::after {
    width: 2.5rem;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }

  .region__north-america {
    left: -6%;
  }

  .region__africa .map__region::after {
    top: -88%;
    left: -2.6875rem;
  }

  .region__central-america {
    left: 2%;
  }

  .region__central-america .map__region::after {
    left: 0;
  }

  .unique__slider__inner::after,
  .unique__slider__inner::before {
    display: none;
  }

  .unique__content-ibg {
    -webkit-box-flex: 0;
        -ms-flex: 0 3 31.25rem;
            flex: 0 3 31.25rem;
  }

  .unique__slider.swiper-initialized .swiper-button-next {
    right: 0;
  }

  .unique__slider.swiper-initialized .swiper-button-prev {
    left: 0;
  }

  .single-contant-container {
    padding: 0 0.9375rem;
  }
}

@media (max-width: 62em) {
  .header__top__time {
    position: absolute;
    bottom: 0.5rem;
    left: 2.3125rem;
    width: 9.375rem;
    text-align: center;
    font-size: 0.625rem;
  }

  .contacts__phone {
    padding-left: 0.9375rem;
    gap: 0.9375rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .phone--link {
    margin: 0;
  }

  .footer__desc--logo {
    width: 100%;
    text-align: center;
  }

  .label-title {
    padding: 0.625rem;
    font-size: 0.875rem;
  }

  .hero__advs {
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
  }

  .form-block .form__title {
    padding-right: 1.25rem;
  }

  .form-block .input_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }

  .form-block .input_submit .btn {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }

  .form__user__name::before {
    display: none;
  }

  .contacts__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .contacts__item {
    margin-bottom: 2.5rem;
  }

  .contacts__content {
    font-size: 1.5rem;
  }

  .map__header {
    margin-bottom: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .map__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .map__region__inner {
    width: initial;
    position: static;
    top: initial;
    left: initial;
    text-align: left;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }

  .map__region__inner a {
    z-index: 2;
    display: block;
    padding-left: 1.875rem;
    padding-top: 0.5625rem;
    margin-top: 0.625rem;
  }

  .map_img-ibg {
    padding-bottom: 0;
    position: absolute;
    top: 0;
    left: -1.25rem;
    right: -1.25rem;
    bottom: 0;
    z-index: 0;
  }

  .map_img-ibg img {
    position: static;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 0.5;
  }

  .region__north-america {
    padding-left: 0;
  }

  .region__north-america .map__region::after {
    top: 0;
    left: 0;
  }

  .region__europe {
    max-width: initial;
  }

  .region__europe .map__region::after {
    top: 0;
    left: 0;
  }

  .region__asiatic {
    text-align: left;
    max-width: initial;
  }

  .region__asiatic .map__region::after {
    top: 0;
    left: 0;
  }

  .region__asia .map__region::after {
    top: 0 !important;
    left: 0 !important;
  }

  .region__africa .map__region {
    text-align: left;
  }

  .region__africa .map__region::after {
    top: 0;
    left: 0;
  }

  .region__central-america .map__region {
    text-align: left;
  }

  .region__central-america .map__region::after {
    top: 0;
  }
}

@media (max-width: 48em) {
  .subtitle {
    font-size: 0.875rem;
  }

  .header__logo .logo-text {
    font-size: 1.25rem;
  }

  .contacts__social {
    gap: 0.5rem;
  }

  .social--link {
    width: 2rem;
    height: 2.1875rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: 0;
  }

  .header__bottom__btn {
    font-size: 0.01px;
    padding: 0rem !important;
    border: 0;
    margin: 0;
  }

  .header__bottom__btn span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 2rem;
    height: 2rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .footer__desc {
    padding-bottom: 5.625rem;
  }

  .footer__desc > * {
    width: 100%;
    text-align: center;
  }

  .top-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .row-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .input-add-row {
    margin-bottom: 0.9375rem;
    white-space: normal;
  }

  .form-desc {
    text-align: left;
  }

  .row--added .input-item .input_group {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 46%;
            flex: 1 1 46%;
  }

  .destinations__cart {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

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

  .destinations__flight {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0.625rem 1.5625rem;
    text-align: center;
    margin: 0 auto;
  }

  .destinations__img-ibg {
    width: 100%;
    padding-bottom: 56%;
  }

  .form-block .form__title {
    padding-right: 0;
    text-align: center;
  }

  .form-block .input-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .form-block .input_submit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .form-block .input_submit .btn {
    width: 100%;
  }

  .form__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 2.5rem;
  }

  .form__user {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .form__user__name small {
    text-align: center;
  }

  .contacts__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .map__adv {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.625rem;
  }

  .logo__item {
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    border: 0;
  }

  .logo-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .unique__content {
    position: relative;
  }

  .unique__content__text {
    position: relative;
    z-index: 2;
  }

  .unique__content-ibg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.3;
  }

  .unique__slider.swiper-initialized .swiper-button-prev,
  .unique__slider.swiper-initialized .swiper-button-next {
    top: initial;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    position: relative;
    top: 0.25rem;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }

  .single__calculation-form .row-center .input-submit {
    max-width: initial;
  }

  .single__destinations .destinations__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .single__destinations .destinations__flight,
  .single__destinations .destinations__discount {
    position: absolute;
    padding: 0.625rem 0.25rem;
  }

  .single__destinations .destinations__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 45%;
            flex: 1 1 45%;
    min-width: 11.875rem;
  }

  .list__cities__item {
    width: 25%;
    padding-left: 0.9375rem;
  }

  .single__cooperation__inner {
    gap: 0.9375rem;
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  }

  .terminals__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .terminals__cart {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }

  .terminals__one-cart .terminals__cart {
    display: block;
  }

  .terminals__one-cart .terminals__sity--title {
    position: relative;
    max-width: initial;
  }

  .terminals__one-cart .terminals__sity-flag {
    top: -2.8125rem;
    right: 0.9375rem;
  }

  .geography__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 40em) {
  .sity-list {
    gap: 0;
  }

  .sity-list--from {
    margin: 0;
  }

  .destinations__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .destinations__prices {
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 36em) {
  .title.flex-vcenter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .input-item-reset {
    display: none;
  }

  form.search-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  form.search-form .input-submit {
    max-width: initial;
  }

  .destinations__swiper-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5625rem;
  }

  .swiper-button-center {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    width: 2.5rem;
    height: 2.5rem;
  }

  .swiper-button-center.swiper-button-prev {
    left: 0;
  }

  .swiper-button-center.swiper-button-next {
    right: 0;
  }

  .form:not(.calculation-form) {
    background-color: #F5F6FA;
    padding: 1.25rem;
    border: 0.0625rem solid var(--border-color);
  }

  .header__logo._dynamic_adapt_ {
    margin-left: 2.875rem;
  }

  .header__logo._dynamic_adapt_ img {
    display: none;
  }

  .header__top__info ul li a {
    margin-right: auto;
  }

  .header__top__time {
    position: static;
    width: 100%;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    text-align: left;
    padding-left: 0.9375rem;
  }

  .header__top__contacts {
    padding-right: 0;
  }

  .contacts__social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .menu__body ul li {
    text-align: left;
  }

  .footer__menu-top {
    gap: 0.625rem;
  }

  .footer__menu__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 37%;
            flex: 1 1 37%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
    padding-right: 0;
  }

  .footer__menu__item ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.9375rem;
  }

  .footer__menu__item ul li {
    margin-bottom: 0rem;
  }

  .footer__menu__item ul li a {
    font-size: 0.75rem;
  }

  .footer__menu__item:first-child .footer__menu--label {
    padding-top: 0.75rem;
  }

  .footer__menu--label {
    margin-bottom: 1.25rem;
    padding-top: 0.875rem;
  }

  .footer__link a {
    font-size: 0.9375rem;
  }

  .footer__btn > * {
    width: 100%;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .footer__btn {
    width: 100%;
  }

  .footer__desc > * {
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .footer__desc--logo {
    text-align: left;
  }

  .footer__desc--copy,
  .footer__desc--politic {
    text-align: left;
  }

  .hero::after {
    background-size: cover;
    width: 100%;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    opacity: 1;
    height: 12.5rem;
  }

  .hero__form {
    background-color: var(--grey-color);
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .hero__adv--label {
    font-size: 0.9375rem;
  }

  .destinations__cart {
    margin: 0 0.9375rem;
  }

  .destinations__slider.swiper {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }

  .services__list {
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  }

  .btn-wrp_border .btn {
    padding: 0.3125rem 0.625rem;
  }

  .transport__list,
  .transport__list__adv {
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  }

  .transport__list {
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  }


  .transport__item--title {
    background-size: 1.875rem;
  }

  .transport__item__list {
    margin-bottom: 0.8125rem;
  }

  .transport__btn .btn {
    padding: 0.3125rem 0.625rem;
  }

  .accompaniment__list {
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  }

  .cooperation-tab__body__item {
    padding: 0.9375rem;
  }

  .contacts__content {
    font-size: 1.125rem;
  }

  .map__region__inner {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .map__region::after {
    width: 1.5625rem;
    height: 3.4375rem;
  }

  .logo__item {
    grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
    border: 0;
  }

  .logo-img {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }

  .crat__table__row {
    border-bottom: 1px solid var(--text-color);
    padding: 0.3125rem 0;
  }

  .crat__ptices {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }

  .crat__ptices__btn {
    width: 100%;
  }

  .crat__ptices__btn .btn {
    width: 100%;
  }

  .departures__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .departures__slide-ibg {
    display: none;
  }

  .sidebar__nav ul {
    position: static;
    top: initial;
    left: initial;
    right: initial;
    margin-bottom: 0rem;
  }

  .sidebar__nav--hed {
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: left;
    padding-left: 1rem;
  }

  .sidebar__inner._dynamic_adapt_ {
    display: block;
  }

  .sidebar__inner._dynamic_adapt_ .sidebar__nav:last-child:hover ul {
    left: 0;
    right: 0;
  }

  .transportation__table .table__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 0.5rem;
    border-bottom: 0.0625rem solid var(--border-color);
    margin-bottom: 0.375rem;
  }

  .transportation__table table {
    margin-bottom: 0;
    border: 0;
  }

  .list__cities__items {
    margin-left: -0.9375rem;
  }

  .list__cities__item {
    width: 33.33%;
  }

  .terminals__sity--title .departure-from,
  .terminals__sity--title .departure-to {
    font-size: 1.125rem;
  }

  .terminals__content {
    padding: 0 0.9375rem 0.9375rem 0.9375rem;
  }

  .geography__list {
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  }

  .geography__sity {
    font-size: 1rem;
  }
}

@media (max-width: 36em) and (max-width: 20em) {
  .contacts__item {
    margin-bottom: 0.0000000625rem;
  }
}

@media (max-width: 30em) {
  .title .btn {
    padding: 0.4375rem 0.9375rem;
  }

  .hero__title > * {
    margin-bottom: 0.9375rem;
  }

  .label-title {
    position: static;
    margin-bottom: 0.9375rem;
  }

  .hero__advs {
    gap: 0.625rem;
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  }

  .destinations__btn {
    width: 100%;
  }

  .destinations__btn > * {
    width: 100%;
  }

  .contacts__item {
    width: 100%;
  }

  .transportation__table table tr th.table__col-airline {
    margin-left: initial;
  }
}

@media (max-width: 25em) {
  .phone--label {
    font-size: 0.75rem;
  }

  .list__cities__item {
    width: 50%;
  }
}

@media (max-width: 20em) {
  h1,
  .h1 {
    font-size: 1.875rem;
  }

  h2,
  .h2 {
    font-size: 1.625rem;
  }

  h3,
  .h3 {
    font-size: 1.25rem;
  }

  h4,
  .h4 {
    font-size: 1.125rem;
  }

  h5,
  h6,
  .h5,
  .h6 {
    font-size: 1rem;
  }

  .title {
    margin-bottom: 1.5625rem;
  }

  .title {
    gap: 0.4375rem;
  }

  .block--title {
    font-size: 1.375rem;
  }

  ._padding {
    padding-top: 2.1875rem;
  }

  ._padding {
    padding-bottom: 1.875rem;
  }

  .header__logo {
    margin-right: 0.625rem;
  }

  .header__top__info ul li {
    margin-right: 1.25rem;
  }

  .contacts__phone {
    margin-right: 0.9375rem;
  }

  .menu__body ul li {
    margin-right: 0.3125rem;
  }

  .menu__body ul li {
    margin-left: 0.3125rem;
  }

  .footer {
    padding-top: 1.5625rem;
  }

  .footer {
    padding-bottom: 0.9375rem;
  }

  .footer__menu-bottom {
    padding-bottom: 1.25rem;
  }

  .footer__link {
    gap: 0.9375rem;
  }

  .footer__desc {
    padding-top: 1.25rem;
  }

  .hero__form--title {
    font-size: 1rem;
  }

  .hero__form--title {
    margin-bottom: 0.625rem;
  }

  .hero__adv {
    padding-right: 0.3125rem;
  }

  .destinations__header {
    font-size: 1.125rem;
  }

  .sity-list--to,
  .sity-list--from {
    font-size: 0.8125rem;
  }

  .services__list {
    gap: 1.25rem;
  }

  .services__list {
    padding-bottom: 5.625rem;
  }

  .services__item__desc {
    padding: 0.9375rem;
  }

  .services__showmore {
    bottom: 1.375rem;
  }

  .transport__list,
  .transport__list__adv {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }

  .transport__list,
  .transport__list__adv {
    row-gap: 0.625rem;
  }

  .transport__list {
    gap: 1.25rem;
  }

  .transport__list {
    margin-bottom: 1.25rem;
  }

  .accompaniment__list {
    gap: 1.25rem;
  }

  .cooperation-tab__body__list {
    gap: 1.25rem;
  }

  .cooperation-tab__body__label {
    margin-bottom: 0.9375rem;
  }

  .form-block {
    padding-top: 2.5rem;
  }

  .form-block {
    padding-bottom: 1.875rem;
  }

  .input_row {
    gap: 0.625rem;
  }

  .input-group {
    gap: 0.625rem;
  }

  .input_submit {
    gap: 0.625rem;
  }

  .contacts-block {
    padding-top: 1.875rem;
  }

  .contacts-block {
    padding-bottom: 1.875rem;
  }

  .contacts__list {
    gap: 1.25rem;
  }

  .contacts__content {
    font-size: 0.75rem;
  }

  .map__adv {
    gap: 0.625rem;
  }

  .map__adv__item {
    font-size: 1rem;
  }

  .map__region--title {
    font-size: 1rem;
  }

  .unique__content__text {
    padding-left: 0.9375rem;
  }

  .unique__content__text {
    padding-right: 0.9375rem;
  }

  .unique__crat__table {
    margin-bottom: 1.25rem;
  }

  .crat__table__row {
    gap: 0.625rem;
  }

  .departures__title {
    margin-bottom: 0.5rem;
  }

  .departures__title {
    gap: 0.625rem;
  }

  .departures__slide__content {
    padding: 0.9375rem;
  }

  .departures__slide__text {
    margin-bottom: 0.9375rem;
  }

  .departures__val--time {
    left: 0.3125rem;
  }

  .departures__slider__swiper-button {
    gap: 0.625rem;
  }

  .departures__slider__swiper-button .button__nav-sl svg {
    width: 2.25rem;
  }

  .departures__slider__swiper-button .button__nav-sl svg {
    height: 2.25rem;
  }

  .title-page {
    padding-top: 1.25rem;
  }

  .title-page {
    padding-bottom: 1.25rem;
  }

  .title-page h1 {
    font-size: 1.5rem;
  }

  .single__img {
    margin-bottom: 1.25rem;
  }

  .single-contant-container {
    padding-left: 0.9375rem;
  }

  .single-contant-container {
    padding-bottom: 1.5625rem;
  }

  .single__link-anchor {
    gap: 0.625rem;
  }

  .single__link-anchor {
    padding-bottom: 0.625rem;
  }

  .single__link-anchor {
    margin-bottom: 1.5625rem;
  }

  .single__text_top {
    font-size: 1rem;
  }

  .single__text_top {
    margin-bottom: 1.5625rem;
  }

  .single__text_top > *:not(:last-child) {
    margin-bottom: 1rem;
  }

  .single__calculate h3 {
    margin-bottom: 0.9375rem;
  }

  .single__calculate h3 {
    font-size: 1.125rem;
  }

  .single__calculate h4 {
    font-size: 1rem;
  }

  .single__calculation-form {
    padding: 0.9375rem;
  }

  .single__calculation-form {
    margin-bottom: 1.5625rem;
  }

  .single__calculate__text {
    padding-bottom: 1.5625rem;
  }

  .single__calculate__text {
    margin-bottom: 1.5625rem;
  }

  .single__destinations {
    margin-bottom: 1.5625rem;
  }

  .single__destinations .destinations__content {
    padding: 0.9375rem;
  }

  .transportation-form {
    margin-bottom: 0.9375rem;
  }

  .transportation__table table {
    padding-bottom: 1.5625rem;
  }

  .transportation__table table {
    margin-bottom: 1.5625rem;
  }

  .single__unique .unique__content__text {
    padding-left: 0.9375rem;
  }

  .single__unique .unique__content__text {
    padding-right: 0.9375rem;
  }

  .single__unique .unique__content__text {
    padding-bottom: 1.25rem;
  }

  .single__unique .unique__content__text {
    padding-top: 2.5rem;
  }

  .single__unique__wrp {
    margin-bottom: 1.5625rem;
  }

  .alphabet__cities {
    margin-bottom: 0.9375rem;
  }

  .directions {
    padding-bottom: 1.5625rem;
  }

  .directions {
    margin-bottom: 1.5625rem;
  }

  .single__transport {
    padding-bottom: 1.5625rem;
  }

  .single__cooperation {
    margin-bottom: 1.5625rem;
  }

  .interest {
    margin-bottom: 1.5625rem;
  }

  .single__spare {
    margin-bottom: 1.5625rem;
  }

  .terminals {
    margin-bottom: 1.5625rem;
  }

  .single-contant-container.no-img_top {
    padding-top: 1.5625rem;
  }

  .geography__list__inner {
    margin-bottom: 1.25rem;
  }

  .geography__list {
    padding-top: 0.9375rem;
  }
}

@media (max-width: 93.75em) {
  .hero::after {
    right: -8.75rem;
  }
}

@media (max-width: 87.5em) and (max-width: 20em) {
  .hero__form {
    padding: 0.9375rem;
  }

  .hero__adv {
    padding-right: 0.3125rem;
  }
}

@media (max-width: 87.5em) {
  .hero__advs {
    gap: 1.875rem;
    grid-template-columns: repeat(auto-fit, minmax(13.125rem, 1fr));
  }

  .hero__adv {
    gap: 0.9375rem;
  }

  .hero__adv svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 3.125rem;
            flex: 0 0 3.125rem;
    height: 3.125rem;
    width: 3.125rem;
  }

  .destinations__content {
    padding: 1.25rem;
  }

  .region__asia .map__region::after {
    top: -82%;
  }

  .single-contant-container {
    padding-left: 3.125rem;
  }
}

@media (max-width: 81.25em) and (max-width: 20em) {
  .header__logo {
    margin-right: 0.625rem;
  }
}

@media (max-width: 81.25em) {
  .header__bottom__btn {
    padding: 0.625rem 1.5rem;
  }

  .hero::after {
    opacity: 0.4;
  }

  .single-contant {
    width: calc(100% - 21.25rem);
  }
}

@media (max-width: 76.875em) {
  .hero__adv svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 2.5rem;
            flex: 0 0 2.5rem;
    height: 2.5rem;
    width: 2.5rem;
  }
}

@media (max-width: 75rem) {
  .icon-menu {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0.9375rem;
    width: 1.75rem;
    height: 1.125rem;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: var(--accent-color);
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@media (max-width: 75rem) and (max-width: 36em) {
  .icon-menu {
    left: 0.9375rem;
    right: initial;
  }
}

@media (max-width: 75rem) and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}

@media (max-width: 68.75em) {
  .single-sidebar {
    padding-top: 0;
    padding-left: 0.9375rem;
    width: 100%;
    max-width: initial;
  }

  .sidebar__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .sidebar__inner .sidebar__nav {
    margin-bottom: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 1px;
            flex: 1 1 1px;
    border: 1px solid var(--border-color);
    position: relative;
  }

  .sidebar__nav ul {
    max-height: initial;
    background-color: #fff;
    z-index: 10;
    width: 100%;
    height: 0;
    position: absolute;
    top: 100%;
    left: 0;
  }

  .sidebar__nav .showmore {
    display: none;
  }

  .sidebar__nav--hed {
    margin-bottom: 0.9375rem;
    padding-left: 1.9375rem;
    padding-right: 1.9375rem;
    background-color: #fff;
    color: var(--text-color);
    margin-bottom: 0;
    white-space: nowrap;
    position: relative;
  }

  .sidebar__nav--hed::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 1rem;
    width: 1rem;
    height: 1rem;
    background-image: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\"><circle cx=\"8\" cy=\"8\" r=\"8\" transform=\"rotate%2890 8 8%29\" fill=\"%232969E3\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.9837 6.47234C10.9454 6.29397 10.8529 6.16191 10.705 6.07436L10.5792 6L7.99901 6L5.41879 6L5.29306 6.07436C5.22393 6.11526 5.13955 6.19193 5.1056 6.24472C5.01678 6.38272 4.97634 6.61215 5.01416 6.76367C5.03257 6.83746 5.50965 7.60554 6.19466 8.66422C7.65365 10.9191 7.60075 10.8415 7.7377 10.9271C7.94563 11.057 8.22858 11.0092 8.3929 10.8162C8.4748 10.72 10.8407 7.0704 10.9206 6.9171C10.9988 6.76684 11.018 6.63181 10.9837 6.47234Z\" fill=\"white\"/></svg>");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .single-page__inner {
    background-color: #ffffff;
  }

  .single-page__container {
    padding: 0;
    display: block;
  }

  .single-contant {
    width: calc(100% - 0px);
  }

  .single__img {
    margin-bottom: 0.625rem;
  }

  .single__unique .swiper-button-next,
  .single__unique .swiper-button-prev {
    position: static;
    top: initial;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }

  .single__unique .swiper-button-next {
    right: initial;
  }

  .single__unique .swiper-button-prev {
    left: initial;
  }

  .single__unique__wrp .swiper-pagination {
    position: static;
    bottom: initial;
    margin-bottom: 0;
    padding: 0 1.875rem;
  }
}

@media (max-width: 48rem) {
  .list__cities__items {
    margin-left: -0.875rem;
  }
}

@media (max-width: 37.5em) {
  .hero__adv {
    gap: 0.625rem;
  }
}

@media (max-width: 35.4375em) {
  .hero__container {
    padding-top: 12.5rem;
  }

  .departures__val > * {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 1px;
            flex: 1 1 1px;
    text-align: center;
  }
}

@media (max-width: 22.5em) {
  .form:not(.calculation-form) .nput-item__options {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0.9375rem;
  }

  .input-add-row {
    font-size: 0.875rem;
  }

  .form-desc {
    font-size: 0.625rem;
  }

  .destinations__content {
    padding: 0.625rem;
  }
}

@media (min-width: 20em) and (max-width: 89.375em) {
@supports (font-size: clamp( 1.875rem , 1.2984234234rem  +  2.8828828829vw , 3.875rem )) {
    h1,
    .h1 {
      font-size: clamp( 1.875rem , 1.2984234234rem  +  2.8828828829vw , 3.875rem );
    }
}

@supports not (font-size: clamp( 1.875rem , 1.2984234234rem  +  2.8828828829vw , 3.875rem )) {
    h1,
    .h1 {
      font-size: calc(1.875rem + 2 * (100vw - 20rem) / 69.375);
    }
}

@supports (font-size: clamp( 1.625rem , 1.5168918919rem  +  0.5405405405vw , 2rem )) {
    h2,
    .h2 {
      font-size: clamp( 1.625rem , 1.5168918919rem  +  0.5405405405vw , 2rem );
    }
}

@supports not (font-size: clamp( 1.625rem , 1.5168918919rem  +  0.5405405405vw , 2rem )) {
    h2,
    .h2 {
      font-size: calc(1.625rem + 0.375 * (100vw - 20rem) / 69.375);
    }
}

@supports (font-size: clamp( 1.25rem , 1.25rem  +  0vw , 1.25rem )) {
    h3,
    .h3 {
      font-size: clamp( 1.25rem , 1.25rem  +  0vw , 1.25rem );
    }
}

@supports not (font-size: clamp( 1.25rem , 1.25rem  +  0vw , 1.25rem )) {
    h3,
    .h3 {
      font-size: calc(1.25rem + 0 * (100vw - 20rem) / 69.375);
    }
}

@supports (font-size: clamp( 1.125rem , 1.125rem  +  0vw , 1.125rem )) {
    h4,
    .h4 {
      font-size: clamp( 1.125rem , 1.125rem  +  0vw , 1.125rem );
    }
}

@supports not (font-size: clamp( 1.125rem , 1.125rem  +  0vw , 1.125rem )) {
    h4,
    .h4 {
      font-size: calc(1.125rem + 0 * (100vw - 20rem) / 69.375);
    }
}

@supports (font-size: clamp( 1rem , 0.981981982rem  +  0.0900900901vw , 1.0625rem )) {
    h5,
    h6,
    .h5,
    .h6 {
      font-size: clamp( 1rem , 0.981981982rem  +  0.0900900901vw , 1.0625rem );
    }
}

@supports not (font-size: clamp( 1rem , 0.981981982rem  +  0.0900900901vw , 1.0625rem )) {
    h5,
    h6,
    .h5,
    .h6 {
      font-size: calc(1rem + 0.0625 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .title {
      margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem );
    }
}

@supports not (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .title {
      margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (gap: clamp( 0.4375rem , 0.3293918919rem  +  0.5405405405vw , 0.8125rem )) {
    .title {
      gap: clamp( 0.4375rem , 0.3293918919rem  +  0.5405405405vw , 0.8125rem );
    }
}

@supports not (gap: clamp( 0.4375rem , 0.3293918919rem  +  0.5405405405vw , 0.8125rem )) {
    .title {
      gap: calc(0.4375rem + 0.375 * (100vw - 20rem) / 69.375);
    }
}

@supports (font-size: clamp( 1.375rem , 1.338963964rem  +  0.1801801802vw , 1.5rem )) {
    .block--title {
      font-size: clamp( 1.375rem , 1.338963964rem  +  0.1801801802vw , 1.5rem );
    }
}

@supports not (font-size: clamp( 1.375rem , 1.338963964rem  +  0.1801801802vw , 1.5rem )) {
    .block--title {
      font-size: calc(1.375rem + 0.125 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-top: clamp( 2.1875rem , 1.5568693694rem  +  3.1531531532vw , 4.375rem )) {
    ._padding {
      padding-top: clamp( 2.1875rem , 1.5568693694rem  +  3.1531531532vw , 4.375rem );
    }
}

@supports not (padding-top: clamp( 2.1875rem , 1.5568693694rem  +  3.1531531532vw , 4.375rem )) {
    ._padding {
      padding-top: calc(2.1875rem + 2.1875 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-bottom: clamp( 1.875rem , 1.3344594595rem  +  2.7027027027vw , 3.75rem )) {
    ._padding {
      padding-bottom: clamp( 1.875rem , 1.3344594595rem  +  2.7027027027vw , 3.75rem );
    }
}

@supports not (padding-bottom: clamp( 1.875rem , 1.3344594595rem  +  2.7027027027vw , 3.75rem )) {
    ._padding {
      padding-bottom: calc(1.875rem + 1.875 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-right: clamp( 0.625rem , -0.5641891892rem  +  5.9459459459vw , 4.75rem )) {
    .header__logo {
      margin-right: clamp( 0.625rem , -0.5641891892rem  +  5.9459459459vw , 4.75rem );
    }
}

@supports not (margin-right: clamp( 0.625rem , -0.5641891892rem  +  5.9459459459vw , 4.75rem )) {
    .header__logo {
      margin-right: calc(0.625rem + 4.125 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-right: clamp( 1.25rem , 0.6734234234rem  +  2.8828828829vw , 3.25rem )) {
    .header__top__info ul li {
      margin-right: clamp( 1.25rem , 0.6734234234rem  +  2.8828828829vw , 3.25rem );
    }
}

@supports not (margin-right: clamp( 1.25rem , 0.6734234234rem  +  2.8828828829vw , 3.25rem )) {
    .header__top__info ul li {
      margin-right: calc(1.25rem + 2 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-right: clamp( 0.9375rem , -0.053490991rem  +  4.954954955vw , 4.375rem )) {
    .contacts__phone {
      margin-right: clamp( 0.9375rem , -0.053490991rem  +  4.954954955vw , 4.375rem );
    }
}

@supports not (margin-right: clamp( 0.9375rem , -0.053490991rem  +  4.954954955vw , 4.375rem )) {
    .contacts__phone {
      margin-right: calc(0.9375rem + 3.4375 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-right: clamp( 0.3125rem , 0.0422297297rem  +  1.3513513514vw , 1.25rem )) {
    .menu__body ul li {
      margin-right: clamp( 0.3125rem , 0.0422297297rem  +  1.3513513514vw , 1.25rem );
    }
}

@supports not (margin-right: clamp( 0.3125rem , 0.0422297297rem  +  1.3513513514vw , 1.25rem )) {
    .menu__body ul li {
      margin-right: calc(0.3125rem + 0.9375 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-left: clamp( 0.3125rem , 0.0422297297rem  +  1.3513513514vw , 1.25rem )) {
    .menu__body ul li {
      margin-left: clamp( 0.3125rem , 0.0422297297rem  +  1.3513513514vw , 1.25rem );
    }
}

@supports not (margin-left: clamp( 0.3125rem , 0.0422297297rem  +  1.3513513514vw , 1.25rem )) {
    .menu__body ul li {
      margin-left: calc(0.3125rem + 0.9375 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-top: clamp( 1.5625rem , 1.0399774775rem  +  2.6126126126vw , 3.375rem )) {
    .footer {
      padding-top: clamp( 1.5625rem , 1.0399774775rem  +  2.6126126126vw , 3.375rem );
    }
}

@supports not (padding-top: clamp( 1.5625rem , 1.0399774775rem  +  2.6126126126vw , 3.375rem )) {
    .footer {
      padding-top: calc(1.5625rem + 1.8125 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-bottom: clamp( 0.9375rem , 0.5411036036rem  +  1.981981982vw , 2.3125rem )) {
    .footer {
      padding-bottom: clamp( 0.9375rem , 0.5411036036rem  +  1.981981982vw , 2.3125rem );
    }
}

@supports not (padding-bottom: clamp( 0.9375rem , 0.5411036036rem  +  1.981981982vw , 2.3125rem )) {
    .footer {
      padding-bottom: calc(0.9375rem + 1.375 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-bottom: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem )) {
    .footer__menu-bottom {
      padding-bottom: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem );
    }
}

@supports not (padding-bottom: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem )) {
    .footer__menu-bottom {
      padding-bottom: calc(1.25rem + 1.25 * (100vw - 20rem) / 69.375);
    }
}

@supports (gap: clamp( 0.9375rem , 0.4870495495rem  +  2.2522522523vw , 2.5rem )) {
    .footer__link {
      gap: clamp( 0.9375rem , 0.4870495495rem  +  2.2522522523vw , 2.5rem );
    }
}

@supports not (gap: clamp( 0.9375rem , 0.4870495495rem  +  2.2522522523vw , 2.5rem )) {
    .footer__link {
      gap: calc(0.9375rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-top: clamp( 1.25rem , 0.9977477477rem  +  1.2612612613vw , 2.125rem )) {
    .footer__desc {
      padding-top: clamp( 1.25rem , 0.9977477477rem  +  1.2612612613vw , 2.125rem );
    }
}

@supports not (padding-top: clamp( 1.25rem , 0.9977477477rem  +  1.2612612613vw , 2.125rem )) {
    .footer__desc {
      padding-top: calc(1.25rem + 0.875 * (100vw - 20rem) / 69.375);
    }
}

@supports (font-size: clamp( 1rem , 0.7837837838rem  +  1.0810810811vw , 1.75rem )) {
    .hero__form--title {
      font-size: clamp( 1rem , 0.7837837838rem  +  1.0810810811vw , 1.75rem );
    }
}

@supports not (font-size: clamp( 1rem , 0.7837837838rem  +  1.0810810811vw , 1.75rem )) {
    .hero__form--title {
      font-size: calc(1rem + 0.75 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 0.625rem , 0.4448198198rem  +  0.9009009009vw , 1.25rem )) {
    .hero__form--title {
      margin-bottom: clamp( 0.625rem , 0.4448198198rem  +  0.9009009009vw , 1.25rem );
    }
}

@supports not (margin-bottom: clamp( 0.625rem , 0.4448198198rem  +  0.9009009009vw , 1.25rem )) {
    .hero__form--title {
      margin-bottom: calc(0.625rem + 0.625 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-right: clamp( 0.3125rem , -0.1379504505rem  +  2.2522522523vw , 1.875rem )) {
    .hero__adv {
      padding-right: clamp( 0.3125rem , -0.1379504505rem  +  2.2522522523vw , 1.875rem );
    }
}

@supports not (padding-right: clamp( 0.3125rem , -0.1379504505rem  +  2.2522522523vw , 1.875rem )) {
    .hero__adv {
      padding-right: calc(0.3125rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (font-size: clamp( 1.125rem , 1.088963964rem  +  0.1801801802vw , 1.25rem )) {
    .destinations__header {
      font-size: clamp( 1.125rem , 1.088963964rem  +  0.1801801802vw , 1.25rem );
    }
}

@supports not (font-size: clamp( 1.125rem , 1.088963964rem  +  0.1801801802vw , 1.25rem )) {
    .destinations__header {
      font-size: calc(1.125rem + 0.125 * (100vw - 20rem) / 69.375);
    }
}

@supports (font-size: clamp( 0.8125rem , 0.7584459459rem  +  0.2702702703vw , 1rem )) {
    .sity-list--to,
    .sity-list--from {
      font-size: clamp( 0.8125rem , 0.7584459459rem  +  0.2702702703vw , 1rem );
    }
}

@supports not (font-size: clamp( 0.8125rem , 0.7584459459rem  +  0.2702702703vw , 1rem )) {
    .sity-list--to,
    .sity-list--from {
      font-size: calc(0.8125rem + 0.1875 * (100vw - 20rem) / 69.375);
    }
}

@supports (gap: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem )) {
    .services__list {
      gap: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem );
    }
}

@supports not (gap: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem )) {
    .services__list {
      gap: calc(1.25rem + 1.25 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-bottom: clamp( 5.625rem , 4.0033783784rem  +  8.1081081081vw , 11.25rem )) {
    .services__list {
      padding-bottom: clamp( 5.625rem , 4.0033783784rem  +  8.1081081081vw , 11.25rem );
    }
}

@supports not (padding-bottom: clamp( 5.625rem , 4.0033783784rem  +  8.1081081081vw , 11.25rem )) {
    .services__list {
      padding-bottom: calc(5.625rem + 5.625 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding: clamp( 0.9375rem , 0.6672297297rem  +  1.3513513514vw , 1.875rem )) {
    .services__item__desc {
      padding: clamp( 0.9375rem , 0.6672297297rem  +  1.3513513514vw , 1.875rem );
    }
}

@supports not (padding: clamp( 0.9375rem , 0.6672297297rem  +  1.3513513514vw , 1.875rem )) {
    .services__item__desc {
      padding: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 69.375);
    }
}

@supports (bottom: clamp( 1.375rem , 0.329954955rem  +  5.2252252252vw , 5rem )) {
    .services__showmore {
      bottom: clamp( 1.375rem , 0.329954955rem  +  5.2252252252vw , 5rem );
    }
}

@supports not (bottom: clamp( 1.375rem , 0.329954955rem  +  5.2252252252vw , 5rem )) {
    .services__showmore {
      bottom: calc(1.375rem + 3.625 * (100vw - 20rem) / 69.375);
    }
}

@supports ((-moz-column-gap: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem )) or (column-gap: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem ))) {
    .transport__list,
    .transport__list__adv {
      -webkit-column-gap: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem );
         -moz-column-gap: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem );
              column-gap: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem );
    }
}

@supports not ((-moz-column-gap: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem )) or (column-gap: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem ))) {
    .transport__list,
    .transport__list__adv {
      -webkit-column-gap: calc(1.25rem + 1.25 * (100vw - 20rem) / 69.375);
         -moz-column-gap: calc(1.25rem + 1.25 * (100vw - 20rem) / 69.375);
              column-gap: calc(1.25rem + 1.25 * (100vw - 20rem) / 69.375);
    }
}

@supports (row-gap: clamp( 0.625rem , 0.4448198198rem  +  0.9009009009vw , 1.25rem )) {
    .transport__list,
    .transport__list__adv {
      row-gap: clamp( 0.625rem , 0.4448198198rem  +  0.9009009009vw , 1.25rem );
    }
}

@supports not (row-gap: clamp( 0.625rem , 0.4448198198rem  +  0.9009009009vw , 1.25rem )) {
    .transport__list,
    .transport__list__adv {
      row-gap: calc(0.625rem + 0.625 * (100vw - 20rem) / 69.375);
    }
}

@supports (gap: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem )) {
    .transport__list {
      gap: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem );
    }
}

@supports not (gap: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem )) {
    .transport__list {
      gap: calc(1.25rem + 1.25 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem )) {
    .transport__list {
      margin-bottom: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem );
    }
}

@supports not (margin-bottom: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem )) {
    .transport__list {
      margin-bottom: calc(1.25rem + 1.25 * (100vw - 20rem) / 69.375);
    }
}

@supports (gap: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem )) {
    .accompaniment__list {
      gap: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem );
    }
}

@supports not (gap: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem )) {
    .accompaniment__list {
      gap: calc(1.25rem + 1.25 * (100vw - 20rem) / 69.375);
    }
}

@supports (gap: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem )) {
    .cooperation-tab__body__list {
      gap: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem );
    }
}

@supports not (gap: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem )) {
    .cooperation-tab__body__list {
      gap: calc(1.25rem + 1.25 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 0.9375rem , 0.3429054054rem  +  2.972972973vw , 3rem )) {
    .cooperation-tab__body__label {
      margin-bottom: clamp( 0.9375rem , 0.3429054054rem  +  2.972972973vw , 3rem );
    }
}

@supports not (margin-bottom: clamp( 0.9375rem , 0.3429054054rem  +  2.972972973vw , 3rem )) {
    .cooperation-tab__body__label {
      margin-bottom: calc(0.9375rem + 2.0625 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-top: clamp( 2.5rem , 1.7792792793rem  +  3.6036036036vw , 5rem )) {
    .form-block {
      padding-top: clamp( 2.5rem , 1.7792792793rem  +  3.6036036036vw , 5rem );
    }
}

@supports not (padding-top: clamp( 2.5rem , 1.7792792793rem  +  3.6036036036vw , 5rem )) {
    .form-block {
      padding-top: calc(2.5rem + 2.5 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-bottom: clamp( 1.875rem , 1.1542792793rem  +  3.6036036036vw , 4.375rem )) {
    .form-block {
      padding-bottom: clamp( 1.875rem , 1.1542792793rem  +  3.6036036036vw , 4.375rem );
    }
}

@supports not (padding-bottom: clamp( 1.875rem , 1.1542792793rem  +  3.6036036036vw , 4.375rem )) {
    .form-block {
      padding-bottom: calc(1.875rem + 2.5 * (100vw - 20rem) / 69.375);
    }
}

@supports (gap: clamp( 0.625rem , 0.0844594595rem  +  2.7027027027vw , 2.5rem )) {
    .input_row {
      gap: clamp( 0.625rem , 0.0844594595rem  +  2.7027027027vw , 2.5rem );
    }
}

@supports not (gap: clamp( 0.625rem , 0.0844594595rem  +  2.7027027027vw , 2.5rem )) {
    .input_row {
      gap: calc(0.625rem + 1.875 * (100vw - 20rem) / 69.375);
    }
}

@supports (gap: clamp( 0.625rem , 0.0844594595rem  +  2.7027027027vw , 2.5rem )) {
    .input-group {
      gap: clamp( 0.625rem , 0.0844594595rem  +  2.7027027027vw , 2.5rem );
    }
}

@supports not (gap: clamp( 0.625rem , 0.0844594595rem  +  2.7027027027vw , 2.5rem )) {
    .input-group {
      gap: calc(0.625rem + 1.875 * (100vw - 20rem) / 69.375);
    }
}

@supports (gap: clamp( 0.625rem , 0.0844594595rem  +  2.7027027027vw , 2.5rem )) {
    .input_submit {
      gap: clamp( 0.625rem , 0.0844594595rem  +  2.7027027027vw , 2.5rem );
    }
}

@supports not (gap: clamp( 0.625rem , 0.0844594595rem  +  2.7027027027vw , 2.5rem )) {
    .input_submit {
      gap: calc(0.625rem + 1.875 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-top: clamp( 1.875rem , 1.2083333333rem  +  3.3333333333vw , 4.1875rem )) {
    .contacts-block {
      padding-top: clamp( 1.875rem , 1.2083333333rem  +  3.3333333333vw , 4.1875rem );
    }
}

@supports not (padding-top: clamp( 1.875rem , 1.2083333333rem  +  3.3333333333vw , 4.1875rem )) {
    .contacts-block {
      padding-top: calc(1.875rem + 2.3125 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-bottom: clamp( 1.875rem , 1.0101351351rem  +  4.3243243243vw , 4.875rem )) {
    .contacts-block {
      padding-bottom: clamp( 1.875rem , 1.0101351351rem  +  4.3243243243vw , 4.875rem );
    }
}

@supports not (padding-bottom: clamp( 1.875rem , 1.0101351351rem  +  4.3243243243vw , 4.875rem )) {
    .contacts-block {
      padding-bottom: calc(1.875rem + 3 * (100vw - 20rem) / 69.375);
    }
}

@supports (gap: clamp( 1.25rem , -0.5518018018rem  +  9.009009009vw , 7.5rem )) {
    .contacts__list {
      gap: clamp( 1.25rem , -0.5518018018rem  +  9.009009009vw , 7.5rem );
    }
}

@supports not (gap: clamp( 1.25rem , -0.5518018018rem  +  9.009009009vw , 7.5rem )) {
    .contacts__list {
      gap: calc(1.25rem + 6.25 * (100vw - 20rem) / 69.375);
    }
}

@supports (font-size: clamp( 0.75rem , 0.4617117117rem  +  1.4414414414vw , 1.75rem )) {
    .contacts__content {
      font-size: clamp( 0.75rem , 0.4617117117rem  +  1.4414414414vw , 1.75rem );
    }
}

@supports not (font-size: clamp( 0.75rem , 0.4617117117rem  +  1.4414414414vw , 1.75rem )) {
    .contacts__content {
      font-size: calc(0.75rem + 1 * (100vw - 20rem) / 69.375);
    }
}

@supports (gap: clamp( 0.625rem , -0.2759009009rem  +  4.5045045045vw , 3.75rem )) {
    .map__adv {
      gap: clamp( 0.625rem , -0.2759009009rem  +  4.5045045045vw , 3.75rem );
    }
}

@supports not (gap: clamp( 0.625rem , -0.2759009009rem  +  4.5045045045vw , 3.75rem )) {
    .map__adv {
      gap: calc(0.625rem + 3.125 * (100vw - 20rem) / 69.375);
    }
}

@supports (font-size: clamp( 1rem , 0.9279279279rem  +  0.3603603604vw , 1.25rem )) {
    .map__adv__item {
      font-size: clamp( 1rem , 0.9279279279rem  +  0.3603603604vw , 1.25rem );
    }
}

@supports not (font-size: clamp( 1rem , 0.9279279279rem  +  0.3603603604vw , 1.25rem )) {
    .map__adv__item {
      font-size: calc(1rem + 0.25 * (100vw - 20rem) / 69.375);
    }
}

@supports (font-size: clamp( 1rem , 0.9279279279rem  +  0.3603603604vw , 1.25rem )) {
    .map__region--title {
      font-size: clamp( 1rem , 0.9279279279rem  +  0.3603603604vw , 1.25rem );
    }
}

@supports not (font-size: clamp( 1rem , 0.9279279279rem  +  0.3603603604vw , 1.25rem )) {
    .map__region--title {
      font-size: calc(1rem + 0.25 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-left: clamp( 0.9375rem , -0.2336711712rem  +  5.8558558559vw , 5rem )) {
    .unique__content__text {
      padding-left: clamp( 0.9375rem , -0.2336711712rem  +  5.8558558559vw , 5rem );
    }
}

@supports not (padding-left: clamp( 0.9375rem , -0.2336711712rem  +  5.8558558559vw , 5rem )) {
    .unique__content__text {
      padding-left: calc(0.9375rem + 4.0625 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-right: clamp( 0.9375rem , 0.3068693694rem  +  3.1531531532vw , 3.125rem )) {
    .unique__content__text {
      padding-right: clamp( 0.9375rem , 0.3068693694rem  +  3.1531531532vw , 3.125rem );
    }
}

@supports not (padding-right: clamp( 0.9375rem , 0.3068693694rem  +  3.1531531532vw , 3.125rem )) {
    .unique__content__text {
      padding-right: calc(0.9375rem + 2.1875 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem )) {
    .unique__crat__table {
      margin-bottom: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem );
    }
}

@supports not (margin-bottom: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem )) {
    .unique__crat__table {
      margin-bottom: calc(1.25rem + 1.25 * (100vw - 20rem) / 69.375);
    }
}

@supports (gap: clamp( 0.625rem , -0.2759009009rem  +  4.5045045045vw , 3.75rem )) {
    .crat__table__row {
      gap: clamp( 0.625rem , -0.2759009009rem  +  4.5045045045vw , 3.75rem );
    }
}

@supports not (gap: clamp( 0.625rem , -0.2759009009rem  +  4.5045045045vw , 3.75rem )) {
    .crat__table__row {
      gap: calc(0.625rem + 3.125 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 0.5rem , 0.3738738739rem  +  0.6306306306vw , 0.9375rem )) {
    .departures__title {
      margin-bottom: clamp( 0.5rem , 0.3738738739rem  +  0.6306306306vw , 0.9375rem );
    }
}

@supports not (margin-bottom: clamp( 0.5rem , 0.3738738739rem  +  0.6306306306vw , 0.9375rem )) {
    .departures__title {
      margin-bottom: calc(0.5rem + 0.4375 * (100vw - 20rem) / 69.375);
    }
}

@supports (gap: clamp( 0.625rem , 0.4448198198rem  +  0.9009009009vw , 1.25rem )) {
    .departures__title {
      gap: clamp( 0.625rem , 0.4448198198rem  +  0.9009009009vw , 1.25rem );
    }
}

@supports not (gap: clamp( 0.625rem , 0.4448198198rem  +  0.9009009009vw , 1.25rem )) {
    .departures__title {
      gap: calc(0.625rem + 0.625 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding: clamp( 0.9375rem , 0.4870495495rem  +  2.2522522523vw , 2.5rem )) {
    .departures__slide__content {
      padding: clamp( 0.9375rem , 0.4870495495rem  +  2.2522522523vw , 2.5rem );
    }
}

@supports not (padding: clamp( 0.9375rem , 0.4870495495rem  +  2.2522522523vw , 2.5rem )) {
    .departures__slide__content {
      padding: calc(0.9375rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 0.9375rem , 0.6672297297rem  +  1.3513513514vw , 1.875rem )) {
    .departures__slide__text {
      margin-bottom: clamp( 0.9375rem , 0.6672297297rem  +  1.3513513514vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 0.9375rem , 0.6672297297rem  +  1.3513513514vw , 1.875rem )) {
    .departures__slide__text {
      margin-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 69.375);
    }
}

@supports (left: clamp( 0.3125rem , -0.1379504505rem  +  2.2522522523vw , 1.875rem )) {
    .departures__val--time {
      left: clamp( 0.3125rem , -0.1379504505rem  +  2.2522522523vw , 1.875rem );
    }
}

@supports not (left: clamp( 0.3125rem , -0.1379504505rem  +  2.2522522523vw , 1.875rem )) {
    .departures__val--time {
      left: calc(0.3125rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (gap: clamp( 0.625rem , 0.4448198198rem  +  0.9009009009vw , 1.25rem )) {
    .departures__slider__swiper-button {
      gap: clamp( 0.625rem , 0.4448198198rem  +  0.9009009009vw , 1.25rem );
    }
}

@supports not (gap: clamp( 0.625rem , 0.4448198198rem  +  0.9009009009vw , 1.25rem )) {
    .departures__slider__swiper-button {
      gap: calc(0.625rem + 0.625 * (100vw - 20rem) / 69.375);
    }
}

@supports (width: clamp( 2.25rem , 2.1058558559rem  +  0.7207207207vw , 2.75rem )) {
    .departures__slider__swiper-button .button__nav-sl svg {
      width: clamp( 2.25rem , 2.1058558559rem  +  0.7207207207vw , 2.75rem );
    }
}

@supports not (width: clamp( 2.25rem , 2.1058558559rem  +  0.7207207207vw , 2.75rem )) {
    .departures__slider__swiper-button .button__nav-sl svg {
      width: calc(2.25rem + 0.5 * (100vw - 20rem) / 69.375);
    }
}

@supports (height: clamp( 2.25rem , 2.1058558559rem  +  0.7207207207vw , 2.75rem )) {
    .departures__slider__swiper-button .button__nav-sl svg {
      height: clamp( 2.25rem , 2.1058558559rem  +  0.7207207207vw , 2.75rem );
    }
}

@supports not (height: clamp( 2.25rem , 2.1058558559rem  +  0.7207207207vw , 2.75rem )) {
    .departures__slider__swiper-button .button__nav-sl svg {
      height: calc(2.25rem + 0.5 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-top: clamp( 1.25rem , 0.7635135135rem  +  2.4324324324vw , 2.9375rem )) {
    .title-page {
      padding-top: clamp( 1.25rem , 0.7635135135rem  +  2.4324324324vw , 2.9375rem );
    }
}

@supports not (padding-top: clamp( 1.25rem , 0.7635135135rem  +  2.4324324324vw , 2.9375rem )) {
    .title-page {
      padding-top: calc(1.25rem + 1.6875 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-bottom: clamp( 1.25rem , 0.7635135135rem  +  2.4324324324vw , 2.9375rem )) {
    .title-page {
      padding-bottom: clamp( 1.25rem , 0.7635135135rem  +  2.4324324324vw , 2.9375rem );
    }
}

@supports not (padding-bottom: clamp( 1.25rem , 0.7635135135rem  +  2.4324324324vw , 2.9375rem )) {
    .title-page {
      padding-bottom: calc(1.25rem + 1.6875 * (100vw - 20rem) / 69.375);
    }
}

@supports (font-size: clamp( 1.5rem , 1.0675675676rem  +  2.1621621622vw , 3rem )) {
    .title-page h1 {
      font-size: clamp( 1.5rem , 1.0675675676rem  +  2.1621621622vw , 3rem );
    }
}

@supports not (font-size: clamp( 1.5rem , 1.0675675676rem  +  2.1621621622vw , 3rem )) {
    .title-page h1 {
      font-size: calc(1.5rem + 1.5 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 1.25rem , 0.7094594595rem  +  2.7027027027vw , 3.125rem )) {
    .single__img {
      margin-bottom: clamp( 1.25rem , 0.7094594595rem  +  2.7027027027vw , 3.125rem );
    }
}

@supports not (margin-bottom: clamp( 1.25rem , 0.7094594595rem  +  2.7027027027vw , 3.125rem )) {
    .single__img {
      margin-bottom: calc(1.25rem + 1.875 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-left: clamp( 0.9375rem , -0.2336711712rem  +  5.8558558559vw , 5rem )) {
    .single-contant-container {
      padding-left: clamp( 0.9375rem , -0.2336711712rem  +  5.8558558559vw , 5rem );
    }
}

@supports not (padding-left: clamp( 0.9375rem , -0.2336711712rem  +  5.8558558559vw , 5rem )) {
    .single-contant-container {
      padding-left: calc(0.9375rem + 4.0625 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single-contant-container {
      padding-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem );
    }
}

@supports not (padding-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single-contant-container {
      padding-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (gap: clamp( 0.625rem , 0.2646396396rem  +  1.8018018018vw , 1.875rem )) {
    .single__link-anchor {
      gap: clamp( 0.625rem , 0.2646396396rem  +  1.8018018018vw , 1.875rem );
    }
}

@supports not (gap: clamp( 0.625rem , 0.2646396396rem  +  1.8018018018vw , 1.875rem )) {
    .single__link-anchor {
      gap: calc(0.625rem + 1.25 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-bottom: clamp( 0.625rem , 0.4448198198rem  +  0.9009009009vw , 1.25rem )) {
    .single__link-anchor {
      padding-bottom: clamp( 0.625rem , 0.4448198198rem  +  0.9009009009vw , 1.25rem );
    }
}

@supports not (padding-bottom: clamp( 0.625rem , 0.4448198198rem  +  0.9009009009vw , 1.25rem )) {
    .single__link-anchor {
      padding-bottom: calc(0.625rem + 0.625 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single__link-anchor {
      margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem );
    }
}

@supports not (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single__link-anchor {
      margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (font-size: clamp( 1rem , 0.963963964rem  +  0.1801801802vw , 1.125rem )) {
    .single__text_top {
      font-size: clamp( 1rem , 0.963963964rem  +  0.1801801802vw , 1.125rem );
    }
}

@supports not (font-size: clamp( 1rem , 0.963963964rem  +  0.1801801802vw , 1.125rem )) {
    .single__text_top {
      font-size: calc(1rem + 0.125 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single__text_top {
      margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem );
    }
}

@supports not (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single__text_top {
      margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 1rem , 0.7477477477rem  +  1.2612612613vw , 1.875rem )) {
    .single__text_top > *:not(:last-child) {
      margin-bottom: clamp( 1rem , 0.7477477477rem  +  1.2612612613vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1rem , 0.7477477477rem  +  1.2612612613vw , 1.875rem )) {
    .single__text_top > *:not(:last-child) {
      margin-bottom: calc(1rem + 0.875 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 0.9375rem , 0.6672297297rem  +  1.3513513514vw , 1.875rem )) {
    .single__calculate h3 {
      margin-bottom: clamp( 0.9375rem , 0.6672297297rem  +  1.3513513514vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 0.9375rem , 0.6672297297rem  +  1.3513513514vw , 1.875rem )) {
    .single__calculate h3 {
      margin-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 69.375);
    }
}

@supports (font-size: clamp( 1.125rem , 1.0168918919rem  +  0.5405405405vw , 1.5rem )) {
    .single__calculate h3 {
      font-size: clamp( 1.125rem , 1.0168918919rem  +  0.5405405405vw , 1.5rem );
    }
}

@supports not (font-size: clamp( 1.125rem , 1.0168918919rem  +  0.5405405405vw , 1.5rem )) {
    .single__calculate h3 {
      font-size: calc(1.125rem + 0.375 * (100vw - 20rem) / 69.375);
    }
}

@supports (font-size: clamp( 1rem , 0.963963964rem  +  0.1801801802vw , 1.125rem )) {
    .single__calculate h4 {
      font-size: clamp( 1rem , 0.963963964rem  +  0.1801801802vw , 1.125rem );
    }
}

@supports not (font-size: clamp( 1rem , 0.963963964rem  +  0.1801801802vw , 1.125rem )) {
    .single__calculate h4 {
      font-size: calc(1rem + 0.125 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding: clamp( 0.9375rem , 0.4870495495rem  +  2.2522522523vw , 2.5rem )) {
    .single__calculation-form {
      padding: clamp( 0.9375rem , 0.4870495495rem  +  2.2522522523vw , 2.5rem );
    }
}

@supports not (padding: clamp( 0.9375rem , 0.4870495495rem  +  2.2522522523vw , 2.5rem )) {
    .single__calculation-form {
      padding: calc(0.9375rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single__calculation-form {
      margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem );
    }
}

@supports not (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single__calculation-form {
      margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single__calculate__text {
      padding-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem );
    }
}

@supports not (padding-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single__calculate__text {
      padding-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single__calculate__text {
      margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem );
    }
}

@supports not (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single__calculate__text {
      margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single__destinations {
      margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem );
    }
}

@supports not (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single__destinations {
      margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding: clamp( 0.9375rem , 0.6672297297rem  +  1.3513513514vw , 1.875rem )) {
    .single__destinations .destinations__content {
      padding: clamp( 0.9375rem , 0.6672297297rem  +  1.3513513514vw , 1.875rem );
    }
}

@supports not (padding: clamp( 0.9375rem , 0.6672297297rem  +  1.3513513514vw , 1.875rem )) {
    .single__destinations .destinations__content {
      padding: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 0.9375rem , 0.8113738739rem  +  0.6306306306vw , 1.375rem )) {
    .transportation-form {
      margin-bottom: clamp( 0.9375rem , 0.8113738739rem  +  0.6306306306vw , 1.375rem );
    }
}

@supports not (margin-bottom: clamp( 0.9375rem , 0.8113738739rem  +  0.6306306306vw , 1.375rem )) {
    .transportation-form {
      margin-bottom: calc(0.9375rem + 0.4375 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-bottom: clamp( 1.5625rem , 1.2922297297rem  +  1.3513513514vw , 2.5rem )) {
    .transportation__table table {
      padding-bottom: clamp( 1.5625rem , 1.2922297297rem  +  1.3513513514vw , 2.5rem );
    }
}

@supports not (padding-bottom: clamp( 1.5625rem , 1.2922297297rem  +  1.3513513514vw , 2.5rem )) {
    .transportation__table table {
      padding-bottom: calc(1.5625rem + 0.9375 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .transportation__table table {
      margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem );
    }
}

@supports not (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .transportation__table table {
      margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-left: clamp( 0.9375rem , 0.4870495495rem  +  2.2522522523vw , 2.5rem )) {
    .single__unique .unique__content__text {
      padding-left: clamp( 0.9375rem , 0.4870495495rem  +  2.2522522523vw , 2.5rem );
    }
}

@supports not (padding-left: clamp( 0.9375rem , 0.4870495495rem  +  2.2522522523vw , 2.5rem )) {
    .single__unique .unique__content__text {
      padding-left: calc(0.9375rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-right: clamp( 0.9375rem , 0.4870495495rem  +  2.2522522523vw , 2.5rem )) {
    .single__unique .unique__content__text {
      padding-right: clamp( 0.9375rem , 0.4870495495rem  +  2.2522522523vw , 2.5rem );
    }
}

@supports not (padding-right: clamp( 0.9375rem , 0.4870495495rem  +  2.2522522523vw , 2.5rem )) {
    .single__unique .unique__content__text {
      padding-right: calc(0.9375rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-bottom: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem )) {
    .single__unique .unique__content__text {
      padding-bottom: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem );
    }
}

@supports not (padding-bottom: clamp( 1.25rem , 0.8896396396rem  +  1.8018018018vw , 2.5rem )) {
    .single__unique .unique__content__text {
      padding-bottom: calc(1.25rem + 1.25 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-top: clamp( 2.5rem , 2.1396396396rem  +  1.8018018018vw , 3.75rem )) {
    .single__unique .unique__content__text {
      padding-top: clamp( 2.5rem , 2.1396396396rem  +  1.8018018018vw , 3.75rem );
    }
}

@supports not (padding-top: clamp( 2.5rem , 2.1396396396rem  +  1.8018018018vw , 3.75rem )) {
    .single__unique .unique__content__text {
      padding-top: calc(2.5rem + 1.25 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single__unique__wrp {
      margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem );
    }
}

@supports not (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single__unique__wrp {
      margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 0.9375rem , 0.6672297297rem  +  1.3513513514vw , 1.875rem )) {
    .alphabet__cities {
      margin-bottom: clamp( 0.9375rem , 0.6672297297rem  +  1.3513513514vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 0.9375rem , 0.6672297297rem  +  1.3513513514vw , 1.875rem )) {
    .alphabet__cities {
      margin-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-bottom: clamp( 1.25rem , 1.6525900901rem  +  -0.4504504505vw , 1.5625rem )) {
    .directions {
      padding-bottom: clamp( 1.25rem , 1.6525900901rem  +  -0.4504504505vw , 1.5625rem );
    }
}

@supports not (padding-bottom: clamp( 1.25rem , 1.6525900901rem  +  -0.4504504505vw , 1.5625rem )) {
    .directions {
      padding-bottom: calc(1.5625rem + -0.3125 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .directions {
      margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem );
    }
}

@supports not (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .directions {
      margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-bottom: clamp( 1.25rem , 1.6525900901rem  +  -0.4504504505vw , 1.5625rem )) {
    .single__transport {
      padding-bottom: clamp( 1.25rem , 1.6525900901rem  +  -0.4504504505vw , 1.5625rem );
    }
}

@supports not (padding-bottom: clamp( 1.25rem , 1.6525900901rem  +  -0.4504504505vw , 1.5625rem )) {
    .single__transport {
      padding-bottom: calc(1.5625rem + -0.3125 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single__cooperation {
      margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem );
    }
}

@supports not (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single__cooperation {
      margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .interest {
      margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem );
    }
}

@supports not (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .interest {
      margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single__spare {
      margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem );
    }
}

@supports not (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single__spare {
      margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .terminals {
      margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem );
    }
}

@supports not (margin-bottom: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .terminals {
      margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-top: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single-contant-container.no-img_top {
      padding-top: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem );
    }
}

@supports not (padding-top: clamp( 1.5625rem , 1.1120495495rem  +  2.2522522523vw , 3.125rem )) {
    .single-contant-container.no-img_top {
      padding-top: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 69.375);
    }
}

@supports (margin-bottom: clamp( 1.25rem , 0.7094594595rem  +  2.7027027027vw , 3.125rem )) {
    .geography__list__inner {
      margin-bottom: clamp( 1.25rem , 0.7094594595rem  +  2.7027027027vw , 3.125rem );
    }
}

@supports not (margin-bottom: clamp( 1.25rem , 0.7094594595rem  +  2.7027027027vw , 3.125rem )) {
    .geography__list__inner {
      margin-bottom: calc(1.25rem + 1.875 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-top: clamp( 0.9375rem , 0.6672297297rem  +  1.3513513514vw , 1.875rem )) {
    .geography__list {
      padding-top: clamp( 0.9375rem , 0.6672297297rem  +  1.3513513514vw , 1.875rem );
    }
}

@supports not (padding-top: clamp( 0.9375rem , 0.6672297297rem  +  1.3513513514vw , 1.875rem )) {
    .geography__list {
      padding-top: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 69.375);
    }
}
}

@media (max-width: 81.25em) and (min-width: 89.375em) {
  .header__logo {
    margin-right: 2.5rem;
  }
}

@media (max-width: 81.25em) and (min-width: 20em) and (max-width: 89.375em) {
@supports (margin-right: clamp( 0.625rem , 0.0844594595rem  +  2.7027027027vw , 2.5rem )) {
    .header__logo {
      margin-right: clamp( 0.625rem , 0.0844594595rem  +  2.7027027027vw , 2.5rem );
    }
}

@supports not (margin-right: clamp( 0.625rem , 0.0844594595rem  +  2.7027027027vw , 2.5rem )) {
    .header__logo {
      margin-right: calc(0.625rem + 1.875 * (100vw - 20rem) / 69.375);
    }
}
}

@media (max-width: 87.5em) and (min-width: 89.375em) {
  .hero__form {
    padding: 1.25rem;
  }

  .hero__adv {
    padding-right: 1.25rem;
  }
}

@media (max-width: 87.5em) and (min-width: 20em) and (max-width: 89.375em) {
@supports (padding: clamp( 0.9375rem , 0.8474099099rem  +  0.4504504505vw , 1.25rem )) {
    .hero__form {
      padding: clamp( 0.9375rem , 0.8474099099rem  +  0.4504504505vw , 1.25rem );
    }
}

@supports not (padding: clamp( 0.9375rem , 0.8474099099rem  +  0.4504504505vw , 1.25rem )) {
    .hero__form {
      padding: calc(0.9375rem + 0.3125 * (100vw - 20rem) / 69.375);
    }
}

@supports (padding-right: clamp( 0.3125rem , 0.0422297297rem  +  1.3513513514vw , 1.25rem )) {
    .hero__adv {
      padding-right: clamp( 0.3125rem , 0.0422297297rem  +  1.3513513514vw , 1.25rem );
    }
}

@supports not (padding-right: clamp( 0.3125rem , 0.0422297297rem  +  1.3513513514vw , 1.25rem )) {
    .hero__adv {
      padding-right: calc(0.3125rem + 0.9375 * (100vw - 20rem) / 69.375);
    }
}
}

@media (max-width: 36em) and (min-width: 89.375em) {
  .contacts__item {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 36em) and (min-width: 20em) and (max-width: 89.375em) {
@supports (margin-bottom: clamp( 0.0000000625rem , -0.7207206402rem  +  3.6036035135vw , 2.5rem )) {
    .contacts__item {
      margin-bottom: clamp( 0.0000000625rem , -0.7207206402rem  +  3.6036035135vw , 2.5rem );
    }
}

@supports not (margin-bottom: clamp( 0.0000000625rem , -0.7207206402rem  +  3.6036035135vw , 2.5rem )) {
    .contacts__item {
      margin-bottom: calc(0.0000000625rem + 2.4999999375 * (100vw - 20rem) / 69.375);
    }
}
}

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

}

.ul-no-styled li{
  padding-left: 0;
}





/* .webp .hero::after{ background-image: url(../img/hero/hero_bg.webp); } */