.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: "Pragmatica";
  font-weight: 300;
  font-style: normal;
  src: url("../../static/fonts/PragmaticaLightC.woff2");
}
@font-face {
  font-display: swap;
  font-family: "Pragmatica";
  font-weight: 500;
  font-style: normal;
  src: url("../../static/fonts/PragmaticaLightC-Bold.woff2");
}
@font-face {
  font-display: swap;
  font-family: "Pragmatica";
  font-weight: 700;
  font-style: normal;
  src: url("../../static/fonts/LADAPragmatica-Bold.woff2");
}
@font-face {
  font-display: swap;
  font-family: "Pragmatica";
  font-weight: 400;
  font-style: normal;
  src: url("../../static/fonts/LADAPragmatica-Regular.woff2");
}
*::-webkit-input-placeholder {
  color: rgba(84, 97, 108, 0.6);
  opacity: 1;
}

*:-moz-placeholder {
  color: rgba(84, 97, 108, 0.6);
  opacity: 1;
}

*::-moz-placeholder {
  color: rgba(84, 97, 108, 0.6);
  opacity: 1;
}

*:-ms-input-placeholder {
  color: rgba(84, 97, 108, 0.6);
  opacity: 1;
}

*::-ms-clear {
  display: none;
}

*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: #54616c;
}

*::-webkit-scrollbar-thumb {
  background: #f5671e;
}

* {
  scrollbar-base-color: #ddd;
  scrollbar-face-color: #f5671e;
  scrollbar-3dlight-color: transparent;
  scrollbar-highlight-color: transparent;
  scrollbar-track-color: transparent;
  scrollbar-arrow-color: #f5671e;
  scrollbar-shadow-color: transparent;
  scrollbar-dark-shadow-color: transparent;
}

*::-moz-selection {
  color: #f5671e;
  background: #54616c;
}

*::selection {
  color: #f5671e;
  background: #54616c;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
  color: green;
}

body input:required:valid,
body textarea:required:valid {
  color: green;
}

body {
  font-size: 16px;
  min-width: 320px;
  position: relative;
  line-height: 1.4;
  font-family: "Pragmatica", sans-serif;
  overflow-x: hidden;
  opacity: 1;
  background-color: #fff;
}

.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: "Pragmatica", sans-serif;
  line-height: 1.2em;
}

h2 {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.1;
}

a {
  text-decoration-skip-ink: ink;
  transition: all 0.3s;
  color: #f5671e;
  appearance: none;
  outline: none;
  outline-width: 0;
}

[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;
}

#app {
  overflow: hidden;
}

.red {
  color: #EB5757 !important;
}

.container {
  max-width: 1170px;
  padding: 0px 15px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.noUi-connect {
  background-color: #f5671e;
}

section {
  margin-top: 80px;
}

.accent {
  color: #f5671e;
}

@media only screen and (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}
@media only screen and (max-width: 1200px) {
  .ios {
    overflow-scrolling: touch !important;
    overflow: auto !important;
    height: 100% !important;
  }
  .container {
    max-width: 996px;
  }
}
@media only screen and (max-width: 996px) {
  .container {
    max-width: 768px;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
  .container {
    max-width: 375px;
  }
  section {
    margin-top: 50px;
  }
}
.btn {
  position: relative;
  color: #fff;
  background: #f5671e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
  border: 0;
  min-height: 34px;
  min-width: 125px;
  width: 100%;
  font-family: "Pragmatica", sans-serif;
  cursor: pointer;
  padding: 12px 32px;
  z-index: 2;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 17px;
  justify-content: center;
  letter-spacing: 1px;
  padding: 9px 18px;
  text-transform: uppercase;
}
.btn:not(.btn--reset):hover {
  color: #fff;
  background-color: #f5671e;
}
.btn--reset {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  min-height: 1px;
  border-radius: 0;
  min-width: 1px;
}
.btn.btn-white {
  color: #54616c;
  background-color: #fff;
  border: 1px solid #54616c;
}
.btn.btn-white:hover {
  color: #fff;
  background-color: #f5671e;
  border: 1px solid #f5671e;
}
.btn .text {
  position: relative;
  z-index: 1;
}
.btn .progress {
  position: absolute;
  height: 100%;
  width: 0;
  background-color: rgb(214.4680851064, 79.114893617, 9.5319148936);
  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;
}

.form__submit {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.form__submit .text {
  position: relative;
  z-index: 1;
}

.input-block {
  margin: 0 0 16px;
  position: relative;
  display: block;
}

.input {
  position: relative;
  font-family: "Pragmatica", 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: 8px;
  transition: 0.2s;
}
.input::placeholder {
  color: #676468;
}
.input:focus {
  border-color: #f5671e;
}
.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: #f5671e;
  border-color: #f5671e;
  background-image: url("../images/check-light.svg");
}
.input__checkbox + span {
  position: relative;
  color: #4c5865;
  font-size: 12px;
  padding-left: 24px;
  cursor: pointer;
  display: block;
}
.input__checkbox + span a:not([class]) {
  color: #4c5865;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.input__checkbox + span a:not([class]):hover {
  color: #f5671e;
  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 #232323;
  position: absolute;
  top: -1px;
  left: 0;
  transition: 0.2s;
}

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: #fff;
  border: 1px solid #e3e3e3;
  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 {
  color: #4c5865;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 8px;
  padding-right: 40px;
}
.popup__caption {
  color: rgba(76, 88, 101, 0.8);
  font-size: 16px;
  margin-bottom: 32px;
}
.popup__text-update {
  color: rgba(76, 88, 101, 0.8);
  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 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;
}

@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: #f5671e;
  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: #f5671e;
}

.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;
}

@media (max-width: 580px) {
  .popup__title {
    font-size: 24px;
  }
}
.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: #54616c;
  font-size: 48px;
  top: 0;
  line-height: 1;
}
.counter p {
  font-size: 48px;
  line-height: 1;
  font-weight: bold;
  background-color: #f5671e;
  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: #f5671e;
  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%);
  }
}
.header {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100vw;
  background-color: #fff;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.header__address {
  display: flex;
  align-items: center;
  line-height: 1.2;
  color: rgba(16, 19, 22, 0.8);
  font-size: 14px;
  cursor: pointer;
}
.header__address svg {
  margin-right: 5px;
  min-width: 16px;
}
.header__address svg path {
  fill: rgba(16, 19, 22, 0.8);
}
.header__logos {
  display: flex;
  align-items: center;
}
.header__logos-image {
  width: 170px;
}
.header__logos-image img {
  width: 100%;
}
.header__logos-text {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #4c5865;
  font-size: 14px;
  color: #54616c;
  font-weight: 300;
}
.header__logos-text b {
  display: block;
}
.header__contacts {
  display: flex;
  align-items: center;
}
.header__phone {
  margin-right: 35px;
}
.header__phone a {
  font-weight: bold;
  text-decoration: none;
  font-size: 20px;
  color: #54616c;
}
.header__phone a:hover {
  color: #f5671e;
}
.header__phone p {
  font-size: 14px;
  color: #54616c;
  font-weight: 300;
}
.header__bottom {
  background-color: #fff;
}
.header__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(16, 19, 22, 0.2);
  padding: 15px 0;
}
.header__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__links a {
  color: #54616c;
  text-decoration: none;
}
.header__links a:hover {
  color: #f5671e;
}
.header__burger {
  display: none;
}

@media only screen and (max-width: 1400px) {
  .header__burger {
    display: block;
    margin-left: 20px;
  }
  .header__burger svg {
    width: 40px;
    height: 40px;
  }
  .header__menu {
    position: fixed;
    left: 0;
    top: 80px;
    height: calc(100vh - 80px);
    width: 100vw;
    background-color: #fff;
    display: block;
    transform: translateX(-100vw);
    transition: 0.3s ease;
  }
  .header__menu.active {
    transform: translateX(0);
  }
  .header__links {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
  .header__links a {
    display: block;
    padding: 5px;
    font-size: 18px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 1200px) {
  .header__logos-image {
    width: 140px;
  }
  .header__logos-text {
    font-size: 12px;
  }
  .header__phone a {
    font-size: 18px;
  }
  .header__phone p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 996px) {
  .header__button {
    display: none;
  }
  .header__phone {
    margin-right: 0;
    text-align: right;
  }
}
@media only screen and (max-width: 767px) {
  .header__phone a {
    font-size: 14px;
  }
  .header__phone p {
    display: none;
  }
  .header__logos-image {
    width: 130px;
  }
  .header__address {
    width: 48%;
    font-size: 12px;
  }
  .header__address svg {
    min-width: 12px;
    width: 12px;
    height: 12px;
  }
  .header__wrapper {
    flex-wrap: wrap;
    gap: 12px 0;
    justify-content: center;
  }
  .header__logos-text b {
    font-size: 12px;
  }
  .header__logos-image {
    width: 90px;
  }
  .header__phone {
    margin-top: 5px;
  }
  .header__burger {
    margin-left: 10px;
  }
  .header__menu {
    top: 113px;
    height: calc(100vh - 113px);
  }
}
.main-banner {
  position: relative;
  margin-top: 70px;
}
.main-banner h1 {
  display: none;
}
.main-banner__img--wrap {
  background: #000;
}
.main-banner__img--wrap img, .main-banner__img--wrap source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-banner__subtitle {
  position: absolute;
  top: clamp(1px, 12vw, 230px);
  left: clamp(1px, 5vw, 72px);
  max-width: 1940px;
  margin: 0 auto;
  right: 0;
  color: #fff;
  font-size: clamp(12px, 1.4vw, 72px);
}

@media (max-width: 1920px) {
  .main-banner__subtitle {
    left: clamp(1px, 4vw, 72px);
  }
}
@media (max-width: 768px) {
  .main-banner {
    margin-top: 90px;
  }
  .main-banner__subtitle {
    margin: 0;
    max-width: 140px;
  }
}
@media (max-width: 480px) {
  .main-banner__img {
    max-width: 130%;
  }
}
.timer {
  margin-top: 25px;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}
.timer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  background-image: linear-gradient(110deg, #f5671e 0% 50%, #fff 50.3% 100%);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
}
.timer__title {
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1;
}
.timer__title img {
  display: block;
  width: 30px;
  height: auto;
}
.timer__text {
  line-height: 1.2;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
}
.timer__content {
  width: 50%;
  padding: 30px 10px 30px 20px;
  color: #fff;
}
.timer__counter {
  width: 50%;
  padding: 30px;
  display: flex;
  justify-content: center;
}
.timer__form {
  max-width: 630px;
}
.timer__form .form-elements {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.timer__form .form-elements .input-block {
  width: 49%;
  margin: 0;
}
.timer__form .form-elements .submit {
  width: 49%;
}
.timer__form .form-elements .btn {
  margin: 0;
  width: 100%;
}
.timer__form .form-elements .checkbox {
  display: flex;
  align-items: center;
  width: 100%;
}
.timer__form .form-elements .checkbox label {
  font-size: 12px;
  line-height: 1.2;
}
.timer__form .form-elements .checkbox label a {
  color: #54616c;
}
.timer__form .form-elements .checkbox label a:hover {
  color: #f5671e;
}

@media only screen and (max-width: 996px) {
  .timer__wrapper {
    flex-direction: column;
    background-image: unset;
    align-items: stretch;
    overflow: hidden;
  }
  .timer__content {
    width: 100%;
    background-color: #f5671e;
    text-align: center;
  }
  .timer__title {
    justify-content: center;
  }
  .timer {
    width: 90%;
  }
  .timer__counter {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .timer__title {
    font-size: 18px;
    text-align: left;
  }
  .timer__text {
    font-size: 14px;
    text-align: left;
  }
}
.cars .flickity-prev-next-button.next {
  right: -44px;
}
.cars .flickity-prev-next-button.next svg {
  fill: #f5671e;
}
.cars .flickity-prev-next-button.previous {
  left: -44px;
}
.cars .flickity-prev-next-button.previous svg {
  fill: #f5671e;
}
.cars__tab {
  cursor: pointer;
  margin-right: 10px;
  width: 220px;
}
.cars__tab img {
  display: block;
  height: 90px;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  transform: scale(1.2);
}
.cars__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}
.cars__name {
  text-align: center;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Pragmatica", sans-serif;
  margin-top: 10px;
}
.cars__nav {
  border: 2px solid #f5671e;
  border-radius: 64px;
  padding: 0 32px;
  max-width: 520px;
  width: 100%;
}
.cars__nav .flickity-button {
  display: none;
}
.cars__nav-btn {
  cursor: pointer;
  color: #9E9E9E;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin: 0 16px;
}
.cars__nav-btn.active {
  color: #f5671e;
}
.cars__label {
  position: absolute;
  top: 0;
  left: 0px;
  background: #f5671e;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  min-height: 40px;
  border-radius: 10px;
}
.cars__item {
  margin-top: 80px;
}
.cars__wrap {
  display: flex;
  gap: 40px;
  justify-content: space-around;
}
.cars__gift {
  position: absolute;
  top: 0;
  right: 50px;
  width: 150px;
  background-color: #f5671e;
  color: #fff;
  border-radius: 10px;
  height: 60px;
  line-height: 1;
  padding: 12px;
  font-weight: 300;
  font-size: 18px;
  background-image: url(../images/sale.svg);
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: center right;
}
.cars__gift b {
  font-size: 14px;
  line-height: 1;
}
.cars__models {
  margin-right: calc((100vw - 1170px) / 2 * -1);
  flex-shrink: 0;
  position: relative;
  width: 65vw;
  max-width: 1170px;
  padding-bottom: 40px;
}
.cars__models:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/swipeff.gif);
  filter: invert(1);
  margin-left: -150px;
}
.cars__models .flickity-button {
  display: none;
}
.cars__models img {
  display: block;
  max-width: 100%;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}
.cars__image {
  width: 55%;
  height: 100%;
  display: flex;
  align-items: center;
}
.cars__image img {
  height: 100%;
  object-fit: contain;
  opacity: 0.6;
  filter: blur(4px);
  transform: scale(0.85);
  transition: 0.2s;
}
.cars__image.is-selected img {
  opacity: 1;
  filter: none;
  transform: scale(1);
}
.cars__title {
  color: #2f2f2f;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 36px;
  line-height: 1.2;
  font-family: "Pragmatica", sans-serif;
}
.cars__subtitle {
  color: #2f2f2f;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 1px solid #f5671e;
}
.cars__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px 16px;
}
.cars__btn-compls {
  color: #2f2f2f;
  line-height: 1.8;
  font-size: 10px;
  min-width: 1px;
  background: transparent;
  height: 24px;
  width: auto;
  padding: 0 12px;
}
.cars__btn-compls svg {
  width: 16px;
  height: 16px;
  margin-right: 0;
  transition: 0.2s;
}
.cars__btn-compls:hover svg path {
  fill: #fff;
}
.cars__content {
  width: 320px;
  min-width: 320px;
}
.cars__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cars__sale {
  color: #2f2f2f;
  font-size: 16px;
  line-height: 1.3;
  margin: 16px 0 0;
}
.cars__sale b {
  color: #fff;
  background: #f5671e;
  padding: 4px;
}
.cars__profit {
  color: #f5671e;
  background: rgba(245, 103, 30, 0.1);
  border: 1px solid rgba(245, 103, 30, 0.2);
  font-weight: 600;
  font-size: 12px;
  line-height: 32px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
}
.cars__profit:before {
  content: "";
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: #f5671e;
  margin-right: 8px;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.cars__props {
  position: absolute;
  width: 100%;
  height: 120%;
  left: 0;
  top: -10%;
}
.cars__prop {
  display: flex;
  align-items: center;
  position: absolute;
  left: 20px;
  top: 20px;
  gap: 15px;
}
.cars__prop:nth-child(2) {
  left: 300px;
}
.cars__prop:nth-child(3) {
  left: auto;
  right: 0;
}
.cars__prop:nth-child(4) {
  top: auto;
  bottom: 20px;
}
.cars__prop span {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
}
.cars__prop .cars__icon {
  width: 60px;
  height: 60px;
  padding: 15px;
}
.cars__price {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
}
.cars__benefits {
  margin-top: 20px;
}
.cars__benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cars__benefit .cars__icon {
  width: 30px;
  height: 30px;
  background: none;
}
.cars__buttons {
  margin-top: 20px;
}
.cars__button {
  margin-bottom: 10px;
}
.cars__gallery {
  margin-top: 40px;
}
.cars__slide {
  height: 170px;
  width: 25%;
  overflow: hidden;
  padding-right: 10px;
}
.cars__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 10px;
}

@media only screen and (max-width: 1400px) {
  .cars__models {
    margin-right: calc((100vw - 1200px) / 2 * -1);
  }
  .cars__models:after {
    margin-left: -100px;
  }
  .cars__prop {
    gap: 10px;
  }
  .cars__prop:nth-child(2) {
    left: 250px;
  }
  .cars__prop span {
    font-size: 16px;
  }
  .cars__prop .cars__icon {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
}
@media only screen and (max-width: 1200px) {
  .cars__models {
    margin-right: calc((100vw - 996px) / 2 * -1);
  }
  .cars__models:after {
    margin-left: -100px;
  }
  .cars__prop {
    gap: 10px;
  }
  .cars__prop:nth-child(2) {
    left: auto;
    top: auto;
    bottom: 20px;
    right: 20px;
  }
  .cars__prop span {
    font-size: 16px;
  }
  .cars__prop .cars__icon {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  .cars__gallery {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 996px) {
  .cars__wrap {
    flex-direction: column-reverse;
    gap: 0;
  }
  .cars__models {
    width: auto;
    height: 360px;
    margin-right: calc((100vw - 768px + 30px) / 2 * -1);
    margin-bottom: 16px;
  }
  .cars__models:after {
    margin-left: -30px;
  }
  .cars__head {
    display: block;
    margin-bottom: 16px;
  }
  .cars__nav {
    margin-top: 16px;
    width: 100%;
    max-width: 100%;
  }
  .cars__content {
    width: 100%;
    min-width: 1px;
  }
}
@media only screen and (max-width: 767px) {
  .cars__tabs {
    grid-template-columns: repeat(3, 1fr);
  }
  .cars__props {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .cars__prop {
    position: static;
  }
  .cars__prop span {
    font-size: 12px;
  }
  .cars__slide {
    height: 60px;
  }
  .cars__tabs {
    grid-template-columns: repeat(1, 1fr);
  }
  .cars__models {
    height: 180px;
    margin-right: calc((100vw - 375px + 30px) / 2 * -1);
  }
  .cars__models:after {
    margin-left: -20px;
  }
  .cars__props {
    margin-bottom: 15px;
  }
  .cars__gift {
    right: -25px;
    top: -25px;
  }
  .cars__label {
    top: -25px;
    left: -25px;
    font-size: 12px;
    min-height: 32px;
  }
  .cars__slide {
    width: 33.3%;
  }
  .cars__tabs {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}
.tradein {
  position: relative;
  height: 600px;
  z-index: 1;
}
.tradein__image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.tradein__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.tradein__content {
  padding-top: 70px;
  width: 415px;
  margin-left: auto;
}
.tradein__content h2 {
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}
.tradein__content form {
  margin-top: 30px;
}
.tradein__content form .input-block {
  margin-bottom: 15px;
}
.tradein__content form .input-block.checkbox label {
  color: #fff;
}
.tradein__content form .input-block.checkbox label a:hover {
  color: #f5671e;
}
.tradein__content form .input-block input[type=checkbox] + label::before {
  background-color: #fff;
}
.tradein__content form .submit {
  width: 100%;
}
.tradein__content form .submit .btn {
  width: 100%;
  margin-top: 0;
}
.tradein__subtitle {
  color: #fff;
  font-size: 18px;
  margin-top: 15px;
  line-height: 1.2;
}

@media only screen and (max-width: 1400px) {
  .tradein__image img {
    object-position: 10% center;
  }
}
@media only screen and (max-width: 1200px) {
  .tradein__image img {
    object-position: 23% center;
  }
}
@media only screen and (max-width: 996px) {
  .tradein__image img {
    object-position: 40% center;
  }
}
@media only screen and (max-width: 767px) {
  .tradein__image {
    position: static;
  }
  .tradein {
    height: auto;
    background-color: #54616c;
  }
  .tradein__content {
    width: 100%;
    padding: 30px 0;
  }
}
.credit {
  position: relative;
  height: 600px;
  z-index: 1;
  margin-top: 0;
}
.credit__image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.credit__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.credit__content {
  padding-top: 70px;
  width: 415px;
}
.credit__content h2 {
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}
.credit__content form {
  margin-top: 30px;
}
.credit__content form .input-block {
  margin-bottom: 15px;
}
.credit__content form .input-block.checkbox label {
  color: #fff;
}
.credit__content form .input-block.checkbox label a:hover {
  color: #f5671e;
}
.credit__content form .input-block input[type=checkbox] + label::before {
  background-color: #fff;
}
.credit__content form .submit {
  width: 100%;
}
.credit__content form .submit .btn {
  width: 100%;
  margin-top: 0;
}
.credit__subtitle {
  color: #fff;
  font-size: 18px;
  margin-top: 15px;
  line-height: 1.2;
}

@media only screen and (max-width: 1400px) {
  .credit__image img {
    object-position: 90% center;
  }
}
@media only screen and (max-width: 1200px) {
  .credit__image img {
    object-position: 77% center;
  }
}
@media only screen and (max-width: 996px) {
  .credit__image img {
    object-position: 60% center;
  }
}
@media only screen and (max-width: 767px) {
  .credit__image {
    position: static;
  }
  .credit {
    height: auto;
    background-color: #54616c;
  }
  .credit__content {
    width: 100%;
    padding: 30px 0;
  }
}
.compls h2 {
  font-size: 30px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
}
.compls__filter {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.compls__select {
  flex: 1 1 240px;
  min-height: 52px;
  border-radius: 10px;
}
.compls__actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.compls__actions .btn {
  max-width: 320px;
  min-height: 48px;
}
.compls__tabs {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.compls__tab {
  flex: 1 1 120px;
  padding: 10px 16px;
  border: 1px solid #54616c;
  border-radius: 10px;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  line-height: 1;
}
.compls__tab:hover {
  border-color: #fff;
  background-color: #fff;
}
.compls__tab.active {
  border-color: #fff;
  background-color: #fff;
}
.compls__wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  margin-top: 40px;
  gap: 48px;
  border: 1px solid #f7f8f8;
  overflow: hidden;
}
.compls__wrap.open {
  background-color: #4c5865;
  color: #f7f8f8;
}
.compls__name {
  position: absolute;
  font-size: 68px;
  font-weight: 900;
  color: #f7f8f8;
  z-index: 3;
  left: -5px;
  top: -8px;
  line-height: 1;
}
.compls__image {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 340px;
}
.compls__image img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
}
.compls__title {
  position: relative;
  z-index: 3;
}
.compls__title span {
  font-size: 28px;
  text-transform: uppercase;
}
.compls__title strong {
  display: block;
  color: #f5671e;
  font-size: 20px;
}
.compls__config {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  margin: 10px 0;
}
.compls__buttons {
  max-width: 260px;
  width: 100%;
}
.compls__buttons .btn {
  min-height: 40px;
}
.compls__button {
  margin: 20px 0;
}
.compls__button .btn.open svg {
  transform: rotate(180deg);
}
.compls__info {
  background-color: #4c5865;
  margin-top: 10px;
  border-radius: 10px;
  padding: 15px;
  color: #f7f8f8;
  will-change: max-height;
  transition: max-height 0.3s;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
}
.compls__info-title {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}
.compls__info ul {
  margin-top: 20px;
}
.compls__info ul li {
  list-style-type: none;
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
}
.compls__info ul li::before {
  content: "";
  border: 8px solid transparent;
  border-left: 8px solid #f5671e;
  display: block;
  margin-top: 4px;
}
.compls__col {
  background-color: #54616c;
  border-radius: 10px;
  padding: 20px 30px;
}

@media only screen and (max-width: 1537px) {
  .compls__buttons {
    max-width: 285px;
  }
  .compls__image {
    width: 280px;
  }
  .compls__image img {
    display: block;
    width: 100%;
    height: auto;
  }
  .compls__title span {
    font-size: 24px;
  }
  .compls__wrap {
    gap: 50px;
  }
}
@media only screen and (max-width: 1200px) {
  .compls__wrap {
    flex-wrap: wrap;
  }
  .compls__title {
    width: 100%;
    text-align: right;
  }
  .compls__configs {
    width: calc(50% - 50px);
  }
  .compls__buttons {
    width: calc(50% - 50px);
    max-width: 100%;
  }
  .compls__image {
    top: 85px;
  }
}
@media only screen and (max-width: 767px) {
  .compls h2 {
    font-size: 24px;
  }
  .compls__tabs {
    flex-wrap: wrap;
  }
  .compls__tab {
    font-size: 20px;
  }
  .compls__image {
    width: 150px;
    top: 50px;
  }
  .compls__name {
    font-size: 36px;
    top: -10px;
  }
  .compls__title span {
    font-size: 14px;
    line-height: 1.2;
  }
  .compls__title strong {
    font-size: 14px;
    line-height: 1.2;
  }
  .compls__configs {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
  }
  .compls__config {
    margin: 0;
  }
  .compls__buttons {
    width: 100%;
    margin: 12px 0 0;
  }
  .compls__wrap {
    padding: 20px;
    gap: 0px;
  }
  .compls__info {
    display: block;
  }
  .compls__col {
    margin: 10px 0;
  }
}
.formSmall {
  margin-top: 50px;
}
.formSmall__wrapper {
  display: flex;
  max-width: 1170px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.formSmall__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.formSmall__content {
  background: #54616c;
  width: 40.2%;
  padding: 80px 45px;
  background: linear-gradient(141deg, #54616c 0%, #f5671e 100%);
  position: relative;
  overflow: hidden;
}
.formSmall__content::after {
  content: "%";
  color: #fff;
  font-size: 300px;
  position: absolute;
  right: -100px;
  bottom: -100px;
  opacity: 0.2;
  line-height: 1;
  font-family: "Pragmatica", sans-serif;
}
.formSmall__title {
  color: #fff;
  font-family: "Pragmatica", sans-serif;
  font-size: 30px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 300;
}
.formSmall__subtitle {
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  margin-top: 15px;
}
.formSmall form {
  margin-top: 20px;
}
.formSmall form .input-block {
  margin: 0;
}
.formSmall form .btn {
  width: 100%;
}
.formSmall form .checkbox span {
  color: #fff;
  font-size: 12px;
}
.formSmall form .checkbox label::before {
  margin-right: 15px;
}

@media only screen and (max-width: 996px) {
  .formSmall__wrapper {
    display: block;
  }
  .formSmall__content {
    width: 100%;
  }
}
.formBig {
  overflow: hidden;
  background-color: #f7f8f8;
  position: relative;
}
.formBig::after {
  content: "";
  position: absolute;
  right: 43%;
  top: 0;
  width: 200px;
  height: 200px;
  background-color: #54616c;
  display: block;
  z-index: 1;
  clip-path: polygon(0% 0, 80% 0, 50% 100%, 0 100%);
  opacity: 0.1;
}
.formBig.reverse::after {
  content: "";
  position: absolute;
  right: auto;
  left: 43%;
  top: 0;
  width: 200px;
  height: 200px;
  background-color: #54616c;
  display: block;
  z-index: 1;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 50% 100%);
  opacity: 0.1;
}
.formBig.reverse .formBig__bg {
  left: auto;
  right: 0;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
.formBig.reverse .formBig__bg img {
  object-position: center center;
}
.formBig.reverse .formBig__content {
  margin-left: 0;
}
.formBig .container {
  max-width: 1200px;
}
.formBig__content {
  padding: 60px 0;
  width: 375px;
  margin-left: auto;
}
.formBig__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  clip-path: polygon(0% 0, 80% 0, 100% 100%, 0 100%);
  z-index: 2;
  height: 100%;
}
.formBig__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.formBig__title {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 30px;
  font-family: "Pragmatica", sans-serif;
  line-height: 1.2;
}
.formBig__subtitle {
  font-size: 18px;
  line-height: 1.2;
  margin-top: 20px;
}
.formBig form {
  margin-top: 20px;
}
.formBig form .input-block {
  margin-bottom: 15px;
}
.formBig form .btn {
  width: 100%;
  margin: 0;
}
.formBig form .checkbox span {
  font-size: 12px;
  margin-left: 10px;
}
.formBig form .checkbox span a {
  color: #54616c;
}

@media only screen and (max-width: 996px) {
  .formBig::after {
    display: none;
  }
  .formBig__bg {
    position: static;
    width: 100%;
    clip-path: none;
  }
  .formBig__content {
    width: 100%;
  }
  .formBig.reverse .formBig__bg {
    clip-path: none;
  }
}
.feedback {
  margin-top: 0;
  background-color: #4c5865;
}
.feedback__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0;
}
.feedback__wrapper h2 {
  font-size: 32px;
}
.feedback__subtitle {
  font-size: 24px;
  margin-top: 15px;
}
.feedback form {
  max-width: 600px;
}
.feedback form .form-elements {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.feedback form .input-block {
  width: 49%;
  margin: 0;
}
.feedback form .input-block.checkbox {
  width: 100%;
}
.feedback form .input-block.checkbox label a {
  color: #54616c;
}
.feedback form .input-block.checkbox label a:hover {
  color: #f5671e;
}
.feedback form .submit {
  width: 49%;
}
.feedback form .submit .btn {
  width: 100%;
  margin: 0;
}

@media only screen and (max-width: 1200px) {
  .feedback__wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
  .feedback__subtitle {
    text-align: center;
  }
  .feedback__wrapper h2 {
    text-align: center;
  }
  .feedback form {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .feedback__wrapper h2 {
    font-size: 24px;
  }
  .feedback__subtitle {
    font-size: 16px;
  }
  .feedback form .form-elements {
    display: block;
  }
  .feedback form .input-block {
    width: 100%;
  }
  .feedback form .submit {
    width: 100%;
    margin-top: 15px;
  }
  .input-block label {
    font-size: 12px;
  }
}
.benefits {
  margin-top: 50px;
}
.benefits h2 {
  text-align: center;
  font-weight: 300;
  text-transform: uppercase;
}
.benefits__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.benefits__item {
  min-height: 170px;
  background-color: #f7f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  overflow: hidden;
  cursor: pointer;
}
.benefits__item:hover svg path {
  fill: #f5671e;
}
.benefits__item svg {
  position: absolute;
  width: 50%;
  z-index: -1;
  right: -30px;
  top: 20px;
}
.benefits__item svg path {
  fill: #fff;
  transition: 0.3s ease;
}
.benefits__button {
  width: calc(33.3333333333% - 20px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

@media only screen and (max-width: 996px) {
  .benefits__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits__button {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .benefits__items {
    grid-template-columns: repeat(1, 1fr);
  }
  .benefits__button {
    width: 100%;
  }
}
.contacts h2 {
  font-weight: 300;
}
.contacts__wrapper {
  margin-top: 35px;
  position: relative;
}
.contacts__info {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
  max-width: 400px;
}
.contacts__map {
  height: 460px;
}
.contacts__title {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contacts__address {
  display: flex;
  margin-bottom: 15px;
}
.contacts__address svg {
  fill: #f5671e;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-right: 10px;
}
.contacts__phone {
  display: flex;
  margin-bottom: 15px;
}
.contacts__phone a {
  text-decoration: none;
  color: #54616c;
}
.contacts__phone a:hover {
  color: #f5671e;
}
.contacts__phone svg {
  fill: #f5671e;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-right: 10px;
}
.contacts__time {
  display: flex;
  margin-bottom: 15px;
}
.contacts__time svg {
  fill: #f5671e;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-right: 10px;
}
.contacts__time svg path {
  stroke: #f5671e;
  fill: #f5671e;
}
.contacts__button {
  margin-top: 20px;
}

@media only screen and (max-width: 1200px) {
  .contacts__info {
    right: 20px;
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .contacts__info {
    position: static;
    transform: none;
    padding: 0;
    width: 100%;
  }
  .contacts__map {
    margin-top: 20px;
    height: 300px;
  }
}
.footer {
  padding: 20px 0;
  font-size: 14px;
}
.footer p {
  margin-top: 10px;
}