@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;
}
@font-face {
  font-family: "Benzin-Medium";
  src: url("../fonts/Benzin-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Benzin-Bold";
  src: url("../fonts/Benzin-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Benzin-ExtraBold";
  src: url("../fonts/Benzin-ExtraBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Benzin-Regular";
  src: url("../fonts/Benzin-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Указываем 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: "Inter";
}

/* Удаляем стандартную стилизацию для всех 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;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

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

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

.container {
  max-width: 1306px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}
@media screen and (max-width: 1306px) {
  .container {
    padding: 0 15px;
  }
}

.pages {
  margin-top: 100px;
  padding: 50px 0;
  color: #fff;
}
.pages h1 {
  margin-bottom: 30px;
}
.pages h2 {
  margin-bottom: 20px;
}
.pages h3 {
  margin-bottom: 20px;
}
.pages h4 {
  margin-bottom: 20px;
}
.pages p {
  margin-bottom: 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  -webkit-box-shadow: 0px 12px 44px -22px rgba(0, 0, 0, 0.44);
          box-shadow: 0px 12px 44px -22px rgba(0, 0, 0, 0.44);
}

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

.logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #534633;
  text-decoration: none;
}

.logo__img img {
  max-width: 103px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 600px) {
  .logo__img img {
    max-width: 73px;
  }
}

.logo__txt {
  font-weight: bold;
  font-size: 19px;
}
@media screen and (max-width: 1024px) {
  .logo__txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .logo__txt {
    display: none;
  }
}

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

.mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 30px;
  color: #235B44;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.mail:hover {
  opacity: 0.7;
}

.tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 30px;
  color: #235B44;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.tel:hover {
  opacity: 0.7;
}

.header__link {
  margin-left: 7px;
}
@media screen and (max-width: 1200px) {
  .header__link {
    display: none;
  }
}

.button1 {
  border-radius: 100px;
  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;
  padding: 0px 0px;
  border: 1px solid #235B44;
  color: #235B44;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  padding: 18px 60px;
}
@media screen and (max-width: 1024px) {
  .button1 {
    padding: 18px 30px;
  }
}
@media screen and (max-width: 600px) {
  .button1 {
    padding: 10px 15px;
    font-size: 12px;
  }
}
.button1:hover {
  opacity: 0.7;
}

.logged-in .header {
  top: 32px;
}

.main {
  background: url("../img/section1.jpg") no-repeat fixed;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .main {
    background: none;
  }
}

.section1 {
  margin-top: 99.06px;
  padding-top: 70px;
  padding-bottom: 240px;
}
@media screen and (max-width: 1024px) {
  .section1 {
    background: url("../img/section1.jpg") no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 600px) {
  .section1 {
    margin-top: 70.2px;
  }
}

.section1__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) {
  .section1__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.section1__right {
  width: 48%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 28px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 28px;
  grid-row-gap: 28px;
}
@media screen and (max-width: 1024px) {
  .section1__right {
    width: 100%;
    grid-column-gap: 14px;
    grid-row-gap: 14px;
  }
}

.section1__block {
  position: relative;
  border: 1px solid #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}
.section1__block:hover .block__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.block__title {
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  padding: 0 10px;
}

.block__img {
  width: 100%;
  height: 100%;
}
.block__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}

.section1__txt1 {
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
}

.section1__txt2 {
  font-weight: bold;
  font-size: 60px;
  line-height: 67px;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .section1__txt2 {
    font-size: 30px;
    line-height: 37px;
  }
}

.section1__txt3 {
  font-size: 15px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 30px;
}

.button2 {
  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-radius: 100px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  background: #235B44;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 20px 80px;
}
.button2:hover {
  opacity: 0.7;
}

.section2 {
  margin-top: -120px;
}

.section2__block {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 12px 44px -22px rgba(0, 0, 0, 0.44);
          box-shadow: 0px 12px 44px -22px rgba(0, 0, 0, 0.44);
  border-radius: 24px;
  padding-top: 100px;
  padding-left: 75px;
  padding-right: 75px;
  padding-bottom: 75px;
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .section2__block {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 600px) {
  .section2__block {
    padding-top: 72px;
    padding-bottom: 35px;
  }
}
.section2__block:nth-last-child(1) {
  margin-bottom: 0;
}

.section2__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) {
  .section2__row {
    margin-bottom: 35px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

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

.section2__title {
  font-size: 45px;
  line-height: 55px;
  font-weight: bold;
  color: #534633;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .section2__title {
    font-size: 35px;
    line-height: 45px;
  }
}
@media screen and (max-width: 768px) {
  .section2__title {
    font-size: 25px;
    line-height: 35px;
  }
}

.section2__content {
  font-size: 17px;
  line-height: 24px;
  color: #121212;
}
@media screen and (max-width: 1024px) {
  .section2__content {
    font-size: 16px;
  }
}
.section2__content p {
  margin-bottom: 20px;
}
.section2__content p:nth-last-child(1) {
  margin-bottom: 0;
}

.section2__img {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}
.section2__img img {
  height: 420px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-slide img {
  border-radius: 12px;
  height: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 30px;
}

.arr__left {
  cursor: pointer;
  margin-right: 17px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.arr__left:hover {
  opacity: 0.7;
}

.arr__right {
  cursor: pointer;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.arr__right:hover {
  opacity: 0.7;
}

.section3 {
  background: url("../img/section3.jpg") no-repeat fixed;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 180px;
}
@media screen and (max-width: 1024px) {
  .section3 {
    background: url("../img/section3.jpg") no-repeat;
    background-size: cover;
  }
}

.section3__row {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 12px 44px -22px rgba(0, 0, 0, 0.44);
          box-shadow: 0px 12px 44px -22px rgba(0, 0, 0, 0.44);
  border-radius: 24px;
  padding-top: 100px;
  padding-left: 75px;
  padding-right: 75px;
  padding-bottom: 75px;
  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) {
  .section3__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .section3__row {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 600px) {
  .section3__row {
    padding-top: 72px;
    padding-bottom: 35px;
  }
}

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

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

#contacts {
  height: 100px;
  background: #fff;
}

.section4 {
  padding-bottom: 100px;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .section4 {
    padding-bottom: 30px;
  }
}
.section4 .section2__title {
  margin-bottom: 60px;
}
.section4 .section2__title span {
  font-weight: 400;
}

.section4__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) {
  .section4__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

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

.cont__block {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 12px 44px -22px rgba(0, 0, 0, 0.44);
          box-shadow: 0px 12px 44px -22px rgba(0, 0, 0, 0.44);
  border-radius: 12px;
  padding: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 27px;
  text-decoration: none;
  font-weight: 500;
  color: #1D1A1A;
}
.cont__block:nth-last-child(1) {
  margin-bottom: 0;
}
.cont__block img {
  width: 51px;
  height: 51px;
  min-width: 51px;
  min-height: 51px;
}

.cont__txt {
  margin-left: 27px;
}

.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form__input {
  width: 48%;
  margin-bottom: 35px;
}
@media screen and (max-width: 600px) {
  .form__input {
    width: 100%;
  }
}
.form__input:nth-child(3) {
  width: 100%;
}
.form__input input {
  width: 100%;
  padding-bottom: 17px;
  border: none;
  border-bottom: 1px solid #1D1A1A;
  outline: none;
}
.form__input textarea {
  width: 100%;
  padding-bottom: 17px;
  padding-left: 44px;
  padding-top: 24px;
  border: none;
  border: 1px solid #1D1A1A;
  outline: none;
  border-radius: 12px;
}

.form__button .button2 {
  cursor: pointer;
  border: none;
  outline: none;
}

.footer {
  background: #F1F1F1;
  padding: 25px 0;
}

.copyright {
  color: #121212;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
}