body {
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
}
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  -webkit-focus-ring-color: rgba(0, 0, 0, 0) !important;
  outline: none !important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.clear {
  display: table;
  clear: both;
}
p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: 'Montserrat';
  src: url('Montserrat-Black.ttf');
  src: local('Montserrat-Black'), url('../fonts/Montserrat-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('Montserrat-Bold.ttf');
  src: local('Montserrat-Bold'), url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('Montserrat-Regular.ttf');
  src: local('Montserrat-Regular'), url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.wow {
  opacity: 0;
  -webkit-transform: translate(0, 10vh);
          transform: translate(0, 10vh);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.wow.footer {
  -webkit-transform: none;
          transform: none;
}
.wow.animated {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
: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: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
          animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}
.f-throwOutDown {
  -webkit-animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
          animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}
@-webkit-keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
            transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
            transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}
@-webkit-keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
            transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
            transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
.f-zoomInUp {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
          animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}
.f-zoomOutDown {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
          animation: var(--f-transition-duration, 0.2s) ease 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) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
          animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}
.f-fadeOut {
  -webkit-animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
          animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) 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-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.1s) ease-out both f-fadeFastOut;
          animation: var(--f-transition-duration, 0.1s) 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-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-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);
  transition: var(--f-button-transition);
}
@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}
.f-button:focus:not(:focus-visible) {
  outline: none;
}
.f-button:focus-visible {
  outline: none;
  -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;
  transition: opacity 0.15s ease;
  -webkit-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%);
          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%);
          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);
          transform: rotate(90deg);
}
.f-carousel__nav .f-button:disabled,
.fancybox__nav .f-button:disabled {
  pointer-events: none;
}
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;
          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::-ms-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__backdrop:empty,
.fancybox__viewport:empty,
.fancybox__track:empty,
.fancybox__slide:empty {
  display: block;
}
.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;
  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-animating .fancybox__content,
.is-dragging .fancybox__content {
  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;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}
.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;
  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: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
          animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  -webkit-animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
          animation: var(--f-backdrop-enter-duration, 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: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
          animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}
.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  -webkit-animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
          animation: var(--f-backdrop-exit-duration, 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: calc(100% - 120px);
  height: 90%;
}
.fancybox__container.is-compact .has-iframe .fancybox__content,
.fancybox__container.is-compact .has-map .fancybox__content,
.fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}
.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;
  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: 16px;
  --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: 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;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.f-thumbs__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.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);
  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(--f-thumb-clip-width, 0))*-0.5);
  width: calc(var(--width, 0)*1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}
.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  -webkit-transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
          transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  -webkit-transition: none;
  transition: none;
  pointer-events: none;
}
.is-modern.is-resting .f-thumbs__slide {
  -webkit-transition: -webkit-transform 0.33s ease;
  transition: -webkit-transform 0.33s ease;
  transition: transform 0.33s ease;
  transition: transform 0.33s ease, -webkit-transform 0.33s ease;
}
.is-modern.is-resting .f-thumbs__slide__button {
  -webkit-transition: clip-path 0.33s ease;
  transition: clip-path 0.33s ease;
}
.is-using-tab .is-modern .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));
}
.f-thumbs__slide__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  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;
  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-modern .f-thumbs__slide__button {
  --clip-path: inset(0 calc((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * (1 - var(--progress, 0)) * 0.5) round var(--f-thumb-border-radius, 0));
  clip-path: var(--clip-path);
}
.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}
.is-classic .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 {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
}
.f-thumbs.is-horizontal .f-thumbs__track {
  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;
  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);
  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: 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: 16px;
  --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: 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;
  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);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-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;
}
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}
.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.owl-carousel .animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  -webkit-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
svg path {
  -webkit-transition: d 0.2s;
  transition: d 0.2s;
  /* Плавный переход при изменении пути */
}
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2vw;
  line-height: 6.4vw;
  font-weight: 400;
  color: #2D2D2D;
  position: relative;
}
body::after {
  content: '';
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #A6AD85;
}
body::before {
  content: '';
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #F5F3E6;
  z-index: 1;
}
h2,
h3,
h4 {
  color: #2D2D2D;
  font-size: 6.4vw;
  font-weight: 700;
  line-height: 7.46666667vw;
}
h4 {
  font-size: 3.73333333vw;
  line-height: 6.4vw;
}
@media (min-width: 768px) {
  body {
    font-size: 1.5625vw;
    line-height: 3.125vw;
  }
  body::before {
    background: -webkit-gradient(linear, left bottom, left top, from(#f5f3e6), color-stop(20%, #f5f3e6), color-stop(80%, #a6ad85), to(#a6ad85));
    background: linear-gradient(0deg, #f5f3e6 0%, #f5f3e6 20%, #a6ad85 80%, #a6ad85 100%);
  }
  h2,
  h3 {
    font-size: 3.125vw;
    line-height: 3.64583333vw;
  }
  h4 {
    font-size: 1.82291667vw;
    line-height: 3.125vw;
  }
}
@media (min-width: 1280px) {
  body {
    font-size: 12px;
    line-height: 24px;
  }
  h2,
  h3 {
    font-size: 24px;
    line-height: 28px;
  }
  h4 {
    font-size: 14px;
    line-height: 24px;
  }
}
.icons {
  width: 8.53333333vw;
  height: 8.53333333vw;
  display: inline-block;
  background-size: contain;
}
.icons.time {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 16c0 .35-.15.69-.4.94s-.58.39-.94.39A1.333 1.333 0 0 1 29.33 16a13.38 13.38 0 0 0-3.91-9.43c-2.5-2.5-5.89-3.9-9.42-3.91a1.333 1.333 0 0 1-1.34-1.33c0-.36.14-.69.39-.94S15.64 0 16 0c4.24 0 8.3 1.69 11.3 4.69 3 3 4.69 7.06 4.7 11.31zm-10.67 1.33A1.333 1.333 0 0 0 22.66 16a1.333 1.333 0 0 0-1.33-1.34h-3.04a2.6 2.6 0 0 0-.96-.96V9.33A1.333 1.333 0 0 0 16 8c-.36 0-.7.14-.95.39s-.39.58-.39.94v4.37a2.652 2.652 0 0 0-.55 4.18c.29.29.64.51 1.02.64.39.13.8.17 1.21.12a2.652 2.652 0 0 0 1.95-1.31h3.04zM2.43 9.04c-.26 0-.52.08-.74.23-.22.14-.39.35-.49.59-.1.25-.13.52-.08.77a1.335 1.335 0 0 0 1.05 1.05c.26.05.53.03.77-.07.24-.11.45-.28.6-.5.15-.21.22-.47.22-.74a1.333 1.333 0 0 0-1.33-1.33zM2.66 16c0-.27-.08-.53-.22-.75-.15-.21-.36-.39-.6-.49a1.354 1.354 0 0 0-1.45.29c-.19.19-.32.43-.37.69-.05.25-.02.52.08.77.1.24.27.45.49.59.22.15.47.23.74.23A1.333 1.333 0 0 0 2.66 16zM16 29.33c-.27 0-.53.08-.75.22-.21.15-.39.36-.49.6a1.354 1.354 0 0 0 .29 1.45c.19.19.43.32.69.37.25.05.52.02.76-.08.25-.1.46-.27.6-.49.15-.22.23-.47.23-.74A1.333 1.333 0 0 0 16 29.33zM5.62 4.27c-.26 0-.52.08-.74.23-.22.14-.39.35-.49.59-.1.25-.13.52-.07.77.05.26.17.5.36.69.19.18.42.31.68.36.26.05.53.03.77-.07.25-.1.45-.28.6-.49a1.327 1.327 0 0 0-.16-1.69c-.25-.25-.59-.39-.95-.39zm4.75-3.15c-.27 0-.52.07-.74.22-.22.15-.39.36-.49.6-.11.24-.13.51-.08.77a1.324 1.324 0 0 0 1.05 1.05 1.358 1.358 0 0 0 1.37-.57 1.333 1.333 0 0 0-1.11-2.07zM2.43 20.28c-.26 0-.52.08-.74.23-.22.14-.39.35-.49.6a1.306 1.306 0 0 0 .29 1.45c.18.19.42.31.68.36.26.06.53.03.77-.07s.45-.27.6-.49c.15-.22.22-.48.22-.74 0-.36-.14-.7-.39-.95s-.58-.39-.94-.39zm3.19 4.77c-.26 0-.52.08-.74.23-.22.14-.39.35-.49.6-.1.24-.13.51-.07.77.05.25.17.49.36.68.19.19.42.31.68.36.26.05.53.03.77-.07.25-.1.45-.27.6-.49.15-.22.23-.48.23-.74 0-.36-.14-.7-.39-.95s-.59-.39-.95-.39zm4.75 3.16c-.27 0-.52.08-.74.22-.22.15-.39.36-.49.6-.11.24-.13.51-.08.77a1.324 1.324 0 0 0 1.05 1.05 1.358 1.358 0 0 0 1.37-.57 1.333 1.333 0 0 0-1.11-2.07zm19.19-7.93c-.26 0-.52.08-.74.23-.22.14-.39.35-.49.6a1.306 1.306 0 0 0 .29 1.45c.18.19.42.31.68.36.26.06.53.03.77-.07s.45-.27.6-.49c.14-.22.22-.48.22-.74a1.333 1.333 0 0 0-1.33-1.34zm-3.19 4.77c-.27 0-.52.08-.74.23-.22.14-.39.35-.49.6-.11.24-.13.51-.08.77.05.25.18.49.36.68.19.19.43.31.69.36.26.05.52.03.77-.07.24-.1.45-.27.6-.49.14-.22.22-.48.22-.74a1.333 1.333 0 0 0-1.33-1.34zm-4.75 3.16c-.26 0-.52.08-.74.22-.22.15-.39.36-.49.6-.1.24-.13.51-.07.77.05.26.17.5.36.68a1.306 1.306 0 0 0 1.45.29c.25-.1.45-.27.6-.49a1.32 1.32 0 0 0-.16-1.68c-.25-.25-.59-.39-.95-.39z' fill='%23F5F3E6'/%3E%3C/svg%3E");
}
.icons.info {
  width: 4.26666667vw;
  height: 4.26666667vw;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7.5' stroke='%23646D4E'/%3E%3Cpath d='M9.12 3.6H6.89l.37 5.48h1.49l.37-5.48zm-1.67 8.37q.24.12.55.12.31 0 .56-.13.14-.07.26-.18.17-.17.25-.37.08-.19.08-.41 0-.25-.09-.45-.08-.17-.23-.31-.09-.09-.2-.15-.27-.16-.63-.16t-.63.16q-.1.06-.2.15-.14.13-.22.3-.1.21-.1.46 0 .23.08.42.08.19.25.36.12.11.27.19z' fill='%23646D4E' fill-rule='evenodd'/%3E%3C/svg%3E");
}
@media (min-width: 768px) {
  .icons {
    width: 4.16666667vw;
    height: 4.16666667vw;
  }
  .icons.info {
    width: 2.08333333vw;
    height: 2.08333333vw;
  }
}
@media (min-width: 1280px) {
  .icons {
    width: 32px;
    height: 32px;
  }
  .icons.info {
    width: 16px;
    height: 16px;
  }
}
a.btn,
.btn {
  display: inline-block;
  border-radius: 7.46666667vw;
  background: #646D4E;
  color: #F5F3E6;
  font-size: 4.8vw;
  font-weight: 400;
  line-height: 5.33333333vw;
  padding: 2.4vw 5.33333333vw 2.93333333vw 5.33333333vw;
  text-decoration: none;
  cursor: pointer;
}
a.btn span,
.btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.13333333vw;
}
a.btn span:before,
.btn span:before {
  content: '';
  width: 2.13333333vw;
  height: 2.13333333vw;
  background: #A9CD4E;
  border-radius: 50%;
  -webkit-animation: dot 2s linear infinite;
          animation: dot 2s linear infinite;
}
a.btn.light,
.btn.light {
  background: none;
  border: 1px solid #F5F3E6;
  padding: 2.13333333vw 5.06666667vw 2.66666667vw 5.06666667vw;
}
.input {
  border: 0;
  color: #2D2D2D;
  font-family: 'Montserrat', sans-serif;
  font-size: 4.26666667vw;
  font-style: normal;
  line-height: 5.33333333vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3.2vw 4.26666667vw;
  width: 100%;
  border-radius: 2.13333333vw;
  background: #F5F3E6;
}
.input.error {
  -webkit-box-shadow: inset 0px 0px 0.53333333vw 1.06666667vw #FC4D29;
          box-shadow: inset 0px 0px 0.53333333vw 1.06666667vw #FC4D29;
}
.radio {
  position: relative;
}
.radio input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.radio p {
  padding: 2.13333333vw 0.53333333vw;
  margin: 0;
  font-size: 3.46666667vw;
  line-height: 1;
  border-radius: 1.06666667vw;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.radio input:checked ~ p {
  background: #F5F3E6;
  color: #646D4E;
}
.count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 2.13333333vw;
  background: #F5F3E6;
}
.count span {
  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;
  font-size: 4.26666667vw;
  line-height: 1;
  color: #646D4E;
  font-weight: bold;
  padding: 0 3.2vw;
}
.count input {
  border-radius: 0;
  text-align: center;
  padding: 3.2vw 0;
}
@-webkit-keyframes dot {
  0% {
    -webkit-box-shadow: 0px 0px 0.53333333vw 0px #A9CD4E;
            box-shadow: 0px 0px 0.53333333vw 0px #A9CD4E;
  }
  50% {
    -webkit-box-shadow: 0px 0px 2.13333333vw 0px #A9CD4E;
            box-shadow: 0px 0px 2.13333333vw 0px #A9CD4E;
  }
  100% {
    -webkit-box-shadow: 0px 0px 0.53333333vw 0px #A9CD4E;
            box-shadow: 0px 0px 0.53333333vw 0px #A9CD4E;
  }
}
@keyframes dot {
  0% {
    -webkit-box-shadow: 0px 0px 0.53333333vw 0px #A9CD4E;
            box-shadow: 0px 0px 0.53333333vw 0px #A9CD4E;
  }
  50% {
    -webkit-box-shadow: 0px 0px 2.13333333vw 0px #A9CD4E;
            box-shadow: 0px 0px 2.13333333vw 0px #A9CD4E;
  }
  100% {
    -webkit-box-shadow: 0px 0px 0.53333333vw 0px #A9CD4E;
            box-shadow: 0px 0px 0.53333333vw 0px #A9CD4E;
  }
}
.owl-carousel .owl-nav button {
  line-height: 0 !important;
}
.arrow {
  width: 9.6vw;
  height: 9.6vw;
  display: inline-block;
  line-height: 0;
}
.arrow.left {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.31 25.63c-1.9 1.21-4.47 2.93-6.66 4.67-2.75 2.18-6.46 3.71-9.9 3.01l-6.33-1.3c-4.4-.91-7.19-5.25-6.19-9.62l2.51-10.98c.78-3.4 3.68-5.91 7.16-6.18l11.82-.94c4.21-.34 7.95 2.66 8.55 6.84l1.36 9.56c.3 2.07-.55 3.82-2.32 4.94z' fill='%23F5F3E6' fill-rule='evenodd'/%3E%3Cpath d='M13.2 18.5l1.98 1.97c.19.2.19.51 0 .71-.2.2-.51.2-.71 0l-2.83-2.83c-.2-.2-.2-.51 0-.71l2.83-2.83c.2-.19.51-.19.71 0 .19.2.19.51 0 .71L13.2 17.5H24v1H13.2z' fill='%23646D4E' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.arrow.right {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.51 2.8c2.1.51 4.95 1.19 7.68 1.71 4.06.76 7.95 3.77 8.87 7.81l1.01 4.43a8.012 8.012 0 0 1-5.36 9.4l-15.96 5.12a8.01 8.01 0 0 1-9.82-4.54l-2.24-5.34a8.006 8.006 0 0 1 1.83-8.84l8.52-8.23c1.49-1.44 3.46-2.01 5.47-1.52z' fill='%23F5F3E6' fill-rule='evenodd'/%3E%3Cpath d='M22.79 17.5l-1.98-1.98a.513.513 0 0 1 0-.71c.2-.19.51-.19.71 0l2.83 2.83c.2.2.2.51 0 .71l-2.83 2.83c-.2.2-.51.2-.71 0a.513.513 0 0 1 0-.71l1.98-1.97H12v-1h10.79z' fill='%23646D4E' fill-rule='evenodd'/%3E%3C/svg%3E");
}
@media (min-width: 768px) {
  a.btn,
  .btn {
    border-radius: 3.64583333vw;
    font-size: 2.34375vw;
    line-height: 2.60416667vw;
    padding: 1.171875vw 2.60416667vw 1.43229167vw 2.60416667vw;
  }
  a.btn span,
  .btn span {
    gap: 1.04166667vw;
  }
  a.btn span:before,
  .btn span:before {
    width: 1.04166667vw;
    height: 1.04166667vw;
  }
  a.btn.light,
  .btn.light {
    padding: 1.04166667vw 2.47395833vw 1.30208333vw 2.47395833vw;
  }
  .arrow {
    width: 4.6875vw;
    height: 4.6875vw;
  }
  .input {
    font-size: 2.08333333vw;
    line-height: 2.60416667vw;
    padding: 1.5625vw 2.08333333vw;
    border-radius: 1.04166667vw;
  }
  .input.error {
    -webkit-box-shadow: inset 0px 0px 0.26041667vw 0.52083333vw #FC4D29;
            box-shadow: inset 0px 0px 0.26041667vw 0.52083333vw #FC4D29;
  }
  .radio p {
    padding: 1.04166667vw 0.26041667vw;
    font-size: 2.08333333vw;
    border-radius: 0.52083333vw;
  }
  .count {
    border-radius: 1.04166667vw;
  }
  .count span {
    font-size: 2.08333333vw;
    padding: 0 1.5625vw;
  }
  .count input {
    padding: 1.5625vw 0;
  }
}
@media (min-width: 1280px) {
  a.btn,
  .btn {
    border-radius: 28px;
    font-size: 18px;
    line-height: 20px;
    padding: 9px 20px 11px 20px;
  }
  a.btn span,
  .btn span {
    gap: 8px;
  }
  a.btn span:before,
  .btn span:before {
    width: 8px;
    height: 8px;
  }
  a.btn.light,
  .btn.light {
    padding: 8px 19px 10px 19px;
  }
  .arrow {
    width: 36px;
    height: 36px;
  }
  .input {
    font-size: 16px;
    line-height: 20px;
    padding: 12px 16px;
    border-radius: 8px;
  }
  .input.error {
    -webkit-box-shadow: inset 0px 0px 2px 4px #FC4D29;
            box-shadow: inset 0px 0px 2px 4px #FC4D29;
  }
  .radio p {
    padding: 8px 2px;
    font-size: 16px;
    border-radius: 4px;
  }
  .count {
    border-radius: 8px;
  }
  .count span {
    font-size: 16px;
    padding: 0 12px;
  }
  .count input {
    padding: 12px 0;
  }
}
.header {
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5.33333333vw 2.13333333vw 6.4vw 5.33333333vw;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header__left,
.header__right {
  display: none;
}
.header__logo {
  line-height: 0;
  position: relative;
  z-index: 103;
}
.header__logo .logo {
  width: 35.73333333vw;
  height: 9.33333333vw;
}
.header__logo .slogan {
  position: absolute;
  left: 8vw;
  bottom: 0.53333333vw;
  font-size: 2.66666667vw;
  text-decoration: none;
  color: #2D2D2D;
  font-weight: 400;
}
.header__logo .city {
  display: none;
}
.header__opener {
  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;
  padding: 3.46666667vw 3.2vw;
  position: relative;
  z-index: 102;
}
.header__opener span {
  display: block;
  position: relative;
  height: 2px;
  width: 24px;
  background: #a4572d;
  margin-top: 10px;
  margin-bottom: 10px;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: cubic-bezier(0.2, -2, 0.8, 2);
          transition-timing-function: cubic-bezier(0.2, -2, 0.8, 2);
}
.header__opener span:after,
.header__opener span:before {
  content: '';
  width: 24px;
  display: block;
  height: 2px;
  background: #a4572d;
  position: absolute;
  top: 9px;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: cubic-bezier(0.2, -2, 0.8, 2);
          transition-timing-function: cubic-bezier(0.2, -2, 0.8, 2);
}
.header__opener span:after {
  top: -9px;
}
.header__menu {
  position: fixed;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  opacity: 0;
  right: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  bottom: 0;
  top: 0;
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 21.33333333vw 5.33333333vw 10.66666667vw;
  background: #F5F3E6;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  z-index: 101;
  gap: 5.33333333vw;
}
.header__menu__city {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.06666667vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.73333333vw;
  line-height: 1;
}
.header__menu__city svg {
  width: 6.4vw;
  height: 6.4vw;
}
.header__menu__nav {
  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;
}
.header__menu__nav a {
  color: #646D4E;
  font-size: 6.4vw;
  line-height: 10.66666667vw;
}
.header__menu__contacts {
  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;
  width: 100%;
  gap: 3.2vw;
}
.header__menu__contacts a.tg,
.header__menu__contacts a.wa {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.53333333vw;
          flex: 0 0 8.53333333vw;
  height: 8.53333333vw;
  background: #646D4E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
}
.header__menu__contacts a.tg svg,
.header__menu__contacts a.wa svg {
  width: 5.33333333vw;
  height: 5.33333333vw;
}
.header__menu__contacts a.phone {
  color: #2D2D2D;
  text-decoration: none;
  font-size: 5.33333333vw;
  line-height: 7.46666667vw;
}
.header.show {
  -webkit-transform: unset;
          transform: unset;
}
.header.active .header__menu {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}
.header.active .header__opener span {
  background: transparent;
}
.header.active .header__opener span:before,
.header.active .header__opener span:after {
  top: 0;
  margin-left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header.active .header__opener span:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 768px) {
  .header {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 2.60416667vw 1.5625vw 3.125vw 3.64583333vw;
    gap: 3.125vw;
  }
  .header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5625vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
  }
  .header__right a.phone {
    color: #2D2D2D;
    text-decoration: none;
    font-size: 2.08333333vw;
    line-height: 3.125vw;
    font-weight: 700;
    white-space: nowrap;
  }
  .header__right a.tg,
  .header__right a.wa {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 4.16666667vw;
            flex: 0 0 4.16666667vw;
    height: 4.16666667vw;
    background: #646D4E;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50%;
  }
  .header__right a.tg svg,
  .header__right a.wa svg {
    width: 2.60416667vw;
    height: 2.60416667vw;
  }
  .header__logo .logo {
    width: 23.4375vw;
    height: 6.11979167vw;
  }
  .header__logo .slogan {
    left: 5.20833333vw;
    bottom: 0.26041667vw;
    font-size: 1.5625vw;
  }
  .header__opener {
    padding: 1.69270833vw 1.5625vw;
  }
  .header__menu {
    padding: 10.41666667vw 2.60416667vw 5.20833333vw;
    gap: 2.60416667vw;
  }
  .header__menu__city {
    gap: 0.52083333vw;
    font-size: 2.34375vw;
  }
  .header__menu__city svg {
    width: 3.125vw;
    height: 3.125vw;
  }
  .header__menu__nav a {
    font-size: 4.16666667vw;
    line-height: 6.25vw;
  }
  .header__menu__contacts {
    gap: 2.60416667vw;
  }
  .header__menu__contacts a.tg,
  .header__menu__contacts a.wa {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6.25vw;
            flex: 0 0 6.25vw;
    height: 6.25vw;
  }
  .header__menu__contacts a.tg svg,
  .header__menu__contacts a.wa svg {
    width: 3.125vw;
    height: 3.125vw;
  }
  .header__menu__contacts a.phone {
    font-size: 3.64583333vw;
    line-height: 4.16666667vw;
  }
}
@media (min-width: 1280px) {
  .header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 32px 20px;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
  }
  .header__left {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .header__right {
    gap: 12px;
    margin-left: unset;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header__right a.phone {
    font-size: 18px;
    line-height: 20px;
  }
  .header__right a.tg,
  .header__right a.wa {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48px;
            flex: 0 0 48px;
    height: 48px;
  }
  .header__right a.tg svg,
  .header__right a.wa svg {
    width: 24px;
    height: 24px;
  }
  .header__logo {
    position: absolute;
    left: 50%;
    margin-left: -130px;
    top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .header__logo .logo {
    width: 260px;
    height: 64px;
  }
  .header__logo .slogan {
    left: 62px;
    bottom: 2px;
    font-size: 16px;
  }
  .header__logo .city {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    margin-top: 8px;
  }
  .header__logo .city svg {
    width: 12px;
    height: 12px;
    background: #F5F3E6;
    border-radius: 50%;
    padding: 2px;
  }
  .header__opener {
    display: none;
  }
  .header__menu {
    display: none;
  }
}
.main {
  position: relative;
  z-index: 3;
  min-height: 100vh;
}
.main__item {
  background: #F5F3E6;
  padding: 8.53333333vw 0 17.06666667vw;
}
.main__item__top {
  display: none;
}
.main__item__bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .main {
    padding: 14.58333333vw 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .main__item {
    background: #F5F3E6;
    position: relative;
    padding: 4.16666667vw 0 8.33333333vw;
  }
  .main__item__top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 1280px) {
  .main {
    padding: 112px 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 1280px;
    margin: 0 auto;
  }
  .main__item {
    background: #F5F3E6;
    padding: 32px 0 64px;
  }
}
.index {
  height: 160vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 1.06666667vw 0;
  position: relative;
  z-index: 1;
  background-size: cover;
}
.index__header {
  margin: auto 0;
  position: relative;
  padding: 0 4.26666667vw;
  z-index: 10;
}
.index__header h2 {
  color: #2D2D2D;
  font-size: 17.06666667vw;
  font-weight: 900;
  line-height: 16vw;
  text-transform: uppercase;
  word-break: break-all;
}
.index__star {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 96 96' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' d='M0 0H96V96H0z'/%3E%3Cpath d='M52.81 7.21l16.26 25.65a2.99 2.99 0 0 0 1.9 1.33l20.53 4.46c2.14.46 3.08 2.98 1.77 4.73L79.13 62.21c-.39.52-.6 1.15-.6 1.8v21.66c0 1.99-1.91 3.43-3.82 2.89l-23.77-6.79a2.96 2.96 0 0 0-1.59-.02l-32.66 8.62c-2.25.59-4.29-1.49-3.65-3.73l6.38-22.24c.25-.88.09-1.83-.45-2.57L2.14 38.31c-1.37-1.91-.1-4.59 2.25-4.74l27.77-1.79c1.01-.06 1.91-.63 2.41-1.5l13.1-22.96c1.13-1.96 3.93-2.02 5.14-.11z' fill='%23F5F3E6'/%3E%3C/svg%3E");
  width: 25.6vw;
  height: 25.6vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10.13333333vw 0 0 0;
  color: #D48400;
  font-size: 7.46666667vw;
  font-weight: 700;
  line-height: 8.53333333vw;
  text-align: center;
  z-index: 12;
  margin: 0 0 14.93333333vw 4.26666667vw;
}
.index__fig__top,
.index__fig__bottom {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
}
.index__fig__bottom {
  top: unset;
  bottom: 0;
}
.index.ls .index__header .btn {
  z-index: 11;
  position: absolute;
  right: 4.26666667vw;
  top: 18.66666667vw;
}
@media (min-width: 768px) {
  .index {
    height: 78.125vw;
    margin: 0 0.52083333vw 0;
  }
  .index__header {
    padding: 0 2.08333333vw;
  }
  .index__header h2 {
    font-size: 7.8125vw;
    line-height: 7.8125vw;
  }
  .index__star {
    width: 12.5vw;
    height: 12.5vw;
    padding: 4.94791667vw 0 0 0;
    font-size: 3.64583333vw;
    line-height: 4.16666667vw;
    margin: 0 0 7.29166667vw 2.08333333vw;
  }
  .index.ls .index__header .btn {
    right: 2.08333333vw;
    top: 9.11458333vw;
  }
}
@media (min-width: 1280px) {
  .index {
    height: 600px;
    margin: 0 4px 0;
  }
  .index__header {
    padding: 0 16px;
  }
  .index__header h2 {
    font-size: 64px;
    line-height: 60px;
  }
  .index__star {
    width: 96px;
    height: 96px;
    padding: 38px 0 0 0;
    font-size: 28px;
    line-height: 32px;
    margin: 0 0 56px 16px;
  }
  .index.ls .index__header .btn {
    right: 16px;
    top: 70px;
  }
}
.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 19.2vw 0 10.66666667vw;
  background: #646D4E;
  position: relative;
  margin: 0 1.06666667vw;
}
.about__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.26666667vw;
  padding: 0 4.26666667vw;
}
.about__text h3,
.about__text p {
  color: #F5F3E6;
}
.about__images {
  margin-top: 21.33333333vw;
  position: relative;
  z-index: 10;
}
.about__images .item img {
  border-radius: 2.13333333vw;
}
.about__images .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 2.13333333vw 4.26666667vw 0 0;
}
.about__fig {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: -1px;
}
.about__fig.bottom {
  top: unset;
  bottom: -1px;
}
@media (min-width: 768px) {
  .about {
    padding: 9.375vw 0 5.20833333vw;
    margin: 0 0.52083333vw;
  }
  .about__text {
    gap: 2.08333333vw;
    padding: 0 2.08333333vw;
  }
  .about__images {
    margin-top: 10.41666667vw;
  }
  .about__images .item img {
    border-radius: 1.04166667vw;
  }
  .about__images .owl-nav {
    padding: 1.04166667vw 2.08333333vw 0 0;
  }
}
@media (min-width: 1280px) {
  .about {
    padding: 72px 0 40px;
    margin: 0 4px;
  }
  .about__text {
    gap: 16px;
    padding: 0 16px;
  }
  .about__images {
    margin-top: 80px;
  }
  .about__images .item img {
    border-radius: 8px;
  }
  .about__images .owl-nav {
    padding: 8px 16px 0 0;
  }
}
.emotions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 8.53333333vw 0 17.06666667vw;
  position: relative;
  margin: 0 1.06666667vw;
}
.emotions h3 {
  padding: 0 4.26666667vw;
}
.emotions__img {
  position: relative;
}
.emotions__img img {
  z-index: 1;
}
.emotions__img__fig {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: -1px;
}
.emotions__img__fig.bottom {
  top: unset;
  bottom: -1px;
}
.emotions p {
  padding: 8.53333333vw 4.26666667vw 0;
}
.emotions__btn {
  padding: 8.53333333vw 0 0;
  text-align: center;
}
@media (min-width: 768px) {
  .emotions {
    padding: 4.16666667vw 0 8.33333333vw;
    margin: 0 0.52083333vw;
  }
  .emotions h3 {
    padding: 0 2.08333333vw;
  }
  .emotions p {
    padding: 4.16666667vw 2.08333333vw 0;
  }
  .emotions__btn {
    padding: 4.16666667vw 0 0;
  }
}
@media (min-width: 1280px) {
  .emotions {
    padding: 32px 0 64px;
    margin: 0 4px;
  }
  .emotions h3 {
    padding: 0 16px;
  }
  .emotions p {
    padding: 32px 16px 0;
  }
  .emotions__btn {
    padding: 32px 0 0;
  }
}
.way {
  position: relative;
  margin: 0 1.06666667vw;
}
.way h3 {
  padding: 0 4.26666667vw;
}
.way__info {
  background: #3968A8;
  color: #F5F3E6;
  padding: 8.53333333vw 4.26666667vw 17.06666667vw 4.26666667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8.53333333vw;
}
.way__info h4 {
  font-size: 6.4vw;
  font-weight: 400;
  line-height: 7.46666667vw;
  color: #F5F3E6;
}
.way__info__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.26666667vw;
}
.way__info__list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.06666667vw;
  min-height: 8.53333333vw;
  position: relative;
  padding-left: 14.93333333vw;
}
.way__info__list .item .icons {
  position: absolute;
  left: 0;
  top: 0;
}
.way__info__list .item h5 {
  font-size: 6.4vw;
  font-weight: 700;
  line-height: 7.46666667vw;
  margin: 0;
}
.way__info__list .item p {
  color: #DEDBCC;
  font-size: 3.2vw;
  font-weight: 400;
  line-height: 4.26666667vw;
}
.way__info__btn {
  text-align: center;
  position: relative;
  z-index: 10;
}
.way__fig {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: -1px;
}
@media (min-width: 768px) {
  .way {
    margin: 0 0.52083333vw;
  }
  .way h3 {
    padding: 0 2.08333333vw;
  }
  .way__info {
    padding: 4.16666667vw 2.08333333vw 8.33333333vw 2.08333333vw;
    gap: 4.16666667vw;
  }
  .way__info h4 {
    font-size: 3.125vw;
    line-height: 3.64583333vw;
  }
  .way__info__list {
    gap: 2.08333333vw;
  }
  .way__info__list .item {
    gap: 0.52083333vw;
    min-height: 4.16666667vw;
    padding-left: 7.29166667vw;
  }
  .way__info__list .item h5 {
    font-size: 3.125vw;
    line-height: 3.64583333vw;
  }
  .way__info__list .item p {
    font-size: 1.5625vw;
    line-height: 2.08333333vw;
  }
}
@media (min-width: 1280px) {
  .way {
    margin: 0 4px;
  }
  .way h3 {
    padding: 0 16px;
  }
  .way__info {
    padding: 32px 16px 64px 16px;
    gap: 32px;
  }
  .way__info h4 {
    font-size: 24px;
    line-height: 28px;
  }
  .way__info__list {
    gap: 16px;
  }
  .way__info__list .item {
    gap: 4px;
    min-height: 32px;
    padding-left: 56px;
  }
  .way__info__list .item h5 {
    font-size: 24px;
    line-height: 28px;
  }
  .way__info__list .item p {
    font-size: 12px;
    line-height: 16px;
  }
}
.step {
  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;
  padding: 10.66666667vw 5.33333333vw 17.06666667vw;
  gap: 6.4vw;
}
.step__list {
  list-style-type: none;
  counter-reset: list-counter;
  margin: 0;
  padding: 0;
}
.step__list li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 8.53333333vw;
}
.step__list li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 6.4vw;
  height: 6.4vw;
  color: #646D4E;
  font-size: 3.73333333vw;
  font-weight: 700;
  line-height: 6.4vw;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dashed #CBC7B4;
  border-radius: 50%;
  background: #DEDBCC;
}
.step__list li + li {
  margin-top: 4.26666667vw;
}
@media (min-width: 768px) {
  .step {
    padding: 5.20833333vw 2.60416667vw 8.33333333vw;
    gap: 3.125vw;
  }
  .step__list li {
    padding-left: 4.16666667vw;
  }
  .step__list li::before {
    width: 3.125vw;
    height: 3.125vw;
    font-size: 1.82291667vw;
    line-height: 3.125vw;
  }
  .step__list li + li {
    margin-top: 2.08333333vw;
  }
}
@media (min-width: 1280px) {
  .step {
    padding: 40px 20px 64px;
    gap: 24px;
  }
  .step__list li {
    padding-left: 32px;
  }
  .step__list li::before {
    width: 24px;
    height: 24px;
    font-size: 14px;
    line-height: 24px;
  }
  .step__list li + li {
    margin-top: 16px;
  }
}
.team {
  position: relative;
  margin: 0 1.06666667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 8.53333333vw 0 17.06666667vw;
}
.team h3 {
  padding: 0 4.26666667vw;
}
.team__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 8.53333333vw 4.26666667vw 0;
}
.team__list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 3.2vw;
}
.team__list .item__avatar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.team__list .item__avatar img {
  z-index: 2;
}
.team__list .item__avatar img + img {
  margin-top: -4.26666667vw;
  z-index: 1;
}
.team__list .item__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 53.33333333vw;
          flex: 0 0 53.33333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.team__list .item__text h4 {
  color: #2D2D2D;
  font-size: 4.26666667vw;
  font-weight: 700;
  line-height: 5.33333333vw;
}
.team__list .item__text p.job {
  color: #646D4E;
  font-size: 3.2vw;
  font-weight: 400;
  line-height: 5.33333333vw;
  margin-bottom: 1.06666667vw;
}
.team__list .item__text p {
  font-size: 3.2vw;
  font-weight: 400;
  line-height: 5.33333333vw;
}
.team__list .item + .item {
  margin-top: -4.26666667vw;
}
.team__list .item + .item .item__text {
  padding-top: 4.26666667vw;
}
.team__fig {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: -1px;
}
@media (min-width: 768px) {
  .team {
    margin: 0 0.52083333vw;
    padding: 4.16666667vw 0 8.33333333vw;
  }
  .team h3 {
    padding: 0 2.08333333vw;
  }
  .team__list {
    padding: 4.16666667vw 2.08333333vw 0;
  }
  .team__list .item {
    gap: 1.5625vw;
  }
  .team__list .item__avatar img + img {
    margin-top: -2.08333333vw;
  }
  .team__list .item__text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 26.04166667vw;
            flex: 0 0 26.04166667vw;
  }
  .team__list .item__text h4 {
    font-size: 2.08333333vw;
    line-height: 2.60416667vw;
  }
  .team__list .item__text p.job {
    font-size: 1.5625vw;
    line-height: 2.60416667vw;
    margin-bottom: 0.52083333vw;
  }
  .team__list .item__text p {
    font-size: 1.5625vw;
    line-height: 2.60416667vw;
  }
  .team__list .item + .item {
    margin-top: -2.08333333vw;
  }
  .team__list .item + .item .item__text {
    padding-top: 2.08333333vw;
  }
}
@media (min-width: 1280px) {
  .team {
    margin: 0 4px;
    padding: 32px 0 64px;
  }
  .team h3 {
    padding: 0 16px;
  }
  .team__list {
    padding: 32px 16px 0;
  }
  .team__list .item {
    gap: 12px;
  }
  .team__list .item__avatar img + img {
    margin-top: -16px;
  }
  .team__list .item__text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
  }
  .team__list .item__text h4 {
    font-size: 16px;
    line-height: 20px;
  }
  .team__list .item__text p.job {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 4px;
  }
  .team__list .item__text p {
    font-size: 12px;
    line-height: 20px;
  }
  .team__list .item + .item {
    margin-top: -16px;
  }
  .team__list .item + .item .item__text {
    padding-top: 16px;
  }
}
.car {
  position: relative;
  margin: 0 1.06666667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.26666667vw;
  padding: 0 0 17.06666667vw;
  background: #DEDBCC;
}
.car h3 {
  font-size: 6.4vw;
  font-weight: 700;
  line-height: 7.46666667vw;
  padding: 0 4.26666667vw;
}
.car p {
  padding: 0 4.26666667vw;
}
.car__images .item {
  position: relative;
}
.car__images .item img {
  z-index: 1;
}
.car__images h4 {
  color: #a4572d;
  font-size: 4.26666667vw;
  font-weight: 400;
  line-height: 5.33333333vw;
  padding: 5.33333333vw 0 0 4.26666667vw;
}
.car__images .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  bottom: -12.8vw;
  right: 4.26666667vw;
}
.car__images__fig {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: -1px;
}
.car__images__fig.bottom {
  top: unset;
  bottom: -1px;
}
.car__warning {
  padding: 6.4vw 0 0 6.4vw;
  position: relative;
}
.car__warning .icons {
  position: absolute;
  left: 4.26666667vw;
  top: 7.46666667vw;
}
.car__fig {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: -1px;
}
@media (min-width: 768px) {
  .car {
    margin: 0 0.52083333vw;
    gap: 2.08333333vw;
    padding: 0 0 8.33333333vw;
  }
  .car h3 {
    font-size: 3.125vw;
    line-height: 3.64583333vw;
    padding: 0 2.08333333vw;
  }
  .car p {
    padding: 0 2.08333333vw;
  }
  .car__images h4 {
    font-size: 2.08333333vw;
    line-height: 2.60416667vw;
    padding: 2.60416667vw 0 0 2.08333333vw;
  }
  .car__images .owl-nav {
    bottom: -6.25vw;
    right: 2.08333333vw;
  }
  .car__warning {
    padding: 3.125vw 0 0 3.125vw;
  }
  .car__warning .icons {
    left: 2.08333333vw;
    top: 3.64583333vw;
  }
}
@media (min-width: 1280px) {
  .car {
    margin: 0 4px;
    gap: 16px;
    padding: 0 0 64px;
  }
  .car h3 {
    font-size: 24px;
    line-height: 28px;
    padding: 0 16px;
  }
  .car p {
    padding: 0 16px;
  }
  .car__images h4 {
    font-size: 16px;
    line-height: 20px;
    padding: 20px 0 0 16px;
  }
  .car__images .owl-nav {
    bottom: -48px;
    right: 16px;
  }
  .car__warning {
    padding: 24px 0 0 24px;
  }
  .car__warning .icons {
    left: 16px;
    top: 28px;
  }
}
.start {
  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;
  padding: 14.93333333vw 4.26666667vw;
  background: #646D4E;
  position: relative;
  margin: 0 1.06666667vw;
  color: #F5F3E6;
}
.start h3 {
  text-align: center;
  color: #F5F3E6;
  font-weight: 400;
  margin-bottom: 2.13333333vw;
  position: relative;
  z-index: 10;
}
.start h3 b {
  font-weight: 700;
}
.start p {
  color: #F5F3E6;
  font-size: 3.2vw;
  font-weight: 700;
  line-height: 5.33333333vw;
  text-align: center;
  position: relative;
  z-index: 10;
}
.start .btn {
  margin-top: 6.4vw;
  position: relative;
  z-index: 10;
}
.start__fig {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: -1px;
}
.start__fig.bottom {
  top: unset;
  bottom: -1px;
}
@media (min-width: 768px) {
  .start {
    padding: 7.29166667vw 2.08333333vw;
    margin: 0 0.52083333vw;
  }
  .start h3 {
    margin-bottom: 1.04166667vw;
  }
  .start p {
    font-size: 1.5625vw;
    line-height: 2.60416667vw;
  }
  .start .btn {
    margin-top: 3.125vw;
  }
}
@media (min-width: 1280px) {
  .start {
    padding: 56px 16px;
    margin: 0 4px;
  }
  .start h3 {
    margin-bottom: 8px;
  }
  .start p {
    font-size: 12px;
    line-height: 20px;
  }
  .start .btn {
    margin-top: 24px;
  }
}
.sale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #DEDBCC;
  position: relative;
  margin: 0 1.06666667vw;
  padding: 17.06666667vw 4.26666667vw;
  gap: 6.4vw;
}
.sale__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.26666667vw;
  position: relative;
  z-index: 10;
}
.sale__list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.13333333vw;
}
.sale__list .item__value {
  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-box-flex: 0;
      -ms-flex: 0 0 26.66666667vw;
          flex: 0 0 26.66666667vw;
  font-size: 3.73333333vw;
  line-height: 1;
  font-weight: 700;
  color: #646D4E;
  position: relative;
}
.sale__list .item__value span {
  position: relative;
  z-index: 2;
}
.sale__list .item__value svg {
  position: absolute;
  z-index: 1;
  width: 26.66666667vw;
  height: 15.73333333vw;
}
.sale__list .item__text h4 {
  font-size: 4.26666667vw;
}
.sale__list .item:nth-child(2) .item__value svg {
  width: 21.06666667vw;
  height: 15.2vw;
}
.sale .btn {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  position: relative;
  z-index: 10;
}
.sale svg.top,
.sale svg.bottom {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}
.sale svg.bottom {
  top: unset;
  bottom: -1px;
}
@media (min-width: 768px) {
  .sale {
    margin: 0 0.52083333vw;
    padding: 8.33333333vw 2.08333333vw;
    gap: 3.125vw;
  }
  .sale__list {
    gap: 2.08333333vw;
  }
  .sale__list .item {
    gap: 1.04166667vw;
  }
  .sale__list .item__value {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 13.02083333vw;
            flex: 0 0 13.02083333vw;
    font-size: 1.82291667vw;
  }
  .sale__list .item__value svg {
    width: 13.02083333vw;
    height: 7.68229167vw;
  }
  .sale__list .item__text h4 {
    font-size: 2.08333333vw;
  }
  .sale__list .item:nth-child(2) .item__value svg {
    width: 10.28645833vw;
    height: 7.421875vw;
  }
}
@media (min-width: 1280px) {
  .sale {
    margin: 0 4px;
    padding: 64px 16px;
    gap: 24px;
  }
  .sale__list {
    gap: 16px;
  }
  .sale__list .item {
    gap: 8px;
  }
  .sale__list .item__value {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    font-size: 14px;
  }
  .sale__list .item__value svg {
    width: 100px;
    height: 59px;
  }
  .sale__list .item__text h4 {
    font-size: 16px;
  }
  .sale__list .item:nth-child(2) .item__value svg {
    width: 79px;
    height: 57px;
  }
}
.faq {
  padding: 10.66666667vw 4.26666667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.26666667vw;
}
.faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.26666667vw;
}
.faq__list .item h4 {
  position: relative;
  font-size: 4.26666667vw;
  line-height: 5.33333333vw;
  padding-right: 12.8vw;
}
.faq__list .item h4::after {
  content: '';
  position: absolute;
  top: 1.33333333vw;
  right: 0.8vw;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 11 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 0H5v5H0v1h5v5h1V6h5V5H6V0z' clip-rule='evenodd' fill='%23F5F3E6' fill-rule='evenodd'/%3E%3C/svg%3E");
  width: 2.93333333vw;
  height: 2.93333333vw;
  background-size: 100%;
}
.faq__list .item h4::before {
  content: '';
  position: absolute;
  top: 0.53333333vw;
  right: 0;
  width: 4.53333333vw;
  height: 4.53333333vw;
  background: #A6AD85;
  border-radius: 50%;
}
.faq__list .item .item__content {
  display: none;
  padding-top: 2.13333333vw;
  font-size: 3.2vw;
  line-height: 5.33333333vw;
}
.faq__list .item.active h4::after,
.faq__list .item.active h4::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.faq__list .item.active h4::before {
  background: #646D4E;
}
@media (min-width: 768px) {
  .faq {
    padding: 5.20833333vw 2.08333333vw;
    gap: 2.08333333vw;
  }
  .faq__list {
    gap: 2.08333333vw;
  }
  .faq__list .item h4 {
    font-size: 2.08333333vw;
    line-height: 2.60416667vw;
    padding-right: 6.25vw;
  }
  .faq__list .item h4::after {
    top: 0.65104167vw;
    right: 0.390625vw;
    width: 1.43229167vw;
    height: 1.43229167vw;
  }
  .faq__list .item h4::before {
    top: 0.26041667vw;
    width: 2.21354167vw;
    height: 2.21354167vw;
  }
  .faq__list .item .item__content {
    padding-top: 1.04166667vw;
    font-size: 1.5625vw;
    line-height: 2.60416667vw;
  }
}
@media (min-width: 1280px) {
  .faq {
    padding: 40px 16px;
    gap: 16px;
  }
  .faq__list {
    gap: 16px;
  }
  .faq__list .item h4 {
    font-size: 16px;
    line-height: 20px;
    padding-right: 48px;
  }
  .faq__list .item h4::after {
    top: 5px;
    right: 3px;
    width: 11px;
    height: 11px;
  }
  .faq__list .item h4::before {
    top: 2px;
    width: 17px;
    height: 17px;
  }
  .faq__list .item .item__content {
    padding-top: 8px;
    font-size: 12px;
    line-height: 20px;
  }
}
@media (any-hover: hover) {
  .faq__list .item h4 {
    cursor: pointer;
  }
}
.footer {
  position: relative;
  z-index: 4;
  overflow: hidden;
  color: #2D2D2D;
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.33333333vw;
  padding: 8.53333333vw 4.26666667vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.footer a {
  color: #2D2D2D;
}
.footer svg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
}
@media (min-width: 768px) {
  .footer {
    font-size: 1.82291667vw;
    line-height: 2.60416667vw;
  }
  .footer p + p {
    margin-top: 1.04166667vw;
  }
  .footer__wrapper {
    -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;
    gap: 2.60416667vw;
    padding: 5.20833333vw 4.16666667vw;
  }
  .footer svg {
    width: 100%;
    height: 8.33333333vw;
  }
}
@media (min-width: 1280px) {
  .footer {
    font-size: 16px;
    line-height: 24px;
  }
  .footer p + p {
    margin-top: 8px;
  }
  .footer__wrapper {
    gap: 20px;
    padding: 40px 32px;
    max-width: 1280px;
    margin: 0 auto;
  }
  .footer svg {
    height: 64px;
  }
}
.popup {
  display: none;
  background: none;
  color: #F5F3E6;
}
.popup__top {
  width: 100%;
  height: 24px;
}
.popup h2 {
  padding: 0 4.26666667vw 4.26666667vw;
  color: #F5F3E6;
  background: #646D4E;
  text-align: center;
}
.popup form {
  background: #646D4E;
  padding: 4.26666667vw 4.26666667vw 6.4vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2vw;
  border-radius: 0 0 2.13333333vw 2.13333333vw;
  position: relative;
}
.popup__info {
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 8px;
  left: 0;
  right: 0;
  z-index: 1;
  background: #646D4E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 4.26666667vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.popup__info p {
  text-align: center;
}
.popup__info p.popup__info__title {
  font-size: 4.26666667vw;
  line-height: 6.4vw;
  font-weight: 700;
  margin-bottom: 2.13333333vw;
}
form.active .popup__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  z-index: 10;
}
.popup__type {
  z-index: 5;
  position: relative;
}
.popup__form {
  z-index: 5;
  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;
  gap: 3.2vw;
}
.popup__form .fieldset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  gap: 4.26666667vw;
}
.popup__form .fieldset div:nth-child(1) {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
.popup__form .fieldset div:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.popup__form .timeset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.06666667vw;
}
.popup__form .timeset span {
  color: #F5F3E6;
  font-size: 4.26666667vw;
}
.popup__form .timeset__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.06666667vw;
}
.popup__form .timeset__list label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.popup__form .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  gap: 5.33333333vw;
  padding: 2.13333333vw 0;
}
.popup__form .price__time,
.popup__form .price__money {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2vw;
  font-weight: 700;
  font-size: 5.33333333vw;
  line-height: 1;
}
.popup__form .price__time svg,
.popup__form .price__money svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 6.4vw;
          flex: 0 0 6.4vw;
  height: 6.4vw;
}
.popup__form .btnblock {
  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;
  gap: 3.2vw;
}
.popup__form .btnblock p {
  font-size: 3.2vw;
  line-height: 4.26666667vw;
}
.popup__form .btnblock p a {
  color: #F5F3E6;
}
@media (min-width: 768px) {
  .popup {
    max-width: 560px;
  }
  .popup h2 {
    padding: 0 2.08333333vw;
    font-size: 4.16666667vw;
    line-height: 1.2;
  }
  .popup form {
    padding: 2.08333333vw 2.08333333vw 3.125vw;
    gap: 1.5625vw;
    border-radius: 0 0 1.04166667vw 1.04166667vw;
  }
  .popup__info {
    bottom: 1.04166667vw;
    padding: 0 2.08333333vw;
  }
  .popup__info p.popup__info__title {
    font-size: 2.08333333vw;
    line-height: 3.125vw;
    margin-bottom: 1.04166667vw;
  }
  .popup__form {
    gap: 2.60416667vw;
  }
  .popup__form .fieldset {
    gap: 2.08333333vw;
  }
  .popup__form .timeset {
    gap: 0.52083333vw;
  }
  .popup__form .timeset span {
    font-size: 2.34375vw;
  }
  .popup__form .timeset__list {
    gap: 0.52083333vw;
  }
  .popup__form .price {
    gap: 5.20833333vw;
    padding: 1.04166667vw 0;
  }
  .popup__form .price__time,
  .popup__form .price__money {
    gap: 2.08333333vw;
    font-size: 3.125vw;
  }
  .popup__form .price__time svg,
  .popup__form .price__money svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 3.125vw;
            flex: 0 0 3.125vw;
    height: 3.125vw;
  }
  .popup__form .btnblock {
    gap: 2.60416667vw;
  }
  .popup__form .btnblock p {
    font-size: 2.08333333vw;
    line-height: 2.60416667vw;
  }
}
@media (min-width: 1280px) {
  .popup h2 {
    padding: 0 16px;
    font-size: 32px;
  }
  .popup form {
    padding: 16px 16px 24px;
    gap: 12px;
    border-radius: 0 0 8px 8px;
  }
  .popup__info {
    bottom: 8px;
    padding: 0 16px;
  }
  .popup__info p.popup__info__title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .popup__form {
    gap: 20px;
  }
  .popup__form .fieldset {
    gap: 16px;
  }
  .popup__form .timeset {
    gap: 4px;
  }
  .popup__form .timeset span {
    font-size: 18px;
  }
  .popup__form .timeset__list {
    gap: 4px;
  }
  .popup__form .price {
    gap: 40px;
    padding: 8px 0;
  }
  .popup__form .price__time,
  .popup__form .price__money {
    gap: 16px;
    font-size: 24px;
  }
  .popup__form .price__time svg,
  .popup__form .price__money svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
            flex: 0 0 24px;
    height: 24px;
  }
  .popup__form .btnblock {
    gap: 20px;
  }
  .popup__form .btnblock p {
    font-size: 16px;
    line-height: 20px;
  }
}
.policy {
  position: relative;
  z-index: 10;
  padding: 32vw 4.26666667vw 8.53333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2vw;
}
@media (min-width: 768px) {
  .policy {
    padding: 15.625vw 3.125vw 4.16666667vw;
    gap: 1.5625vw;
    max-width: 800px;
    margin: 0 auto;
  }
}
@media (min-width: 1280px) {
  .policy {
    max-width: 960px;
    padding: 140px 0 40px;
    gap: 16px;
  }
}
.map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.33333333vw;
  padding: 8.53333333vw 4.26666667vw;
  position: relative;
  z-index: 10;
}
.map__info h2 {
  margin-bottom: 3.2vw;
}
.map__info p.address {
  font-size: 3.73333333vw;
  line-height: 5.33333333vw;
}
.map__info h3 {
  font-size: 4.26666667vw;
  line-height: 5.33333333vw;
  margin: 4.26666667vw 0 1.06666667vw;
}
.map__block {
  width: 100%;
  height: 300px;
  border-radius: 3.2vw;
  overflow: hidden;
}
.map__block .marker {
  width: 8.53333333vw;
  height: 8.53333333vw;
  border-radius: 0.53333333vw;
  background-image: url('../img/mappin.png');
  background-size: 100% 100%;
}
.map__block .marker svg {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .map {
    gap: 2.60416667vw;
    padding: 4.16666667vw 4.16666667vw;
  }
  .map__info h2 {
    margin-bottom: 1.5625vw;
  }
  .map__info p.address {
    font-size: 1.82291667vw;
    line-height: 2.60416667vw;
  }
  .map__info h3 {
    font-size: 2.08333333vw;
    line-height: 2.60416667vw;
    margin: 2.08333333vw 0 0.52083333vw;
  }
  .map__block {
    border-radius: 2.08333333vw;
  }
  .map__block .marker {
    width: 6.25vw;
    height: 6.25vw;
    border-radius: 0.52083333vw;
  }
}
@media (min-width: 1280px) {
  .map {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 20px;
    padding: 32px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 1280px;
    margin: 0 auto;
  }
  .map__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 400px;
            flex: 0 0 400px;
  }
  .map__info h2 {
    margin-bottom: 20px;
  }
  .map__info p.address {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 8px;
  }
  .map__info h3 {
    font-size: 16px;
    line-height: 20px;
    margin: 16px 0 4px;
  }
  .map__block {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: unset;
    border-radius: 16px;
  }
  .map__block .marker {
    width: 48px;
    height: 48px;
    border-radius: 0.52083333vw;
  }
}
/*# sourceMappingURL=style.css.map */