@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
html {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  overflow-y: scroll;
  color: #181d42;
  background-color: #ffffff;
}

a,
button,
input,
textarea {
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
}

figure {
  margin: 0;
}

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

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
input[type=number],
textarea {
  display: inline-block;
  min-height: 60px;
  width: 100%;
  padding: 18px 26px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: #242424;
  border: 1px solid #f5f5f5;
  border-radius: 4px;
  outline: none;
  background-color: #f5f5f5;
  -webkit-transition-property: border;
  transition-property: border;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
@media (max-width: 576px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=password],
  textarea {
    font-size: 16px;
  }
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=password]:focus,
textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
input[type=text]:user-invalid,
input[type=email]:user-invalid,
input[type=tel]:user-invalid,
input[type=password]:user-invalid,
textarea:user-invalid {
  color: #ff3c3c;
  border: 1px solid rgba(255, 60, 60, 0.2);
}

textarea {
  min-height: 140px;
  resize: none;
}

.h1,
.h2,
.h3 {
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  color: #242424;
}
.h1 em,
.h2 em,
.h3 em {
  font-style: italic;
  font-weight: 300;
}
.h1 strong,
.h2 strong,
.h3 strong {
  color: #3758a1;
}

.h1 {
  font-weight: 900;
  font-size: 130px;
  line-height: 108%;
  letter-spacing: -0.04em;
}
@media (max-width: 1400px) {
  .h1 {
    font-size: 80px;
  }
}
@media (max-width: 1024px) {
  .h1 {
    font-size: 64px;
  }
}
@media (max-width: 768px) {
  .h1 {
    font-size: 48px;
  }
}
@media (max-width: 576px) {
  .h1 {
    font-size: 30px;
    line-height: 120%;
  }
}

.h2 {
  font-weight: 700;
  font-size: 80px;
  line-height: 112%;
  letter-spacing: -0.04em;
}
@media (max-width: 1400px) {
  .h2 {
    font-size: 64px;
  }
}
@media (max-width: 1024px) {
  .h2 {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .h2 {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .h2 {
    font-size: 24px;
    line-height: 125%;
  }
}

.h3 {
  font-weight: 700;
  font-size: 60px;
  line-height: 116%;
  letter-spacing: -0.04em;
  text-align: left;
}
@media (max-width: 1400px) {
  .h3 {
    font-size: 54px;
  }
}
@media (max-width: 1024px) {
  .h3 {
    font-size: 44px;
  }
}
@media (max-width: 768px) {
  .h3 {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .h3 {
    font-size: 24px;
    line-height: 125%;
  }
}

model-viewer {
  width: 100%;
  height: auto;
  aspect-ratio: 707/632;
}

.button {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  border: none;
  border-radius: 4px;
  background-color: #3758a1;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  cursor: pointer;
}
.button:hover {
  background-color: #242424;
}
.button:active {
  background-color: #3758a1;
}

.container {
  max-width: 1556px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.labeled-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.labeled-input_password {
  position: relative;
}
.labeled-input__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: rgba(36, 36, 36, 0.7);
}
.labeled-input_password .labeled-input__input {
  padding-right: 60px;
}
.labeled-input__show {
  display: none;
}
.labeled-input_password .labeled-input__show {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  background: url(../assets/mdi_eye.svg) center/cover no-repeat;
  cursor: pointer;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #f8f8f8;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  padding: 33px 0;
}
@media (max-width: 1400px) {
  .header__wrapper {
    gap: 24px;
    padding: 24px 0;
  }
}
@media (max-width: 1024px) {
  .header__wrapper {
    padding: 25px 0 22px;
  }
}
.header__logo {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.header__logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.header__logo-link-image {
  display: block;
  max-width: 100%;
  width: 100px;
  height: auto;
}
@media (max-width: 1024px) {
  .header__logo-link-image {
    width: 90px;
  }
}
@media (max-width: 576px) {
  .header__logo-link-image {
    width: 80px;
  }
}
.header__logo-link-text {
  max-width: 122px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(36, 36, 36, 0.6);
}
@media (max-width: 1400px) {
  .header__logo-link-text {
    display: none;
  }
  .crross{display: none; height: unset !important; width: unset !important;}
}
.header__logo-link-text strong {
  color: #242424;
}
.header__menu {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 1048px;
          flex: 0 1 1048px;
}
@media (max-width: 1024px) {
  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    background-color: rgba(36, 36, 36, 0);
    -webkit-transition: background-color ease-out 0.4s;
    transition: background-color ease-out 0.4s;
    pointer-events: none;
  }
}
@media (max-width: 1024px) {
  .header__menu.active {
    background-color: rgba(36, 36, 36, 0.6);
    pointer-events: all;
  }
}
.header__menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media (max-width: 1024px) {
  .header__menu-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 360px;
    width: 100%;
    padding: 134px 15px 34px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: #f8f8f8;
    -webkit-transition: -webkit-transform ease-out 0.4s;
    transition: -webkit-transform ease-out 0.4s;
    transition: transform ease-out 0.4s;
    transition: transform ease-out 0.4s, -webkit-transform ease-out 0.4s;
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
  }
}
@media (max-width: 576px) {
  .header__menu-wrapper {
    max-width: none;
  }
}
@media (max-width: 1024px) {
  .header__menu.active .header__menu-wrapper {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.user_nav{
  margin: 0 auto;
  flex: unset !important;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 604px;
          flex: 0 1 604px;
  gap: 10px 32px;
}
@media (max-width: 1024px) {
  .header__nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    gap: 14px;
  }
}
.header__nav-link {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #242424;
  -webkit-transition: color ease-out 0.2s;
  transition: color ease-out 0.2s;
}
.header__nav-link:hover {
  color: #3758a1;
}
.header__callback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (max-width: 1400px) {
  .header__callback {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.header__callback-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  letter-spacing: 0.02em;
  color: #242424;
  -webkit-transition: color ease-out 0.2s;
  transition: color ease-out 0.2s;
}
.header__callback-phone:hover {
  color: #3758a1;
}
.header__callback-phone::before {
  content: "";
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 18px;
  aspect-ratio: 1/1;
  background: url(../assets/mdi_phone.svg) center/cover no-repeat;
}
.header__controls {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  gap: 16px;
}
@media (max-width: 1024px) {
  .header__controls {
    gap: 14px;
  }
}
.header__controls-account-button, .header__controls-basket-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
  width: 50px;
  aspect-ratio: 1/1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid rgba(55, 88, 161, 0.1);
  border-radius: 50px;
  background-color: #eef2fb;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .header__controls-account-button, .header__controls-basket-button {
    width: 46px;
  }
}
.header__controls-account-button::before, .header__controls-basket-button::before {
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 1/1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.header__controls-account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.header__controls-account-button::before {
  background-image: url(../assets/basil_user-solid.svg);
}
.header__controls-account.active .header__controls-account-button {
  background-color: #3758a1;
}
.header__controls-account.active .header__controls-account-button::before {
  -webkit-filter: brightness(1000%);
          filter: brightness(1000%);
}
.header__controls-account-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  display: none;
}
.header__controls-account-info-name {
  font-weight: 600;
  font-size: 13px;
  line-height: 100%;
  color: rgba(36, 36, 36, 0.6);
}
.header__controls-account-info-exit {
  display: inline-block;
  padding: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: #3758a1;
  border: none;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: color ease-out 0.2s;
  transition: color ease-out 0.2s;
  cursor: pointer;
}
.header__controls-account-info-exit:hover {
  color: #242424;
}
.header__controls-account.active .header__controls-account-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__controls-basket {
  position: relative;
}
.header__controls-basket-button::before {
  background-image: url(../assets/entypo_shopping-cart.svg);
}
.header__controls-basket-button-counter {
  position: absolute;
  top: -2px;
  left: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 24px;
  height: 24px;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  border-radius: 26px;
  background-color: #ff3c3c;
  display: none;
}
.header__controls-basket.active .header__controls-basket-button {
  background-color: #3758a1;
}
.header__controls-basket.active .header__controls-basket-button::before {
  -webkit-filter: brightness(1000%);
          filter: brightness(1000%);
}
.header__controls-basket.active .header__controls-basket-button-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__controls-burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
  width: 50px;
  aspect-ratio: 1/1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  border-radius: 50px;
  background-color: #3758a1;
  cursor: pointer;
  display: none;
}
@media (max-width: 1024px) {
  .header__controls-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 46px;
  }
}
.header__controls-burger::before {
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 1/1;
  background-image: url(../assets/material-symbols_menu-rounded.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.header__controls-burger.active::before {
  background-image: url(../assets/ic_round-close.svg);
}
.header__contacts {
  display: none;
}
@media (max-width: 1024px) {
  .header__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
    max-width: 240px;
  }
}
.header__contacts-location, .header__contacts-email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: rgba(36, 36, 36, 0.8);
}
@media (max-width: 1024px) {
  .header__contacts-location, .header__contacts-email {
    text-align: center;
  }
}
.header__contacts-location::before, .header__contacts-email::before {
  content: "";
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 18px;
  aspect-ratio: 1/1;
}
@media (max-width: 1024px) {
  .header__contacts-location::before, .header__contacts-email::before {
    display: none;
  }
}

.main {
  min-height: calc(100dvh - 314px);
  padding: 140px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1024px) {
  .main {
    min-height: calc(100dvh - 625px);
    padding: 120px 0 80px;
  }
}
@media (max-width: 576px) {
  .main {
    padding: 116px 0 50px;
  }
}

.first-screen {
  margin-top: -140px;
  background-color: #2424245c;
}
@media (max-width: 1024px) {
  .first-screen {
    margin-top: -120px;
  }
}
@media (max-width: 576px) {
  .first-screen {
    margin-top: -116px;
  }
}
.order_samples {
  display:none;
}
@media (max-width: 768px) {
  .order_samples {
    display: block;
  }
}
.first-screen__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 100px;
  padding: 184px 0 130px;
  min-height: 1080px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1400px) {
  .first-screen__wrapper {
    gap: 80px;
    min-height: 560px;
  }
}
@media (max-width: 1024px) {
  .first-screen__wrapper {
    gap: 64px;
    min-height: 640px;
    padding: 186px 0 78px;
  }
}
@media (max-width: 768px) {
  .first-screen__wrapper {
    gap: 56px;
    min-height: 560px;
  }
}
@media (max-width: 576px) {
  .first-screen__wrapper {
    gap: 40px;
    min-height: 920px;
  }
}
.first-screen__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.first-screen__logo-image {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 576px) {
  .first-screen__logo-image {
    width: 240px;
  }
}
.first-screen__title {
  max-width: 1360px;
  color: #ffffffad;
}
@media (max-width: 1400px) {
  .first-screen__title {
    max-width: 1120px;
  }
}
@media (max-width: 1024px) {
  .first-screen__title {
    max-width: 860px;
  }
}
@media (max-width: 768px) {
  .first-screen__title {
    max-width: 560px;
  }
}
@media (max-width: 576px) {
  .first-screen__title {
    max-width: 1360px;
  }
}

.screws {
  padding: 140px 0;
}
@media (max-width: 1024px) {
  .screws {
    padding: 100px 0;
  }
}
@media (max-width: 576px) {
  .screws {
    padding: 50px 0;
  }
}
.screws__title {
  margin: 0 0 24px;
}
@media (max-width: 1024px) {
  .screws__title {
    margin-bottom: 14px;
  }
}
.screws__description {
  max-width: 1010px;
  margin: 0 auto 60px;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: rgba(36, 36, 36, 0.8);
}
@media (max-width: 1024px) {
  .screws__description {
    margin-bottom: 30px;
    font-size: 16px;
  }
}
.screws__models {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.screws__models::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  display: block;
  width: 190px;
  aspect-ratio: 1/1;
  background: url(../assets/screws-icon.svg) center/cover no-repeat;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
}
@media (max-width: 1400px) {
  .screws__models::before {
    width: 128px;
  }
}
@media (max-width: 1024px) {
  .screws__models::before {
    width: 104px;
  }
}
.screws__models-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 5px);
          flex: 0 0 calc(50% - 5px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 24px solid #3758a1;
  border-radius: 6px;
}
@media (max-width: 1024px) {
  .screws__models-item {
    border-width: 10px;
  }
}
@media (max-width: 576px) {
  .screws__models-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

.advantages {
  padding: 140px 0;
  background: url(../assets/advantages-bg.jpg) center/cover no-repeat;
}
@media (max-width: 1024px) {
  .advantages {
    padding: 100px 0;
  }
}
@media (max-width: 576px) {
  .advantages {
    padding: 50px 0;
  }
}
.advantages__title {
  margin: 0 0 24px;
}
@media (max-width: 1024px) {
  .advantages__title {
    margin-bottom: 14px;
  }
}
.advantages__description {
  max-width: 1010px;
  margin: 0 auto 26px;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: rgba(36, 36, 36, 0.8);
}
@media (max-width: 1024px) {
  .advantages__description {
    margin-bottom: 16px;
    font-size: 16px;
  }
}
.advantages__subtitle {
  margin: 0;
  font-weight: 700;
  font-size: 40px;
  line-height: 115%;
  text-align: center;
  color: #3758a1;
}
@media (max-width: 1024px) {
  .advantages__subtitle {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .advantages__subtitle {
    font-size: 20px;
    line-height: 120%;
  }
}
.advantages__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin: 60px 0;
}
@media (max-width: 1024px) {
  .advantages__list {
    margin: 30px 0;
  }
}
.advantages__list-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(25% - 7.5px);
          flex: 0 0 calc(25% - 7.5px);
  padding: 60px 34px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
  background-color: #ffffff;
}
@media (max-width: 1400px) {
  .advantages__list-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 5px);
            flex: 0 0 calc(50% - 5px);
  }
}
@media (max-width: 768px) {
  .advantages__list-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media (max-width: 576px) {
  .advantages__list-card {
    padding: 54px 20px;
  }
}
.advantages__list-card-figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 118px;
}
@media (max-width: 1024px) {
  .advantages__list-card-figure {
    margin-bottom: 40px;
  }
}
.advantages__list-card-figure-image {
  display: block;
  max-width: 100%;
  max-height: 150px;
  height: auto;
}
@media (max-width: 1024px) {
  .advantages__list-card-figure-image {
    max-height: 80px;
  }
}
@media (max-width: 576px) {
  .advantages__list-card-figure-image {
    max-height: 60px;
  }
}
.advantages__list-card-title {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  text-align: center;
  color: #242424;
}
@media (max-width: 1024px) {
  .advantages__list-card-title {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .advantages__list-card-title {
    font-size: 20px;
  }
}
.advantages__list-card-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 137%;
  text-align: center;
  color: rgba(36, 36, 36, 0.6);
}
@media (max-width: 576px) {
  .advantages__list-card-text {
    font-size: 15px;
  }
}

.products {
  padding: 140px 0 0;
}
@media (max-width: 1024px) {
  .products {
    padding: 100px 0 0;
  }
}
@media (max-width: 576px) {
  .products {
    padding: 50px 0 0;
  }
}
.products__title {
  margin: 0 auto 60px;
  max-width: 840px;
}
@media (max-width: 1024px) {
  .products__title {
    margin-bottom: 22px;
  }
}

.catalog__title {
  margin: 0 0 40px;
  text-align: left;
}
@media (max-width: 1024px) {
  .catalog__title {
    margin-bottom: 24px;
  }
}
@media (max-width: 576px) {
  .catalog__title {
    margin-bottom: 16px;
  }
}
.catalog__info {
  padding: 140px 0 0;
}
@media (max-width: 1024px) {
  .catalog__info {
    padding: 80px 0 0;
  }
}
@media (max-width: 576px) {
  .catalog__info {
    padding: 50px 0 0;
  }
}
.catalog__info-title {
  margin: 0 0 24px;
}
@media (max-width: 1024px) {
  .catalog__info-title {
    margin-bottom: 18px;
  }
}
@media (max-width: 576px) {
  .catalog__info-title {
    margin-bottom: 14px;
    text-align: left;
  }
}
.catalog__info-description {
  max-width: 1110px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: rgba(36, 36, 36, 0.8);
}
@media (max-width: 1024px) {
  .catalog__info-description {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .catalog__info-description {
    font-size: 15px;
    text-align: left;
  }
}

.goods__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.goods__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(25% - 7.5px);
          flex: 0 0 calc(25% - 7.5px);
  padding: 20px 20px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  -webkit-transition-property: border, -webkit-box-shadow;
  transition-property: border, -webkit-box-shadow;
  transition-property: box-shadow, border;
  transition-property: box-shadow, border, -webkit-box-shadow;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

@media (max-width: 1024px) {
  .goods__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 5px);
            flex: 0 0 calc(50% - 5px);
  }
}
@media (max-width: 576px) {
  .goods__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.goods__item:hover {
  -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0);
}
.goods__item-figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.goods__item-figure-image {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.goods__item-name {
  margin: 30px 0 8px;
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #242424;
}
@media (max-width: 576px) {
  .goods__item-name {
    margin: 20px 0 8px;
    font-size: 18px;
  }
}
.goods__item-details {
  margin: 0 0 36px;
}
@media (max-width: 576px) {
  .goods__item-details {
    margin-bottom: 26px;
  }
}
.goods__item-details-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4px;
  max-width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
}
.goods__item-details-item-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  gap: 4px;
  color: rgba(36, 36, 36, 0.6);
}
.goods__item-details-item-name-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.goods__item-details-item-name::after {
  content: "...............................................................................................................";
  display: block;
  max-height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 10 auto;
          flex: 0 10 auto;
  overflow: hidden;
  color: rgba(36, 36, 36, 0.6);
  word-break: break-word;
}
.goods__item-details-item-value {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #242424;
}
.goods__item-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
}
.goods__item-controls input {
  min-height: unset;
  padding: unset;
  font-size: unset;
}
.goods__item-price {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: #242424;
}
@media (max-width: 576px) {
  .goods__item-price {
    font-size: 18px;
  }
}
.goods__item-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 80px;
  gap: 4px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  background-color: #f8f8f8;
}
.goods__item-quantity-plus, .goods__item-quantity-minus {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 9px;
  height: 18px;
  padding: 0;
  border: none;
  background: url(../assets/weui_arrow-filled.svg) center/cover no-repeat;
  -webkit-transition-property: -webkit-filter;
  transition-property: -webkit-filter;
  transition-property: filter;
  transition-property: filter, -webkit-filter;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-filter: brightness(0%);
          filter: brightness(0%);
  cursor: pointer;
}
.goods__item-quantity-plus:hover, .goods__item-quantity-minus:hover {
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
}
.goods__item-quantity-plus {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.goods__item-quantity-count {
  display: block;
  width: 32px;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #242424;
  text-align: center;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0);
  -moz-appearance: textfield;
}
.goods__item-quantity-count::-webkit-outer-spin-button, .goods__item-quantity-count::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.goods__item-add {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.goods__item-add-button {
  padding: 13px 14px 14px;
  font-size: 13px;
  letter-spacing: -0.04em;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px 14px;
  margin: 0 0 60px;
}
@media (max-width: 1024px) {
  .breadcrumbs {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .breadcrumbs {
    margin-bottom: 24px;
  }
}
.breadcrumbs__link, .breadcrumbs__current {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
}
.breadcrumbs__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  color: rgba(36, 36, 36, 0.6);
  -webkit-transition: color ease-out 0.2s;
  transition: color ease-out 0.2s;
}
.breadcrumbs__link:hover {
  color: #3758a1;
}
.breadcrumbs__link::after {
  content: "";
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8px;
  height: 16px;
  background: url(../assets/weui_arrow-filled.svg) center/cover;
  -webkit-filter: brightness(0%);
          filter: brightness(0%);
}
.breadcrumbs__current {
  color: #242424;
}

.product-info__title {
  margin: 0 0 40px;
  text-align: left;
}
@media (max-width: 1024px) {
  .product-info__title {
    margin-bottom: 24px;
  }
}
@media (max-width: 576px) {
  .product-info__title {
    margin-bottom: 16px;
  }
}
.product-info__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 68px 132px;
}
@media (max-width: 1400px) {
  .product-info__wrapper {
    gap: 24px;
  }
}
.product-info__gallery {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(54% - 66px);
          flex: 0 1 calc(54% - 66px);
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  padding: 20px 0 0;
}
@media (max-width: 1400px) {
  .product-info__gallery {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(54% - 12px);
            flex: 0 1 calc(54% - 12px);
  }
}
@media (max-width: 1024px) {
  .product-info__gallery {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    padding: 0;
  }
}
.product-info__gallery .swiper {
  max-width: 100%;
}
.product-info__gallery-main {
  display: grid;
  margin: 0 0 6px;
}
.product-info__gallery-thumbs {
  position: relative;
  display: grid;
  padding: 0 22px;
}
@media (max-width: 1024px) {
  .product-info__gallery-thumbs {
    padding: 0;
  }
}
.product-info__gallery-thumbs-prev, .product-info__gallery-thumbs-next {
  position: absolute;
  top: 50%;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  aspect-ratio: 1/1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 40px;
  background-color: #ffffff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
@media (max-width: 1024px) {
  .product-info__gallery-thumbs-prev, .product-info__gallery-thumbs-next {
    display: none;
  }
}
.product-info__gallery-thumbs-prev::before, .product-info__gallery-thumbs-next::before {
  content: "";
  display: block;
  width: 12px;
  height: 24px;
  background: url(/assets/weui_arrow-filled.svg) center/cover no-repeat;
  -webkit-filter: brightness(0%);
          filter: brightness(0%);
}
.product-info__gallery-thumbs-prev {
  left: 0;
}
.product-info__gallery-thumbs-prev::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.product-info__gallery-thumbs-next {
  right: 0;
}
.product-info__gallery-thumbs .swiper-slide {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 6px;
}
.product-info__gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  border: 1px solid rgba(0, 0, 0, 0.4);
}
.product-info__gallery-slide-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.product-info__gallery-thumbs .product-info__gallery-slide-image {
  display: block;
  max-width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-info__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(46% - 66px);
          flex: 0 1 calc(46% - 66px);
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  overflow: hidden;
}
@media (max-width: 1400px) {
  .product-info__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(46% - 12px);
            flex: 0 1 calc(46% - 12px);
  }
}
@media (max-width: 1024px) {
  .product-info__info {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.product-info__info-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 14px;
}
.product-info__info-price {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: #242424;
}
@media (max-width: 576px) {
  .product-info__info-price {
    font-size: 18px;
  }
}
.product-info__info-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 120px;
  gap: 4px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  background-color: #f8f8f8;
}
.product-info__info-quantity-plus, .product-info__info-quantity-minus {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 9px;
  height: 18px;
  padding: 0;
  border: none;
  background: url(../assets/weui_arrow-filled.svg) center/cover no-repeat;
  -webkit-transition-property: -webkit-filter;
  transition-property: -webkit-filter;
  transition-property: filter;
  transition-property: filter, -webkit-filter;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-filter: brightness(0%);
          filter: brightness(0%);
  cursor: pointer;
}
.product-info__info-quantity-plus:hover, .product-info__info-quantity-minus:hover {
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
}
.product-info__info-quantity-minus {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.product-info__info-quantity-count {
  display: block;
  width: 32px;
  padding: 0 !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #242424;
  text-align: center;
  border: none;
  outline: none;
  min-height: unset !important;
  background: rgba(255, 255, 255, 0);
  -webkit-appearance: textfield;
          appearance: textfield;
  -moz-appearance: textfield;
}
.product-info__info-quantity-count::-webkit-outer-spin-button, .product-info__info-quantity-count::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-info__info-add {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.product-info__info-add-button {
  padding: 13px 14px 14px;
  font-size: 13px;
  letter-spacing: -0.04em;
}
.product-info__info-details {
  margin: 0 0 30px;
}
@media (max-width: 576px) {
  .product-info__info-details {
    margin-bottom: 26px;
  }
}
.product-info__info-details_secondary {
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  background-color: #f8f8f8;
}
.product-info__info-details-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4px;
  max-width: 100%;
  font-weight: 500;
  font-size: 15px;
  line-height: 200%;
}
@media (max-width: 1024px) {
  .product-info__info-details-item {
    font-size: 14px;
    line-height: 214%;
  }
}
@media (max-width: 576px) {
  .product-info__info-details-item {
    gap: 8px;
  }
}
.product-info__info-details-item-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  gap: 4px;
  color: rgba(36, 36, 36, 0.6);
}
.product-info__info-details-item-name-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.product-info__info-details-item-name::after {
  content: ".................................................................................................................................................................................................................................................................................................";
  display: block;
  max-height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 10 auto;
          flex: 0 10 auto;
  overflow: hidden;
  color: rgba(36, 36, 36, 0.6);
  word-break: break-word;
}
.product-info__info-details-item-value {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #242424;
}
.product-info__info-table {
  min-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  caption-side: bottom;
  border-collapse: collapse;
}
.product-info__info-table > :not(caption) > * > * {
  padding: 20px 24px;
  border-bottom-width: 0px;
}
.product-info__info-table > tbody {
  vertical-align: inherit;
  background-color: #f8f8f8;
}
.product-info__info-table > tbody > tr > td {
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
  text-align: center;
  color: #242424;
}
.product-info__info-table > tbody > tr > td:first-child {
  text-align: left;
}
.product-info__info-table > tbody > tr > td:last-child {
  text-align: right;
}
.product-info__info-table > thead {
  vertical-align: bottom;
}
.product-info__info-table > thead > tr > th {
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  background-color: #3758a1;
}
.product-info__info-table > thead > tr > th:first-child {
  text-align: left;
  border-radius: 6px 0 0 6px;
}
.product-info__info-table > thead > tr > th:last-child {
  text-align: right;
  border-radius: 0 6px 6px 0;
}
.product-info__info-table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.product-info__info-drawing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 576px) {
  .product-info__info-drawing {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.product-info__info-drawing-image {
  display: block;
  max-width: 100%;
  height: auto;
}
.product-info__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(54% - 66px);
          flex: 0 1 calc(54% - 66px);
  gap: 10px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 1400px) {
  .product-info__details {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(54% - 12px);
            flex: 0 1 calc(54% - 12px);
  }
}
@media (max-width: 1024px) {
  .product-info__details {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.product-info__details-item {
  padding: 44px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
@media (max-width: 1024px) {
  .product-info__details-item {
    padding: 32px;
  }
}
@media (max-width: 576px) {
  .product-info__details-item {
    padding: 24px;
  }
}
.product-info__details-item-title {
  margin: 0 0 14px;
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #3758a1;
}
@media (max-width: 576px) {
  .product-info__details-item-title {
    margin-bottom: 10px;
    font-size: 20px;
  }
}
.product-info__details-item-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 137%;
  color: rgba(36, 36, 36, 0.8);
}
@media (max-width: 576px) {
  .product-info__details-item-text {
    font-size: 14px;
  }
}
.product-info__advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(46% - 66px);
          flex: 0 1 calc(46% - 66px);
  gap: 10px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (max-width: 1400px) {
  .product-info__advantages {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(46% - 12px);
            flex: 0 1 calc(46% - 12px);
  }
}
@media (max-width: 1024px) {
  .product-info__advantages {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.product-info__advantages-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.3333333333% - 6.6666666667px);
          flex: 0 0 calc(33.3333333333% - 6.6666666667px);
  gap: 8px;
  min-height: 200px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  background-color: #f8f8f8;
}
@media (max-width: 576px) {
  .product-info__advantages-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 5px);
            flex: 0 0 calc(50% - 5px);
    min-height: 164px;
  }
}
.product-info__advantages-item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 1/1;
}
.product-info__advantages-item-icon-image {
  display: block;
  max-width: 100%;
  width: 115px;
  height: auto;
}
@media (max-width: 576px) {
  .product-info__advantages-item-icon-image {
    width: 80px;
  }
}
.product-info__advantages-item-text {
  font-weight: 500;
  font-size: 15px;
  line-height: 200%;
  text-align: center;
  color: #242424;
}
@media (max-width: 576px) {
  .product-info__advantages-item-text {
    font-size: 14px;
  }
}

.cart__title {
  margin: 0 0 40px;
  text-align: left;
}
@media (max-width: 1024px) {
  .cart__title {
    margin-bottom: 24px;
  }
}
@media (max-width: 576px) {
  .cart__title {
    margin-bottom: 16px;
  }
}
.cart__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.cart__main {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 382px);
          flex: 0 0 calc(100% - 382px);
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
@media (max-width: 1400px) {
  .cart__main {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 310px);
            flex: 0 0 calc(100% - 310px);
  }
}
@media (max-width: 1024px) {
  .cart__main {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.cart__main-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 14px 24px;
  margin: 0 0 10px;
  padding: 30px 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  background-color: #f8f8f8;
}
@media (max-width: 1024px) {
  .cart__main-login {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 24px;
  }
}
.cart__main-login-info-title, .cart__main-login-info-text {
  font-size: 15px;
  line-height: 200%;
}
@media (max-width: 1024px) {
  .cart__main-login-info-title, .cart__main-login-info-text {
    font-size: 14px;
    line-height: 160%;
  }
}
.cart__main-login-info-title {
  font-weight: 600;
  text-transform: uppercase;
  color: #242424;
}
.cart__main-login-info-text {
  font-weight: 500;
  color: rgba(36, 36, 36, 0.8);
}
.cart__main-login-button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (max-width: 576px) {
  .cart__main-login-button {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    font-size: 14px;
  }
}
.cart__main-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2px;
}
.cart__main-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  gap: 20px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
@media (max-width: 1024px) {
  .cart__main-list-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
  }
}
.cart__main-list-item-figure {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  border-radius: 6px;
}
@media (max-width: 1024px) {
  .cart__main-list-item-figure {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
  }
}
.cart__main-list-item-figure-image {
  display: block;
  max-width: 100%;
  height: auto;
}
.cart__main-list-item-info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media (max-width: 1024px) {
  .cart__main-list-item-info {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(100% - 100px);
            flex: 1 1 calc(100% - 100px);
  }
}
.cart__main-list-item-info-title {
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 137%;
  color: #242424;
}
.cart__main-list-item-info-details-item-name, .cart__main-list-item-info-details-item-value {
  font-weight: 600;
  font-size: 12px;
  line-height: 167%;
}
.cart__main-list-item-info-details-item-name {
  color: rgba(36, 36, 36, 0.6);
}
.cart__main-list-item-info-details-item-value {
  color: #242424;
}
.cart__main-list-item-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 5 530px;
          flex: 0 5 530px;
  gap: 10px;
}
.cart__main-list-item-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 80px;
  width: 100%;
  gap: 4px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  background-color: #f8f8f8;
}
.cart__main-list-item-quantity-plus, .cart__main-list-item-quantity-minus {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 9px;
  height: 18px;
  padding: 0;
  border: none;
  background: url(../assets/weui_arrow-filled.svg) center/cover no-repeat;
  -webkit-transition-property: -webkit-filter;
  transition-property: -webkit-filter;
  transition-property: filter;
  transition-property: filter, -webkit-filter;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-filter: brightness(0%);
          filter: brightness(0%);
  cursor: pointer;
}
.cart__main-list-item-quantity-plus:hover, .cart__main-list-item-quantity-minus:hover {
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
}
.cart__main-list-item-quantity-plus {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.cart__main-list-item-quantity-count {
  display: block;
  width: 32px;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #242424;
  text-align: center;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0);
  -webkit-appearance: textfield;
          appearance: textfield;
  -moz-appearance: textfield;
}
.cart__main-list-item-quantity-count::-webkit-outer-spin-button, .cart__main-list-item-quantity-count::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}
.cart__main-list-item-price, .cart__main-list-item-total {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 10%;
          flex: 1 0 10%;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: #242424;
  text-align: center;
}
@media (max-width: 1024px) {
  .cart__main-list-item-price, .cart__main-list-item-total {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .cart__main-list-item-price, .cart__main-list-item-total {
    font-size: 16px;
  }
}
.cart__main-list-item-delete {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.cart__main-list-item-delete-button {
  display: block;
  width: 30px;
  padding: 0;
  aspect-ratio: 1/1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  background: url(../assets/delete-outline.svg) center/cover no-repeat;
  cursor: pointer;
}
.cart__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 372px;
          flex: 0 0 372px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 44px 36px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
  background-color: #f8f8f8;
}
@media (max-width: 1400px) {
  .cart__details {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
    padding: 32px;
  }
}
@media (max-width: 1024px) {
  .cart__details {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 24px;
  }
}
.cart__details-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  padding: 0 0 24px;
  margin: 0 0 24px;
  list-style-type: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.cart__details-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
.cart__details-list-item-name, .cart__details-list-item-value {
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .cart__details-list-item-name, .cart__details-list-item-value {
    font-size: 14px;
  }
}
.cart__details-list-item-name {
  color: rgba(36, 36, 36, 0.6);
}
.cart__details-list-item-value {
  text-align: right;
  color: #242424;
}
.cart__details-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
.cart__details-total-name, .cart__details-total-value {
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
  text-transform: uppercase;
  color: #242424;
}
@media (max-width: 576px) {
  .cart__details-total-name, .cart__details-total-value {
    font-size: 14px;
  }
}
.cart__details-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 24px 0 0;
}
.cart__details-order-button {
  width: 100%;
}
.cart__personal {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 382px);
          flex: 0 0 calc(100% - 382px);
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 90px 0 0;
}
@media (max-width: 1400px) {
  .cart__personal {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 310px);
            flex: 0 0 calc(100% - 310px);
  }
}
@media (max-width: 1024px) {
  .cart__personal {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 60px;
  }
}
@media (max-width: 576px) {
  .cart__personal {
    margin-top: 30px;
  }
}
.cart__personal-title {
  margin: 0 0 60px;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #242424;
}
@media (max-width: 1024px) {
  .cart__personal-title {
    margin-bottom: 40px;
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .cart__personal-title {
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 130%;
  }
}
.cart__personal-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 1024px) {
  .cart__personal-form {
    gap: 14px;
  }
}
.cart__personal-form-fieldset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 500px;
          flex: 0 1 500px;
  gap: 14px;
  max-width: calc(50% - 15px);
  margin: 0;
  padding: 0;
  border: none;
}
@media (max-width: 1400px) {
  .cart__personal-form-fieldset {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 15px);
            flex: 0 0 calc(50% - 15px);
  }
}
@media (max-width: 1024px) {
  .cart__personal-form-fieldset {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    max-width: none;
  }
}
.cart__personal-form-fieldset-title {
  margin: 30px 0 16px;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #242424;
}
@media (max-width: 1024px) {
  .cart__personal-form-fieldset-title {
    margin: 16px 0 10px;
  }
}

.cart-thanks__wrapper {
  padding: 132px 0 36px;
}
@media (max-width: 1024px) {
  .cart-thanks__wrapper {
    padding: 120px 0 26px;
  }
}
@media (max-width: 576px) {
  .cart-thanks__wrapper {
    padding: 104px 0 16px;
  }
}
.cart-thanks__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 70px;
}
@media (max-width: 1024px) {
  .cart-thanks__icon {
    margin-bottom: 56px;
  }
}
@media (max-width: 576px) {
  .cart-thanks__icon {
    margin-bottom: 40px;
  }
}
.cart-thanks__icon-image {
  display: block;
  max-width: 100%;
  width: 80px;
  height: auto;
}
@media (max-width: 1024px) {
  .cart-thanks__icon-image {
    width: 70px;
  }
}
@media (max-width: 576px) {
  .cart-thanks__icon-image {
    width: 60px;
  }
}
.cart-thanks__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 40px;
  line-height: 125%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #242424;
}
@media (max-width: 1024px) {
  .cart-thanks__title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .cart-thanks__title {
    font-size: 24px;
  }
}
.cart-thanks__text {
  max-width: 474px;
  margin: 0 auto;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.04em;
  text-align: center;
  color: #242424;
}
@media (max-width: 1024px) {
  .cart-thanks__text {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .cart-thanks__text {
    font-size: 16px;
  }
}

.registration-successful__wrapper {
  padding: 132px 0 36px;
}
@media (max-width: 1024px) {
  .registration-successful__wrapper {
    padding: 120px 0 26px;
  }
}
@media (max-width: 576px) {
  .registration-successful__wrapper {
    padding: 104px 0 16px;
  }
}
.registration-successful__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 70px;
}
@media (max-width: 1024px) {
  .registration-successful__icon {
    margin-bottom: 56px;
  }
}
@media (max-width: 576px) {
  .registration-successful__icon {
    margin-bottom: 40px;
  }
}
.registration-successful__icon-image {
  display: block;
  max-width: 100%;
  width: 80px;
  height: auto;
}
@media (max-width: 1024px) {
  .registration-successful__icon-image {
    width: 70px;
  }
}
@media (max-width: 576px) {
  .registration-successful__icon-image {
    width: 60px;
  }
}
.registration-successful__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 40px;
  line-height: 125%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #242424;
}
@media (max-width: 1024px) {
  .registration-successful__title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .registration-successful__title {
    font-size: 24px;
  }
}
.registration-successful__text {
  max-width: 862px;
  margin: 0 auto;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.04em;
  text-align: center;
  color: #242424;
}
@media (max-width: 1024px) {
  .registration-successful__text {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .registration-successful__text {
    font-size: 16px;
  }
}

.sign-in__title {
  margin: 58px 0 34px;
  text-align: center;
}
@media (max-width: 1024px) {
  .sign-in__title {
    margin: 32px 0;
  }
}
@media (max-width: 576px) {
  .sign-in__title {
    margin: 24px 0;
    text-align: left;
  }
}
.sign-in__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .sign-in__form {
    max-width: none;
  }
}
.sign-in__form-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 13px 24px;
  margin: 2px 0 12px;
  padding: 0;
  border: none;
}
.sign-in__form-links-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: -0.04em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #3758a1;
}
.sign-in__form-submit-button {
  min-height: 60px;
  width: 100%;
}

.create-account__title {
  margin: 58px 0 34px;
  text-align: center;
}
@media (max-width: 1024px) {
  .create-account__title {
    margin: 32px 0;
  }
}
@media (max-width: 576px) {
  .create-account__title {
    margin: 24px 0;
    text-align: left;
  }
}
.create-account__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .create-account__form {
    max-width: none;
  }
}
.create-account__form-submit-button {
  min-height: 60px;
  width: 100%;
}

.contacts__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 58px;
}
@media (max-width: 1400px) {
  .contacts__wrapper {
    gap: 50px 24px;
  }
}
@media (max-width: 1024px) {
  .contacts__wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.contacts__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 962px;
          flex: 0 1 962px;
  gap: 20px;
}
@media (max-width: 1024px) {
  .contacts__info {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.contacts__info-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.contacts__info-links-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #242424;
}
.contacts__info-links-item::before {
  content: "";
  display: block;
  width: 50px;
  aspect-ratio: 1/1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid rgba(36, 36, 36, 0.1);
  border-radius: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
  background-color: #f8f8f8;
}
.contacts__info-links-item_location::before {
  background-image: url(../assets/bxs_map.svg);
}
.contacts__info-links-item_email::before {
  background-image: url(../assets/mdi_email.svg);
}
.contacts__info-links-item_phone::before {
  background-image: url(../assets/mdi_phone.svg);
}
.contacts__info-map iframe {
  width: 100%;
  height: 321px;
}
.contacts__callback {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 500px;
          flex: 0 1 500px;
}
@media (max-width: 1024px) {
  .contacts__callback {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.contacts__callback-title {
  margin: 0 0 30px;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #242424;
}
@media (max-width: 1024px) {
  .contacts__callback-title {
    margin-bottom: 24px;
  }
}
.contacts__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.contacts__form-checkbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin: 24px 0 0;
}
.contacts__form-checkbox::before {
  content: "";
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: #f5f5f5;
  -webkit-transition: background-color ease-out 0.2s;
  transition: background-color ease-out 0.2s;
  cursor: pointer;
}
.contacts__form-checkbox:has(input:checked)::before {
  background: url(../assets/mdi_tick.svg) center/24px no-repeat;
  background-color: #3758a1;
}
.contacts__form-checkbox-input {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}
.contacts__form-checkbox-link {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.04em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-align: center;
  color: rgba(36, 36, 36, 0.6);
}
@media (max-width: 576px) {
  .contacts__form-checkbox-link {
    font-size: 13px;
  }
}
.contacts__form-submit-button {
  min-height: 60px;
  width: 100%;
}

.footer__main {
  padding: 60px 0 56px;
  background-color: #f8f8f8;
}
@media (max-width: 1024px) {
  .footer__main {
    padding: 43px 0 27px;
  }
}
.footer__main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
}
@media (max-width: 1024px) {
  .footer__main-wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__main-logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.footer__main-logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__main-logo-link-image {
  display: block;
  max-width: 100%;
  width: 100px;
  height: auto;
}
.footer__main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  gap: 20px;
}
@media (max-width: 1024px) {
  .footer__main-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__main-nav-link {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #242424;
  -webkit-transition: color ease-out 0.2s;
  transition: color ease-out 0.2s;
}
.footer__main-nav-link:hover {
  color: #3758a1;
}
.footer__main-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (max-width: 1024px) {
  .footer__main-contacts {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-ordinal-group: 21;
        -ms-flex-order: 20;
            order: 20;
    gap: 14px;
  }
}
.footer__main-contacts-location, .footer__main-contacts-email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: rgba(36, 36, 36, 0.8);
}
@media (max-width: 1024px) {
  .footer__main-contacts-location, .footer__main-contacts-email {
    text-align: center;
  }
}
.footer__main-contacts-location::before, .footer__main-contacts-email::before {
  content: "";
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 18px;
  aspect-ratio: 1/1;
}
@media (max-width: 1024px) {
  .footer__main-contacts-location::before, .footer__main-contacts-email::before {
    display: none;
  }
}
.footer__main-contacts-location::before {
  background: url(../assets/bxs_map.svg) center/cover no-repeat;
}
.footer__main-contacts-email {
  -webkit-transition: color ease-out 0.2s;
  transition: color ease-out 0.2s;
}
.footer__main-contacts-email:hover {
  color: #3758a1;
}
.footer__main-contacts-email::before {
  background: url(../assets/mdi_email.svg) center/cover no-repeat;
}
.footer__main-callback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  gap: 10px;
}
@media (max-width: 576px) {
  .footer__main-callback {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__main-callback-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  letter-spacing: 0.02em;
  color: #242424;
}
.footer__main-callback-phone::before {
  content: "";
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 18px;
  aspect-ratio: 1/1;
  background: url(../assets/mdi_phone.svg) center/cover no-repeat;
}
.footer__info {
  padding: 27px 0 30px;
  background-color: #3758a1;
}
@media (max-width: 1024px) {
  .footer__info {
    padding: 31px 0;
  }
}
.footer__info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}
@media (max-width: 1024px) {
  .footer__info-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__info-link {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  color: #fff;
}
.footer__info-link:hover {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.footer__info-copyright {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  color: #fff;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: background-color ease-in-out 0.4s;
  transition: background-color ease-in-out 0.4s;
  pointer-events: none;
}
.modal.active {
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal__body {
  display: block;
  max-width: 755px;
  max-height: 90vh;
  width: calc(100% - 36px);
  height: 584px;
  padding: 70px 87px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  background-color: #ffffff;
  -webkit-transform: translateY(-120vh);
          transform: translateY(-120vh);
  -webkit-transition: -webkit-transform ease-in-out 0.4s;
  transition: -webkit-transform ease-in-out 0.4s;
  transition: transform ease-in-out 0.4s;
  transition: transform ease-in-out 0.4s, -webkit-transform ease-in-out 0.4s;
}
@media (max-width: 1024px) {
  .modal__body {
    padding: 60px 24px;
  }
}
@media (max-width: 576px) {
  .modal__body {
    padding: 50px 16px;
    height: auto;
  }
}
.modal.active .modal__body {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.modal__close {
  position: absolute;
  top: 32px;
  right: 32px;
  display: block;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: url(../assets/ic_round-close.svg) center/cover no-repeat;
  -webkit-filter: brightness(10%);
          filter: brightness(10%);
  cursor: pointer;
}
@media (max-width: 576px) {
  .modal__close {
    top: 10px;
    right: 10px;
  }
}
.modal__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: auto;
}

.modal-thanks__figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 80px;
}
.modal-thanks__figure-image {
  display: block;
  max-width: 100%;
  width: 80px;
  height: auto;
}
@media (max-width: 576px) {
  .modal-thanks__figure-image {
    width: 56px;
  }
}
.modal-thanks__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 40px;
  line-height: 125%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #242424;
}
@media (max-width: 576px) {
  .modal-thanks__title {
    margin-bottom: 12px;
    font-size: 30px;
  }
}
.modal-thanks__text {
  font-weight: 400;
  font-size: 30px;
  line-height: 133%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #242424;
}
@media (max-width: 576px) {
  .modal-thanks__text {
    font-size: 16px;
  }
}

.modal-callback__title {
  margin: 0 0 24px;
  font-weight: 700;
  font-size: 40px;
  line-height: 125%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #242424;
}
@media (max-width: 1024px) {
  .modal-callback__title {
    margin-bottom: 32px;
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .modal-callback__title {
    margin-bottom: 27px;
    font-size: 24px;
  }
}
.modal-callback__title em {
  font-weight: 400;
  font-style: normal;
}
.modal-callback__form {
  max-width: 380px;
  margin: 0 auto;
}
.modal-callback__form fieldset {
  margin: 0;
  padding: 0;
  border: none;
}
.modal-callback__form-input {
  margin: 0 0 10px !important;
}
.modal-callback__form-checkbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin: 10px 0 24px;
}
.modal-callback__form-checkbox::before {
  content: "";
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: #f5f5f5;
  -webkit-transition: background-color ease-out 0.2s;
  transition: background-color ease-out 0.2s;
  cursor: pointer;
}
.modal-callback__form-checkbox:has(input:checked)::before {
  background: url(../assets/mdi_tick.svg) center/24px no-repeat;
  background-color: #3758a1;
}
.modal-callback__form-checkbox-input {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}
.modal-callback__form-checkbox-link {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.04em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-align: center;
  color: rgba(36, 36, 36, 0.6);
}
@media (max-width: 576px) {
  .modal-callback__form-checkbox-link {
    font-size: 13px;
  }
}
.modal-callback__form-submit-button {
  width: 100%;
  padding: 23px 32px;
}

/* VIRI */
.input-with-suffix {
  position: relative;
  display: inline-block;
  width: 100%;
}

.input-with-suffix input {
  padding-right: 3em; /* space for the suffix */
  box-sizing: border-box;
  width: 100%;
  height: 2em;
}

.input-with-suffix .suffix {
  position: absolute;
  right: 0.75em;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #666;
  font-size: 0.9em;
}

input[type="file"] {
  display: inline-block;
  padding: 14px 26px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #242424;
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 4px;
  cursor: pointer;
  transition: border 0.2s ease-out;
}

input[type="file"]:hover {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

input[type="file"]::file-selector-button {
  padding: 10px 20px;
  border: none;
  background-color: #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
}

input[type="file"]::file-selector-button:hover {
  background-color: #d5d5d5;
}

.remove-discount {
  display: inline-block;
  padding: 10px 18px;
  margin-top: 10px;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 500;
  background-color: #ffecec;
  color: #c0392b;
  border: 1px solid #f5c6c6;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease-out, border 0.2s ease-out;
}

.remove-discount:hover {
  background-color: #ffdede;
  border-color: #e0a1a1;
}

button,
.button {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  background-color: #2c7be5;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease-out;
}

button:hover,
.button:hover {
  background-color: #1a5fc4;
}

.discount-row{padding-bottom: 2em;}

/* Table container styling */
.table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
}

/* Table base styling */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff; /* White background */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Table header */
table thead {
    background-color: #4a90e2; /* Blue header */
    color: #fff;
}

/* Header cells */
table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #ccc;
}

/* Table body rows */
table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

/* Zebra striping */
table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hover effect */
table > tbody > tr:hover {
    background-color: #f1f1f1;
}

/* Responsive text */
table th, table td {
    font-size: 14px;
}

/* Optional: rounded corners on the first and last cells */
table th:first-child,
table td:first-child {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

table th:last-child,
table td:last-child {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.discount-pair input {
  min-height: unset;
  width: unset !important;
  padding: unset;
  font-size: unset;
}

.post_content{font-size:18px; line-height: 140%;}
