
@charset "UTF-8";

/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

textarea {
  resize: none;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  vertical-align: top;
  min-height: 400px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

/*--------------------*/
:root {
  --index: calc(1vw + 1vh);
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 137.5%;
  background: #fff;
  /* 22/16 */
  color: #111111;
}

body._lock {
  overflow: hidden;
}

.wrapper {
  overflow: hidden;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.page {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

[class*=__container] {
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  padding: 30px 0;
  background: #fff;
  border-bottom: 2px solid #eee;
}

.header__logo {
  font-size: 38px;
  font-weight: 700;
  -webkit-text-stroke: 2px black;
  color: transparent;
  text-transform: uppercase;
}

.header__container {
  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: 40px;
}

@media (max-width: 1130px) {
  .header__container {
    gap: calc(20px + 20 * (100vw - 320px) / 810);
  }
}

@media (max-width: 1040px) {
  .header__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
  }
}

.header__button {
  color: rgb(0, 0, 0);
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 25px;
  padding: 5px 40px;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 100px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (any-hover: hover) {
  .header__button:hover {
    background: #000;
    color: #fff;
  }
}

.header-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

@media (max-width: 1130px) {
  .header-menu__list {
    gap: calc(20px + 20 * (100vw - 320px) / 810);
  }
}

.header-menu__link {
  color: rgb(0, 0, 0);
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 138.888889%;
  padding: 10px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

@media (any-hover: hover) {
  .header-menu__link:hover {
    border-color: #000;
  }
}

.hero {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (min-width:900px) {
  .hero {
    height: calc(100vh - 96px);
  }

  .hero__title {
    font-size: 54px !important;
  }
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 66.67%;
  background-color: #dfe0e1;
  z-index: -1;
}

@media (max-width:768px) {
  .hero:before {
    width: 100%;
  }
}

.hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  height: 100%;
}

@media (max-width: 767.98px) {
  .hero__container {
    padding-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.hero__info {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

.hero__subtitle {
  margin-bottom: 60px;
}

.hero__decor {
  max-width: 520px;
  max-height: 400px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

.button {
  border-radius: 100px;
  background: rgb(0, 0, 0);
  padding: 5px 30px;
  font-size: 18px;
  font-weight: 900;
  line-height: 138.888889%;
  /* 25/18 */
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (any-hover: hover) {
  .button:hover {
    border-color: rgb(0, 0, 0);
    background: transparent;
    color: rgb(0, 0, 0);
  }
}

.title {
  font-size: 24px;
  font-weight: 900;
  line-height: 137.5%;
  /* 33/24 */
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media (max-width: 1130px) {
  .title {
    font-size: calc(18px + 6 * (100vw - 320px) / 810);
  }
}

.info {
  padding-top: 44px;
}

.info__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 37px;
}

.info__title {
  margin-bottom: 0;
}

.info__columns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(540px, 1fr));
  margin-bottom: 30px;
  gap: 20px;
}

@media(max-width:600px) {
  .info__columns {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  }
}

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

.info__column img {
  max-width: 520px;
  max-height: 400px;
  min-height: 400px;
  border-radius: 20px;
  aspect-ratio: 260/196;
  width: 100%;
  height: auto;
}

.info__bottom {
  max-width: 324px;
  margin-left: auto;
}

.info__text {
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 600px;
  margin: 0 auto;
}

.title__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-bottom: 20px;
}

@media (max-width: 1130px) {
  .info__text {
    padding-top: calc(70px + 30 * (100vw - 320px) / 810);
  }
}

@media (max-width: 1130px) {
  .info__text {
    padding-bottom: calc(70px + 80 * (100vw - 320px) / 810);
  }
}

.details {
  padding-top: 150px;
  padding-bottom: 150px;
}

@media (max-width: 1130px) {
  .details {
    padding-top: calc(70px + 80 * (100vw - 320px) / 810);
  }
}

@media (max-width: 1130px) {
  .details {
    padding-bottom: calc(70px + 80 * (100vw - 320px) / 810);
  }
}

.details {
  position: relative;
}

.details:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 66.67%;
  background-color: #dfe0e1;
  z-index: -1;
}

@media (max-width:768px) {
  .details:before {
    width: 100%;
  }
}


.details__item:not(:last-child) {
  margin-bottom: 100px;
}

@media (max-width: 1130px) {
  .details__item:not(:last-child) {
    margin-bottom: calc(30px + 70 * (100vw - 320px) / 810);
  }
}

@media (min-width: 767.98px) {
  .details__subtitle {
    max-width: 419px;
  }
}

.info__title {
  font-size: 46px;
  text-align: center;
}

.contact-us {
  padding-top: 60px;
  padding-bottom: 150px;
}

@media (max-width: 1130px) {
  .contact-us {
    padding-bottom: calc(70px + 80 * (100vw - 320px) / 810);
  }
}

.contact-us__decor {
  text-align: center;
  max-width: 520px;
  max-height: 500px;
  margin-bottom: 50px;
}

@media (max-width: 1130px) {
  .contact-us__decor {
    margin-bottom: calc(30px + 20 * (100vw - 320px) / 810);
  }
}

.contact-us__text-block {
  max-width: 419px;
  margin-bottom: 50px;
}

@media (max-width: 1130px) {
  .contact-us__text-block {
    margin-bottom: calc(30px + 20 * (100vw - 320px) / 810);
  }
}

.contact-us-form {
  max-width: 495px;
}

.contact-us-form__input {
  padding: 10px 10px 10px 15px;
  font-weight: 700;
  display: block;
  width: 100%;
  border: 1px solid rgb(0, 0, 0);
  margin-bottom: 10px;
}

.contact-us-form__button {
  margin-top: 20px;
  display: block;
  padding: 10px 100px;
  border-radius: 0;
}

.footer {
  padding: 30px 0;
  text-align: center;
  background: rgb(24, 24, 24);
  color: rgb(255, 255, 255);
}

.footer-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
}

.footer-menu__link {
  color: rgb(255, 255, 255);
}

@media (any-hover: hover) {
  .footer-menu__link:hover {
    text-decoration: underline;
  }
}

.info {
  padding-bottom: 60px;
}

.reversed {
  display: flex;
  flex-direction: column;
}

.upd-flex {
  display: flex;
  justify-content: space-between;
}

@media (min-width:768px) {
  .upd-flex img {
    max-width: 520px;
    max-height: 400px;
  }
}

.upd-flex p {
  max-width: 400px;
}

.gallery {
  padding-top: 60px;
}

.gallery__title h2 {
  font-weight: bold;
  font-size: 24px;
}


.gallery__photos {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery__photos img {
  width: 100%;
  aspect-ratio: 360/247;
  max-width: 360px;
  max-height: 300px;
  height: auto;
  object-fit: cover;
}

@media (max-width:600px) {
  .upd-flex {
    flex-direction: column;
    gap: 30px;
  }
}

.thxw {

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.thx h1 {
  font-size: 34px;
  text-align: center;
  color: #000;
  font-weight: 700;
  line-height: 120%;
}

.thx a {
  font-size: 20px;
  padding: 8px 16px;
  border: 2px solid #000;
  text-align: center;
  display: inline-block;
  margin: 20px auto;
  max-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border-radius: 16px;
}

.description,
.info {
  padding-top: 80px;
}

.description__text span {
  font-weight: 700;
}

.description__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-us__container {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.consent {

  border-radius: 10px;
  background: #476dec;
  box-shadow: 0 4px 8px #10101068;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
  max-width: 1200px;
  width: 95%;
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 21;

 
}

  .consent__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

.consent__inner span {
  font-weight: 700;
  font-size: 20px;
  display: block;
  padding-bottom: 10px;
}  


.consent__buttons {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  align-items: center;
  width: 100%;
}

@media (max-width:500px) {
  .consent__buttons {
    flex-direction: column;
  }
}

@media (max-width:768px) {
  .contact-us__container {
    grid-template-columns: 1fr;
  }
}