@charset "UTF-8";
@font-face {
  font-family: "Gilroy-ExtraBold";
  src: url("../fonts/Gilroy-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Heavy";
  src: url("../fonts/Gilroy-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-SemiBold";
  src: url("../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Light";
  src: url("../fonts/Gilroy-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Regular";
  src: url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Medium";
  src: url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Bold";
  src: url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Gilroy-Regular";
  background: #F5EBE2;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

.container {
  max-width: 1335px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.body__opened {
  overflow: hidden;
}

.header {
  padding-top: 45px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #F5EBE2;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .header {
    padding-top: 25px;
  }
}

.header__row {
  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;
  border-bottom: 1px solid rgba(38, 35, 35, 0.22);
  padding-bottom: 25px;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu .menu-item {
  margin-right: 60px;
}
.menu .menu-item:nth-last-child(1) {
  margin-right: 0;
}
.menu .menu-item a {
  color: #252222;
  font-size: 16px;
  font-family: "Gilroy-Medium";
  text-decoration: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu .menu-item a::after {
  content: "";
  width: 0px;
  height: 1px;
  background: #C08C65;
  display: block;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  position: absolute;
  bottom: -26px;
}
.menu .menu-item a:hover::after {
  width: 30px;
}
@media screen and (max-width: 1200px) {
  .menu .menu-item {
    margin-right: 30px;
  }
}

.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.request {
  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;
  font-size: 16px;
  text-decoration: none;
  font-family: "Gilroy-Medium";
  position: relative;
  color: #252222;
  margin-left: 60px;
}
.request img {
  margin-right: 7.57px;
}
.request::after {
  content: "";
  width: 0px;
  height: 1px;
  background: #C08C65;
  display: block;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  position: absolute;
  bottom: -26px;
}
.request:hover::after {
  width: 30px;
}
@media screen and (max-width: 1200px) {
  .request {
    margin-left: 30px;
  }
}

.burger {
  position: relative;
  width: 35px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: none;
}
.burger span {
  width: 35px;
  height: 3px;
  background: #C08C65;
  display: block;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  position: relative;
}
.burger span:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.burger__opened {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.burger__opened span {
  position: absolute;
}
.burger__opened span:nth-last-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.burger__opened span:nth-last-child(2) {
  opacity: 0;
  visibility: hidden;
}
.burger__opened span:nth-last-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.mobile__menu {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 95px;
  left: 0;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  padding: 0 20px;
  background: #F5EBE2;
  z-index: 100;
}
.mobile__menu .header__buttons {
  margin: 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.mobile__menu .menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
}
.mobile__menu .menu .menu-item {
  margin-right: 0;
}
.mobile__menu .menu .menu-item a {
  border-left: 0;
  border-bottom: 1px solid rgba(212, 212, 212, 0.44);
  padding: 15px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .mobile__menu {
    top: 81px;
  }
}

.mobile__menu__opened {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.section1 {
  margin-top: 95px;
  overflow-y: hidden;
}

.section1__title {
  font-size: 87.12px;
  color: #423325;
  text-transform: uppercase;
  line-height: 105px;
  padding-top: 75px;
}
@media screen and (max-width: 1024px) {
  .section1__title {
    font-size: 60px;
    line-height: 105%;
    padding-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .section1__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 600px) {
  .section1__title {
    font-size: 26px;
  }
}

.s1 {
  display: block;
  margin-bottom: 21px;
  text-align: left;
}

.s2 {
  display: block;
  text-align: right;
  font-style: italic;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.s2::before {
  content: "";
  width: 124px;
  height: 37px;
  background: url("../img/arrows.svg") no-repeat;
  display: block;
  margin-right: 45px;
}
@media screen and (max-width: 600px) {
  .s2::before {
    width: 80px;
    height: 20px;
    background-size: contain;
    margin-right: 20px;
  }
}

.section1__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 33px;
  margin-bottom: 44px;
}
@media screen and (max-width: 600px) {
  .section1__content {
    margin-bottom: 130px;
  }
}

.s1__txt {
  font-family: "Gilroy-Medium";
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1px;
  width: 49.4%;
}
@media screen and (max-width: 600px) {
  .s1__txt {
    width: 100%;
  }
}

.button {
  width: 220px;
  height: 170px;
  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;
  border: 1px solid #C08C65;
  font-family: "Gilroy-Bold";
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  margin-left: 17px;
  position: absolute;
  top: -85px;
  left: 0;
}
.button span {
  display: block;
  position: relative;
  z-index: 2;
}
.button::before {
  content: "";
  width: 180px;
  height: 180px;
  background: #C08C65;
  display: block;
  position: absolute;
  z-index: 1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.button:hover::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (max-width: 600px) {
  .button {
    width: 180px;
    height: 130px;
    top: -65px;
  }
  .button::before {
    content: "";
    width: 150px;
    height: 150px;
  }
}

.section1__img {
  position: relative;
  height: 1125px;
  width: 100%;
  background-attachment: fixed !important;
  background-position: top !important;
  background-repeat: no-repeat !important;
}
@media screen and (max-width: 600px) {
  .section1__img {
    height: 500px;
  }
}

.s1__decor1 {
  width: 32px;
  height: 32px;
  background: #F5EBE2;
  position: absolute;
  right: 0;
  top: 0;
}

.s1__decor2 {
  width: 111px;
  height: 111px;
  background: #F5EBE2;
  position: absolute;
  left: 0;
  bottom: 0;
}

#section2 {
  height: 164px;
}
@media screen and (max-width: 1024px) {
  #section2 {
    height: 100px;
  }
}

.section2__title {
  font-size: 70px;
  line-height: 85px;
  margin-bottom: 85px;
  color: #423325;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section2__title .color {
  color: #C08C65;
}
.section2__title .italic {
  font-style: italic;
}
@media screen and (max-width: 1024px) {
  .section2__title {
    font-size: 60px;
    line-height: 105%;
  }
}
@media screen and (max-width: 768px) {
  .section2__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 600px) {
  .section2__title {
    font-size: 24px;
    margin-bottom: 35px;
  }
}

.section2__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 97px;
}
@media screen and (max-width: 1024px) {
  .section2__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0px;
  }
}

.section2__left {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .section2__left {
    margin-bottom: 35px;
    width: 100%;
  }
}

.section2__right {
  width: 55%;
}
@media screen and (max-width: 1024px) {
  .section2__right {
    width: 100%;
  }
}

.section2__row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .section2__row2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section2__left1 {
  width: 55%;
}
@media screen and (max-width: 1024px) {
  .section2__left1 {
    width: 100%;
  }
}

.section2__right1 {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .section2__right1 {
    width: 100%;
  }
}
.section2__right1 .button {
  position: relative;
  top: inherit;
}

.advantage__block {
  margin-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 600px) {
  .advantage__block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.advantage__number {
  font-family: "Gilroy-Light";
  font-style: italic;
  font-size: 39px;
  line-height: 28px;
  margin-right: 31px;
  color: #C08C65;
  width: 45px;
  position: relative;
  top: 4px;
}

.advantage__img {
  margin-right: 31px;
}
.advantage__img img {
  min-width: 124px;
  min-height: 37px;
}

.advantage__content {
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(66, 51, 37, 0.11);
}
@media screen and (max-width: 600px) {
  .advantage__content {
    width: 100%;
    margin-top: 30px;
  }
}

.advantage__title {
  font-family: "Gilroy-SemiBold";
  font-size: 24px;
  line-height: 36px;
  color: #423325;
  margin-bottom: 15px;
}
@media screen and (max-width: 600px) {
  .advantage__title {
    font-size: 20px;
  }
}

.advantage__txt {
  font-size: 17px;
  line-height: 28px;
  color: #272424;
  letter-spacing: 1px;
}

.right1__title {
  font-size: 70px;
  margin-bottom: 50px;
  color: #C08C65;
}
@media screen and (max-width: 1024px) {
  .right1__title {
    font-size: 40px;
    margin-bottom: 30px;
  }
}

.right1__txt {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 112px;
  font-family: "Gilroy-Medium";
  letter-spacing: 1%;
  color: #272424;
}

.section3 {
  margin-bottom: 130px;
}
@media screen and (max-width: 1024px) {
  .section3 {
    margin-bottom: 50px;
  }
}
.section3 .section1__img {
  position: relative;
  height: 1125px;
  width: 100%;
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .section3 .section1__img {
    height: 500px;
  }
}
.section3 .s1__decor1 {
  width: 32px;
  height: 32px;
  background: #F5EBE2;
  position: absolute;
  left: 0;
  top: 0;
}
.section3 .s1__decor2 {
  width: 111px;
  height: 111px;
  background: #F5EBE2;
  position: absolute;
  left: inherit;
  right: 0;
  bottom: 0;
}

#section3 {
  height: 132px;
}
@media screen and (max-width: 1024px) {
  #section3 {
    height: 100px;
  }
}

.section3__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 75px;
}
@media screen and (max-width: 1024px) {
  .section3__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 150px;
  }
}

.section3__left {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .section3__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.section3__right {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .section3__right {
    width: 100%;
  }
}

.s3__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.s3__arrow {
  margin-right: 31px;
  position: relative;
  top: 75px;
}
.s3__arrow img {
  min-width: 42px;
  min-height: 9px;
  width: 42px;
  height: 9px;
}

.s3__title {
  font-family: "Gilroy-Medium";
  font-size: 31px;
  color: #C08C65;
  letter-spacing: 1%;
  margin-bottom: 20px;
}

.s3__txt {
  font-family: "Gilroy-Medium";
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1%;
  color: #272424;
}

.section3__block {
  background: #C08C65;
  color: #fff;
  padding: 37px 72px;
  position: relative;
  margin-bottom: 160px;
}
@media screen and (max-width: 1024px) {
  .section3__block {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 130px;
    margin-bottom: 50px;
  }
}

.section3__block__title {
  font-family: "Gilroy-Medium";
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 1%;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .section3__block__title {
    font-size: 20px;
  }
}

.section3__block__txt {
  font-size: 20px;
  line-height: 28px;
  font-style: italic;
  font-family: "Gilroy-Light";
  width: 80%;
}
@media screen and (max-width: 1024px) {
  .section3__block__txt {
    width: 100%;
  }
}

.button2 {
  width: 220px;
  height: 170px;
  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;
  border: none;
  font-family: "Gilroy-Bold";
  font-size: 15px;
  text-decoration: none;
  color: #C08C65;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  margin-left: 0px;
  position: absolute;
  top: -7px;
  right: 31.6px;
}
@media screen and (max-width: 1024px) {
  .button2 {
    right: 15.8px;
  }
}
.button2 span {
  display: block;
  position: relative;
  z-index: 2;
}
.button2::before {
  content: "";
  width: 180px;
  height: 180px;
  background: #fff;
  display: block;
  position: absolute;
  z-index: 1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.button2:hover::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (max-width: 600px) {
  .button2 {
    width: 180px;
    height: 130px;
    top: -65px;
  }
  .button2::before {
    content: "";
    width: 150px;
    height: 150px;
  }
}

#section5 {
  height: 138px;
}
@media screen and (max-width: 1024px) {
  #section5 {
    height: 100px;
  }
}

.section4__row1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 45px;
}
@media screen and (max-width: 1024px) {
  .section4__row1 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.section4__item {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .section4__item {
    width: 100%;
  }
}

.section4__item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}

.section4__arrows {
  margin-right: 25px;
}

.section4__title {
  font-size: 70px;
  font-family: "Gilroy-Light";
  color: #C08C65;
  font-style: italic;
}
.section4__title span {
  font-family: "Gilroy-Bold";
}
@media screen and (max-width: 1024px) {
  .section4__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  .section4__title {
    font-size: 30px;
  }
}

.section4__content {
  font-size: 18px;
  line-height: 28px;
  color: #272424;
  letter-spacing: 1%;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section4__content::before {
  content: "!";
  font-family: "Gilroy-Light";
  color: #C08C65;
  font-style: italic;
  display: block;
  margin-right: 30px;
  font-size: 70px;
}
.section4__content span {
  text-decoration: underline;
}
@media screen and (max-width: 600px) {
  .section4__content {
    font-size: 16px;
  }
}

.section4__row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 45px;
}

.section4__row3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 45px;
}
.section4__row3 .section4__content {
  font-size: 24px;
}
@media screen and (max-width: 600px) {
  .section4__row3 .section4__content {
    font-size: 20px;
  }
}

.section4__row {
  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;
}
@media screen and (max-width: 1024px) {
  .section4__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.s4__img {
  width: 31%;
}
@media screen and (max-width: 1024px) {
  .s4__img {
    width: 100%;
    margin-bottom: 30px;
  }
}

.s4__txt {
  width: 31%;
}
@media screen and (max-width: 1024px) {
  .s4__txt {
    width: 100%;
  }
}

.s4__button {
  width: 31%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.s4__button .button {
  position: relative;
  top: inherit;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .s4__button {
    width: 100%;
  }
}

.s4__txt__title {
  font-size: 24px;
  line-height: 36px;
  color: #423325;
  font-family: "Gilroy-SemiBold";
  margin-bottom: 24px;
}

.s4__txt__txt {
  font-size: 17px;
  line-height: 28px;
  letter-spacing: 1%;
  color: #272424;
}
@media screen and (max-width: 1024px) {
  .s4__txt__txt {
    margin-bottom: 50px;
  }
}

.section5__block {
  padding: 33px 60px;
  background: #C08C65;
  position: relative;
}
.section5__block .section2__title {
  color: #fff;
  margin-bottom: 40px;
}
.section5__block .section2__title .color {
  color: #fff;
}
@media screen and (max-width: 1368px) {
  .section5__block .section2__title {
    width: 80%;
  }
}
@media screen and (max-width: 1200px) {
  .section5__block .section2__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .section5__block .section2__title {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .section5__block .section2__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .section5__block {
    padding: 30px 15px;
    padding-bottom: 100px;
  }
}

.section5__row {
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 60px;
  grid-row-gap: 30px;
  width: 60%;
}
@media screen and (max-width: 1200px) {
  .section5__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .section5__row {
    width: 100%;
  }
}

.section5__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section5__item__price {
  font-family: "Gilroy-Heavy";
  margin-left: 20px;
}

.section5__decor1 {
  position: absolute;
  bottom: -80px;
  right: -90px;
}
@media screen and (max-width: 1024px) {
  .section5__decor1 {
    display: none;
    right: 10px;
  }
  .section5__decor1 img {
    width: 300px;
  }
}

.section5__button .button2 {
  position: absolute;
  top: inherit;
  right: inherit;
  right: 330px;
  bottom: -85px;
}
@media screen and (max-width: 1024px) {
  .section5__button .button2 {
    right: 17px;
  }
}
@media screen and (max-width: 600px) {
  .section5__button .button2 {
    bottom: -65px;
  }
}

.section5__decor2 {
  position: absolute;
  right: 421px;
  bottom: 148px;
}
@media screen and (max-width: 1024px) {
  .section5__decor2 {
    right: 108px;
  }
}
@media screen and (max-width: 600px) {
  .section5__decor2 {
    display: none;
  }
}

.section5__item__name {
  font-size: 24px;
  font-style: italic;
}

.section6 {
  margin-bottom: 124px;
}

#section6 {
  height: 190px;
}
@media screen and (max-width: 1024px) {
  #section6 {
    height: 100px;
  }
}

.section6__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .section6__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section6__left {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .section6__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.section6__right {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .section6__right {
    width: 100%;
  }
}

.section6__item {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(66, 51, 37, 0.11);
  padding-bottom: 30px;
}
.section6__item:nth-last-child(1) {
  margin-bottom: 0;
}

.section6__header {
  cursor: pointer;
  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;
}

.section6__header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section6__number {
  font-family: "Gilroy-Light";
  font-style: italic;
  font-size: 39px;
  color: #C08C65;
  margin-right: 28px;
}

.section6__question {
  font-size: 24px;
  line-height: 36px;
  color: #423325;
  font-family: "Gilroy-SemiBold";
}
@media screen and (max-width: 600px) {
  .section6__question {
    font-size: 20px;
  }
}

.section6__hidden {
  font-size: 18px;
  line-height: 28px;
}

.plus {
  font-family: "Gilroy-Light";
  font-size: 50px;
}

.form__title {
  font-family: "Gilroy-SemiBold";
  font-size: 40px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .form__title {
    font-size: 30px;
  }
}

.button3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  background: #C08C65;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  margin: 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.section7 {
  margin-bottom: 0px;
}

.section7__block {
  background: #C08C65;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .section7__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section7__left {
  padding-top: 50px;
  padding-left: 50px;
  width: 60%;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .section7__left {
    width: 100%;
    padding: 30px;
  }
}
.section7__left .section2__title {
  color: #fff;
  margin-bottom: 26px;
}
.section7__left .section2__title .color {
  color: #fff;
}
.section7__left .button2 {
  right: -122px;
  bottom: 42px;
  top: inherit;
}
@media screen and (max-width: 1200px) {
  .section7__left .button2 {
    right: 15px;
    bottom: -165px;
  }
}
.section7__left ul {
  padding: 0;
  margin: 0;
}
.section7__left ul li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-family: "Gilroy-SemiBold";
  font-size: 18px;
  margin-bottom: 18px;
}
.section7__left ul li::before {
  content: "";
  width: 31px;
  height: 32px;
  min-width: 31px;
  min-height: 32px;
  background: url("../img/section7__ico.svg") no-repeat;
  margin-right: 16px;
}

.section7__txt {
  font-family: "Gilroy-SemiBold";
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 26px;
}

@media screen and (max-width: 1200px) {
  .section7__right {
    width: 100%;
    margin-top: 100px;
  }
  .section7__right img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.main {
  margin-top: 120px;
}
.main h1 {
  margin-bottom: 30px;
}
.main h2 {
  margin-bottom: 20px;
}
.main h3 {
  margin-bottom: 20px;
}
.main p {
  margin-bottom: 20px;
}

.home1 {
  position: relative;
  margin: 100px 0;
}
.home1 .button {
  top: inherit;
  right: inherit;
  position: relative;
}

.footer {
  padding: 50px 0;
}

.footer__row {
  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;
}
.footer__row a {
  text-decoration: none;
  color: #000;
}