@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Russo+One&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
:root {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  background: #150704;
}

a {
  text-decoration: none;
}

* {
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
}

.section {
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}
.container_unlimited {
  padding: 0;
}
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

.m-t {
  margin-top: clamp(15px, 5vw + 10px, 108px);
}

.mb-max {
  margin-bottom: clamp(60px, 8vw + 20px, 150px);
}

.mb {
  margin-bottom: clamp(50px, 5vw + 10px, 80px);
}

.header {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid #8A8381;
  position: sticky;
  top: -1px;
  background: #150704;
  z-index: 100;
}
@media (min-width: 1000px) {
  .header {
    border-bottom: none;
    padding-top: 30px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  row-gap: 10px;
  -moz-column-gap: 13px;
  column-gap: 13px;
}
@media (min-width: 768px) {
  .header__inner {
    flex-direction: row;
    align-items: center;
  }
}
.header__left {
  display: flex;
  -moz-column-gap: 13px;
  column-gap: 13px;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .header__left {
    justify-content: unset;
  }
}
.header__right {
  display: flex;
  -moz-column-gap: 13px;
  column-gap: 13px;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .header__right {
    justify-content: unset;
  }
}

.logo img {
  width: 126px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 768px) {
  .logo img {
    width: 270px;
    height: 55px;
  }
}

h1, h2, h3, h4, h5 {
  margin: 0;
}

.h1 {
  font-weight: 900;
  color: white;
  font-size: clamp(40px, 5vw + 20px, 65px);
  line-height: clamp(40px, 5vw + 20px, 65px);
}

.h2 {
  font-weight: 900;
  color: white;
  font-size: clamp(32px, 2vw + 20px, 40px);
  line-height: clamp(32px, 2vw + 20px, 40px);
}

.h4 {
  font-weight: bold;
  font-size: 20px;
  color: white;
}
@media (min-width: 768px) {
  .h4 {
    font-size: 24px;
    line-height: 30px;
  }
}

.text {
  font-size: 16px;
  color: white;
  line-height: 24px;
  font-weight: 400;
}

.info-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}
@media (min-width: 1000px) {
  .info-block {
    flex-direction: row;
    gap: 60px;
  }
}
.info-block .h2 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: title;
}
@media (min-width: 1000px) {
  .info-block .h2 {
    margin-bottom: 40px;
  }
}
.info-block .text {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: text;
}
@media (min-width: 1000px) {
  .info-block .text {
    margin-bottom: 30px;
  }
}
.info-block .price-box {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: price;
}
.info-block__btn {
  -ms-grid-row: 4;
  -ms-grid-column: 3;
  -ms-grid-row: 9;
  -ms-grid-column: 1;
  grid-area: btn;
}
.info-block__img-wrapper {
  -ms-grid-row: 1;
  -ms-grid-row-span: 4;
  -ms-grid-column: 1;
  -ms-grid-row: 7;
  -ms-grid-column: 1;
  grid-area: img;
}
.info-block_grid {
  display: grid;
  justify-items: center;
  row-gap: 30px;
  grid-template-areas: "title" "text" "price" "img" "btn";
}
@media (min-width: 1000px) {
  .info-block_grid {
    row-gap: 0px;
  }
}
@media (min-width: 1000px) {
  .info-block_grid {
    justify-items: start;
    grid-template-areas: "img title" "img text" "img price" "img btn";
    -moz-column-gap: 60px;
    column-gap: 60px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .info-block {
    text-align: left;
  }
}
.info-block__content .h1 {
  margin-bottom: 20px;
}
@media (min-width: 1000px) {
  .info-block__content .h1 {
    margin-bottom: clamp(20px, 5vw + 20px, 70px);
  }
}
.info-block__content .h4 {
  margin-bottom: 20px;
}
@media (min-width: 1000px) {
  .info-block__content .h4 {
    margin-bottom: 24px;
  }
}
@media (min-width: 1000px) {
  .info-block__content {
    max-width: 592px;
  }
}
.info-block__img {
  max-height: 340px;
  max-width: 790px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
  width: 100%;
}
@media (min-width: 1000px) {
  .info-block__img {
    max-height: 562px;
  }
}
.info-block__img-wrapper {
  position: relative;
  padding: 10px;
  min-width: 50%;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1000px) {
  .info-block__img-wrapper {
    padding: 24px;
  }
}
.info-block__img-wrapper::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 35%;
  border-radius: 0 0 38px 0;
  display: block;
  bottom: 0;
  right: 0;
  border: 2px solid #8E1919;
  border-top: transparent;
  border-left: transparent;
}
.info-block__img-wrapper::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 35%;
  border-radius: 38px 0 0 0;
  display: block;
  left: 0;
  top: 0;
  border: 2px solid #8E1919;
  border-bottom: transparent;
  border-right: transparent;
}
.info-block-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  justify-content: space-between;
}
.info-block-box__btn {
  width: 100%;
}
@media (min-width: 1000px) {
  .info-block-box__btn {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.price-box {
  display: flex;
  flex-direction: column;
}
.price-box__text {
  font-size: clamp(47px, 5vw + 30px, 95px);
  color: white;
  font-weight: 900;
  line-height: 1;
}
.price-box__text_old {
  text-decoration: line-through;
  font-size: clamp(26px, 3vw + 20px, 53px);
  line-height: 1;
}

.instruction-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 40px;
}
@media (min-width: 768px) {
  .instruction-block {
    row-gap: 72px;
    border-radius: 60px;
  }
}
.instruction-block__title {
  font-size: clamp(30px, 4vw + 20px, 50px);
  color: white;
  font-weight: bold;
}
.instruction-block__content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: start;
  -moz-column-gap: 70px;
  column-gap: 70px;
  row-gap: 30px;
}
@media (min-width: 1100px) {
  .instruction-block__content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.instruction-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 395px;
}
.instruction-item__heading {
  display: flex;
  -moz-column-gap: 15px;
  column-gap: 15px;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .instruction-item__heading {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
  }
}
.instruction-item__text {
  text-align: center;
}
.instruction-item__img {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 290px;
  width: 100%;
  max-height: 300px;
}
@media (min-width: 768px) {
  .instruction-item__img {
    max-height: unset;
  }
}
.instruction-item__number {
  padding: 15px 20px;
  background: rgb(212, 73, 42);
  font-size: 25px;
  color: white;
  border-radius: 10px;
  font-weight: 900;
  line-height: 1;
}
@media (min-width: 768px) {
  .instruction-item__number {
    font-size: 30px;
  }
}
.instruction-item__title {
  font-size: 20px;
  color: white;
  font-weight: 900;
}
@media (min-width: 768px) {
  .instruction-item__title {
    font-size: 30px;
  }
}

.cena {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
  align-items: center;
}
.cena__main {
  display: flex;
  -moz-column-gap: 10px;
  column-gap: 10px;
  overflow-x: auto;
  width: 100%;
  padding-bottom: 20px;
}
.cena__main::-webkit-scrollbar {
  height: 5px;
}
.cena__main::-webkit-scrollbar-track {
  background: transparent; /* Цвет фона трека */
}
.cena__main::-webkit-scrollbar-thumb {
  background: #8A8381; /* Цвет самого ползунка */
  border-radius: 10px; /* Закругление углов ползунка */
}
@media (min-width: 1000px) {
  .cena__main {
    -moz-column-gap: 0px;
    column-gap: 0px;
  }
}
.cena-item {
  flex-shrink: 0;
  border-radius: 30px;
  background: white;
  border: 3px solid #D4492A;
  padding: 30px;
  width: 240px;
}
.cena-item__header {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media (min-width: 768px) {
  .cena-item__header {
    row-gap: 20px;
  }
}
.cena-item_accent {
  background: #D4492A;
  color: white;
}
.cena-item_accent .accent-btn {
  background: white;
  color: #D4492A;
}
.cena-item_accent .accent-btn:hover {
  border-color: white;
  background: #D4492A;
  color: white;
}
.cena-item_accent .cena-item__price-box {
  color: white;
}
@media (min-width: 1000px) {
  .cena-item {
    margin-top: 40px;
  }
  .cena-item:nth-child(2) {
    margin-top: 0;
    margin-bottom: 40px;
  }
}
.cena-item ul {
  max-width: 300px;
  justify-self: center;
  text-align: center;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .cena-item {
    padding: 60px 32px;
    width: 440px;
  }
}
.cena-item__title {
  text-align: center;
  padding: 15px 20px;
  border-radius: 10px;
  background: rgb(251, 237, 234);
  color: rgb(0, 0, 0);
  font-size: 20px;
  font-weight: 900;
}
@media (min-width: 768px) {
  .cena-item__title {
    font-size: 30px;
  }
}
.cena-item__price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5px;
  color: rgb(0, 0, 0);
  font-weight: 600;
  font-size: 20px;
}
@media (min-width: 1000px) {
  .cena-item__price-box {
    font-size: 30px;
  }
}
.cena-item__price-box span {
  font-weight: 500;
  font-size: 16px;
}
@media (min-width: 1000px) {
  .cena-item__price-box span {
    font-size: 22px;
  }
}
.cena__title {
  color: white;
  font-weight: bold;
  font-size: clamp(30px, 4vw + 20px, 50px);
}

.footer {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .footer {
    padding: 60px 0;
  }
}
.footer__inner {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (min-width: 768px) {
  .footer__inner {
    row-gap: 30px;
  }
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .footer__top {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
}
.footer__text {
  color: white;
  font-size: 14px;
}
@media (min-width: 768px) {
  .footer__text {
    font-size: 16px;
  }
}

.copyright {
  color: white;
  font-size: 12px;
  align-self: end;
}
@media (min-width: 768px) {
  .copyright {
    font-size: 14px;
  }
}

.banner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-img {
  max-width: 1053px;
  width: 100%;
  display: none;
}
@media (min-width: 768px) {
  .banner-img {
    display: block;
  }
}
.banner-img_mob {
  display: block;
}
@media (min-width: 768px) {
  .banner-img_mob {
    display: none;
  }
}

.form-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column-reverse;
  gap: 45px;
}
@media (min-width: 768px) {
  .form-block {
    flex-direction: row;
  }
}
.form-block__img {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 637px;
  max-height: 454px;
  width: 100%;
  min-width: 0;
}
@media (min-width: 768px) {
  .form-block__img {
    max-height: unset;
  }
}

.form {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 40px 20px;
  border-radius: 20px;
  background: white;
  border: 1px solid #D4492A;
  max-width: 565px;
}
@media (min-width: 768px) {
  .form {
    border: 2px solid #D4492A;
    row-gap: 30px;
    padding: 40px;
    border-radius: 30px;
  }
}
.form__title {
  color: black;
  font-size: 18px;
  font-weight: 900;
}
@media (min-width: 1000px) {
  .form__title {
    font-size: 30px;
  }
}
.form__main {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.form__btn {
  width: 100%;
}

.checkbox {
  display: flex;
  -moz-column-gap: 14px;
  column-gap: 14px;
  padding: 10px 0;
  color: #A19C9B;
  font-size: 14px;
  cursor: pointer;
}
.accent-btn {
  display: block;
  padding: 27px;
  background: #D4492A;
  color: white;
  border-radius: 15px;
  cursor: pointer;
  text-align: center;
  border: none;
  border: 1px solid #D4492A;
  transition: 0.3s;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
}
.accent-btn:active {
  background: #D4492A;
}
.accent-btn:hover {
  color: #D4492A;
  background: white;
  border: 1px solid #D4492A;
}

.input {
  height: 50px;
  border: none;
  border-bottom: 1px solid #8A8381;
  outline: none;
  padding: 0;
}
.input::-moz-placeholder {
  color: #A19C9B;
}
.input::placeholder {
  color: #A19C9B;
}

.burger-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 2px;
  width: 30px;
  height: 30px;
  background: #FBEDEA;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  position: relative;
}
.burger-btn span {
  transition: 0.3s;
  display: block;
  background: #D4492A;
  border-radius: 2px;
  height: 2px;
  width: 16px;
}
.burger-btn_active span {
  position: absolute;
}
.burger-btn_active span:nth-child(2) {
  display: none;
}
.burger-btn_active span:first-child {
  transform: rotate(-45deg);
  position: relative;
}
.burger-btn_active span:nth-child(3) {
  transform: rotate(45deg);
}
@media (min-width: 1000px) {
  .burger-btn {
    display: none;
  }
}

.burger-menu {
  display: none;
}
.burger-menu_active {
  display: block;
  position: absolute;
  top: calc(100% + 1px);
  background: #200b06;
  width: 100%;
  left: 0;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .burger-menu_active {
    padding: 0 40px;
  }
}
@media (min-width: 1000px) {
  .burger-menu {
    display: block;
    max-width: 480px;
    width: 100%;
  }
  .burger-menu_active {
    position: static;
    background: transparent;
    width: unset;
    max-width: unset;
  }
}

.menu-list {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  padding: 0;
  gap: 10px;
}
.menu-list__link {
  color: white;
  font-weight: 900;
  font-size: 18px;
  white-space: nowrap;
  transition: 0.3s;
}
.menu-list__link:hover {
  color: #D4492A;
}
@media (min-width: 1000px) {
  .menu-list {
    flex-direction: row;
    max-width: 500px;
    width: 100%;
    justify-content: space-between;
  }
}

.tel-btn {
  color: white;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  white-space: nowrap;
}

.btn-box {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
  column-gap: 8px;
  white-space: nowrap;
}
.btn-box:hover {
  text-decoration: underline;
}

.link-btn {
  color: #D4492A;
  font-weight: 900;
  font-size: 18px;
  line-height: 100%;
}

.grey-box {
  background-color: rgb(58, 58, 58);
  padding: 60px 20px;
  border-radius: 30px;
}

.dropdown {
  position: relative;
  width: 100%;
}
.dropdown__item {
  padding: 13px 15px;
  transition: 0.3s;
}
.dropdown__item:hover {
  cursor: pointer;
  background: #D4492A;
  color: white;
}

.dropdown__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  border-bottom: 1px solid #8A8381;
  background: transparent;
  width: 100%;
  height: 50px;
  cursor: pointer;
  padding: 0;
}
.dropdown__btn span {
  color: #A19C9B;
}
.dropdown__btn::after {
  content: url("../images/arrow.svg");
  transition: 0.3s;
  transform: translateY(20%);
  top: 50%;
}
.dropdown__btn_active::after {
  content: url("../images/arrow.svg");
  transform: translateY(20%) rotate(180deg);
}

.dropdown__menu {
  display: none;
  position: absolute;
  z-index: 7;
  top: calc(100% + 5px);
  width: 100%;
  flex-direction: column;
  background: #F7F7F7;
  padding: 2px;
}

.dropdown__menu_active {
  display: flex;
}

.checkbox__input {
  position: relative;
  height: 24px;
  width: 24px;
  background: white;
  border: 1px solid #D4492A;
  border-radius: 2px;
  flex-shrink: 0;
}

input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=checkbox]:checked ~ .checkbox__input {
  background: transparent;
  border: none;
}
input[type=checkbox]:checked ~ .checkbox__input::after {
  content: url("../images/Vector.svg");
  position: absolute;
  left: 0;
  top: 0;
}

#call-form {
  margin: 0 10px;
  position: absolute;
}

#form {
  scroll-margin-top: 105px;
}
@media (min-width: 1000px) {
  #form {
    scroll-margin-top: 99px;
  }
}

.select__item {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border: none;
  background: transparent;
  outline: none;
}

.accent-btn:disabled {
  opacity: 0.3;
}
.accent-btn:disabled:hover {
  cursor: not-allowed;
  background: #D4492A;
  color: white;
}

#call-form {
  width: 100%;
  position: fixed;
  bottom: 3%;
  right: -120%;
  transition: right 1s;
  transform: translateX(10px);
}
@media (min-width: 768px) {
  #call-form {
    transform: translateX(0);
  }
}

.close-form {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  line-height: 31px;
  font-size: 20px;
  background: #8E1919;
  color: white;
  transition: 0.3s;
}
.close-form:hover {
  cursor: pointer;
  background: #D4492A;
}

#call-form.animated-form {
  right: 0;
}