@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --font-family: "Archivo", sans-serif;
  --second-family: "Roboto", sans-serif;
  --third-family: "Playfair Display", sans-serif;
  --font3: "Archivo Black", sans-serif;
  --font4: "Inter", sans-serif;
  --content-width: 1170px;
  --container-offset: 0px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --color-black-solid: #000;
  --color-grey-62: #9e9e9e;
  --color-grey-4: #090909;
  --color-orange-86: #f2ddc4;
  --color-azure-5: #050f17;
  --color-black--49-80: rgba(0, 0, 0, 0.5);
  --color-white-solid: #fff;
  --color-grey-93: #eee;
  --color-white--800: rgba(255, 255, 255, 0.8);
  --color-grey-84: #d5d5d5;
  --color-orange-48: #a8894d;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body.no-scroll {
  overflow: hidden;
  height: 100%; /* Это гарантирует, что высота будет фиксированной */
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

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

.flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.burger {
  --burger-width: 30px;
  --burger-height: 30px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #000;
  background-color: transparent;
  cursor: pointer;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger {
  display: none;
  color: white;
  --burger-height: 20px;
}
@media (max-width: 998px) {
  .burger {
    display: block;
    z-index: 101;
  }
}

.burger--active {
  color: white;
  margin-left: auto;
}

/* Стили для модального окна */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background: #d1b482;
  margin: 10% auto;
  padding: 30px 20px;
  width: 100%;
  max-width: 645px;
  position: relative;
}
.modal-content h2 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin: 0;
  margin-bottom: 60px;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
}

.close-modal:hover {
  color: red;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #fff;
  background: none;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: #fff;
}
.form-group input::-webkit-input-placeholder, .form-group textarea::-webkit-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: #fff;
}
.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: #fff;
}
.form-group input:-ms-input-placeholder, .form-group textarea:-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: #fff;
}
.form-group input::-ms-input-placeholder, .form-group textarea::-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: #fff;
}

.submit-btn {
  width: 100%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 100px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  color: #000;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 0px;
  margin-top: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header {
  background: var(--color-black-solid);
}
.header__logo {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 167%;
  text-transform: uppercase;
  color: var(--color-white-solid);
}
.header__mobile {
  display: none;
}
@media (max-width: 998px) {
  .header__mobile {
    display: block;
  }
}
.header__image {
  max-width: 24px;
  width: 100%;
  cursor: pointer;
}

.container-header {
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  padding: 20px 52px;
}
@media (max-width: 998px) {
  .container-header {
    padding: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.nav {
  width: 100%;
}
@media (max-width: 998px) {
  .nav {
    position: fixed;
    left: 0;
    top: 0;
    max-width: 100%;
    width: 100%;
    background: #FFEA61;
    height: 130vh;
    z-index: 100;
    -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;
    overflow-y: auto;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
}
.nav__list {
  gap: 55px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
@media (max-width: 998px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 50px;
    gap: 31px;
  }
}
.nav__link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 246%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--color-white-solid);
}

.nav.menu--active {
  visibility: visible;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.cart-total {
  margin-top: 20px;
  font-weight: bold;
  text-align: right;
  color: #000;
}

.cart-item img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
  object-fit: cover;
}

.remove-item {
  color: #000;
  cursor: pointer;
}

.close-cart {
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

.cart-item {
  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;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
}

#cart-items p {
  color: #000;
}

.cart-header {
  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;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}

.cart-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: #fff;
  -webkit-box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 100;
  padding: 20px;
  overflow-y: auto;
}
.cart-overlay h2 {
  color: #000;
}

.cart-overlay.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.cart-btn1 {
  max-width: 200px;
  width: 100%;
  border: 2px solid #000;
  font-weight: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #000;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 16px 0px;
}

.hero {
  background-image: url(".././img/hero.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 75px 0px;
}
.hero__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 153%;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-black-solid);
  margin: 0;
}
.hero__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 152%;
  text-align: center;
  color: var(--color-black-solid);
  margin: 0;
}
.hero__btn {
  max-width: 220px;
  width: 100%;
  background: var(--color-white-solid);
  border: 1px solid var(--color-black-solid);
  border-radius: 100px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #ff0058;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 14px 0px;
  margin-top: 19px;
}

.container-hero {
  max-width: 656px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.ups {
  background: var(--color-white-solid);
  padding: 10px 10px;
}
.ups__name {
  font-family: var(--font4);
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  line-height: 267%;
  letter-spacing: -0.04em;
  color: var(--color-black-solid);
  margin: 0;
}

.container-ups {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.first {
  background: #eaeaea;
  padding: 32px 0px;
}
.first__block {
  max-width: 194px;
  width: 100%;
  background: var(--color-white-solid);
  border: 1px solid #9f9f9f;
  border-radius: 100px;
  padding: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.first__image {
  max-width: 57px;
  width: 100%;
}
.first__name {
  font-family: var(--font3);
  font-weight: 400;
  font-size: 13px;
  line-height: 108%;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-black-solid);
  margin: 0;
}

.container-first {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 780px) {
  .container-first {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.second {
  background-image: url(".././img/second.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 63px 0px;
}
.second__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 153%;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-white-solid);
  margin: 0;
}
.second__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 152%;
  text-align: center;
  color: var(--color-white-solid);
  margin: 0;
}
.second__btn {
  max-width: 211px;
  width: 100%;
  background: var(--color-black-solid);
  border-radius: 100px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--color-white-solid);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 14px 0px;
  margin-top: 19px;
}

.container-second {
  max-width: 656px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.about {
  padding-bottom: 60px;
}
.about__image {
  max-width: 600px;
  width: 100%;
}

.container-about {
  max-width: 1132px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 870px) {
  .container-about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.product {
  padding: 60px 0px;
  gap: 30px;
}
.product__first {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 25px;
}
.product__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 125%;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-black-solid);
  margin: 0;
}
.product__btn1 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: var(--color-black-solid);
  margin: 0;
}
.product__block {
  max-width: 244px;
  width: 100%;
  gap: 8px;
}
.product__name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 138%;
  text-align: center;
  color: var(--color-black-solid);
  margin: 0;
  margin-top: 12px;
}
.product__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: #686868;
  margin: 0;
}
.product__cost {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: #32bb00;
  margin: 0;
  margin-top: 8px;
  margin-bottom: 8px;
}
.product b {
  font-family: var(--font-family);
  font-weight: 400;
  text-decoration: line-through;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: var(--color-black-solid);
}
.product__btn {
  width: 100%;
  background: var(--color-black-solid);
  border-radius: 100px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--color-white-solid);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 14px 0px;
  margin-top: auto;
}

.container-product {
  max-width: 1070px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  gap: 18px;
}
@media (max-width: 930px) {
  .container-product {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.last {
  padding: 60px 0px;
  background: var(--color-black-solid);
  gap: 8px;
}
.last__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 153%;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-white-solid);
  margin: 0;
}
.last__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 152%;
  text-align: center;
  color: var(--color-white-solid);
  margin: 0;
}
.last__star {
  max-width: 63px;
  width: 100%;
}
.last__block {
  max-width: 263px;
  width: 100%;
  padding: 25px 20px;
  gap: 15px;
}
.last__name {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-white-solid);
  margin: 0;
}
.last__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--color-white-solid);
  margin: 0;
}

.container-last {
  max-width: 1132px;
  width: 100%;
  margin: 0 auto;
  margin-top: 39px;
  padding: 0px 20px;
  gap: 20px;
}
@media (max-width: 750px) {
  .container-last {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.gallery {
  padding: 60px 0px;
  gap: 5px;
}
.gallery__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 153%;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-black-solid);
  margin: 0;
}
.gallery__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 152%;
  text-align: center;
  color: var(--color-black-solid);
  margin: 0;
}
.gallery__block {
  nav-down: 285px;
  width: 100%;
  gap: 8px;
}
.gallery__image {
  width: 100%;
}
.gallery__image1 {
  max-width: 525px;
  width: 100%;
}

.container-gallery {
  max-width: 1152px;
  width: 100%;
  margin: 0 auto;
  margin-top: 60px;
  padding: 0px 20px;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 900px) {
  .container-gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.thank {
  padding: 200px 0px;
}
.thank__image {
  max-width: 120px;
  width: 100%;
}
.thank__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 50px;
  text-align: center;
  letter-spacing: 0.03em;
  color: #000;
}

.container-thank {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.contact {
  padding: 60px 0px;
}
.contact__title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 51px;
  text-align: center;
  line-height: 125%;
  text-transform: uppercase;
  color: var(--color-black-solid);
  margin: 0;
}
.contact__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  text-align: center;
  line-height: 126%;
  color: var(--color-black-solid);
  margin: 0;
}
.contact__form {
  width: 100%;
  gap: 16px;
  margin-top: 34px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contact__input {
  width: 100%;
  border: none;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  padding: 16px;
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 138%;
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.contact__input::-webkit-input-placeholder {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 138%;
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
}
.contact__input::-moz-placeholder {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 138%;
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
}
.contact__input:-ms-input-placeholder {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 138%;
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
}
.contact__input::-ms-input-placeholder {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 138%;
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
}
.contact__input::placeholder {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 138%;
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
}
.contact__btn {
  max-width: 337px;
  width: 100%;
  background: #000000;
  border: 1px solid var(--color-black-solid);
  border-radius: 100px;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 0px;
  cursor: pointer;
}

.container-contact {
  max-width: 947px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  gap: 24px;
}

.faq {
  background: #202020;
  padding: 55px 0px;
}
.faq__title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 178%;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-white-solid);
  margin: 0;
}
.faq__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 144%;
  text-transform: capitalize;
  text-align: center;
  color: var(--color-white-solid);
  margin: 0;
}

.container-faq {
  max-width: 590px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  gap: 25px;
}

.footer {
  background-image: url(".././img/footer.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 40px 0px;
}
.footer__block {
  width: 100%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 600px) {
  .footer__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footer__block1 {
  max-width: 270px;
  width: 100%;
  gap: 16px;
}
.footer__name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 116%;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-white-solid);
  margin: 0;
}
.footer__link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 144%;
  text-align: center;
  color: var(--color-white-solid);
  margin: 0;
}
.footer b {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 144%;
  color: var(--color-white-solid);
}
.footer__copy {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  line-height: 144%;
  color: #9c9c9c;
  margin: 0;
}

.container-footer {
  max-width: 1042px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.privacy {
  max-width: 1163px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 20px;
}
.privacy h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  color: #000;
}
.privacy h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  color: #000;
}
.privacy p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #000;
}/*# sourceMappingURL=main.css.map */
