.tippy-box[data-animation=fade][data-state=hidden] {
  opacity: 0;
}

[data-tippy-root] {
  max-width: calc(100vw - 10px);
}

.tippy-box {
  position: relative;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
  outline: 0;
  transition-property: transform, visibility, opacity;
}

.tippy-box[data-placement^=top] > .tippy-arrow {
  bottom: 0;
}

.tippy-box[data-placement^=top] > .tippy-arrow:before {
  bottom: -7px;
  left: 0;
  border-width: 8px 8px 0;
  border-top-color: initial;
  transform-origin: center top;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow {
  top: 0;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
  top: -7px;
  left: 0;
  border-width: 0 8px 8px;
  border-bottom-color: initial;
  transform-origin: center bottom;
}

.tippy-box[data-placement^=left] > .tippy-arrow {
  right: 0;
}

.tippy-box[data-placement^=left] > .tippy-arrow:before {
  border-width: 8px 0 8px 8px;
  border-left-color: initial;
  right: -7px;
  transform-origin: center left;
}

.tippy-box[data-placement^=right] > .tippy-arrow {
  left: 0;
}

.tippy-box[data-placement^=right] > .tippy-arrow:before {
  left: -7px;
  border-width: 8px 8px 8px 0;
  border-right-color: initial;
  transform-origin: center right;
}

.tippy-box[data-inertia][data-state=visible] {
  transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}

.tippy-arrow {
  width: 16px;
  height: 16px;
  color: #333;
}

.tippy-arrow:before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid;
}

.tippy-content {
  position: relative;
  padding: 5px 9px;
  z-index: 1;
}

.tippy-box[data-animation=shift-away][data-state=hidden] {
  opacity: 0;
}

.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=top] {
  transform: translateY(10px);
}

.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=bottom] {
  transform: translateY(-10px);
}

.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=left] {
  transform: translateX(10px);
}

.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=right] {
  transform: translateX(-10px);
}

.tippy-box[data-theme~=light] {
  color: #26323d;
  box-shadow: 0 0 20px 4px rgba(154, 161, 177, 0.15), 0 4px 80px -8px rgba(36, 40, 47, 0.25), 0 4px 4px -2px rgba(91, 94, 105, 0.15);
  background-color: #fff;
}

.tippy-box[data-theme~=light][data-placement^=top] > .tippy-arrow:before {
  border-top-color: #fff;
}

.tippy-box[data-theme~=light][data-placement^=bottom] > .tippy-arrow:before {
  border-bottom-color: #fff;
}

.tippy-box[data-theme~=light][data-placement^=left] > .tippy-arrow:before {
  border-left-color: #fff;
}

.tippy-box[data-theme~=light][data-placement^=right] > .tippy-arrow:before {
  border-right-color: #fff;
}

.tippy-box[data-theme~=light] > .tippy-backdrop {
  background-color: #fff;
}

.tippy-box[data-theme~=light] > .tippy-svg-arrow {
  fill: #fff;
}

/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

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

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

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

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

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

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

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

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

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

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

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

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

.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

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

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

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

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

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

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

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

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

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

.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}

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

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}

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

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: 200ms transform, 200ms top;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: 200ms transform, 200ms left;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

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

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}

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

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}

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

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

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

/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

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

.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

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

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

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

.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
    &:before {
      content: "";
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
  }
}

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

/* Cube slide shadows start */
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}

/* Cube slide shadows end */
.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

/* Flip slide shadows start */
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}

/* Flip slide shadows end */
.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}

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

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

h1, h2,
h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input, button,
textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
  background-image: url("/static/landing/media/images/landing_bg.png");
  font-family: "Commissioner", serif;
}

a {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-decoration-style: solid;
}

.link-block {
  text-decoration: none;
  text-decoration-style: none;
  text-decoration-thickness: unset;
  text-decoration-line: none;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  color: inherit;
}

.scroll-lock {
  overflow-y: hidden;
}

.mob-nohl {
  -webkit-tap-highlight-color: transparent;
}

@font-face {
  font-family: "Geologica Roman";
  src: url("/static/landing/media/fonts/GeologicaRoman-Bold.woff2") format("woff2"), url("/static/landing/media/fonts/GeologicaRoman-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica Roman";
  src: url("/static/landing/media/fonts/GeologicaRoman-Medium.woff2") format("woff2"), url("/static/landing/media/fonts/GeologicaRoman-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica Roman";
  src: url("/static/landing/media/fonts/GeologicaRoman-Regular.woff2") format("woff2"), url("/static/landing/media/fonts/GeologicaRoman-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica Roman";
  src: url("/static/landing/media/fonts/GeologicaRoman-Black.woff2") format("woff2"), url("/static/landing/media/fonts/GeologicaRoman-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica Roman";
  src: url("/static/landing/media/fonts/GeologicaRoman-Thin.woff2") format("woff2"), url("/static/landing/media/fonts/GeologicaRoman-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica Roman";
  src: url("/static/landing/media/fonts/GeologicaRoman-ExtraBold.woff2") format("woff2"), url("/static/landing/media/fonts/GeologicaRoman-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica Roman";
  src: url("/static/landing/media/fonts/GeologicaRoman-SemiBold.woff2") format("woff2"), url("/static/landing/media/fonts/GeologicaRoman-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica Roman";
  src: url("/static/landing/media/fonts/GeologicaRoman-Light.woff2") format("woff2"), url("/static/landing/media/fonts/GeologicaRoman-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica Roman";
  src: url("/static/landing/media/fonts/GeologicaRoman-ExtraLight.woff2") format("woff2"), url("/static/landing/media/fonts/GeologicaRoman-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Commissioner";
  src: url("/static/landing/media/fonts/Commissioner-ExtraBold.woff2") format("woff2"), url("/static/landing/media/fonts/Commissioner-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Commissioner";
  src: url("/static/landing/media/fonts/Commissioner-Black.woff2") format("woff2"), url("/static/landing/media/fonts/Commissioner-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Commissioner";
  src: url("/static/landing/media/fonts/Commissioner-Bold.woff2") format("woff2"), url("/static/landing/media/fonts/Commissioner-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Commissioner";
  src: url("/static/landing/media/fonts/Commissioner-Medium.woff2") format("woff2"), url("/static/landing/media/fonts/Commissioner-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Commissioner";
  src: url("/static/landing/media/fonts/Commissioner-Thin.woff2") format("woff2"), url("/static/landing/media/fonts/Commissioner-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Commissioner";
  src: url("/static/landing/media/fonts/Commissioner-Light.woff2") format("woff2"), url("/static/landing/media/fonts/Commissioner-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Commissioner";
  src: url("/static/landing/media/fonts/Commissioner-ExtraLight.woff2") format("woff2"), url("/static/landing/media/fonts/Commissioner-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Commissioner";
  src: url("/static/landing/media/fonts/Commissioner-SemiBold.woff2") format("woff2"), url("/static/landing/media/fonts/Commissioner-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Commissioner";
  src: url("/static/landing/media/fonts/Commissioner-Regular.woff2") format("woff2"), url("/static/landing/media/fonts/Commissioner-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Serif";
  src: url("/static/landing/media/fonts/IBMPlexSerif-Light.woff2") format("woff2"), url("/static/landing/media/fonts/IBMPlexSerif-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Serif";
  src: url("/static/landing/media/fonts/IBMPlexSerif-Regular.woff2") format("woff2"), url("/static/landing/media/fonts/IBMPlexSerif-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Serif";
  src: url("/static/landing/media/fonts/IBMPlexSerif-SemiBold.woff2") format("woff2"), url("/static/landing/media/fonts/IBMPlexSerif-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Serif";
  src: url("/static/landing/media/fonts/IBMPlexSerif-Thin.woff2") format("woff2"), url("/static/landing/media/fonts/IBMPlexSerif-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Serif";
  src: url("/static/landing/media/fonts/IBMPlexSerif-Medium.woff2") format("woff2"), url("/static/landing/media/fonts/IBMPlexSerif-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Serif";
  src: url("/static/landing/media/fonts/IBMPlexSerif-Bold.woff2") format("woff2"), url("/static/landing/media/fonts/IBMPlexSerif-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
.tippy-box {
  font-family: "Commissioner", serif;
  font-size: 16px;
}

.ck.ck-content.ck-editor__editable {
  min-height: 500px !important;
}

:root {
  --swiper-theme-color: #ed1c24;
  --swiper-navigation-size: 30px;
}

.landing-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.landing-block {
  width: 100%;
  min-width: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.landing-block__wrapper {
  align-self: center;
  width: 1082px;
}
@media only screen and (max-width: 1200px) {
  .landing-block__wrapper {
    width: 944px;
  }
}
@media only screen and (max-width: 1024px) {
  .landing-block__wrapper {
    width: 792px;
  }
}
@media only screen and (max-width: 992px) {
  .landing-block__wrapper {
    width: 728px;
  }
}
@media only screen and (max-width: 768px) {
  .landing-block__wrapper {
    width: 536px;
  }
}
@media only screen and (max-width: 576px) {
  .landing-block__wrapper {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.landing-first {
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8491771709) 52%, rgba(255, 255, 255, 0) 100%);
}

.header {
  font-family: "Commissioner", serif;
  display: grid;
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 20px;
  width: 100%;
  margin-top: 50px;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "logo menu contacts" ". . consultation";
}
@media only screen and (max-width: 1024px) {
  .header {
    grid-template-columns: auto auto;
    grid-template-areas: "logo contacts" "menu menu";
  }
}
.header__logo {
  grid-area: logo;
  width: 85px;
}
.header__menu {
  grid-area: menu;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  font-size: 20px;
}
@media only screen and (max-width: 992px) {
  .header__menu {
    padding-top: 20px;
    padding-botom: 20px;
    gap: 25px;
  }
}
@media only screen and (max-width: 576px) {
  .header__menu {
    justify-content: space-between;
    gap: 5px;
  }
}
.header__menu-item {
  color: #db0011;
  transition: all 300ms;
  display: flex;
  padding: 10px;
  border-radius: 50px;
  width: -moz-max-content;
  width: max-content;
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 576px) {
  .header__menu-item {
    cursor: pointer;
    padding: 0px;
    font-size: 16px;
  }
}
.header__menu-item:hover {
  cursor: pointer;
  color: white;
  background-color: #ed1c24;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .header__menu-item:hover {
    background-color: transparent;
    color: #ed1c24;
  }
}
.header__contacts {
  grid-area: contacts;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}
@media only screen and (max-width: 992px) {
  .header__contacts {
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
  }
  .header__contacts .socials {
    order: 2;
  }
}
.header__contacts p a {
  color: #1b1b1b;
  font-size: 22px;
  font-weight: 500;
}
.header__contacts p a:hover {
  color: #ed1c24;
}
@media only screen and (max-width: 576px) {
  .header__contacts p a {
    font-size: 16px;
  }
}
.header__consultation {
  grid-area: consultation;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 1024px) {
  .header__consultation {
    display: none;
  }
}

.welcome {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
  font-family: "IBM Plex Serif", serif;
}
@media only screen and (max-width: 576px) {
  .welcome {
    margin-top: 40px;
  }
}
.welcome__content {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 576px) {
  .welcome__content {
    align-items: center;
    text-align: center;
  }
}
.welcome__title {
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
}
.welcome__title--accent {
  color: #db0011;
}
@media only screen and (max-width: 576px) {
  .welcome__title {
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
  }
}
.welcome__text {
  font-family: "Commissioner", serif;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
}
@media only screen and (max-width: 576px) {
  .welcome__text {
    font-size: 20px;
  }
}
.welcome__image {
  display: block;
  min-width: 40%;
}
.welcome__image img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .welcome__image {
    display: none;
  }
}
.welcome__button {
  margin-top: 20px;
}

.defects {
  display: flex;
  flex-direction: column;
  margin-top: 120px;
  align-items: center;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .defects {
    margin-top: 70px;
  }
}
.defects__image {
  margin-top: 150px;
  height: 100%;
}
@media only screen and (max-width: 992px) {
  .defects__image {
    margin-top: 30px;
  }
}
.defects__content {
  margin-top: 70px;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 255px;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 1200px) {
  .defects__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 576px) {
  .defects__content {
    grid-template-columns: 1fr;
  }
}
.defects__item {
  background-color: #413945;
}
.defects__item:hover .defects__item-bg {
  transform: scale(1.5);
  opacity: 1;
}
.defects__item:hover .defects__item-title {
  transform: translateX(20px);
  opacity: 0;
}
.defects__item:hover .defects__item-text {
  transform: translateX(20px);
  opacity: 0;
}
.defects__item:hover .defects__item-trg {
  width: 70%;
  height: 70%;
  opacity: 1;
}
.defects__item .wrapper {
  display: flex;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  justify-content: center;
}
.defects__item-bg {
  position: absolute;
  transition: all 300ms;
  background-size: cover;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}
.defects__item-trg {
  transition: all ease 500ms;
  opacity: 0;
  position: absolute;
  width: 30%;
  height: 30%;
  border-style: solid;
  border-width: 3px;
  border-color: white;
  align-self: center;
  z-index: 1;
}
.defects__item-title {
  transition: all 300ms;
  position: absolute;
  padding: 20px;
  z-index: 2;
  text-align: left;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.defects__item-title span {
  display: inline;
  background-color: #ed1c24;
  padding: 5px 10px;
  color: #FFFFFF;
  font-size: 18px;
  text-transform: uppercase;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.defects__item-text {
  display: flex;
  color: white;
  transition: all 300ms;
  position: absolute;
  padding: 20px;
  z-index: 2;
  text-align: left;
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 16px;
}
.defects__item-text span {
  align-self: flex-end;
}
.defects .deffect-laminat {
  background-image: url("/static/landing/media/images/defects/laminat.png");
}
.defects .deffect-plesen {
  background-image: url("/static/landing/media/images/defects/plesen.png");
}
.defects .deffect-pribory {
  background-image: url("/static/landing/media/images/defects/pribory.png");
}
.defects .deffect-infiltraciya {
  background-image: url("/static/landing/media/images/defects/infiltraciya.png");
}
.defects .deffect-plitka {
  background-image: url("/static/landing/media/images/defects/plitka.png");
}
.defects .deffect-stena {
  background-image: url("/static/landing/media/images/defects/stena.png");
}
.defects .deffect-santeh {
  background-image: url("/static/landing/media/images/defects/santeh.png");
}
.defects .deffect-osteklenie {
  background-image: url("/static/landing/media/images/defects/osteklenie.png");
}

.img-crc {
  position: absolute;
  width: 100%;
  height: 593px;
  background-position-x: center;
  background-position-y: 140px;
  background-repeat: no-repeat;
  background-image: url("/static/landing/media/images/crc_bg.png");
  z-index: -1;
}

.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 70px;
  margin-bottom: 100px;
  text-align: center;
}
.services__content {
  width: 100%;
  font-family: "IBM Plex Serif", serif;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(auto-fit, min-content);
  gap: 40px;
  margin-top: 70px;
}
@media only screen and (max-width: 992px) {
  .services__content {
    grid-template-columns: 1fr;
  }
}
.services .card__info {
  display: flex;
  align-items: center;
  min-height: 30px;
  min-width: 30px;
  cursor: pointer;
}
.services .card__info img {
  width: 30px;
}
.services .card__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: space-between;
}
.services .card__title p {
  font-size: 22px;
  font-weight: 600;
}
.services .card__form {
  display: flex;
  flex-direction: column;
  max-width: 260px;
}
.services .card-result {
  background-image: url("/static/landing/media/images/service_result.png");
}
.services .card-result__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.services .card-result__title {
  font-size: 22px;
  font-weight: 600;
}
.services .card-result__subtitle {
  width: 250px;
}
.services .card-result__content {
  padding: 5px 20px 5px 20px;
  border-style: dotted;
  border-width: 2px;
  border-color: rgb(219, 219, 219);
  border-radius: 10px;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 50px;
}
.services .card-result__price {
  color: #db0011;
  font-size: 35px;
  font-weight: 500;
  display: none;
}
.services .card-result__choice {
  color: rgb(219, 219, 219);
}
.services .card-result__reset {
  display: flex;
  max-width: -moz-fit-content;
  max-width: fit-content;
  transition: all 300ms;
  color: rgb(219, 219, 219);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 7px;
  cursor: pointer;
}
.services .card-result__reset:hover {
  color: #5a5a5a;
}

.collective-block {
  background-image: url("/static/landing/media/images/collective_bg.jpg");
  background-size: cover;
  background-color: #7b7368;
  margin-bottom: 70px;
}

.collective {
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  color: white;
}
.collective__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "Commissioner", serif;
}
.collective__title {
  margin-bottom: 50px;
}
.collective__text {
  color: white;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 50px;
}
@media only screen and (max-width: 992px) {
  .collective__text {
    font-size: 22px;
  }
}
@media only screen and (max-width: 576px) {
  .collective__text {
    font-size: 18px;
  }
}
.collective__discount {
  display: flex;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 20px;
  background-color: #db0011;
  font-size: 42px;
  font-weight: 600;
  transform: rotate(-2deg);
  margin-bottom: 50px;
}
@media only screen and (max-width: 992px) {
  .collective__discount {
    font-size: 30px;
  }
}
@media only screen and (max-width: 576px) {
  .collective__discount {
    font-size: 18px;
  }
}
.collective__spec {
  font-size: 16px;
  margin-bottom: 50px;
}

.how-it-works {
  margin-bottom: 100px;
}
.how-it-works__content {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 270px;
  gap: 10px;
}
@media only screen and (max-width: 1200px) {
  .how-it-works__content {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .how-it-works__content {
    grid-template-columns: 1fr;
    grid-auto-rows: max-content;
  }
}
.how-it-works__block {
  background-size: cover;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.how-it-works__block:hover .how-it-works__hl div {
  height: 500px;
  width: 620px;
}
.how-it-works__block:hover .how-it-works__image {
  transform: translate(-20px);
}
.how-it-works__block:hover .how-it-works__num {
  opacity: 100%;
}
.how-it-works__upper {
  padding: 30px 30px 0px 30px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  z-index: 1;
}
.how-it-works__num {
  transition: all 300ms;
  color: white;
  font-family: "Commissioner", serif;
  font-size: 50px;
  font-weight: 700;
  opacity: 50%;
}
.how-it-works__num p {
  line-height: 20px;
}
.how-it-works__image {
  transition: all 700ms ease-in-out;
}
.how-it-works__image img {
  height: 130px;
}
.how-it-works__text {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  color: white;
  font-family: "Commissioner", serif;
  font-size: 22px;
  line-height: 26px;
  height: 100%;
  width: 100%;
  padding: 0px 30px 30px 30px;
  z-index: 1;
}
.how-it-works__text .subtext {
  font-size: 16px;
  font-weight: 300;
  line-height: 16px;
}
.how-it-works__hl {
  position: relative;
}
.how-it-works__hl div {
  position: absolute;
  transition: all 300ms;
  background-color: #ed1c24;
  height: 0px;
  width: 0px;
  border-radius: 0px 0px 500px 0px;
}

.hiw-request {
  background-image: url("/static/landing/media/images/how_it_works/bg_01.jpg");
}

.hiw-check {
  background-image: url("/static/landing/media/images/how_it_works/bg_02.jpg");
}

.hiw-developer {
  background-image: url("/static/landing/media/images/how_it_works/bg_03.jpg");
}

.hiw-fix {
  background-image: url("/static/landing/media/images/how_it_works/bg_04.jpg");
}

.hiw-second-check {
  background-image: url("/static/landing/media/images/how_it_works/bg_05.jpg");
}

.hiw-keys {
  background-image: url("/static/landing/media/images/how_it_works/bg_06.jpg");
}

.swiper-vids {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-slide {
  background-color: #ffffff;
  color: black;
  height: 300px;
  cursor: pointer;
}

.videos-block {
  position: relative;
  padding: 70px 0px 70px 0px;
  background-image: linear-gradient(to top, #282b2f, #24282d, #21252a, #1d2328, #192025);
  color: white;
}
.videos-block__gradient {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("/static/landing/media/images/video_block_pattern.png");
  z-index: 1;
}

.videos {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 70px;
  z-index: 2;
}
.videos__title {
  z-index: 3;
}
.videos__content {
  z-index: 3;
  position: relative;
}
.videos__button {
  display: flex;
  width: 100%;
  justify-content: center;
  z-index: 3;
}

.video-modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.925);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 100;
}
.video-modal__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  align-items: flex-end;
}
.video-modal--active {
  display: block;
}

.video-cover {
  transition: all 300ms;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  padding: 20px;
  background-color: #292929;
}
.video-cover:hover .video-cover__overlay {
  opacity: 0.6;
}
.video-cover:hover .video-cover__icon {
  transform: scale(1.2);
}
.video-cover__overlay {
  transition: all 300ms;
  opacity: 0.8;
  position: absolute;
  background: linear-gradient(0deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.1) 100%);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}
.video-cover__title {
  position: absolute;
  bottom: 30px;
  color: #ffffff;
  font-family: "Commissioner", serif;
  font-size: 18px;
  font-weight: 500;
  max-width: 70%;
  text-align: center;
}
.video-cover__icon {
  transition: all 300ms;
  width: 100px;
  position: absolute;
}

.video-close-button {
  position: absolute;
  z-index: 101;
  cursor: pointer;
}

.video-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.video-container video {
  height: -moz-fit-content;
  height: fit-content;
  max-height: 90%;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 90%;
}

.reports {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 70px;
  margin-bottom: 70px;
}
.reports__content {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: max-content;
  gap: 30px;
  justify-items: center;
}
@media only screen and (max-width: 1024px) {
  .reports__content {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 992px) {
  .reports__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 576px) {
  .reports__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.feedbacks {
  margin-top: 70px;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feedbacks__content {
  margin-top: 70px;
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: max-content;
  gap: 30px;
  justify-items: center;
}
@media only screen and (max-width: 1024px) {
  .feedbacks__content {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 992px) {
  .feedbacks__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 576px) {
  .feedbacks__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contacts {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media only screen and (max-width: 992px) {
  .contacts {
    margin-top: 0px;
  }
}
.contacts__content {
  font-family: "Commissioner", serif;
  padding-top: 50px;
  display: flex;
  flex-direction: row;
  gap: 40px;
}
@media only screen and (max-width: 992px) {
  .contacts__content {
    flex-direction: column;
  }
}
.contacts__map {
  width: 600px;
}
@media only screen and (max-width: 992px) {
  .contacts__map {
    width: 100%;
  }
}
.contacts__info {
  display: flex;
  flex-direction: column;
  color: #3b3b3b;
}
.contacts__block {
  display: flex;
  flex-direction: column;
}
.contacts__block-title {
  font-size: 20px;
  font-weight: 500;
}
.contacts__block-text {
  font-size: 18px;
}
.contacts__metro {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  gap: 5px;
}
.contacts__metro-station {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.contacts__metro-station img {
  width: 20px;
}
.contacts__tels {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  font-size: 24px;
  font-weight: 400;
  gap: 10px;
}
.contacts__tel-number {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.contacts__tel-number img {
  width: 20px;
}
.contacts__tel-number:hover {
  color: #ed1c24;
}

.email-block {
  margin-top: 20px;
}
.email-block a:hover {
  color: #ed1c24;
}

.schedule-block {
  margin-top: 20px;
}

.contacts-socials {
  margin-top: 20px;
}

.footer-bg {
  background-color: #242629;
  background-image: url("/static/landing/media/images/footer_pattern.png");
}

.footer {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #5a5a5a;
}
@media only screen and (max-width: 576px) {
  .footer {
    flex-direction: column;
  }
}
.footer__info p, .footer__policy p {
  padding-top: 4px;
  border-block-start: 4px;
}
.footer__policy p {
  text-decoration: underline;
  text-decoration-style: dotted;
  cursor: pointer;
}
.footer__policy p:hover {
  color: #858585;
}
@media only screen and (max-width: 576px) {
  .footer__policy {
    margin-top: 20px;
  }
}
.footer__logo {
  width: 60px;
  align-self: center;
  opacity: 0.15;
}
@media only screen and (max-width: 992px) {
  .footer__logo {
    display: none;
  }
}

.modal {
  position: fixed;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(37, 37, 37, 0.589);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 999;
}
.modal__close {
  position: absolute;
  right: 50px;
  top: 50px;
  color: white;
  cursor: pointer;
  transition: all 300ms;
}
.modal__close:hover {
  transform: scale(1.2);
}
@media only screen and (max-width: 576px) {
  .modal__close {
    display: none;
  }
}
@media only screen and (orientation: landscape) and (max-width: 1024px) {
  .modal__close {
    display: none;
  }
}
.modal__mob-close {
  display: none;
  padding: 0px;
  margin-right: -20px;
  margin-top: -20px;
  margin-bottom: 20px;
  justify-content: flex-end;
}
.modal__mob-close img {
  width: 36px;
}
@media only screen and (max-width: 576px) {
  .modal__mob-close {
    display: flex;
  }
}
@media only screen and (orientation: landscape) and (max-width: 1024px) {
  .modal__mob-close {
    display: flex;
  }
}
.modal__block {
  display: flex;
  flex-direction: column;
  min-width: 540px;
  min-height: 300px;
  background-color: white;
  border-radius: 20px;
  padding: 40px;
}
@media only screen and (max-width: 576px) {
  .modal__block {
    min-width: 100%;
    min-height: 100%;
    border-radius: 0px;
    overflow-y: scroll;
  }
}
@media only screen and (orientation: landscape) and (max-width: 1024px) {
  .modal__block {
    min-width: 100%;
    min-height: 100%;
    border-radius: 0px;
    overflow-y: scroll;
  }
}
.modal__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.modal__subtitle {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}

.modal.modal--active {
  display: flex;
}

.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  cursor: pointer;
}
@media only screen and (max-width: 576px) {
  .modal__overlay {
    display: none;
  }
}

.he-form-error {
  color: #ed1c24;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 30px;
}

#modal-success button {
  margin-top: 70px;
}

.modal__policy-content {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  max-height: 500px;
  margin-bottom: 50px;
  overflow-y: scroll;
}

.acception {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 12px;
  color: #929292;
  max-width: 450px;
}

.he-button {
  font-family: "Commissioner", serif;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  transition: all 300ms;
  padding: 15px 25px 15px 25px;
  min-width: 230px;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  justify-content: center;
  border-style: none;
  background-color: #db0011;
  color: white;
  border-radius: 50px;
}
.he-button:hover {
  cursor: pointer;
  background-color: #ed1c24;
  color: white;
  border-color: #ed1c24;
}
.he-button--outlined {
  background-color: transparent;
  color: #db0011;
  border-style: solid;
  border-color: #db0011;
  border-width: 2px;
}
.he-button--outlined-white {
  background-color: transparent;
  color: white;
  border-style: solid;
  border-color: white;
  border-width: 2px;
}
.he-button--scale:hover {
  transform: scale(1.05);
}

.radioItem {
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr;
}

.radioItem:not(:last-of-type) {
  margin-bottom: 12px;
}

.radioButton {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 22px;
  height: 22px;
  border: 2px solid #ea0000;
  border-radius: 9999px;
  background-color: #ffffff;
  cursor: pointer;
  margin-right: 15px;
}

.radioButton:checked {
  background-color: transparent;
}

.radioButton:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-radius: 9999px;
  background-color: #ea0000;
}

.checkboxItem {
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  max-width: 270px;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr;
}

.checkboxItem:not(:last-of-type) {
  margin-bottom: 12px;
}

.checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #ed1c24;
  border-radius: 2px;
  cursor: pointer;
  margin-right: 15px;
}

.checkbox:checked {
  border: none;
  background-color: #ed1c24;
}

.checkbox:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 4px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.he-form-component {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.he-form-component__label {
  color: #5a5a5a;
  font-size: 16px;
  margin-bottom: 10px;
  max-width: 500px;
}

input[type=text] {
  border-radius: 5px;
  border-style: none;
  height: 50px;
  padding: 10px;
  background-color: rgb(241, 241, 241);
  color: rgb(53, 53, 53);
}
input[type=text]::-moz-placeholder {
  font-weight: 200;
  color: rgb(27, 27, 27);
}
input[type=text]::placeholder {
  font-weight: 200;
  color: rgb(27, 27, 27);
}
input[type=text]:focus {
  outline: 0px;
}

.socials {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.socials__item {
  transition: all 300ms;
  width: 30px;
}
.socials__item:hover {
  transform: scale(1.3);
}

.he-card, .services .card, .services .card-result {
  font-family: "Commissioner", serif;
  color: #3b3b3b;
  min-height: 250px;
  text-align: left;
  background-color: white;
  padding: 30px 50px 50px 50px;
  border-radius: 20px;
  box-shadow: 0px 0px 14px -6px rgba(88, 88, 88, 0.53);
  -webkit-box-shadow: 0px 0px 14px -6px rgba(88, 88, 88, 0.53);
  -moz-box-shadow: 0px 0px 14px -6px rgba(88, 88, 88, 0.53);
  background-repeat: no-repeat;
  background-position-y: bottom;
  background-position-x: right;
}
@media only screen and (max-width: 992px) {
  .he-card, .services .card, .services .card-result {
    padding: 20px 20px 40px 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .he-card, .services .card, .services .card-result {
    padding: 20px 20px 40px 20px;
    background-size: 70%;
  }
}
@media only screen and (max-width: 992px) {
  .he-card, .services .card, .services .card-result {
    padding: 20px 20px 40px 20px;
    background-size: 35%;
  }
}
@media only screen and (max-width: 576px) {
  .he-card, .services .card, .services .card-result {
    padding: 20px 20px 40px 20px;
    background-size: 50%;
  }
}

.he-title {
  font-family: "IBM Plex Serif", serif;
  font-weight: 600;
  font-size: 48px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .he-title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 992px) {
  .he-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 576px) {
  .he-title {
    font-size: 24px;
  }
}

.rounded-element {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 170px;
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width: 576px) {
  .rounded-element {
    max-width: 150px;
  }
}
.rounded-element:hover .rounded-element__hl {
  transform: scale(1.2);
}
.rounded-element:hover .rounded-element__image {
  transform: scale(1.1);
}
.rounded-element:hover .rounded-element__image img {
  transform: scale(1.2);
}
.rounded-element:hover .rounded-element__text {
  color: #ed1c24;
}
.rounded-element__image {
  transition: all 200ms;
  display: flex;
  width: 150px;
  height: 150px;
  background-color: #ececec;
  border-radius: 99999px;
  overflow: hidden;
}
@media only screen and (max-width: 576px) {
  .rounded-element__image {
    width: 130px;
    height: 130px;
  }
}
.rounded-element__image img {
  transition: all 500ms;
}
.rounded-element__text {
  margin-top: 20px;
  font-family: "Commissioner", serif;
}
.rounded-element__social {
  width: 35px;
  position: absolute;
}
.rounded-element__social img {
  position: relative;
  top: 110px;
  left: 50px;
}
@media only screen and (max-width: 576px) {
  .rounded-element__social img {
    top: 95px;
    left: 40px;
  }
}
.rounded-element__hl {
  position: absolute;
  transition: all 500ms;
  display: flex;
  width: 150px;
  height: 150px;
  background-color: #dddddd;
  opacity: 0.5;
  border-radius: 99999px;
  z-index: -1;
}
@media only screen and (max-width: 576px) {
  .rounded-element__hl {
    width: 130px;
    height: 130px;
  }
}/*# sourceMappingURL=index.css.map */