@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: local("OpenSans-Light"), url("../fonts/OpenSans-Light.ttf") format("truetype");
}

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

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

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

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

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

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Montserrat", sans-serif;
  font-size: calc(16px + 2 * (100vw - 360px) / 1560);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.15px;
  color: var(--color-dark-primary);
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  overflow-x: hidden;
  text-wrap: balance;
}

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

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

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

.body--lock {
  overflow: hidden;
}

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

input,
textarea {
  height: 75px;
  background: var(--color-content-white);
  color: var(--color-dark-secondary);
  font-weight: 400;
  padding: 10px 36px 10px 16px;
  width: 100%;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  resize: none;
}

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

.footer__link {
  color: #81A84C;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  color: var(--color-dark-primary);
  font-family: "Open Sans", sans-serif;
  text-wrap: balance;
  margin: 0;
  max-width: 767px;
}

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

h1,
.h1 {
  font-size: calc(40px + 40 * (100vw - 360px) / 1560);
  font-weight: 700;
  line-height: 120%;
}

h2,
.h2 {
  font-size: calc(26px + 14 * (100vw - 360px) / 1560);
  font-weight: 700;
  line-height: 135%;
  color: var(--color-dark-primary);
  text-align: center;
  margin: 0 auto 32px;
  text-transform: uppercase;
}

h3,
.h3 {
  font-size: calc(22px + 10 * (100vw - 360px) / 1560);
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 0.25px;
}

h4,
.h4 {
  font-size: calc(18px + 6 * (100vw - 360px) / 1560);
  font-weight: normal;
  line-height: 120%;
}

h5,
.h5 {
  font-size: calc(16px + 4 * (100vw - 360px) / 1560);
  font-weight: 600;
  line-height: 120%;
  font-family: "SourceSans3", sans-serif;
}

.text_light {
  color: var(--color-content-white, #FFF);
}

.descr {
  font-family: "Montserrat", sans-serif;
  font-size: calc(16px + 2 * (100vw - 360px) / 1560);
  font-weight: 400;
  color: var(--color-dark-primary);
  margin: 0 auto 24px;
  text-align: center;
}

a {
  display: block;
  color: var(--color-dark-primary);
  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 44px;
  background-color: var(--color-content-primary);
  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-color 0.3s;
}

.button_large {
  height: 64px;
  font-weight: 700;
}

.button_small {
  height: 32px;
  font-weight: 600;
  font-size: 14px;
}

.button_secondary {
  background-color: var(--color-content-accent);
}

section {
  padding: 56px 0;
}

main {
  margin-top: 101px;
}

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

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

.swiper-overflow .swiper {
  width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  left: -22px;
  background: var(--color-content-primary);
}

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

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

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

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

.header__wrapper {
  display: grid;
  grid-template-columns: max-content 1fr repeat(2, max-content);
  align-items: center;
  gap: 24px;
}

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

.header__list li a {
  padding: 8px 12px;
  font-size: 16px;
}

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

.banner {
  background-image: url("../images/banner/banner.webp");
  background-repeat: no-repeat;
  background-position: center;
  height: 723px;
  background-size: cover;
  position: relative;
  padding: 0;
}

.banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  top: 0;
  left: 0;
}

.banner__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.banner .container {
  display: grid;
  align-items: center;
  height: 100%;
}

.banner__subtitle {
  font-weight: 300;
  margin-bottom: 16px;
}

.banner__title {
  margin-bottom: 32px;
  text-transform: uppercase;
  max-width: 100%;
}

.banner__items {
  display: grid;
  gap: 24px;
  height: max-content;
}

.banner__item {
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-dark-primary);
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 16px;
  padding: 24px;
}

.advantages {
  padding-top: 56px;
}

.advantages__slide {
  padding: 24px;
  display: grid;
  height: auto;
  grid-template-rows: max-content max-content 1fr;
  justify-items: center;
  gap: 16px;
}

.advantages__title {
  text-align: center;
}

.advantages__description {
  text-align: center;
}

.present {
  background: var(--gradient);
}

.present__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.present__title {
  margin-bottom: 8px;
}

.present__description {
  margin-bottom: 32px;
}

.card {
  padding: 24px;
  background-color: #F6F7FA;
  position: relative;
  height: auto;
  display: grid;
  grid-template-rows: max-content 1fr max-content max-content max-content;
}

.card img,
.card .card__price {
  margin-bottom: 24px;
}

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

.card-char__list {
  margin-bottom: 16px;
}

.card-char__item {
  color: var(--color-dark-secondary);
}

.card-char__item+.card-char__item {
  margin-top: 8px;
}

.card__button {
  width: 100%;
}

.card__price {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  align-items: center;
  width: max-content;
  gap: 10px;
}

.card__price_old {
  position: relative;
}

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

.card__price_actual {
  font-weight: 700;
}

.card__mark {
  position: absolute;
  right: 0;
  top: -14px;
  width: 56px;
  height: 56px;
  display: grid;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-content-white);
  background: var(--color-content-primary);
}

.promo-swiper {
  padding-top: 15px;
}

.promo h2 {
  margin-bottom: 16px;
}

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

.sizes__title {
  font-size: 24px;
  margin-bottom: 16px;
}

.sizes__items {
  display: grid;
  gap: 16px;
  height: max-content;
  margin-bottom: 32px;
}

.sizes__item span {
  font-weight: 700;
  color: var(--color-dark-secondary);
}

.list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.list li {
  padding-bottom: 16px;
  padding-left: 27px;
  position: relative;
}

.list li::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-dark-primary);
}

.about h2 {
  margin: 0 0 32px;
  text-align: start;
}

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

.about__description {
  padding-left: 18px;
  border-left: 4px solid var(--color-dark-secondary);
  margin-bottom: 24px;
}

.about .list {
  margin-bottom: 24px;
}

.about__info {
  padding-left: 24px;
}

.prices {
  background: var(--gradient);
}

.prices__description {
  margin-bottom: 32px;
}

.types-slide img {
  margin: 0 auto;
}

.types-catalog-swiper .swiper-slide {
  padding: 24px;
  background: #F6F7FA;
  display: grid;
  grid-template-rows: max-content 1fr;
  height: auto;
  gap: 16px;
  justify-content: center;
}

.types-catalog-swiper .swiper-slide.swiper-slide-thumb-active {
  border: 1px solid var(--color-dark-secondary);
}

.types-catalog-swiper .types__title {
  text-align: center;
  font-size: 14px;
}

.types__description~.swiper-overflow {
  margin-bottom: 32px;
}

.types__button {
  margin: 0 auto;
}

.types .swiper-button-prev,
.types .swiper-button-next {
  top: calc(100% - 135px);
}

.colors {
  background: var(--color-bg-grey);
}

.colors__description {
  text-align: center;
  margin: 0 auto 32px;
}

.colors__slide {
  padding: 24px;
  background: #fff;
  display: grid;
  height: auto;
  gap: 8px;
}

.colors__title {
  font-weight: 700;
}

.colors__box {
  width: 100%;
  height: 200px;
  background: #000;
  margin-bottom: 8px;
}

.colors__comment {
  text-align: center;
  margin: 0 auto 32px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

.colors__button {
  margin: 0 auto;
}

.tabs {
  margin-bottom: 24px;
}

.tabs__list {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 16px;
  width: max-content;
  margin: 0 auto 24px;
}

.tabs__item {
  cursor: pointer;
}

.tabs__item--active {
  font-weight: 700;
  border-bottom: 4px solid var(--color-dark-primary);
}

.tabs-pane {
  display: none;
}

.tabs-pane.tabs-pane--show {
  display: block;
}

.ral9016 {
  background-color: #FCFDFB;
}

.ral1015 {
  background-color: #F6F4E5;
}

.ral5010 {
  background-color: #223B86;
}

.ral3004 {
  background-color: #8F2935;
}

.ral6005 {
  background-color: #155142;
}

.ral7016 {
  background-color: #676C71;
}

.ral8014 {
  background-color: #6B5442;
}

.ral8017 {
  background-color: #5E4338;
}

.ral9006 {
  background-color: #BABDBE;
}

.ads703 {
  background-color: #303C4A;
}

.automatic {
  background: var(--color-bg-grey);
}

.automatic__description {
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 4px solid var(--color-dark-secondary);
}

.complex__button {
  margin: 32px auto 0;
}

.guarantee {
  background: var(--color-bg-grey);
}

.guarantee__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  height: auto;
  align-items: center;
}

.guarantee__item {
  background-color: var(--color-content-white);
  padding: 24px;
  display: grid;
  grid-template-rows: 94px max-content 1fr;
  gap: 16px;
  justify-content: center;
  justify-items: center;
  text-align: center;
  height: auto;
  min-height: 100%;
}

.guarantee img {
  margin-bottom: 8px;
}

.guarantee__title {
  font-weight: 700;
}

.portfolio__slide {
  display: grid;
  height: auto;
  grid-template-rows: max-content 1fr max-content;
  gap: 16px;
}

.portfolio img {
  margin-bottom: 8px;
}

.portfolio__title {
  font-weight: 700;
}

.delivery {
  background: var(--color-bg-grey);
}

.delivery__slide {
  display: grid;
  gap: 16px;
  height: auto;
  justify-content: center;
  justify-items: center;
  background: var(--color-content-white);
  padding: 24px;
  text-align: center;
  grid-template-rows: 94px max-content 1fr;
}

.faq__item {
  max-width: 767px;
  cursor: pointer;
}

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

.faq__item--active {
  height: auto;
}

.faq__item--active .faq__text {
  height: auto;
}

.faq__item--active .faq__title::after {
  transform: rotate(180deg);
  transition: all 0.5s ease;
}

.faq__title {
  font-weight: 700;
  position: relative;
  padding-right: 55px;
}

.faq__title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 41px;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}

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

.faq__text>*:first-child {
  margin-top: 16px;
}

.contacts {
  position: relative;
}

.contacts .container {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, 0);
}

.contacts__wrapper {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  padding: 24px;
  border: 2px solid var(--color-dark-secondary);
  width: 100%;
  max-width: 50%;
  background: rgba(255, 255, 255, 0.8);
}

.contacts h4 {
  font-weight: 700;
  margin-bottom: 24px;
}

.contacts__title {
  font-weight: 700;
}

.contacts__info {
  display: grid;
  gap: 8px;
}

.contacts__items {
  margin-bottom: 32px;
}

.contacts__button {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 5px;
  color: #81A84C;
  font-weight: 500;
  width: max-content;
  cursor: pointer;
}

.contacts__more {
  position: relative;
}

.contacts__more--active .contacts-schedule {
  display: block;
}

.contacts-schedule {
  display: none;
  background: var(--color-bg-grey);
  position: absolute;
  left: 0;
  top: calc(100% + 16px);
  width: max-content;
  height: max-content;
}

.contacts-schedule__list {
  padding: 24px;
  display: grid;
  height: max-content;
  gap: 8px;
}

.contacts-schedule__item {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}

.contacts-schedule__item.current {
  font-weight: 700;
}

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

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

.contacts__item_message .contacts__info {
  grid-template-columns: max-content 1fr;
  gap: 20px;
  align-items: center;
}

.contacts__item_message .contacts__text {
  display: grid;
  grid-auto-flow: column;
  width: max-content;
  align-items: center;
  gap: 5px;
}

.contacts__item_message .contacts__text a {
  display: grid;
  align-items: center;
}

.contacts__item_time .contacts__text {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 2px;
}

.form_gradient {
  background: var(--gradient);
}

.form__img {
  position: relative;
  height: 100%;
}

.form__img img {
  position: absolute;
  right: 0;
  bottom: -56px;
  width: max-content;
  height: max-content;
  z-index: 1;
}

.form h2 {
  text-align: start;
}

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

.form .h4 {
  margin-bottom: 24px;
}

.form-access input:checked~.form-required::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  background: var(--color-dark-primary);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

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

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

.form .form-required {
  padding-left: 25px;
  position: relative;
  font-size: 12px;
}

.form .form-required::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: transparent;
  padding: 7px;
  border: 1px solid var(--color-dark-primary);
}

.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: var(--gradient);
  max-height: 90vh;
  overflow: auto;
}

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

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

.form__privacy-link {
  padding: 6px 0 0 25px;
  position: relative;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.footer {
  padding: 56px 0;
}

.menu {
  display: none;
}

.print__wrapper {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  justify-content: space-between;
  gap: 16px;
}

.print__item {
  display: grid;
  padding: 24px;
  background: var(--color-content-white);
  grid-template-rows: 80px 1fr;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.legal-link{
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (min-width: 1921px) {
  .banner__title {
    font-size: 80px;
  }
}

@media (hover: hover) {
  .button:hover {
    background-color: var(--color-dark-secondary);
  }

  .button_secondary:hover {
    background-color: #AAADC4;
  }
}

@media (max-width: 1550px) {
  .header {
    padding: 8px 24px;
  }

  .header__wrapper {
    gap: 20px;
  }

  .header__list li a {
    padding: 0 8px;
  }
}

@media (max-width: 1430px) {
  .header__logo img {
    max-width: 150px;
  }

  main {
    margin-top: 72px;
  }

  .print__wrapper {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1360px) {
  header .header__button {
    width: 32px;
    height: 100%;
    text-indent: -100000000px;
    background-image: url("../images/chat.svg");
    background-position: center;
    background-color: #fff;
    background-repeat: no-repeat;
    padding: 0;
    min-width: unset;
  }

  main {
    margin-top: 59px;
  }
}

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

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

@media (max-width: 1110px) {
  .header__phone {
    width: 32px;
    height: 100%;
    text-indent: -100000000px;
    background-image: url("../images/phone.svg");
    background-position: center;
    background-color: #fff;
    background-repeat: no-repeat;
  }
}

@media (max-width: 1000px) {
  .menu {
    display: grid;
    align-items: center;
    width: max-content;
    justify-self: end;
  }

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

  .menu-trigger span {
    width: 24px;
    height: 2px;
    position: absolute;
    background-color: #81A84C;
    transition: all 0.3s;
    top: 0;
    left: 0;
  }

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

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

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

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

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

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

  .header {
    height: 59px;
  }

  .header__nav {
    position: fixed;
    right: 0;
    top: 59px;
    width: max-content;
    padding: 24px;
    background-color: var(--color-content-white);
    z-index: 10;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
  }

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

  .header__list {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .header__list li a {
    padding: 8px 0;
  }

  .header__wrapper {
    grid-template-columns: 1fr repeat(3, max-content);
    gap: 32px;
  }

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

  .about__wrapper>div:first-child {
    display: none;
  }

  .about__wrapper__info {
    padding-left: 0;
  }

  .about__wrapper div {
    max-width: 767px;
  }

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

  .prices__description {
    margin: 0 auto 18px;
    text-align: center;
  }

  .prices button,
  .prices img {
    margin: 0 auto;
  }

  .types .swiper-button-prev,
  .types .swiper-button-next {
    top: calc(100% - 100px);
  }

  .automatic .grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .form .grid {
    grid-template-columns: 1fr;
    max-width: 767px;
  }

  .form__img {
    display: none;
  }

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

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

  .contacts .container {
    position: static;
    transform: unset;
    margin-top: 24px;
  }

  .contacts__wrapper {
    position: static;
    transform: unset;
    width: 100%;
    max-width: 100%;
    border: none;
    padding: 0;
  }
}

@media (max-width: 767px) {
  h2 {
    margin-bottom: 24px;
  }

  .descr {
    margin-bottom: 18px;
  }

  .container {
    padding: 0 16px;
  }

  main {
    margin-top: 50px;
  }

  .button {
    height: 46px;
    padding: 0 32px;
  }

  .card {
    padding: 16px;
  }

  .header {
    height: 50px;
    padding: 8px 16px;
  }

  .header__wrapper {
    gap: 22px;
  }

  .header__logo img {
    max-width: 120px;
  }

  .banner {
    height: calc(100vh - 55px);
  }

  .banner__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .banner__item {
    padding: 16px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .banner__title {
    margin-bottom: 16px;
  }

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

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

  .present__description {
    margin-bottom: 18px;
  }

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

  .present__wrapper div {
    text-align: center;
  }

  .present__wrapper .button {
    margin: 0 auto;
  }

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

  .sizes__items {
    justify-content: center;
  }

  .sizes__title {
    text-align: center;
  }

  .sizes .button,
  .sizes img {
    margin: 0 auto;
  }

  .guarantee__item,
  .types-catalog-swiper .swiper-slide,
  .colors__slide,
  .delivery__slide {
    padding: 16px;
  }

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

  .print__item {
    padding: 16px;
  }
}

@media (max-width: 700px) {

  .card img,
  .card .card__price {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .advantages__slide {
    padding: 0;
  }

  .tabs__list {
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 15px;
    margin: 0 auto 16px;
  }

  .print__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .automatic .grid>div:nth-child(2) {
    max-width: 100%;
    overflow: hidden;
    width: 100%;
    position: relative;
  }

  .automatic iframe {
    width: 100%;
  }
}

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

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

  .types-catalog-swiper .swiper-slide {
    gap: 0;
    grid-template-rows: 95px 1fr;
  }

  .types-catalog-swiper .types__title {
    font-size: 12px;
  }
}

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

  .print__item {
    padding: 6px;
  }
}

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

  .form__action .button {
    width: 100%;
  }

  .form-access {
    order: -1;
  }

  .form .form-required {
    display: block;
  }
}

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