.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: 0;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
  touch-action: pan-y;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}

.flickity-rtl .flickity-slider {
  left: unset;
  right: 0;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

.flickity-cell {
  position: absolute;
  left: 0;
}

.flickity-rtl .flickity-cell {
  left: unset;
  right: 0;
}

.flickity-button {
  position: absolute;
  background-color: #fff;
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: #fff;
  cursor: pointer;
}

.flickity-button:focus {
  outline: 0;
  box-shadow: 0 0 0 5px #19f;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dot {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  margin: 0 8px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  appearance: none;
  border: none;
  text-indent: -9999px;
  overflow: hidden;
}

.flickity-rtl .flickity-page-dot {
  text-indent: 9999px;
}

.flickity-page-dot:focus {
  outline: 0;
  box-shadow: 0 0 0 5px #19f;
}

.flickity-page-dot.is-selected {
  background-color: #000;
}

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

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

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

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

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

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

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-throwOutUp {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
.f-zoomInUp {
  animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}

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

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.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;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

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

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

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

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

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

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

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

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

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

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

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

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

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

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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 {
  touch-action: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fancybox__backdrop:empty,
.fancybox__viewport:empty,
.fancybox__track:empty,
.fancybox__slide:empty {
  display: block;
}

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

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

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

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

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

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

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

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

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

.is-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;
  object-fit: contain;
  user-select: none;
  filter: blur(0px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  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) {
  animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  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%;
  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;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

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

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

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

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

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

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

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

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: flex;
}

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

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

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

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

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--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);
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}

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

.is-modern.is-resting .f-thumbs__slide__button {
  transition: clip-path 0.33s ease;
}

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

.f-thumbs__slide__button {
  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;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}

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

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

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

.is-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);
  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);
  box-sizing: border-box;
  pointer-events: none;
  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 {
  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);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fancybox__infobar span {
  padding: 0 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.noUi-target, .noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base, .noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect, .noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect, .noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #3FB8AF;
}

.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

.noUi-handle:after, .noUi-handle:before {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:after, .noUi-vertical .noUi-handle:before {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled] .noUi-handle, [disabled].noUi-handle, [disabled].noUi-target {
  cursor: not-allowed;
}

.noUi-pips, .noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #AAA;
}

.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

@font-face {
  font-display: swap;
  font-family: "Nunito Sans";
  font-weight: 300;
  font-style: normal;
  src: url("../../static/fonts/nunito-sans-300.woff2");
}
@font-face {
  font-display: swap;
  font-family: "Nunito Sans";
  font-weight: 500;
  font-style: normal;
  src: url("../../static/fonts/nunito-sans-500.woff2");
}
@font-face {
  font-display: swap;
  font-family: "Nunito Sans";
  font-weight: 700;
  font-style: normal;
  src: url("../../static/fonts/nunito-sans-700.woff2");
}
*::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
  opacity: 1;
}

*:-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
  opacity: 1;
}

*::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
  opacity: 1;
}

*:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
  opacity: 1;
}

*::-ms-clear {
  display: none;
}

*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: #000000;
}

*::-webkit-scrollbar-thumb {
  background: #c78e66;
}

* {
  scrollbar-base-color: #ddd;
  scrollbar-face-color: #c78e66;
  scrollbar-3dlight-color: transparent;
  scrollbar-highlight-color: transparent;
  scrollbar-track-color: transparent;
  scrollbar-arrow-color: #c78e66;
  scrollbar-shadow-color: transparent;
  scrollbar-dark-shadow-color: transparent;
}

*::-moz-selection {
  color: #c78e66;
  background: #000000;
}

*::selection {
  color: #c78e66;
  background: #000000;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
  color: green;
}

body input:required:valid,
body textarea:required:valid {
  color: green;
}

[v-cloak] {
  display: none;
}

.redput {
  color: #EB5757;
  border-color: #EB5757;
  box-shadow: none;
}
.redput::-webkit-input-placeholder {
  color: #EB5757 !important;
}
.redput:-moz-placeholder {
  color: #EB5757 !important;
}
.redput::-moz-placeholder {
  color: #EB5757 !important;
}
.redput:-ms-input-placeholder {
  color: #EB5757 !important;
}

body {
  font-size: 16px;
  min-width: 320px;
  position: relative;
  line-height: 1.4;
  font-family: "Nunito Sans", sans-serif;
  overflow-x: hidden;
  opacity: 1;
  color: #fff;
  background: #25292b;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 56px;
  line-height: 1.1;
}

h2 {
  font-size: 42px;
}

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

a {
  transition: 0.2s ease;
  text-decoration: none;
}
a:hover {
  color: #c78e66;
}

.container {
  max-width: 1520px;
  padding: 0px 15px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.section {
  margin-top: 80px;
}
.section__head {
  margin-bottom: 40px;
}
.section__title {
  text-transform: uppercase;
}
.section__title span {
  color: #c78e66;
}
.section--banner {
  margin-top: 20px;
}

.accent {
  color: #c78e66;
}

@media only screen and (max-width: 1200px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 32px;
  }
  .container {
    max-width: 996px;
  }
  .section--banner {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 996px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
  }
  .container {
    max-width: 768px;
  }
  .section__head {
    margin-bottom: 24px;
  }
  .section--banner {
    margin-top: 12px;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
  }
  .container {
    max-width: 375px;
  }
  .section {
    margin-top: 50px;
  }
  .section--banner {
    margin-top: 12px;
  }
}
.btn {
  position: relative;
  color: #3b7a78;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
  min-height: 48px;
  border-radius: 12px;
  cursor: pointer;
  padding: 0 24px;
  z-index: 2;
  background: transparent;
  border: 1px solid #3b7a78;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.btn--reset {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  min-height: 1px;
  border-radius: 0;
  min-width: 1px;
}
.btn--light {
  color: #0e1214;
  background: #ffffff;
  border: 1px solid #ffffff;
}
.btn--light:hover {
  color: #0e1214;
  background: #ffffff;
  border-color: #ffffff;
}
.btn--light:after {
  background-image: url("../images/arrow-up-light.svg");
  background-color: #c78e66;
}
.btn--accent {
  color: #ffffff;
  background: #c78e66;
  border-color: #c78e66;
}
.btn--accent:hover {
  color: #ffffff;
  background: #c78e66;
  border-color: #c78e66;
}
.btn--accent:after {
  background-image: url("../images/arrow-up.svg");
  background-color: #ffffff;
}
.btn--light, .btn--accent {
  padding-right: 6px;
  border-radius: 32px;
}
.btn--light:after, .btn--accent:after {
  content: "";
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: 0.2s ease;
  z-index: 3;
}
.btn--light:hover:after, .btn--accent:hover:after {
  transform: rotate(45deg);
}
.btn .text {
  position: relative;
  z-index: 1;
}
.btn .progress {
  position: absolute;
  height: 100%;
  width: 0;
  background-color: rgb(183.014354067, 114.8325358852, 66.985645933);
  left: 0;
  top: 0;
  border-radius: 2px;
}
.btn.sending .progress {
  animation-name: sendingPhone;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

@media (min-width: 997px) {
  .btn--large {
    font-size: 18px;
    min-height: 64px;
    padding-right: 6px;
    border-radius: 50px;
  }
  .btn--large:after {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }
}
.form__submit {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.form__submit .text {
  position: relative;
  z-index: 1;
}
.form__group {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
}
.form__group .input-block {
  flex: 1 1 240px;
}

.input-block {
  margin: 0 0 16px;
  position: relative;
  display: block;
}

.input {
  position: relative;
  font-family: "Nunito Sans", sans-serif;
  color: #232323;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  padding: 0 16px;
  min-height: 48px;
  width: 100%;
  background: rgb(245, 246, 247);
  border: 1px solid #cccccd;
  outline: 0;
  border-radius: 20px;
  transition: 0.2s;
}
.input::placeholder {
  color: #676468;
}
.input:focus {
  border-color: #c78e66;
}
.input.redput {
  color: #EB5757;
  border-color: #EB5757;
  box-shadow: none;
}
.input.redput::-webkit-input-placeholder {
  color: #EB5757 !important;
}
.input.redput:-moz-placeholder {
  color: #EB5757 !important;
}
.input.redput::-moz-placeholder {
  color: #EB5757 !important;
}
.input.redput:-ms-input-placeholder {
  color: #EB5757 !important;
}
.input__checkbox {
  width: 16px;
  height: 16px;
  z-index: -1;
  position: absolute;
  top: -1px;
  background: transparent;
}
.input__checkbox:checked + span:before {
  background-color: #c78e66;
  border-color: #c78e66;
  background-image: url("../images/check-light.svg");
}
.input__checkbox + span {
  position: relative;
  color: #0e1214;
  font-size: 12px;
  padding-left: 24px;
  cursor: pointer;
  display: block;
}
.input__checkbox + span a:not([class]) {
  color: #0e1214;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.input__checkbox + span a:not([class]):hover {
  color: #c78e66;
  text-decoration-color: transparent;
}
.input__checkbox + span:before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  border: 1px solid #c78e66;
  position: absolute;
  top: -1px;
  left: 0;
  transition: 0.2s;
  border-radius: 4px;
}

select.input {
  background-image: url(../images/select.svg);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: 97% center;
  appearance: none;
  outline: none;
  cursor: pointer;
}
select.input:disabled {
  opacity: 0.5;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  visibility: hidden;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup--open {
  visibility: visible;
  background: rgba(0, 0, 0, 0.8);
}
.popup__wrapper {
  position: relative;
  background: #141414;
  border: 1px solid #1f1f1f;
  padding: 32px;
  max-width: 620px;
  width: 100%;
  max-height: 80vh;
  overflow: auto;
}
.popup__close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  background: url("../images/cross.svg") no-repeat center/24px;
  opacity: 0.6;
}
.popup__close:hover {
  opacity: 1;
}
.popup__title {
  font-size: 30px;
  margin-bottom: 8px;
  padding-right: 40px;
}
.popup__caption {
  color: #9ca3af;
  font-size: 16px;
  margin-bottom: 32px;
}
.popup__text-update {
  color: #9ca3af;
  font-size: 12px;
}
.popup__textarea {
  margin-top: 24px;
}
.popup__textarea > *:last-child {
  margin-bottom: 0;
}
.popup__textarea > *:first-child {
  margin-top: 0;
}
.popup__textarea p {
  margin: 16px 0;
}
.popup__textarea a {
  color: #fff;
  text-decoration: underline;
}
.popup__textarea a:hover {
  text-decoration-color: transparent;
}
.popup__textarea h3 {
  margin: 32px 0 20px;
}
.popup__textarea ul {
  padding-left: 16px;
  margin: 16px 0;
}
.popup__textarea ul ul {
  margin: 4px 0 16px;
}
.popup__thanks {
  text-align: center;
}
.popup__thanks-btn {
  width: 100%;
}
.popup__thanks-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 8px;
}
.popup__form .input__checkbox + span {
  color: #fff;
}
.popup__form .input__checkbox + span a:not([class]) {
  color: #fff;
}

@media (max-width: 580px) {
  .popup__wrapper {
    padding: 20px;
  }
  .popup__close {
    top: 16px;
    right: 16px;
  }
}
.circle-loader {
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-left-color: #c78e66;
  animation-name: loader-spin;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  position: relative;
  display: inline-block;
  vertical-align: top;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  bottom: 14px;
  opacity: 0;
  transition: all 0.3s;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  z-index: 2;
}
.circle-loader:after {
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.circle-loader.checking {
  opacity: 1;
}

.load-complete {
  animation: none;
  border-color: #75c960;
  transition: border 500ms ease-out;
}
.load-complete.wrong {
  border-color: #EB5757;
  cursor: pointer;
}
.load-complete.wrong:before {
  content: "";
  display: block;
  height: 2px;
  width: 8px;
  background: #EB5757;
  display: block;
  position: absolute;
  top: 7px;
  left: 4px;
  transform: rotate(45deg);
  transform-origin: center;
}
.load-complete.wrong:after {
  content: "";
  display: block;
  height: 2px;
  width: 8px;
  background: #EB5757;
  display: block;
  position: absolute;
  top: 7px;
  left: 4px;
  transform: rotate(-45deg);
  transform-origin: center;
}

.checkmark {
  display: none;
}
.checkmark:after {
  opacity: 1;
  height: 8px;
  width: 5px;
  transform-origin: left top;
  border-right: 2px solid #75c960;
  border-top: 2px solid #75c960;
  content: "";
  left: 2px;
  top: 8px;
  position: absolute;
}
.checkmark.draw:after {
  animation-duration: 800ms;
  animation-timing-function: ease;
  animation-name: checkmark;
  transform: scaleX(-1) rotate(135deg);
}
.checkmark.checked {
  display: block;
}

@keyframes loader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 7px;
    opacity: 1;
  }
  40% {
    height: 11px;
    width: 7px;
    opacity: 1;
  }
  100% {
    height: 11px;
    width: 7px;
    opacity: 1;
  }
}
@keyframes sendingPhone {
  0% {
    width: 0;
  }
  20% {
    width: 10%;
  }
  40% {
    width: 30%;
  }
  50% {
    width: 45%;
  }
  55% {
    width: 50%;
  }
  65% {
    width: 80%;
  }
  100% {
    width: 100%;
  }
}
.btngreen {
  background-color: #c78e66;
}

.success {
  width: 60%;
  margin: 40px auto 0;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  display: block;
}
.success svg {
  width: 35px;
  height: 28px;
}
.success svg path {
  fill: #fff;
}

.counter {
  display: flex;
  gap: 0 10px;
  flex-wrap: wrap;
  width: 335px;
}
.counter__title {
  font-size: 20px;
  width: 100%;
  margin-bottom: 10px;
}
.counter .cell {
  text-align: center;
  width: 75px;
  position: relative;
}
.counter .cell:not(:last-child):after {
  content: ":";
  position: absolute;
  right: -30px;
  transform: translateX(-50%);
  color: #000000;
  font-size: 48px;
  top: 0;
  line-height: 1;
}
.counter p {
  font-size: 48px;
  line-height: 1;
  font-weight: bold;
  background-color: #c78e66;
  color: #fff;
  padding: 10px 0;
  border-radius: 10px;
}
.counter .sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  .counter {
    justify-content: center;
  }
  .counter .cell {
    width: 50px;
    text-align: center;
  }
  .counter .cell:not(:last-child):after {
    font-size: 24px;
  }
  .counter p {
    font-size: 24px;
  }
  .counter .sub {
    font-size: 10px;
  }
}
.block-marquee {
  color: #fff;
  background: #c78e66;
  user-select: none;
  white-space: nowrap;
  margin: -8px 0 0;
  position: relative;
  z-index: 1;
}
.block-marquee__content {
  display: flex;
  justify-content: space-around;
  padding: 14px 0;
  animation: scroll-infinity 20s linear infinite;
}
.block-marquee__item {
  flex: 0 0 auto;
  padding: 0 30px;
  border-left: 2px solid #ffffff;
  font-size: 32px;
  font-weight: 300;
  text-transform: uppercase;
}

@keyframes scroll-infinity {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.commun {
  display: flex;
  align-items: center;
  gap: 8px;
}
.commun__item {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 24px;
  min-height: 40px;
  padding: 0 6px 0 12px;
  background: #25292b;
}
.commun__item.-phone-:after, .commun__item.-address-:after, .commun__item.-time-:after {
  content: "";
  width: 32px;
  min-width: 32px;
  height: 32px;
  margin-left: 8px;
  background-color: #181b1d;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  border-radius: 50%;
  transition: 0.2s;
}
.commun__item.-phone-:after {
  background-image: url("../images/phone.svg");
}
.commun__item.-address-:after {
  background-image: url("../images/address.svg");
}
.commun__item.-time-:after {
  background-image: url("../images/time.svg");
}
.commun__item:hover {
  color: #fff;
}
.commun__item:hover:after {
  background-color: #c78e66;
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 1;
}

.slider-btn {
  display: inline-flex;
  background: #ffffff;
  border-radius: 50%;
  transition: 0.2s ease;
}
.slider-btn:before {
  content: "";
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}
.slider-btn-prev:before {
  background-image: url("../images/chevron-left.svg");
}
.slider-btn-next:before {
  background-image: url("../images/chevron-right.svg");
}
.slider-btn.swiper-button-disabled {
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}
.slider-btn:hover {
  background: #c78e66;
}
.slider-btn:hover:before {
  filter: brightness(0) invert(1);
}

.slider-pag.swiper-pagination-horizontal {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: auto;
}
.slider-pag.swiper-pagination-horizontal .swiper-pagination-bullet {
  position: relative;
  size: 8px;
  min-width: 8px;
  background: #fff;
  margin: 0 8px 0 0;
  opacity: 1;
  transition: 0.4s;
  border-radius: 4px;
  overflow: hidden;
}
.slider-pag.swiper-pagination-horizontal .swiper-pagination-bullet:before {
  content: "";
  size: 0px 100%;
  position: absolute 0 0;
  background: transparent;
  border-radius: 4px;
  transition: 0.4s;
}
.slider-pag.swiper-pagination-horizontal .swiper-pagination-bullet:last-child {
  margin: 0;
}
.slider-pag.swiper-pagination-horizontal .swiper-pagination-bullet-active {
  pointer-events: none;
  width: 36px;
  background: #c78e66;
}
.slider-pag.swiper-pagination-horizontal .swiper-pagination-bullet-active:before {
  width: 30px;
  background: #c78e66;
}

.header {
  position: sticky;
  top: 20px;
  width: 100%;
  margin: 20px 0;
  z-index: 61;
}
.header__main {
  position: relative;
  padding: 0 32px;
  border-radius: 20px;
  background: #0e1214;
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 12px;
}
.header__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid rgba(130, 134, 144, 0.5);
}
.header__logo {
  display: block;
  width: 480px;
  min-width: 480px;
  transition: 0.2s ease;
}
.header__logo:hover {
  opacity: 0.7;
}
.header__logo-img {
  width: 100%;
}
.header__logo-dealer {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.header__logo-name {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}
.header__logo-label {
  position: relative;
  color: #bbbfc4;
  font-size: 14px;
  line-height: 1.4;
}
.header__logo-label:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -9px;
  top: 3px;
  width: 1px;
  height: 12px;
  background-color: #fff;
}
.header__commun {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header__menu {
  display: flex;
  gap: 32px;
  align-items: center;
}
.header__menu-link {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}
.header__menu-link sup {
  font-size: 0.5em;
  margin-top: -6px;
}
.header__burger {
  width: 52px;
  min-width: 52px;
  height: 52px;
  display: none;
  align-items: center;
  justify-content: center;
}
.header__burger svg {
  width: 32px;
  height: 32px;
}
.header__phone.hide-xl-only {
  display: none;
}

@media (max-width: 996px) {
  .header {
    top: 12px;
    margin: 12px 0;
  }
  .header__main {
    padding: 0 20px;
  }
  .header__top {
    flex-wrap: wrap;
  }
  .header__commun {
    width: 100%;
    border-top: 1px solid rgba(130, 134, 144, 0.5);
    padding-top: 12px;
    margin-top: 12px;
    justify-content: flex-start;
  }
  .header__burger {
    display: flex;
  }
  .header__bottom {
    position: fixed;
    left: 50%;
    top: 172px;
    height: auto;
    width: 738px;
    background: #0e1214;
    display: block;
    transform: translateY(-200%) translateX(-50%);
    transition: 0.3s ease;
    border-radius: 20px;
    display: block;
    z-index: 8;
    padding: 12px 20px;
    border: none;
  }
  .header__bottom.active {
    transform: translateY(0) translateX(-50%);
  }
  .header__menu {
    display: block;
    border-bottom: 1px solid rgba(130, 134, 144, 0.5);
    padding-bottom: 4px;
  }
  .header__menu-link {
    color: #fff;
    width: 100%;
    text-align: center;
    justify-content: center;
    min-height: 40px;
  }
  .header__feedback-btn {
    min-width: 1px;
    width: 100%;
    margin-top: 16px;
  }
  .header__phone.hide-xl-only {
    display: block;
  }
  .header__phone.hide-xl-down {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__bottom {
    width: 345px;
    top: 162px;
  }
  .header__logo {
    width: 262px;
    min-width: 262px;
  }
  .header__logo-name {
    font-size: 13px;
  }
  .header__logo-label {
    display: none;
  }
  .header__burger {
    width: 32px;
    min-width: 32px;
    height: 32px;
  }
  .header__commun .commun__item.-address- {
    display: none;
  }
}
.banner {
  overflow: hidden;
  border-radius: 20px;
}
.banner__slider {
  position: relative;
}
.banner__slide {
  height: auto;
  position: relative;
  z-index: 1;
  min-height: clamp(400px, 40vw, 768px);
  padding: 52px;
}
.banner__picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.banner__picture:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.7), transparent);
}
.banner__picture img, .banner__picture source {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% bottom;
}
.banner__info {
  max-width: 768px;
}
.banner__label {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.3);
  padding: 0 20px 0 12px;
  margin-bottom: 24px;
}
.banner__label-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-right: 12px;
}
.banner__title {
  text-transform: uppercase;
}
.banner__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  max-width: 520px;
  margin-top: 20px;
}
.banner__btn {
  margin-top: 40px;
}

@media (max-width: 996px) {
  .banner__slide {
    padding: 0 28px;
    height: calc(100vh - 186px);
    max-height: 400px;
  }
  .banner__text {
    font-size: 16px;
  }
  .banner__btn {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .banner__slider .slider-nav {
    left: 16px;
  }
  .banner__slide {
    padding: 20px;
    height: calc(100vh - 178px);
    min-height: 590px;
    max-height: 100%;
    justify-content: flex-start;
  }
  .banner__picture img, .banner__picture source {
    object-position: center bottom;
  }
  .banner__info {
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 52px;
  }
  .banner__label {
    margin-bottom: 12px;
  }
  .banner__text {
    margin-top: 8px;
  }
  .banner__btn {
    width: 100%;
    margin-top: auto;
  }
  .banner__btn::after {
    margin-left: auto;
  }
  .banner__picture:before {
    background: linear-gradient(180deg, rgb(10, 10, 10), transparent);
    height: 50%;
  }
}
.timer {
  margin-top: 20px;
}
.timer__wrapper {
  background-color: #303537;
  color: #f7f8f8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  border-radius: 20px;
  gap: 20px;
  grid-area: 3/1/4/3;
}
.timer__title {
  display: flex;
  gap: 15px;
  align-items: center;
}
.timer__title span {
  font-size: 20px;
}
.timer__title span b {
  font-size: 32px;
}
.timer__form {
  max-width: 700px;
}
.timer__form .input__checkbox + span {
  color: #fff;
}
.timer__form .input__checkbox + span a:not([class]) {
  color: #fff;
}
.timer__form .form-elements {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 15px;
}

@media only screen and (max-width: 1538px) {
  .timer__wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
  .timer__form {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .timer__form .form-elements {
    display: block;
    max-width: 320px;
    width: 100%;
  }
  .timer__form .form-elements .input-block {
    width: 100%;
  }
  .timer__form .form-elements .input-block.checkbox {
    margin-top: 16px;
  }
  .timer__form .form-elements .submit {
    width: 100%;
    margin-top: 10px;
  }
  .timer__title span {
    font-size: 16px;
  }
}
.cars {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
.cars__menu {
  position: sticky;
  top: 200px;
  background: #303537;
  padding: 24px 16px;
  border-radius: 20px;
  width: 33.3%;
  min-width: 33.3%;
}
.cars__menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0 24px;
}
.cars__menu-title {
  color: #919191;
  font-size: 18px;
}
.cars__menu-count {
  color: #c78e66;
  font-size: 18px;
}
.cars__menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cars__menu-item {
  cursor: pointer;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
  transition: 0.2s ease;
}
.cars__menu-item.active {
  pointer-events: none;
  background: #252829;
}
.cars__menu-item:last-child {
  margin: 0;
}
.cars__menu-item:hover {
  background: #292c2d;
}
.cars__menu-name {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 18px;
}
.cars__menu-mark {
  position: absolute;
  top: -8px;
  left: 100%;
  margin-left: 10px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.4em;
  line-height: 2.8em;
  text-transform: uppercase;
  padding: 0 0.6em;
  background: #c78e66;
  border-radius: 4px;
}
.cars__menu-caption {
  color: #919191;
  font-size: 16px;
  margin-top: 4px;
}
.cars__menu-price {
  color: #c78e66;
  margin-top: 20px;
}
.cars__menu-img--wrap {
  max-width: 185px;
}
.cars__main {
  width: 66.6%;
}
.cars__item {
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid #fff;
}
.cars__item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.cars__head {
  display: flex;
  justify-content: space-between;
}
.cars__info {
  max-width: 570px;
}
.cars__btns {
  width: 320px;
  min-width: 320px;
}
.cars__btns .btn {
  width: 100%;
  margin-bottom: 8px;
  justify-content: space-between;
}
.cars__btns .btn:last-child {
  margin: 0;
}
.cars__btns.mobile {
  display: none;
}
.cars__name {
  position: relative;
  display: inline-block;
  font-size: 42px;
}
.cars__name-mark {
  position: absolute;
  top: -8px;
  left: 100%;
  margin-left: 10px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.3em;
  line-height: 2.8em;
  text-transform: uppercase;
  padding: 0 0.6em;
  background: #c78e66;
  border-radius: 4px;
}
.cars__price {
  color: #c78e66;
  font-size: 22px;
}
.cars__price b {
  font-size: 1.2em;
}
.cars__tabs {
  display: inline-flex;
  align-items: center;
  background: #303537;
  margin: 12px 0 20px;
  border-radius: 20px;
  padding: 8px;
  gap: 8px;
}
.cars__tabs-btn {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 24px;
  min-height: 40px;
  padding: 0 20px;
  background: #303537;
  transition: 0.2s ease;
}
.cars__tabs-btn.active {
  pointer-events: none;
  background: #252829;
}
.cars__tabs-btn:hover {
  background: #292c2d;
}
.cars__gallery {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  position: relative;
}
.cars__slider {
  flex: 1;
  margin: 0;
  border-radius: 15px;
}
.cars__slide {
  height: 400px;
  overflow: hidden;
  background: #fff;
}
.cars__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cars__thumbs {
  height: 400px;
  width: 220px;
  min-width: 220px;
  margin: 0;
}
.cars__thumb {
  margin-bottom: 10px;
  overflow: hidden;
  padding-right: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}
.cars__thumb.swiper-slide-thumb-active {
  padding-right: 0;
}
.cars__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.cars__label {
  cursor: pointer;
  font-size: 1.5em;
  position: absolute;
  top: 0.43em;
  left: -8px;
}
.cars__label-text {
  color: #0e1214;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  background: #fff;
  border-radius: 0.66em 0.66em 0.66em 0;
  padding: 0.33em 1em;
  position: relative;
  z-index: 2;
  box-shadow: 5px 5px 10px rgba(14, 18, 20, 0.7);
  transition: 0.2s;
}
.cars__label:after {
  content: "";
  background: #ffffff;
  border-radius: 0 0 0 1.6em;
  display: block;
  width: 100%;
  height: 33%;
  position: absolute;
  bottom: -33%;
  left: 0;
  z-index: -1;
  transition: 0.2s;
}
.cars__label:hover .cars__label-text {
  color: #fff;
  background: #c78e66;
}
.cars__label:hover::after {
  background: #c78e66;
}
.cars__panel {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
}
.cars__compls {
  background: #303537;
  width: 50%;
  border-radius: 20px;
  padding: 8px;
}
.cars__compls-list {
  list-style: none;
  padding: 0 24px;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 16px;
}
.cars__compls-caption {
  color: #919191;
  font-size: 14px;
  margin-bottom: 2px;
}
.cars__compls-name {
  font-weight: 500;
  font-size: 16px;
}
.cars__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 50%;
}
.cars__benefits-btn {
  font-size: 16px;
  min-height: 56px;
  flex: 1 1 200px;
  text-align: left;
  justify-content: space-between;
}
.cars__benefits-btn:after {
  display: none;
}
.cars__benefits-btn:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.9);
}
.cars__benefits-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: #c78e66;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1320px) {
  .cars {
    display: block;
  }
  .cars__menu {
    position: static;
    width: 100%;
  }
  .cars__menu-list {
    display: flex;
    gap: 12px;
    overflow: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .cars__menu-list::-webkit-scrollbar {
    display: none;
  }
  .cars__menu-item {
    scroll-snap-align: start;
    margin: 0;
    min-width: 400px;
  }
  .cars__main {
    width: 100%;
    margin-top: 24px;
  }
}
@media (max-width: 996px) {
  .cars__panel {
    display: block;
  }
  .cars__compls {
    width: 100%;
    margin-bottom: 20px;
  }
  .cars__benefits {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cars__menu {
    padding: 12px;
  }
  .cars__menu-head {
    padding: 0 12px;
  }
  .cars__menu-title {
    font-size: 14px;
  }
  .cars__menu-item {
    padding: 12px;
    min-width: 260px;
  }
  .cars__menu-name {
    font-size: 14px;
  }
  .cars__menu-caption {
    font-size: 12px;
  }
  .cars__menu-price {
    font-size: 14px;
  }
  .cars__menu-img--wrap {
    max-width: 120px;
  }
  .cars__name {
    font-size: 28px;
  }
  .cars__price {
    font-size: 18px;
  }
  .cars__tabs {
    margin: 12px 0;
  }
  .cars__btns {
    width: 100%;
    min-width: 1px;
    margin-top: 16px;
  }
  .cars__btns.desktop {
    display: none;
  }
  .cars__btns.mobile {
    display: block;
  }
  .cars__gallery {
    display: block;
  }
  .cars__slider {
    width: 100%;
  }
  .cars__slide {
    height: 280px;
  }
  .cars__thumbs {
    width: 100%;
    height: 70px;
    margin-top: 10px;
  }
  .cars__thumb {
    padding: 0;
    opacity: 0.5;
  }
  .cars__thumb img {
    border-radius: 10px;
  }
  .cars__thumb .swiper-slide-thumb-active {
    opacity: 1;
  }
  .cars__compls-list {
    padding: 0 16px;
  }
  .cars__benefits {
    gap: 8px;
  }
  .cars__benefits-btn {
    flex: 1 1 160px;
    font-size: 14px;
    padding-left: 16px;
  }
  .cars__benefits-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }
}
.hero {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  justify-content: flex-end;
}
.hero--reverse {
  justify-content: flex-start;
}
.hero__picture img, .hero__picture source {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.hero__card {
  color: #0e1214;
  position: relative;
  background: #ffffff;
  padding: 24px;
  border-radius: 24px;
  max-width: 580px;
  width: 100%;
}
.hero__title {
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}
.hero__text {
  color: #919191;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
  margin: 12px 0 0;
}
.hero__form {
  margin-top: 32px;
}
.hero__circle {
  cursor: pointer;
  background: #ffffff;
  border-radius: 50%;
  width: 185px;
  height: 185px;
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 20px;
  transition: 0.2s ease;
}
.hero__circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: 0.2s ease;
  animation: spin 15s infinite linear;
}
.hero__circle:hover {
  background: #c78e66;
}
.hero__circle:hover .hero__circle-img {
  filter: brightness(0) invert(1);
}

@media (max-width: 1200px) {
  .hero {
    padding: 20px;
  }
  .hero__card {
    max-width: 480px;
  }
  .hero__text {
    font-size: 16px;
  }
}
@media (max-width: 996px) {
  .hero {
    padding-top: 36%;
  }
  .hero__card {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 12px;
    padding-top: 70%;
  }
  .hero__card {
    padding: 12px;
  }
  .hero__bg {
    object-position: 20%;
  }
  .hero__form {
    margin-top: 20px;
  }
  .hero__circle {
    width: 120px;
    height: 120px;
    top: 8px;
    left: 8px;
    right: auto;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.spec {
  display: flex;
  align-items: center;
  gap: 48px;
}
.spec__col {
  width: 50%;
}
.spec__title {
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0 0 16px;
}
.spec__headline {
  font-size: 24px;
  margin: 0 0 8px;
}
.spec__text {
  color: #9ca3af;
  font-size: 18px;
}
.spec__caption {
  color: #9ca3af;
  font-size: 16px;
  margin-bottom: 24px;
}
.spec__benefits {
  margin-top: 32px;
}
.spec__benefits-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
.spec__benefits-card:last-child {
  margin: 0;
}
.spec__benefits-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #141414;
  border: 1px solid #1f1f1f;
  border-radius: 8px;
}
.spec__benefits-icon svg {
  width: 24px;
  height: 24px;
}
.spec__benefits-name {
  color: #fff;
  font-size: 20px;
  margin-bottom: 4px;
}
.spec__benefits-caption {
  color: #9ca3af;
  font-size: 16px;
}
.spec__form {
  background: #141414;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  padding: 32px;
}
.spec__form .input__checkbox + span {
  color: #fff;
}
.spec__form .input__checkbox + span a:not([class]) {
  color: #fff;
}

@media (max-width: 996px) {
  .spec {
    display: block;
  }
  .spec__col {
    width: 100%;
    margin: 0 0 40px;
  }
  .spec__col:last-child {
    margin: 0;
  }
}
@media (max-width: 580px) {
  .spec__form {
    padding: 20px;
  }
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.features__card {
  flex: 1 1 400px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 24px;
  border-radius: 20px;
  background: #0e1214;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.features__icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  margin-right: 20px;
  border-radius: 50%;
  background: #c78e66;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features__icon img {
  width: 24px;
  filter: brightness(0) invert(1);
}
.features__title {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.1;
  display: flex;
  align-items: center;
}
.features__text {
  color: #919191;
  font-size: 18px;
  margin-top: 20px;
}
.features__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 996px) {
  .features__card {
    width: calc(50% - 8px);
  }
}
@media (max-width: 768px) {
  .features {
    display: block;
  }
  .features__card {
    width: 100%;
    margin-bottom: 12px;
  }
  .features__card:last-child {
    margin: 0;
  }
  .features__title {
    align-items: flex-start;
  }
  .features__text {
    font-size: 16px;
  }
}
.contacts {
  display: flex;
}
.contacts__info {
  background: rgb(24, 27, 29);
  min-width: 500px;
  width: 500px;
  border-radius: 20px 0 0 20px;
  padding: 24px;
}
.contacts__title {
  margin: 0;
  text-transform: uppercase;
}
.contacts__text {
  color: #9ca3af;
  font-size: 18px;
  margin-top: 4px;
}
.contacts__group {
  margin-top: 24px;
}
.contacts__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.contacts__card:last-child {
  margin: 0;
}
.contacts__btn {
  margin-top: 32px;
  width: 100%;
}
.contacts__map {
  width: 100%;
  border: 1px solid #1f1f1f;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}
.contacts__phone.hide-xl-only {
  display: none;
}

@media (max-width: 1200px) {
  .contacts {
    display: block;
  }
  .contacts__info {
    width: 100%;
    min-width: 1px;
    border-radius: 20px 20px 0 0;
  }
  .contacts__map {
    width: 100%;
    height: 480px;
    border-radius: 0 0 20px 20px;
  }
}
@media (max-width: 996px) {
  .contacts__phone.hide-xl-only {
    display: block;
  }
  .contacts__phone.hide-xl-down {
    display: none;
  }
}
@media (max-width: 768px) {
  .contacts__card {
    display: block;
  }
  .contacts__card-name {
    margin-bottom: 4px;
  }
  .contacts__card .commun__item {
    white-space: normal;
    padding: 6px 6px 6px 12px;
  }
}
@media (max-width: 580px) {
  .contacts__map {
    height: 360px;
  }
}
.footer {
  margin-top: 32px;
  margin-bottom: 20px;
}
.footer__main {
  border-radius: 20px;
  padding: 24px;
  background: #0e1214;
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__logo {
  display: block;
  width: 480px;
  min-width: 480px;
  transition: 0.2s ease;
}
.footer__logo:hover {
  opacity: 0.7;
}
.footer__logo-img {
  width: 100%;
}
.footer__logo-dealer {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.footer__logo-name {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}
.footer__logo-label {
  position: relative;
  color: #bbbfc4;
  font-size: 14px;
  line-height: 1.4;
}
.footer__logo-label:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -9px;
  top: 3px;
  width: 1px;
  height: 12px;
  background-color: #fff;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__links a {
  color: #9ca3af;
  font-size: 14px;
}
.footer__links a:hover {
  color: #fff;
}
.footer__disclaimer, .footer__copy {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid #6b7280;
}
.footer__disclaimer p, .footer__copy p {
  color: #6b7280;
  font-size: 12px;
  margin: 0;
}

@media (max-width: 767px) {
  .footer__logo {
    width: 262px;
    min-width: 262px;
  }
  .footer__logo-name {
    font-size: 13px;
  }
  .footer__logo-label {
    display: none;
  }
}