html {
  height: 100%;
  scroll-behavior: smooth;
  background-color: #8a1c00;
}

body {
  height: 100%;
  display: flex;
  flex-direction: column;
}
body main {
  flex-grow: 1;
}

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

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}

input,
button {
  outline: none;
  border: none;
}

html {
  font-family: "Lato", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #fffdfd;
}

.container {
  padding-inline: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .container {
    padding-inline: 80px;
  }
}

.policy {
  padding-block: 40px;
}
@media (min-width: 1200px) {
  .policy {
    padding-block: 80px;
  }
}
.policy__title {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 42px;
  line-height: 100%;
}
@media (min-width: 1200px) {
  .policy__title {
    font-size: 60px;
  }
}
.policy__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: 0%;
}
.policy__text ul {
  padding-left: 20px;
  margin-bottom: 10px;
  list-style: disc;
}
.policy__text h2 {
  margin-block: 10px;
  font-size: 20px;
  font-weight: 400;
}
.policy__text p {
  margin-bottom: 10px;
}

.cookies {
  padding: 40px;
  position: fixed;
  width: 90%;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  color: #fffdfd;
  background-color: #000;
  border-radius: 8px;
  z-index: 10;
}
.cookies--show {
  display: block;
}
.cookies__title {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 24px;
  line-height: 26.4px;
  letter-spacing: 4%;
  text-align: center;
}
@media (min-width: 1200px) {
  .cookies__title {
    font-size: 32px;
    line-height: 35.2px;
  }
}
.cookies__text {
  margin-bottom: 32px;
  font-weight: 500;
  font-size: 16px;
  line-height: 25.6px;
  letter-spacing: 0%;
  text-align: center;
}
.cookies__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cookies__reject, .cookies__accept {
  width: 295px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: 0px;
  text-align: center;
  cursor: pointer;
}
.cookies__accept {
  width: 295px;
  border-radius: 8px;
  background-color: #fffdfd;
  color: #000;
}
.cookies__reject {
  color: #fffdfd;
  background-color: transparent;
}

.about {
  padding-block: 80px;
}
.about__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (min-width: 1200px) {
  .about__content {
    flex-direction: row;
  }
}
.about__img {
  width: 100%;
  height: 400px;
  margin-bottom: 32px;
  object-fit: cover;
  border-radius: 24px;
}
@media (min-width: 1200px) {
  .about__img {
    width: 500px;
  }
}
.about__title {
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
  line-height: 126%;
  letter-spacing: -0.96px;
}
.about__text {
  font-size: 20px;
  letter-spacing: -0.4px;
}

.blog {
  padding-block: 80px;
  background-color: #eef5ff;
}
.blog__title {
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
  line-height: 126%;
  letter-spacing: -0.96px;
  color: #f06f06;
}
.blog__cards {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
@media (min-width: 1200px) {
  .blog__cards {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
  }
}

.card {
  width: 390px;
  padding-bottom: 24px;
  border-radius: 24px;
  color: #f06f06;
  background-color: #fffdfd;
}
@media (min-width: 1200px) {
  .card {
    width: 324px;
  }
}
.card__img {
  margin-bottom: 16px;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.card__title {
  margin-bottom: 8px;
  padding-inline: 24px;
  text-align: center;
}
.card__desc {
  margin-bottom: 8px;
  padding-inline: 24px;
}
.card__price {
  margin-bottom: 16px;
  padding-inline: 24px;
  font-weight: 700;
}
.card__btn {
  margin: 0 auto;
}

.catalog {
  padding-block: 80px;
  background-color: #eef5ff;
}
.catalog__title {
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
  line-height: 126%;
  letter-spacing: -0.96px;
  color: #f06f06;
}
.catalog__cards {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
@media (min-width: 1200px) {
  .catalog__cards {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.contact {
  padding-block: 80px;
}
.contact__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1200px) {
  .contact__content {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}
.contact__title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 126%; /* 50.4px */
  letter-spacing: -0.8px;
  color: #fffdfd;
  margin-bottom: 32px;
}
@media (min-width: 1200px) {
  .contact__title {
    font-size: 48px;
    letter-spacing: -0.96px;
  }
}
.contact__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__form {
  padding-top: 28px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 1200px) {
  .contact__form {
    width: 504px;
  }
}
.contact__input {
  padding: 12px 16px;
  width: 100%;
  border: 1px solid #f5d0ba;
  color: #fffdfd;
  background-color: #8a1c00;
}
.contact__input::placeholder {
  color: #fffdfd;
}
.contact__area {
  margin-bottom: 16px;
}
.contact__btn {
  margin-left: 0;
  cursor: pointer;
}

.header {
  margin-top: 32px;
}
.header__logo {
  font-family: "Tilt Neon", serif;
  font-size: 28px;
  color: #fffdfd;
}
.header__content {
  padding: 16px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background-color: #db6d06;
}
@media (min-width: 1200px) {
  .header__content {
    justify-content: space-between;
  }
}

.hero {
  padding-block: 60px;
  background-color: #8a1c00;
}
@media (min-width: 1200px) {
  .hero {
    padding-block: 80px;
  }
}
.hero__content {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
@media (min-width: 1200px) {
  .hero__content {
    flex-direction: row;
  }
}
.hero__title {
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.8px;
}
.hero__text {
  margin-bottom: 70px;
  font-size: 20px;
  letter-spacing: -0.4px;
}
.hero__img {
  width: 100%;
  border-radius: 24px;
}
@media (min-width: 1200px) {
  .hero__img {
    width: 522px;
  }
}
.hero__btn {
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .hero__btn {
    margin: 0;
  }
}

.info {
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #777981;
}
.info__logo {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: radial-gradient(67% 286.37% at 4.6% 40.8%, #ecaa2f 0%, #e26009 100%);
}
.info__icon {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
}
.info__icon--location {
  background-image: url(../../images/icons/location.svg);
}
.info__icon--phone {
  background-image: url(../../images/icons/phone.svg);
}
.info__icon--email {
  background-image: url(../../images/icons/email.png);
}
.info__label {
  font-size: 16px;
  color: #f5d0ba;
  margin-bottom: 4px;
}
.info__text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.36px;
  color: #fffdfd;
}

.nav {
  display: none;
}
@media (min-width: 1200px) {
  .nav {
    display: block;
  }
}
.nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.nav__link {
  color: #fffdfd;
  transition: color 0.3s;
}
.nav__link:hover {
  color: #f5d0ba;
}

.post {
  width: 390px;
  color: #f06f06;
}
@media (min-width: 1200px) {
  .post {
    width: 504px;
  }
}
.post__img {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 24px;
}
.post__title {
  margin-bottom: 8px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.4px;
}
.post__text {
  margin-bottom: 16px;
  line-height: 140%;
  letter-spacing: -0.28px;
}
.post__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.post__btn {
  width: 130px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  color: #fffdfd;
  background: radial-gradient(67% 286.37% at 4.6% 40.8%, #ecaa2f 0%, #e26009 100%);
}
.post__btn-icon {
  width: 14px;
  height: 14px;
  background-image: url(../../images/icons/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.primary-button {
  width: 200px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #fffdfd;
  background: radial-gradient(67% 286.37% at 4.6% 40.8%, #ecaa2f 0%, #e26009 100%);
  background: radial-gradient(286.37% 67% at 4.6% 40.8%, #ecaa2f 0%, #e26009 100%);
}
.primary-button--light {
  color: #f06f06;
  background: #fffdfd;
}

.promo {
  padding-block: 80px;
  text-align: center;
}
.promo__content {
  padding: 14px 24px;
  border-radius: 16px;
  background: radial-gradient(67% 286.37% at 4.6% 40.8%, #ecaa2f 0%, #e26009 100%);
}
.promo__title {
  margin-bottom: 40px;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 126%;
  letter-spacing: -0.68px;
}
@media (min-width: 1200px) {
  .promo__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 126%;
    letter-spacing: -0.96px;
  }
}
.promo__text {
  margin-bottom: 24px;
  font-size: 20px;
  letter-spacing: -0.4px;
}
.promo__btn {
  margin: 0 auto;
}

.review {
  padding: 24px;
  width: 390px;
  height: 260px;
  border: 1px solid #a55204;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  .review {
    width: 324px;
    height: 284px;
  }
}
.review__stars {
  margin-bottom: 24px;
}
.review__text {
  margin-bottom: 16px;
  flex-grow: 1;
}
.review__profile {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review__profile-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.review__profile-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.36px;
}

.reviews {
  padding-block: 80px;
}
.reviews__title {
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 700;
  line-height: 126%;
  letter-spacing: -0.8px;
}
@media (min-width: 1200px) {
  .reviews__title {
    font-size: 48px;
    letter-spacing: -0.96px;
  }
}
.reviews__cards {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
@media (min-width: 1200px) {
  .reviews__cards {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.footer__content {
  margin-bottom: 32px;
  padding: 16px 80px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-radius: 24px;
  background-color: #db6d06;
}
@media (min-width: 1200px) {
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.nav-footer__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media (min-width: 1200px) {
  .nav-footer__list {
    flex-direction: row;
  }
}
.nav-footer__link {
  color: #fffdfd;
  transition: color 0.3s;
}
.nav-footer__link:hover {
  color: #f5d0ba;
}

/*# sourceMappingURL=main.css.map */
