@charset "UTF-8";@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);/**
 * Swiper 12.1.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 18, 2026
 */

: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-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.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 */
@-webkit-keyframes notyf-fadeinup{0%{opacity:0;transform:translateY(25%)}to{opacity:1;transform:translateY(0)}}@keyframes notyf-fadeinup{0%{opacity:0;transform:translateY(25%)}to{opacity:1;transform:translateY(0)}}@-webkit-keyframes notyf-fadeinleft{0%{opacity:0;transform:translateX(25%)}to{opacity:1;transform:translateX(0)}}@keyframes notyf-fadeinleft{0%{opacity:0;transform:translateX(25%)}to{opacity:1;transform:translateX(0)}}@-webkit-keyframes notyf-fadeoutright{0%{opacity:1;transform:translateX(0)}to{opacity:0;transform:translateX(25%)}}@keyframes notyf-fadeoutright{0%{opacity:1;transform:translateX(0)}to{opacity:0;transform:translateX(25%)}}@-webkit-keyframes notyf-fadeoutdown{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(25%)}}@keyframes notyf-fadeoutdown{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(25%)}}@-webkit-keyframes ripple{0%{transform:scale(0) translateY(-45%) translateX(13%)}to{transform:scale(1) translateY(-45%) translateX(13%)}}@keyframes ripple{0%{transform:scale(0) translateY(-45%) translateX(13%)}to{transform:scale(1) translateY(-45%) translateX(13%)}}.notyf{position:fixed;top:0;left:0;height:100%;width:100%;color:#fff;z-index:9999;display:flex;flex-direction:column;align-items:flex-end;justify-content:flex-end;pointer-events:none;box-sizing:border-box;padding:20px}.notyf__icon--error,.notyf__icon--success{height:21px;width:21px;background:#fff;border-radius:50%;display:block;margin:0 auto;position:relative}.notyf__icon--error:after,.notyf__icon--error:before{content:"";background:currentColor;display:block;position:absolute;width:3px;border-radius:3px;left:9px;height:12px;top:5px}.notyf__icon--error:after{transform:rotate(-45deg)}.notyf__icon--error:before{transform:rotate(45deg)}.notyf__icon--success:after,.notyf__icon--success:before{content:"";background:currentColor;display:block;position:absolute;width:3px;border-radius:3px}.notyf__icon--success:after{height:6px;transform:rotate(-45deg);top:9px;left:6px}.notyf__icon--success:before{height:11px;transform:rotate(45deg);top:5px;left:10px}.notyf__toast{display:block;overflow:hidden;pointer-events:auto;-webkit-animation:notyf-fadeinup .3s ease-in forwards;animation:notyf-fadeinup .3s ease-in forwards;box-shadow:0 3px 7px 0 rgba(0,0,0,.25);position:relative;padding:0 15px;border-radius:2px;max-width:300px;transform:translateY(25%);box-sizing:border-box;flex-shrink:0}.notyf__toast--disappear{transform:translateY(0);-webkit-animation:notyf-fadeoutdown .3s forwards;animation:notyf-fadeoutdown .3s forwards;-webkit-animation-delay:.25s;animation-delay:.25s}.notyf__toast--disappear .notyf__icon,.notyf__toast--disappear .notyf__message{-webkit-animation:notyf-fadeoutdown .3s forwards;animation:notyf-fadeoutdown .3s forwards;opacity:1;transform:translateY(0)}.notyf__toast--disappear .notyf__dismiss{-webkit-animation:notyf-fadeoutright .3s forwards;animation:notyf-fadeoutright .3s forwards;opacity:1;transform:translateX(0)}.notyf__toast--disappear .notyf__message{-webkit-animation-delay:.05s;animation-delay:.05s}.notyf__toast--upper{margin-bottom:20px}.notyf__toast--lower{margin-top:20px}.notyf__toast--dismissible .notyf__wrapper{padding-right:30px}.notyf__ripple{height:400px;width:400px;position:absolute;transform-origin:bottom right;right:0;top:0;border-radius:50%;transform:scale(0) translateY(-51%) translateX(13%);z-index:5;-webkit-animation:ripple .4s ease-out forwards;animation:ripple .4s ease-out forwards}.notyf__wrapper{display:flex;align-items:center;padding-top:17px;padding-bottom:17px;padding-right:15px;border-radius:3px;position:relative;z-index:10}.notyf__icon{width:22px;text-align:center;font-size:1.3em;opacity:0;-webkit-animation:notyf-fadeinup .3s forwards;animation:notyf-fadeinup .3s forwards;-webkit-animation-delay:.3s;animation-delay:.3s;margin-right:13px}.notyf__dismiss{position:absolute;top:0;right:0;height:100%;width:26px;margin-right:-15px;-webkit-animation:notyf-fadeinleft .3s forwards;animation:notyf-fadeinleft .3s forwards;-webkit-animation-delay:.35s;animation-delay:.35s;opacity:0}.notyf__dismiss-btn{background-color:rgba(0,0,0,.25);border:none;cursor:pointer;transition:opacity .2s ease,background-color .2s ease;outline:none;opacity:.35;height:100%;width:100%}.notyf__dismiss-btn:after,.notyf__dismiss-btn:before{content:"";background:#fff;height:12px;width:2px;border-radius:3px;position:absolute;left:calc(50% - 1px);top:calc(50% - 5px)}.notyf__dismiss-btn:after{transform:rotate(-45deg)}.notyf__dismiss-btn:before{transform:rotate(45deg)}.notyf__dismiss-btn:hover{opacity:.7;background-color:rgba(0,0,0,.15)}.notyf__dismiss-btn:active{opacity:.8}.notyf__message{vertical-align:middle;position:relative;opacity:0;-webkit-animation:notyf-fadeinup .3s forwards;animation:notyf-fadeinup .3s forwards;-webkit-animation-delay:.25s;animation-delay:.25s;line-height:1.5em}@media only screen and (max-width:480px){.notyf{padding:0}.notyf__ripple{height:600px;width:600px;-webkit-animation-duration:.5s;animation-duration:.5s}.notyf__toast{max-width:none;border-radius:0;box-shadow:0 -2px 7px 0 rgba(0,0,0,.13);width:100%}.notyf__dismiss{width:56px}}/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
    }
  }
}

@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}

@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

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

  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  ol, ul, menu {
    list-style: none;
  }

  img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
  }

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

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components;

@layer utilities {
  .flex {
    display: flex;
  }

  .hidden {
    display: none;
  }

  .filter {
    filter: var(--tw-blur,  ) var(--tw-brightness,  ) var(--tw-contrast,  ) var(--tw-grayscale,  ) var(--tw-hue-rotate,  ) var(--tw-invert,  ) var(--tw-saturate,  ) var(--tw-sepia,  ) var(--tw-drop-shadow,  );
  }
}

@property --tw-blur {
  syntax: "*";
  inherits: false
}

@property --tw-brightness {
  syntax: "*";
  inherits: false
}

@property --tw-contrast {
  syntax: "*";
  inherits: false
}

@property --tw-grayscale {
  syntax: "*";
  inherits: false
}

@property --tw-hue-rotate {
  syntax: "*";
  inherits: false
}

@property --tw-invert {
  syntax: "*";
  inherits: false
}

@property --tw-opacity {
  syntax: "*";
  inherits: false
}

@property --tw-saturate {
  syntax: "*";
  inherits: false
}

@property --tw-sepia {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false
}


/* reset.scss */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Сброс стилей списков */
ul,
ol {
  list-style: none;
}
/* Сброс ссылок */
a {
  text-decoration: none;
  color: inherit;
}
/* Сброс кнопок и инпутов */
button,
input,
textarea,
select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}
/* Сброс таблиц */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* Сброс изображений */
img {
  display: block;
  max-width: 100%;
  height: auto;
}
/* Сброс заголовков и параграфов */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: normal;
}
body {
  font-family: "Inter", sans-serif;
}
:root {
  --black: #0f172a;
  --black40: rgba(15, 23, 42, 0.4);
  --white: #fff;
  --gray: #ecf0f3;
  --gold: #bd9f7c;
  --fullBlack: #000;
}
:root {
  --font-family: 'SansSerif', sans-serif;
}
:root {
  --header-height: 80px;
}
@media (max-width: 768px) {
  :root {
    --header-height: 79px;
  }
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  color: var(--black);
  background-color: var(--white);
  font-size: 1rem;
  scroll-behavior: smooth;
}
body.menu-open {
  overflow: hidden;
}
body.no-scroll {
  overflow: hidden;
}
.notyf__error {
  border-radius: 10px;
}
.is-invalid {
  border-bottom: 1px solid #be7070 !important;
}
.is-invalid + .form__label {
  color: #be7070 !important;
}
.form__checkbox-hidden {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
/* Chrome, Edge, Safari */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.form__checkbox-hidden.is-invalid + .form__checkbox-label {
  color: #be7070 !important;
}
.form__checkbox-hidden.is-invalid + .form__checkbox-label .form__checkbox::after {
  border-color: #be7070 !important;
}
.honeypot {
  display: none;
}
.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.wrapper section:nth-child(2) {
  margin-top: var(--header-height);
}
section {
  scroll-margin-top: calc(var(--header-height) + 60px);
}
[class$=__container] {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
@media (max-width: 1024px) {
  [class$=__container] {
    padding: 0 20px;
  }
}
@media (max-width: 744px) {
  [class$=__container] {
    padding: 0 15px;
  }
}
.btn-primary {
  background: linear-gradient(90deg, #f97316 0%, #fbbf24 100%);
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease-in-out;
  height: fit-content;
  cursor: pointer;
}
.btn-primary:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .btn-primary {
    font-size: 16px;
    padding: 10px 20px;
  }
}
.btn-secondary {
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease-in-out;
  height: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.btn-secondary:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .btn-secondary {
    font-size: 16px;
    padding: 10px 20px;
  }
}
.header {
  position: fixed;
  width: 100%;
  z-index: 7;
  background: rgb(15, 15, 15);
  color: #fff;
  padding-block: 12px;
}
.header__wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.header__logo {
  max-width: 219px;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1281px) {
  .header__menu {
    gap: 16px;
  }
}
.header__menu-open {
  display: none;
}
.header__item {
  padding-block: 2px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.header__item:hover {
  border-bottom-color: rgba(255, 255, 255, 0.7);
}
.header__info {
  display: flex;
  gap: 24px;
  align-items: center;
}
.header__phone {
  flex-shrink: 0;
  padding-block: 2px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.header__phone:hover {
  border-bottom-color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 1281px) {
  .header__phone {
    display: none;
  }
}
.header__social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.header__link {
  width: 36px;
  aspect-ratio: 1/1;
}
.hero {
  background: rgb(15, 15, 15);
  color: #fff;
  padding-top: 56px;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -301px;
  left: -284px;
  opacity: 1;
  border-radius: 9999px;
  background: rgba(249, 115, 22, 0.3);
  filter: blur(120px);
}
.hero::before {
  content: "";
  position: absolute;
  opacity: 1;
  border-radius: 9999px;
  background: rgba(251, 191, 36, 0.2);
  filter: blur(120px);
  width: 600px;
  height: 600px;
  top: 434px;
  right: -300px;
  z-index: 2;
}
.hero__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.hero__wrapper {
  display: flex;
  flex-direction: column;
  max-width: 580px;
  align-items: flex-start;
  gap: 32px;
}
.hero__subtitle {
  display: block;
  font-weight: 400;
  font-style: Regular;
  font-size: 13.3px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}
.hero__subtitle::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: rgb(251, 146, 60);
  margin-right: 8px;
  flex-shrink: 0;
  border-radius: 50%;
}
.hero__info {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  flex-direction: column;
}
.hero__title {
  font-weight: 700;
  font-style: Bold;
  font-size: 67.8px;
  leading-trim: NONE;
  line-height: 72px;
  letter-spacing: -1.8px;
  vertical-align: middle;
}
.hero__title span {
  background: linear-gradient(to right, #fb923c, #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1281px) {
  .hero__title {
    font-size: 48px;
    line-height: 56px;
  }
}
.hero__text {
  color: rgb(212, 212, 212);
  font-size: 17px;
}
.hero__btns {
  display: flex;
  gap: 32px;
  align-items: center;
}
.hero__foo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 450px;
  margin-top: 32px;
}
.hero__img {
  position: relative;
  max-width: 590px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(24px);
  border-radius: 24px;
  z-index: 3;
}
.hero__img img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .item {
  display: flex;
  flex-direction: column;
}
.hero .item__number {
  font-weight: 700;
  font-style: Bold;
  font-size: 29.3px;
  line-height: 36px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.hero .item__title {
  color: rgb(163, 163, 163);
  font-weight: 400;
  font-style: Regular;
  font-size: 13.3px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.hero .pin {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 18px;
  top: -30px;
  left: -41px;
}
.hero .pin__title {
  font-weight: 400;
  font-style: Regular;
  font-size: 18.4px;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.hero .pin__subtitle {
  font-weight: 400;
  font-style: Regular;
  font-size: 13.3px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: rgb(212, 212, 212);
}
.hero .pin:nth-child(2) {
  top: 75%;
  left: auto;
  right: -151px;
}
@media (max-width: 1565px) {
  .hero .pin:nth-child(2) {
    top: 90%;
    right: -10px;
  }
}
.bullets {
  padding-block: 80px;
  background-color: rgb(15, 15, 15);
  color: #fff;
}
.bullets__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.bullets .item {
  background: rgba(190, 190, 190, 0.2);
  padding: 20px;
  border-radius: 20px;
  position: relative;
  min-height: 180px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 1281px) {
  .bullets .item {
    min-height: 150px;
  }
}
.bullets .item__title {
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: 0%;
}
@media (max-width: 1281px) {
  .bullets .item__title {
    font-size: 18px;
  }
}
.bullets .item__text {
  display: none;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}
.bullets .item__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
}
.catalog {
  padding-block: 80px;
  background-color: #f5f5f5;
  position: relative;
}
.catalog::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 741px;
  top: -301px;
  left: -284px;
  opacity: 1;
  border-radius: 9999px;
  background: rgba(249, 115, 22, 0.3);
  filter: blur(120px);
}
.catalog::before {
  content: "";
  position: absolute;
  opacity: 1;
  border-radius: 9999px;
  background: rgba(251, 191, 36, 0.2);
  filter: blur(120px);
  width: 790px;
  height: 790px;
  top: 434px;
  right: -300px;
}
.catalog__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 32px;
}
.catalog__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 900px;
}
.catalog__title {
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: rgb(250, 150, 28);
}
.catalog__text {
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 8px;
  z-index: 3;
}
.thanks {
  background: rgb(15, 15, 15);
  color: #fff;
  padding-block: 56px;
  position: relative;
}
.thanks::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -301px;
  left: -284px;
  opacity: 1;
  border-radius: 9999px;
  background: rgba(249, 115, 22, 0.3);
  filter: blur(120px);
}
.thanks::before {
  content: "";
  position: absolute;
  opacity: 1;
  border-radius: 9999px;
  background: rgba(251, 191, 36, 0.2);
  filter: blur(120px);
  width: 600px;
  height: 600px;
  top: 434px;
  right: -300px;
  z-index: 2;
}
.thanks__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.thanks__wrapper {
  display: flex;
  flex-direction: column;
  max-width: 580px;
  align-items: flex-start;
  gap: 32px;
}
.thanks__subtitle {
  display: block;
  font-weight: 400;
  font-size: 13.3px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}
.thanks__subtitle::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: rgb(251, 146, 60);
  margin-right: 8px;
  flex-shrink: 0;
  border-radius: 50%;
}
.thanks__info {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  flex-direction: column;
}
.thanks__title {
  font-weight: 700;
  font-size: 67.8px;
  line-height: 72px;
  letter-spacing: -1.8px;
  vertical-align: middle;
}
.thanks__title span {
  background: linear-gradient(to right, #fb923c, #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1281px) {
  .thanks__title {
    font-size: 48px;
    line-height: 56px;
  }
}
.thanks__text {
  color: rgb(212, 212, 212);
  font-size: 17px;
}
.thanks__btns {
  display: flex;
  gap: 32px;
  align-items: center;
}
.thanks__foo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 450px;
  margin-top: 32px;
}
.thanks__img {
  position: relative;
  max-width: 590px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(24px);
  border-radius: 24px;
  z-index: 3;
}
.thanks__img img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thanks .item {
  display: flex;
  flex-direction: column;
}
.thanks .item__number {
  font-weight: 700;
  font-size: 29.3px;
  line-height: 36px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.thanks .item__title {
  color: rgb(163, 163, 163);
  font-weight: 400;
  font-size: 13.3px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.thanks .pin {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 18px;
  top: -30px;
  left: -41px;
}
.thanks .pin__title {
  font-weight: 400;
  font-size: 18.4px;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.thanks .pin__subtitle {
  font-weight: 400;
  font-size: 13.3px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: rgb(212, 212, 212);
}
.thanks .pin:nth-child(2) {
  top: 75%;
  left: auto;
  right: -151px;
}
@media (max-width: 1565px) {
  .thanks .pin:nth-child(2) {
    top: 90%;
    right: -10px;
  }
}
.filter {
  padding-block: 80px;
  background-color: #f5f5f5;
  position: relative;
}
.filter::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 741px;
  top: -301px;
  left: -284px;
  opacity: 1;
  border-radius: 9999px;
  background: rgba(249, 115, 22, 0.3);
  filter: blur(120px);
}
.filter::before {
  content: "";
  position: absolute;
  opacity: 1;
  border-radius: 9999px;
  background: rgba(251, 191, 36, 0.2);
  filter: blur(120px);
  width: 790px;
  height: 790px;
  top: 434px;
  right: -300px;
}
.filter__wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
  z-index: 3;
  position: relative;
}
.filter__title {
  font-weight: 700;
  font-size: 64px;
  line-height: 68px;
}
.filter__title span {
  display: block;
  background: linear-gradient(to right, #fb923c, #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.filter__block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.filter__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  row-gap: 12px;
}
.filter__tab {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: rgb(98, 98, 98);
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter__tab:hover {
  color: rgba(98, 98, 98, 0.7);
}
.filter__tab.active {
  font-weight: 800;
  color: rgb(98, 98, 98);
  cursor: default;
}
.filter__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 8px;
  z-index: 3;
}
.catalog .item,
.filter .item {
  border-radius: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  height: 100%;
  background-color: #fff;
  justify-content: space-between;
}
.catalog .item__wrapper,
.filter .item__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.catalog .item__tabs,
.filter .item__tabs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
.catalog .item__tab,
.filter .item__tab {
  position: relative;
  padding-left: 12px;
  font-size: 14px;
}
.catalog .item__tab::before,
.filter .item__tab::before {
  content: "";
  width: 4px;
  height: 4px;
  background: rgb(250, 150, 28);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  position: absolute;
  border-radius: 50%;
}
.catalog .item__img,
.filter .item__img {
  position: relative;
  width: 100%;
  aspect-ratio: 375/407;
}
.catalog .item__img img,
.filter .item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.catalog .item__info,
.filter .item__info {
  padding: 20px 20px 0 20px;
}
.catalog .item__title,
.filter .item__title {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 24px;
}
.catalog .item__text,
.filter .item__text {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
}
.cta {
  color: #fff;
  position: relative;
  padding-block: 70px;
}
.cta__container {
  overflow: visible;
}
.cta__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: center;
  overflow: visible;
}
.cta__left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  grid-column: span 8;
}
.cta__info {
  display: flex;
  flex-direction: column;
  grid-column: span 6;
}
.cta__title {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 40px;
  text-transform: uppercase;
}
.cta__text {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
}
.cta__foo {
  display: flex;
  column-gap: 40px;
  row-gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cta__btns {
  display: flex;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 12px;
  align-items: center;
}
.cta__socials {
  display: flex;
  gap: 20px;
  align-items: center;
}
.cta__link img {
  width: 56px;
  height: 56px;
}
.cta__right {
  grid-column: span 4;
  overflow: visible;
  width: 100%;
  height: 100%;
}
.cta__right img {
  position: absolute;
  top: 55%;
  right: 0;
  transform: translateY(-50%);
  width: 40%;
  object-fit: contain;
}
.cta__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
}
.delivery {
  padding-block: 80px;
  background-color: #f5f5f5;
}
.delivery__wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.delivery__title {
  color: rgb(250, 150, 28);
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  text-align: center;
}
.delivery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.delivery__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}
.delivery .item {
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 24px;
  gap: 20px;
}
.delivery .item__number {
  font-weight: 700;
  font-style: Bold;
  font-size: 92px;
  color: rgb(250, 150, 28);
}
.delivery .item__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.delivery .item__title {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 24px;
  line-height: 100%;
}
.delivery .item__text {
  font-weight: 400;
}
.delivery .item__img {
  width: 100%;
  height: 100%;
  min-height: 564px;
  position: relative;
}
.delivery .item__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border-radius: 20px;
}
.partners {
  padding-block: 80px;
}
.partners__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.partners__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  max-width: 900px;
}
.partners__title {
  font-weight: 700;
  font-size: 48px;
  color: rgb(250, 150, 28);
}
.partners__text {
  font-weight: 400;
  font-size: 20px;
}
.partners__slider {
  width: 100%;
}
.partners__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 252px;
  height: auto;
}
.certificate {
  padding-block: 80px;
  background-color: #f5f5f5;
}
.certificate__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
}
.certificate__info {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  align-items: center;
}
.certificate__title {
  font-weight: 700;
  font-size: 48px;
  color: rgb(250, 150, 28);
}
.certificate__text {
  font-weight: 400;
  font-size: 20px;
}
.certificate__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}
.certificate .item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.certificate .item img {
  cursor: pointer;
}
.about {
  padding-block: 80px;
  background-color: #f5f5f5;
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
}
.about__title {
  font-weight: 700;
  font-size: 48px;
  color: rgb(250, 150, 28);
}
.about__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: center;
}
.about__info {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__text {
  font-weight: 400;
}
.about__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 560px;
}
.about .item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 12px;
  border-radius: 20px;
}
.about .item__title {
  font-weight: 600;
  font-size: 32px;
  color: rgb(250, 150, 28);
}
.about .item__text {
  font-weight: 400;
  font-size: 14px;
}
.about__img {
  grid-column: span 7;
  width: 100%;
  height: 100%;
  min-height: 400px;
  position: relative;
}
.about__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border-radius: 20px;
}
.footer {
  position: relative;
  padding-block: 80px;
}
.footer__wrapper {
  padding: 40px;
  box-shadow: 8px 4px 12px 0px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  background-color: #fff;
  max-width: 718px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__logo {
  max-width: 220px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__contact .br {
  padding-bottom: 18px;
}
.footer__foo {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  width: 100%;
}
.footer__socials {
  display: flex;
  gap: 20px;
}
.footer__icon {
  width: 48px;
  aspect-ratio: 1/1;
}
.footer__map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.modal__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  display: flex;
  max-width: 1000px;
  width: 90%;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  padding: 16px;
}
.modal.active .modal__wrapper {
  transform: translate(-50%, -50%) scale(1);
}
.modal__wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  inset: 0;
}
.modal .form__checkbox-label {
  display: flex;
  gap: 12px;
  align-items: center;
}
.modal .form__checkbox {
  width: 20px;
}
.modal__img {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal__left {
  flex: 1;
  background: url("src/img/bg.jpg") center/cover no-repeat;
  color: #fff;
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.modal__left h2 {
  font-weight: 800;
  font-size: 30px;
  line-height: 1.3;
  color: rgb(250, 150, 28);
}
.modal__left p {
  font-size: 14px;
  opacity: 0.9;
}
.modal__text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal__close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: transparent;
  border: none;
  color: orange;
  font-size: 24px;
  cursor: pointer;
  z-index: 3;
}
.modal {
  /* Правая часть */
}
.modal__right {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  z-index: 3;
  position: relative;
}
.modal__right h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: rgb(250, 150, 28);
  margin-bottom: 20px;
}
.modal__sub {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 16px;
}
.modal__form input {
  width: 100%;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #f2f2f2;
}
.modal__checkbox {
  display: flex;
  gap: 8px;
  font-size: 12px;
  margin: 10px 0;
}
.modal__checkbox input {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.modal__btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #ff7a00, #ffa500);
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  margin-top: 20px;
}
.gallery-modal {
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.gallery-modal--active {
  opacity: 1;
  visibility: visible;
}
.gallery-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}
.gallery-modal__content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  margin: 5% auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  height: 100%;
  margin: auto;
}
.gallery-modal--active .gallery-modal__content {
  transform: scale(1);
}
.gallery-modal__image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
}
.gallery-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 30px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .header__menu {
    transform: translateX(150%);
    position: absolute;
    right: 16px;
    top: calc(100% + 16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    border-radius: 12px;
    background: rgb(15, 15, 15);
    font-weight: 700;
    transition: 0.3s ease;
  }
  .header__menu-open {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    order: 3;
  }
  .menu-open .header__menu {
    transform: translateX(0);
  }
  .header__menu-open span, .header__menu-open span::before, .header__menu-open span::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background-color: rgb(250, 150, 28);
    position: relative;
    transition: 0.3s ease;
  }
  .header__menu-open span::before {
    position: absolute;
    top: -6px;
    left: 0;
  }
  .header__menu-open span::after {
    position: absolute;
    top: 6px;
    left: 0;
  }
  .header__menu-open.active span {
    background-color: transparent;
  }
  .header__menu-open.active span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .header__menu-open.active span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .hero__btns {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .thanks__btns {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .bullets__grid {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .filter__wrapper {
    gap: 64px;
  }
  .catalog,
  .filter {
    padding-block: 48px;
  }
  .catalog__title,
  .filter__title {
    font-size: 36px;
    line-height: 44px;
  }
  .catalog__text,
  .filter__text {
    font-size: 16px;
    line-height: 24px;
    max-width: 500px;
  }
  .catalog__grid,
  .filter__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog .item__info,
  .filter .item__info {
    gap: 16px;
    display: flex;
    flex-direction: column;
  }
  .catalog .item__title,
  .filter .item__title {
    font-size: 20px;
    line-height: 28px;
  }
  .catalog .item__tabs,
  .filter .item__tabs {
    padding-bottom: 10px;
  }
  .cta__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .cta__left {
    grid-column: auto;
  }
  .cta__title {
    font-size: 36px;
    line-height: 44px;
  }
  .cta__info {
    gap: 16px;
    display: flex;
    flex-direction: column;
  }
  .cta__foo {
    justify-content: space-between;
  }
  .cta__right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: auto;
  }
  .cta__right img {
    position: static;
    transform: none;
  }
  .delivery__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .partners__title {
    font-size: 36px;
    line-height: 44px;
  }
  .partners__text {
    font-size: 16px;
    line-height: 24px;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 32px;
    text-align: center;
  }
  .partners__slide {
    width: 100px;
  }
  .certificate {
    padding-block: 48px;
  }
  .certificate__title {
    font-size: 36px;
    line-height: 44px;
  }
  .certificate__text {
    font-size: 16px;
    line-height: 24px;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 32px;
    text-align: center;
  }
  .about {
    padding-block: 48px;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    align-items: center;
  }
  .about__info {
    grid-column: auto;
  }
  .about__img {
    grid-column: auto;
  }
  .about__title {
    font-size: 36px;
    line-height: 44px;
  }
  .about__text {
    font-size: 16px;
    line-height: 24px;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 32px;
    text-align: center;
  }
  .modal__left {
    padding-inline: 12px;
  }
  .modal__text h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .modal__right {
    padding-inline: 16px;
  }
}
@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero .pin {
    left: 10px;
  }
  .thanks__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .thanks .pin {
    left: 10px;
  }
  .filter__wrapper {
    gap: 48px;
  }
  .catalog .item__title,
  .filter .item__title {
    font-size: 16px;
    line-height: 24px;
  }
  .cta {
    padding-block: 48px;
  }
  .cta__title {
    font-size: 32px;
    line-height: 44px;
    color: rgb(250, 150, 28);
    text-transform: none;
    max-width: 450px;
    font-weight: 800;
  }
  .cta__foo {
    align-items: center;
    justify-content: center;
    row-gap: 32px;
  }
  .cta__grid {
    gap: 56px;
  }
  .cta__right img {
    width: 70%;
  }
  .delivery {
    padding-block: 48px;
  }
  .delivery__title {
    font-size: 32px;
    line-height: 44px;
  }
  .delivery .item {
    gap: 36px;
  }
  .delivery .item__info {
    text-align: left;
  }
  .delivery .item__img {
    min-height: 364px;
  }
  .partners {
    padding-block: 48px;
  }
  .partners__title {
    font-size: 32px;
    line-height: 44px;
  }
  .footer__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .modal {
    overflow-y: auto;
  }
  .modal__wrapper {
    overflow: visible;
    flex-direction: column;
    height: 100%;
    padding-top: 0;
  }
  .modal__left {
    padding: 0;
    max-height: 40px;
  }
  .modal__close {
    top: 0;
    left: auto;
    right: 20px;
  }
  .modal__text {
    display: none;
  }
  .modal__right {
    width: 100%;
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding-top: 32px;
  }
  .hero__info {
    gap: 24px;
  }
  .hero__grid {
    gap: 72px;
  }
  .hero__title {
    font-size: 34px;
    line-height: 44px;
  }
  .hero__text {
    font-size: 16px;
    line-height: 24px;
  }
  .hero__foo {
    margin-top: 24px;
    gap: 24px;
  }
  .thanks {
    padding-top: 32px;
  }
  .thanks__info {
    gap: 24px;
  }
  .thanks__grid {
    gap: 72px;
  }
  .thanks__title {
    font-size: 34px;
    line-height: 44px;
  }
  .thanks__text {
    font-size: 16px;
    line-height: 24px;
  }
  .thanks__foo {
    margin-top: 24px;
    gap: 24px;
  }
  .bullets {
    padding-bottom: 48px;
  }
  .bullets .item {
    min-height: 130px;
  }
  .bullets .item__title {
    font-size: 18px;
  }
  .filter__wrapper {
    gap: 36px;
  }
  .catalog__grid,
  .filter__grid {
    grid-template-columns: 1fr;
  }
  .cta__title {
    font-size: 24px;
    line-height: 32px;
  }
  .cta__btns {
    align-items: center;
    justify-content: center;
  }
  .delivery__title {
    font-size: 24px;
    line-height: 32px;
  }
  .delivery .item {
    align-items: flex-start;
    gap: 16px;
  }
  .delivery .item__number {
    display: none;
  }
  .delivery .item__img {
    min-height: auto;
    aspect-ratio: 1/1;
  }
  .partners__title {
    font-size: 24px;
    line-height: 32px;
  }
  .partners__text {
    font-size: 16px;
    line-height: 24px;
  }
  .partners__slide {
    width: 70px;
  }
  .certificate__title {
    font-size: 24px;
    line-height: 32px;
  }
  .certificate__text {
    font-size: 16px;
    line-height: 24px;
  }
  .certificate__info {
    gap: 16px;
    display: flex;
    flex-direction: column;
  }
  .certificate__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .certificate .item__title {
    font-size: 13px;
  }
  .about__title {
    font-size: 24px;
    line-height: 32px;
  }
  .about__text {
    font-size: 16px;
    line-height: 24px;
  }
  .about__items {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .about__img {
    aspect-ratio: 1/1;
    min-height: auto;
  }
  .footer {
    padding-block: 36px;
  }
  .footer__wrapper {
    padding: 12px;
  }
  .footer__contact {
    font-size: 13px;
  }
  .footer__icon {
    width: 30px;
    height: 30px;
  }
  .footer__socials {
    flex-wrap: wrap;
  }
}