@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: local("Inter-Regular"), url("../fonts/Inter-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: local("Inter-Medium"), url("../fonts/Inter-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: local("Inter-SemiBold"), url("../fonts/Inter-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: local("Inter-Bold"), url("../fonts/Inter-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  src: local("Inter-ExtraBold"), url("../fonts/Inter-ExtraBold.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", sans-serif;
  font-size: calc(14px + 2 * (100vw - 360px) / 1560);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.1px;
  color: var(--color-content-neutral-secondary);
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  overflow-x: hidden;
}

body:has(.form-modal--active) {
  overflow: hidden;
}

body *::-webkit-scrollbar {
  width: 12px;
}

body *::-webkit-scrollbar-track {
  background-color: var(--color-bg-grey);
}

body *::-webkit-scrollbar-thumb {
  background: var(--color-dark-secondary);
  border-radius: 5px;
}

p {
  margin: 0;
}

p+p {
  margin-top: 16px;
}

.body--lock {
  overflow: hidden;
}

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

input,
textarea {
  height: 75px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-base-white);
  font-weight: 400;
  padding: 10px 36px 10px 16px;
  width: 100%;
  font-size: 16px;
  border: none;
  resize: none;
  border-radius: 40px;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #fff;
}

input::placeholder,
textarea::placeholder {
  color: #fff;
}

textarea {
  height: 150px;
}

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

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: flex-start;
}

.footer {
  margin-top: auto;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  color: var(--color-content-neutral-secondary);
  font-family: "Inter", sans-serif;
  text-wrap: balance;
  margin: 0;
  max-width: 767px;
}

.paragraph+.paragraph {
  margin-top: 16px;
}

h1,
.h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 28px;
  max-width: 100%;
  letter-spacing: -0.5px;
}

h2,
.h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 130%;
  color: var(--color-base-primary-400);
  margin-bottom: 16px;
}

h3,
.h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: 0.25px;
}

h4,
.h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 125%;
}

h5,
.h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
}

.descr {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-content-neutral-secondary);
  margin: 0 0 24px;
  max-width: 544px;
}

.descr_center {
  text-align: center;
  margin: 0 auto;
}

.text_white {
  color: var(--color-base-white);
}

.text_blue {
  color: var(--color-content-title);
}

a {
  display: block;
  color: var(--color-base-neutral-700);
  text-decoration: none;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: calc(var(--size-container) + 100px);
  margin: 0 auto;
  padding: 0 50px;
}

.button {
  font-size: 16px;
  width: max-content;
  min-width: 116px;
  height: 56px;
  margin: 0;
  padding: 0 32px;
  display: grid;
  align-items: center;
  justify-content: center;
  color: var(--color-content-white);
  gap: 8px;
  grid-auto-flow: column;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
  border-radius: 999px;
  background: #4194CF;
  background-image: radial-gradient(at 1.7% 93.7%, #1076be 0px, transparent 50%), radial-gradient(at 64.7% 80.7%, #2784c6 0px, transparent 50%), radial-gradient(at 9.1% 152.4%, #1076be 0px, transparent 50%), radial-gradient(at 9.1% 68.4%, #7CB7E2 0px, transparent 100%);
  background-size: 400px 200px;
  background-position: 60% 60%;
}

.button_sm {
  padding: 0 24px;
  height: 44px;
}

.button_white {
  background: var(--color-base-white);
  color: var(--color-content-primary);
}

section {
  padding: 56px 0;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.swiper {
  width: 100%;
  padding: 32px 0;
  position: relative;
  z-index: 4;
  background: #fff;
}

.swiper-overflow {
  overflow: unset;
  position: relative;
}

.swiper-overflow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 32px;
  box-shadow: 6px 15px 6px 5px rgba(10, 94, 153, 0.08);
  width: 100%;
  border-radius: 24px;
  height: calc(100% - 64px);
}

.swiper-slide {
  border-radius: 24px;
  box-shadow: -2px 4px 17px 0px rgba(10, 94, 153, 0.08), 10px 16px 17.869px 0px rgba(10, 94, 153, 0.04), 2px 4px 5.32px 0px rgba(10, 94, 153, 0.02);
}

.swiper-button-prev,
.swiper-button-next {
  border-radius: 50%;
  width: 56px;
  height: 56px;
  left: -28px;
  background: var(--color-base-white);
  box-shadow: 7px 7px 16px 0px rgba(10, 94, 153, 0.02), 2px 2px 10px 0px rgba(10, 94, 153, 0.04), 1px 1px 5.32px 0px rgba(10, 94, 153, 0.08);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: unset;
}

.swiper-button-next {
  left: unset;
  right: -28px;
}

.swiper-showroom {
  max-width: 544px;
  overflow: unset;
}

.swiper-pagination {
  margin-top: 16px;
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--color-base-primary-50);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--color-base-primary-400);
}

.menu {
  display: none;
}

main {
  margin-top: 146px;
}

.header {
  padding: 16px 0 8px;
  position: fixed;
  top: 0;
  z-index: 12;
  width: 100%;
  background-color: var(--color-base-white);
}

.header__wrapper {
  display: grid;
  gap: 16px;
}

.header-top {
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: center;
  gap: 16px;
}

.header-bottom {
  display: grid;
  grid-template-columns: 1fr max-content max-content;
  align-items: center;
  gap: 16px;
}

.header__address {
  grid-column: 2/4;
  color: var(--color-content-neutral-primary);
  font-weight: 600;
}

.header__address span {
  font-weight: 400;
  color: var(--color-content-neutral-secondary);
}

.header__phone {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-content-neutral-primary);
}

.header__list {
  display: grid;
  grid-template-columns: repeat(6, max-content);
}

.header__list li:first-child a {
  padding-left: 0;
}

.header__list a {
  padding: 15px 16px;
}

.header .button {
  justify-self: end;
}

.banner {
  padding: 0;
}

.banner-swiper {
  border-radius: 24px;
}

.banner .swiper-overflow::after {
  content: unset;
}

.banner__slide {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 16px;
  height: auto;
  box-shadow: none;
  border-radius: 24px;
}

.banner__slide_white .banner__info {
  backdrop-filter: blur(66.0999984741px);
  background: rgba(255, 255, 255, 0.3);
}

.banner span {
  display: block;
  margin-top: 8px;
}

.banner__info {
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
  background: var(--color-bg-primary-op-md);
  padding: 56px;
  border-radius: 24px;
  display: grid;
  grid-template-rows: max-content 1fr max-content;
}

.banner__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.banner__item {
  max-width: 170px;
}

.banner__item svg {
  margin-bottom: 16px;
}

.banner__item h5 {
  margin-bottom: 8px;
}

.banner__img {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
  object-position: right;
  border-radius: 24px;
}

.advantages__slide {
  border-radius: 24px;
  background-color: var(--color-base-primary-400);
  padding: 40px 24px;
  height: auto;
}

.advantages img {
  margin-bottom: 24px;
}

.advantages__title {
  margin-bottom: 16px;
}

.promo__slide {
  border-radius: 24px;
}

.card {
  background: var(--color-content-white);
  padding: 8px;
  height: auto;
  display: grid;
  grid-template-rows: max-content 1fr;
  box-shadow: -2px 4px 17px 0px rgba(10, 94, 153, 0.08), 10px 16px 17.869px 0px rgba(10, 94, 153, 0.04), 2px 4px 5.32px 0px rgba(10, 94, 153, 0.02);
}

.card__info {
  padding: 24px 16px;
  display: grid;
  grid-template-rows: max-content 1fr max-content max-content;
  gap: 16px;
}

.card__title {
  color: var(--color-content-neutral-primary);
  font-weight: 600;
  line-height: 1.2;
}

.card__description {
  font-size: 14px;
}

.card__img {
  border-radius: 24px;
  margin: 0 auto;
}

.card__button {
  width: 100%;
  height: 44px;
}

.card__price {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: space-between;
  align-items: center;
}

.card__price_old {
  color: var(--color-content-neutral-tertiary);
  position: relative;
}

.card__price_old::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: var(--color-content-neutral-tertiary);
}

.card__price_actual {
  line-height: 125%;
  font-weight: 700;
}

.card__mark {
  position: absolute;
  right: 0;
  top: -8px;
  width: 80px;
  height: 64px;
  background-color: var(--color-base-primary-300);
  color: var(--color-base-white);
  font-size: 24px;
  display: grid;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
}

.sizes .grid {
  align-items: center;
}

.sizes__imgbox {
  display: grid;
  align-items: center;
  justify-content: center;
}

.sizes img {
  position: relative;
  max-width: 512px;
}

.sizes__right {
  margin: 0 auto;
  width: max-content;
  position: relative;
}

.sizes__descr {
  color: var(--color-base-neutral-500);
  font-weight: 600;
  text-align: center;
}

.sizes__descr_transform {
  position: absolute;
  left: -110px;
  top: 50%;
  transform: translate(0, -50%) rotate(-90deg);
}

.types__title {
  margin-bottom: 8px;
}

.types__slide {
  padding: 40px 24px;
}

.colors__list {
  display: grid;
  gap: 32px 16px;
  padding: 56px;
  border-radius: 24px;
  grid-template-columns: repeat(5, 1fr);
  box-shadow: 20px 40px 80px 0px rgba(10, 94, 153, 0.08), 10px 16px 17.869px 0px rgba(10, 94, 153, 0.04), 2px 4px 5.32px 0px rgba(10, 94, 153, 0.02);
}

.colors__item {
  display: grid;
  grid-template-rows: 44px 1fr;
  align-items: start;
  justify-content: center;
  gap: 4px;
  text-align: center;
}

.colors__item div {
  font-size: 12px;
}

.colors .grid {
  align-items: center;
}

.colors img {
  margin: 0 auto;
}

.vorota__info {
  max-width: 544px;
  margin: auto 0;
  height: max-content;
}

.list {
  max-width: 544px;
}

.list li {
  padding-left: 48px;
  position: relative;
}

.list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  background-image: url("../images/li.svg");
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
}

.list li h2 {
  margin-bottom: 40px;
}

.list li h4 {
  margin-bottom: 8px;
}

.list li+li {
  margin-top: 40px;
}

.guarantee__item {
  border-radius: 24px;
  background-color: var(--color-base-primary-500);
  padding: 24px;
  color: var(--color-base-white);
}

.guarantee__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.guarantee__title {
  font-weight: 700;
  margin-bottom: 16px;
}

.guarantee__descr {
  font-size: 14px;
}

.guarantee .grid {
  align-items: center;
}

.portfolio__slide {
  border-radius: 24px;
  padding: 8px;
  height: auto;
  display: grid;
  grid-template-rows: max-content 1fr;
}

.portfolio__info {
  padding: 24px 16px 16px;
  display: grid;
  grid-template-rows: max-content max-content 1fr max-content;
}

.portfolio h4 {
  margin-bottom: 8px;
  color: var(--color-content-neutral-primary);
}

.portfolio__address {
  color: var(--color-content-neutral-secondary);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.portfolio__descr {
  margin-bottom: 24px;
  font-size: 14px;
}

.portfolio .button {
  width: 100%;
}

.portfolio img {
  border-radius: 24px;
}

.bestseller__slide {
  padding: 24px 8px 0;
}

.bestseller .card__info {
  grid-template-rows: max-content 1fr max-content;
  padding: 16px 16px 24px;
}

.automatic__title {
  margin-bottom: 40px;
}

.team h4 {
  color: var(--color-base-primary-400);
  margin-bottom: 16px;
}

.team__slide {
  padding: 8px;
  border-radius: 24px;
}

.team img {
  border-radius: 24px;
}

.team__info {
  padding: 24px 16px 16px;
}

.faq__title {
  font-weight: 600;
  cursor: pointer;
}

.faq__text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  display: block;
}

.faq__item {
  padding: 24px;
  border-radius: 24px;
  box-shadow: 20px 40px 80px 0px rgba(10, 94, 153, 0.08), 10px 16px 17.869px 0px rgba(10, 94, 153, 0.04), 2px 4px 5.32px 0px rgba(10, 94, 153, 0.02);
}

.faq__item+.faq__item {
  margin-top: 8px;
}

.faq__item--active .faq__text {
  margin-top: 16px;
}

.faq__item--active .faq__title::before {
  transform: rotate(0);
}

.faq__title {
  position: relative;
  padding-right: 32px;
}

.faq__title::after,
.faq__title::before {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 1px);
  height: 2px;
  width: 18px;
  border-radius: 24px;
  background-color: var(--color-content-primary);
}

.faq__title::before {
  transition: transform 0.3s ease-in;
  transform: rotate(90deg);
}

.footer {
  padding-bottom: 56px;
}

.footer__wrapper {
  padding: 56px;
  background: var(--color-base-primary-400);
  color: var(--color-base-white);
  border-radius: 24px;
  display: grid;
  gap: 24px;
}

.footer__top,
.footer__bottom {
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 1fr max-content;
  gap: 16px;
}

.footer__address {
  font-weight: 600;
}

.footer__address span {
  font-weight: 400;
}

.footer__site {
  display: inline-block;
  color: var(--color-base-white);
}

.footer__privacy-link{
  color: var(--color-base-white);
}

.delivery__slide {
  display: grid;
  grid-template-rows: 44px max-content 1fr;
  height: auto;
  gap: 16px;
  padding: 40px 24px;
}

.delivery h4 {
  font-weight: 700;
}

.delivery img {
  margin-bottom: 8px;
  filter: brightness(0) saturate(100%) invert(47%) sepia(96%) saturate(332%) hue-rotate(162deg) brightness(95%) contrast(91%);
}

.about__info {
  align-self: center;
  max-width: 544px;
}

.showroom__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.showroom .button {
  width: 100%;
}

.showroom__button {
  grid-column: 1/3;
}

.block-blur {
  position: relative;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 546px;
}

.block-blur__img {
  position: absolute;
  right: 0;
  width: 100%;
  top: 0;
  height: 100%;
  object-fit: cover;
  object-position: right;
  border-radius: 24px;
}

.block-blur__info {
  grid-column: 1/2;
  position: relative;
  z-index: 2;
  padding: 56px;
  background: rgba(39, 132, 198, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  display: grid;
  grid-auto-rows: max-content;
  align-content: center;
}

.contacts__item {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 16px;
  align-items: center;
}

.contacts__list {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

.contacts .button {
  width: 100%;
}

.form .fields {
  display: grid;
  gap: 16px;
}

.form .button {
  width: 100%;
}

.form-access input:checked~.form-required::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 3px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/check.svg");
  z-index: 2;
}

.form__action {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.form [type=checkbox] {
  display: none;
}

.form .form-required {
  padding-left: 28px;
  position: relative;
  font-size: 14px;
  display: block;
  color: var(--color-base-white);
}

.form .form-required::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-base-white);
  padding: 7px;
}

.form-modal {
  padding: 56px 0;
  visibility: hidden;
  margin: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
  display: grid;
  align-items: center;
  justify-content: center;
  background-color: var(--color-base-primary-600);
  max-height: 90vh;
  overflow: auto;
  border-radius: 24px;
}

.form-modal .form__wrapper {
  grid-template-columns: 1fr;
}

.form-modal--active {
  visibility: visible;
}

.form_invert .block-blur__info {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
}

.form_invert input {
  background: #fff;
  color: var(--color-base-primary-400);
}

.form_invert input::placeholder {
  color: var(--color-base-primary-400);
}

.form_invert .form-required {
  color: var(--color-content-neutral-secondary);
}

.form__privacy-link {
  padding: 4px 0 0 28px;
  font-size: 14px;
  color: var(--color-base-white);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.form__privacy-link.dark{
  color: var(--color-content-neutral-secondary);
}

.menu {
  display: none;
}

.modal-confirm {
  visibility: hidden;
  margin: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
  display: grid;
  align-items: center;
  justify-content: center;
}

.modal-confirm--active {
  visibility: visible;
}

.modal-content {
  width: max-content;
  position: relative;
  padding: 56px;
  background: var(--color-content-white);
  color: var(--color-base-neutral-600);
  display: grid;
  height: max-content;
  align-items: center;
  justify-content: center;
  justify-items: center;
  transition: transform 0.4s ease-in;
}

.modal-content__title {
  font-size: 32px;
  margin-bottom: 16px;
}

.modal-content__text {
  font-size: 18px;
  margin-bottom: 16px;
}

.modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.overlay--active {
  visibility: visible;
  opacity: 1;
  overflow: hidden;
}

.overlay.overlay::after {
  content: "";
  width: 100%;
  height: 100%;
  z-index: 99;
  background-color: #1b241b;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
}

@media (hover: hover) {
  .button:hover {
    background-position: 30% 90%;
  }

  .button_white:hover {
    background-color: var(--color-base-primary-400);
    color: var(--color-base-white);
  }

  .button_white:hover svg path {
    stroke: var(--color-base-white);
  }
}

@media (max-width: 1200px) {
  .container {
    padding: 0 24px;
  }

  .form-modal {
    width: 90%;
    max-width: 700px;
  }

  .header .button {
    text-indent: -10000000px;
    width: 44px;
    min-width: unset;
    gap: 0;
  }

  .header__phone {
    justify-self: end;
  }

  .footer__wrapper,
  .colors__list,
  .banner__info,
  .block-blur__info {
    padding: 24px;
  }

  .banner__item svg {
    margin-bottom: 0;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
    left: -18px;
  }

  .swiper-button-next {
    right: -18px;
    left: unset;
  }
}

@media (max-width: 1100px) {
  .header__list a {
    padding: 15px 8px;
  }

  .sizes .grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .guarantee .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1050px) {
  .colors .grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .colors__list {
    max-width: 767px;
  }
}

@media (max-width: 1000px) {

  h1,
  .h1 {
    font-size: 38px;
  }

  h2,
  .h2 {
    font-size: 32px;
  }

  h3,
  .h3 {
    font-size: 26px;
  }

  h4,
  .h4 {
    font-size: 20px;
  }

  .list li+li {
    margin-top: 24px;
  }

  .automatic .grid,
  .vorota .grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 950px) {
  main {
    margin-top: 70px;
  }

  .header__wrapper {
    grid-template-columns: max-content 1fr;
  }

  .header__menu {
    position: fixed;
    top: 70px;
    right: 0;
    padding: 24px;
    border-radius: 24px;
    background: var(--color-base-white);
    transform: translateX(110%);
    transition: transform 0.3s ease-in;
    z-index: 12;
  }

  .header__menu--active {
    transform: translateX(0);
  }

  .header__list {
    grid-template-columns: unset;
  }

  .header__item a {
    color: var(--color-base-primary-400);
    padding: 15px 0;
  }

  .header__logo {
    max-width: 150px;
  }

  .footer img {
    max-width: 150px;
  }

  .menu {
    display: grid;
  }

  .menu .menu {
    display: grid;
    align-items: center;
    width: max-content;
    justify-self: end;
  }

  .menu .menu-trigger {
    width: 24px;
    height: 20px;
    display: inline-block;
    position: relative;
    margin-left: auto;
    padding: 0;
  }

  .menu .menu-trigger span {
    width: 24px;
    height: 2px;
    position: absolute;
    background-color: var(--color-base-primary-400);
    transition: all 0.3s;
    top: 0;
    left: 0;
  }

  .menu .menu-trigger span:nth-child(2) {
    top: 9px;
  }

  .menu .menu-trigger span:nth-child(3) {
    bottom: 0;
    top: unset;
  }

  .menu .menu--active .menu-trigger {
    width: 23px;
  }

  .menu .menu--active .menu-trigger span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
  }

  .menu .menu--active .menu-trigger span:nth-child(2) {
    display: none;
  }

  .menu .menu--active .menu-trigger span:nth-child(3) {
    bottom: 9px;
    transform: rotate(-45deg);
  }

  .footer__wrapper {
    padding: 16px;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .header__address span {
    display: none;
  }

  .banner__slide,
  .block-blur {
    grid-template-columns: 8fr 4fr;
  }

  .block-blur {
    min-height: 350px;
  }

  .contacts .block-blur {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contacts .block-blur__img {
    position: static;
    display: block;
  }

  .contacts .block-blur iframe {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }

  .banner__info,
  .colors__list,
  .block-blur__info {
    padding: 16px;
  }

  .faq .grid {
    grid-template-columns: 1fr;
  }

  .faq__item {
    padding: 16px;
  }

  .delivery__slide {
    padding: 24px 16px;
  }

  .swiper-overflow::after {
    height: calc(100% - 130px);
  }

  .block-blur__info {
    background: rgba(39, 132, 198, 0.9);
  }

  .form_invert .block-blur__info {
    background: #f5f5f5;
    backdrop-filter: blur(30px);
  }

  .list li {
    padding-left: 30px;
  }

  .list li::after {
    width: 11px;
    height: 18px;
    background-size: cover;
  }

  .swiper-navigation {
    margin-top: 12px;
    display: flex;
    justify-content: end;
    gap: 8px;
    height: 44px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    position: static;
    transform: unset;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-top: 0;
  }

  .swiper-pagination {
    margin-top: 12px;
  }

  .swiper .banner__slide {
    grid-template-columns: 1fr;
  }

  .swiper .banner__img {
    display: none;
  }

  .sizes__right {
    padding-left: 40px;
    width: 100%;
  }

  .sizes img {
    max-width: 90%;
  }

  .sizes__descr_transform {
    left: -65px;
  }

  .header__phone {
    display: none;
  }

  .header-bottom {
    grid-template-columns: 1fr max-content;
  }

  .about .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .colors__list {
    gap: 16px;
  }

  .block-blur {
    grid-template-columns: 1fr;
  }

  .block-blur__img {
    display: none;
  }

  .block-blur .button {
    width: 100%;
  }

  .block-blur .button svg {
    display: none;
  }

  input {
    height: 55px;
  }

  .form__action {
    gap: 24px;
    margin-top: 24px;
  }
}

@media (max-width: 560px) {
  .header__address {
    display: none;
  }

  .colors__list {
    grid-template-columns: repeat(4, 1fr);
  }

  .guarantee__list {
    grid-template-columns: 1fr;
  }

  .banner__item {
    max-width: 100%;
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 8px 16px;
    align-items: center;
  }

  .banner__item svg {
    grid-row: 1/3;
  }

  .banner__items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .footer__address {
    display: none;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
  }

  .colors__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .showroom__button {
    grid-column: 1;
  }

  .showroom__btns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .colors__list {
    grid-template-columns: 1fr 1fr;
  }
}

/*# sourceMappingURL=style.css.map */