* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  overflow-x: hidden;
  position: relative;
  color: #2D2C2C;
  background: #F8F4EE;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.list {
  list-style: none;
}

button,
a {
  cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 31px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
@media screen and (min-width: 1400px) {
  .title {
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 40px;
  }
}

.text {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background: rgba(255, 255, 255, 0.9);
}
.header .logo {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #2d2c2c;
  text-decoration: none;
  border-bottom: 1px solid #2d2c2c;
}
.header .container {
  max-width: none;
}

.header__button-wrapper {
  margin-left: auto;
}

.header__icon-button {
  position: relative;
  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;
  background: transparent;
  border: none;
  padding: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.header__icon {
  position: absolute;
  width: 28px;
  height: 28px;
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
}

.header__icon--menu {
  opacity: 1;
  -webkit-transform: rotate(0deg) scale(1);
          transform: rotate(0deg) scale(1);
}

.header__icon--close {
  opacity: 0;
  -webkit-transform: rotate(-90deg) scale(0.6);
          transform: rotate(-90deg) scale(0.6);
}

.header__icon-button.is-open .header__icon--menu {
  opacity: 0;
  -webkit-transform: rotate(90deg) scale(0.6);
          transform: rotate(90deg) scale(0.6);
}

.header__icon-button.is-open .header__icon--close {
  opacity: 1;
  -webkit-transform: rotate(0deg) scale(1);
          transform: rotate(0deg) scale(1);
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding: 16px 20px;
}
.navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 38px;
  padding: 120px 60px;
  background: rgba(0, 0, 0, 0.6509803922);
  backdrop-filter: blur(6px);
  position: absolute;
  top: 100%;
  right: -100%;
  width: 100%;
  height: 100vh;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}
.navigation__list.is-open {
  right: 0;
}
.navigation__link {
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  text-decoration: none;
}
.navigation__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #fff;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.navigation__link:hover::after {
  width: 100%;
}

@media screen and (min-width: 1400px) {
  .header__button-wrapper {
    display: none;
  }
  .header .container {
    max-width: 1200px;
  }
  .navigation {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 auto;
    margin-left: auto;
    padding-block: 26px;
  }
  .navigation__list {
    background: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: static;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    height: auto;
    padding: 0;
    gap: 22px;
  }
  .navigation__link {
    color: #2d2c2c;
    font-size: 14px;
  }
  .navigation__link::after {
    background: #2d2c2c;
  }
}
.hero {
  background: url("../../images/hero-bg.jpg");
  background-size: cover;
  background-position: center right 20%;
  background-repeat: no-repeat;
  padding: 152px 20px;
  position: relative;
}
.hero::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(90.24deg, #000000 -6.67%, rgba(0, 0, 0, 0) 99.8%);
  backdrop-filter: blur(1px);
}
@media screen and (min-width: 1400px) {
  .hero {
    padding: 204px 120px;
  }
}
.hero .box {
  max-width: 739px;
  position: relative;
  z-index: 1;
  color: #fff;
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  margin-bottom: 42px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 1400px) {
  .hero h1 {
    font-weight: 700;
    font-size: 68px;
    line-height: 82px;
  }
}

.sec-1 {
  padding: 40px 20px;
}
@media screen and (min-width: 1400px) {
  .sec-1 {
    padding: 100px 120px;
  }
}
.sec-1 .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 42px;
}
@media screen and (min-width: 1400px) {
  .sec-1 .box {
    margin: 0;
    margin-left: auto;
  }
}
.sec-1 .box img {
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec-2 {
  padding: 40px 20px;
}
@media screen and (min-width: 1400px) {
  .sec-2 {
    padding: 40px 120px;
  }
}
.sec-2 .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 42px;
}
@media screen and (min-width: 1400px) {
  .sec-2 .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.sec-2 .box img {
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
.sec-2 ul {
  margin-block: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: disc;
  margin-left: 20px;
  gap: 12px;
}

.sec-3 .container {
  background-image: url("../../images/sec-3.jpg");
  background-position: center;
  background-size: cover;
  padding: 40px 20px;
  color: #fff;
}
@media screen and (min-width: 1400px) {
  .sec-3 .container {
    padding: 100px 120px;
  }
}
.sec-3 h2 {
  text-align: center;
}
.sec-3 .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1400px) {
  .sec-3 .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 79px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sec-3 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
.sec-3 li {
  border-top: 1px solid #fff;
  padding-top: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.sec-4 {
  padding: 40px 20px;
}
@media screen and (min-width: 1400px) {
  .sec-4 {
    padding: 40px 120px;
  }
}
.sec-4 .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (min-width: 1400px) {
  .sec-4 .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.sec-4 .box img {
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
.sec-4 ul {
  margin-block: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: disc;
  margin-left: 20px;
  gap: 12px;
}

.sec-5 .container {
  background-image: url("../../images/sec-5.jpg");
  background-position: center;
  background-size: cover;
  padding: 40px 20px;
  color: #fff;
}
@media screen and (min-width: 1400px) {
  .sec-5 .container {
    padding-block: 115px;
  }
}
.sec-5 .box {
  max-width: 672px;
  margin-left: auto;
}

.sec-6 {
  background-color: #2d2c2c;
  padding: 40px 20px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1400px) {
  .sec-6 {
    padding-block: 147px;
  }
}
.sec-6::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1440px;
  height: 960px;
  background-image: url("../../images/sec-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: lighten;
  opacity: 0.25;
}
@media screen and (min-width: 1400px) {
  .sec-6::before {
    width: 100%;
    height: 100%;
  }
}

.sec-7 {
  padding: 40px 20px;
}
@media screen and (min-width: 1400px) {
  .sec-7 {
    padding: 40px 120px;
  }
}
.sec-7 .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 42px;
  text-align: center;
}
.sec-7 .box img {
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 1400px) {
  .sec-7 .box img {
    height: 520px;
  }
}

.contacts {
  background-color: #2d2c2c;
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
  color: #fff;
}
@media screen and (min-width: 1400px) {
  .contacts {
    padding: 100px 120px;
  }
}
.contacts::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1440px;
  height: 960px;
  background-image: url("../../images/sec-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: lighten;
  opacity: 0.25;
}
@media screen and (min-width: 1400px) {
  .contacts::before {
    width: 100%;
    height: 100%;
  }
}
.contacts .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  position: relative;
}
@media screen and (min-width: 1400px) {
  .contacts .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.contacts h2 {
  text-align: center;
}
@media screen and (min-width: 1400px) {
  .contacts h2 {
    text-align: start;
  }
}
.contacts .map-img {
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
}
.contacts address {
  margin-top: 12px;
}
.contacts dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin: 0;
  font-style: normal;
}
.contacts dt,
.contacts dd,
.contacts dd a {
  color: #fff;
  text-decoration: none;
  margin: 0;
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
}

.popup.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 5;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.popup .content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  max-width: 500px;
  background: #f8f4ee;
  padding: 40px 12px;
  border-radius: 25px;
  max-width: 400px;
}
@media screen and (min-width: 1400px) {
  .popup .content {
    max-width: 902px;
    padding-inline: 80px;
  }
}
.popup h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  color: #2d2c2c;
  text-align: center;
  margin-bottom: 23px;
}
@media screen and (min-width: 1400px) {
  .popup h2 {
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
  }
}
.popup h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #2d2c2c;
  text-align: center;
  margin-bottom: 32px;
}
.popup .button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
}
@media screen and (min-width: 1400px) {
  .popup .button-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 42px;
  }
}
.popup button {
  background: #fff;
  border: 1px solid #2d2c2c;
  border-radius: 15px;
  width: 100%;
  height: 64px;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #2d2c2c;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup button:hover {
  background: #2d2c2c;
  color: #fff;
}
@media screen and (min-width: 1400px) {
  .popup button {
    width: 310px;
    font-size: 20px;
  }
}

.footer {
  background-color: #2d2c2c;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 32px 20px;
}
.footer::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1440px;
  height: 960px;
  background-image: url("../../images/sec-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: lighten;
  opacity: 0.25;
}
@media screen and (min-width: 1400px) {
  .footer::before {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 1400px) {
  .footer {
    padding: 58px 120px;
  }
}
.footer .container {
  position: relative;
  z-index: 1;
}
.footer .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
}
@media screen and (min-width: 1400px) {
  .footer .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0;
  }
}
.footer .domain {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-decoration: underline;
  text-align: center;
  margin-bottom: 8px;
}
.footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
@media screen and (min-width: 1400px) {
  .footer ul {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.footer li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  display: block;
}
.footer .copyright {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin-top: 22px;
}
@media screen and (min-width: 1400px) {
  .footer .copyright {
    margin-top: 42px;
  }
}
@media screen and (min-width: 1400px) {
  .footer .box {
    margin: 0 auto;
  }
}

.policies {
  background: #2D2C2C;
  color: #fff;
  padding: 100px 20px 40px 20px;
}
@media screen and (min-width: 1400px) {
  .policies {
    padding-top: 120px;
    padding-inline: 86px;
  }
}
.policies h1 {
  font-weight: 400;
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1400px) {
  .policies h1 {
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
  }
}
.policies h2 {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin-block: 10px;
}
.policies p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
.policies a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.policies ul {
  list-style: disc;
  padding-left: 20px;
}/*# sourceMappingURL=main.css.map */