body {
  transform: translateZ(6px);
}
body {
  transform: translateZ(10px);
}
@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 {
  vertical-align: top;
  max-width: 100%;
}

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: #fff6e9;
  /* 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 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  background: #000;
  z-index: 999;
}

.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: 767.98px) {
  .header__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
  }
}

.header__button {
  background-color: rgb(54 91 30);
  color: #fff;
  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: #fff;
  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: #fff;
  }
}

.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: #e0e1c0;
  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 {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

.button {
  border-radius: 100px;
  background: rgb(54 91 30);
  padding: 20px 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%;
  max-width: 600px;
  /* 33/24 */
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.info {
  padding-top: 150px;
}

.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(240px, 1fr));
  margin-bottom: 30px;
  gap: 20px;
}

.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 {
  border-radius: 10px;
  aspect-ratio: 230/ 200;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

.info__text {
  max-width: 600px;
  margin: 0 auto;
}

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

.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: #e0e1c0;
  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;
  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 50px;
  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: 40%;
  }
}

.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: 500px;
  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;
  color: #000;
  font-weight: 700;
  line-height: 120%;
}

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

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

.description__wrap{
  padding: 2rem;
  border-radius: 2rem;
  background-color: #000;
  color: #fff;
}

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

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

.thx{
  text-align: left;
  padding: 150px 0;
}
.hero__container.thx{
  padding: 150px 50px;
  align-items: start;
  flex-direction: column;
  gap: 20px;
}

.cookie {
  position: sticky;
  width: 100%;
  bottom: 1.4rem;
  left: 1.5rem;
  z-index: 100;
  color: #fff;
}

.cookie__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  a,
  button{
    color: #b1b1b1;
    border: 1px solid #fff;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    width: auto;
    border-radius: 5rem;
    padding: 2rem 6rem;
    font-size: 1.4rem;
    line-height: 1.7rem;
    transition: transform .3s;
  }
  button.other_back{
    border: none;
    color: #000;
    background-color: #fff;
  }
  a:hover,
  button:hover{
    transform: scale(1.05);
  }
}

.cookie__wrap {
  width: 90%;
  max-width: 73.4rem;
  background: #000;
  border: 1px solid #000;
  box-shadow: 0px 0px 30px 0px #fff;
  padding: 2rem;
  border-radius: 2.6rem;
}

.cookie__title {
  text-transform: uppercase;
  font-size: 2.4rem;
  line-height: 2.9rem;
  margin: 0 0 2rem;
}

.cookie__text{
  margin: 0 0 2rem;
}

@media screen and (min-width: 1024px){
  .cookie__buttons{
    flex-direction: row;
  }
}