/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

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

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

@font-face {
  font-family: "Montserrat Alternates";
  font-weight: 400;
  src: url("../../fonts/MontserratAlternates-Regular.woff");
}
@font-face {
  font-family: "Montserrat Alternates";
  font-weight: 500;
  src: url("../../fonts/MontserratAlternates-Medium.woff");
}
@font-face {
  font-family: "Montserrat Alternates";
  font-weight: 600;
  src: url("../../fonts/MontserratAlternates-SemiBold.woff");
}
* {
  scroll-behavior: smooth;
}

html {
  font-family: "Montserrat Alternates", sans-serif;
}

body {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 90rem;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 71.25em) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 61.25em) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 46em) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.preloader {
  background-color: rgba(0, 0, 0, 0.11);
  background-image: url("../../img/preloader.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30%;
}

.title {
  color: #33321E;
  font-size: 4rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 71.25em) {
  .title {
    font-size: 3.5rem;
  }
}
@media (max-width: 61.25em) {
  .title {
    font-size: 3rem;
  }
}
@media (max-width: 35em) {
  .title {
    font-size: 2rem;
  }
}

.link {
  border-radius: 5px;
  background: #42380E;
  display: inline-block;
  color: #ADA580;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 150%; /* 2.625rem */
  padding: 0.8571em 1.28571em;
  box-shadow: 13px 10px 30px #B7B08F;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.link:active {
  background: #2b2409;
  color: #b9b089;
}
@media (hover: hover) {
  .link:hover {
    background: #382f0c;
    color: #b9b089;
  }
}
@media (max-width: 71.25em) {
  .link {
    font-size: 1.25rem;
  }
}
@media (max-width: 25em) {
  .link {
    font-size: 1rem;
  }
}

.header {
  position: relative;
  overflow: hidden;
  background-color: #33321e;
}
.header__background-line-1 {
  z-index: 0;
  max-width: none;
  position: absolute;
  top: -130px;
  left: calc(50% - 936px);
}
.header__background-line-2 {
  z-index: 0;
  max-width: none;
  position: absolute;
  bottom: 90px;
  right: calc(50% - 712.1052631579px);
}
.header__container {
  position: relative;
  z-index: 1;
  z-index: 1;
  padding-top: 30px;
  padding-bottom: 155px;
}
.header__upper-header {
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  width: 2.70969rem;
}
@media (max-width: 71.25em) {
  .header__navigation {
    transition: all 0.4s ease-in-out;
    position: fixed;
    z-index: 100;
    background: #33321e;
    box-shadow: -7px 0px 32px rgba(0, 0, 0, 0.1);
    top: 0;
    left: -100%;
    bottom: -300px;
    width: 20rem;
  }
  .header__navigation .navigation__list {
    margin: 1.87rem 0 0 1.8rem;
    flex-direction: column;
  }
  .header__navigation .navigation__list .navigation__item {
    font-size: 1.75rem;
  }
}
.header__navigation_opened {
  left: 0;
}
@media (max-width: 71.25em) {
  .header__phone {
    display: none !important;
  }
}
.header__body {
  position: relative;
  display: flex;
  margin-top: 105px;
}
@media (max-width: 35em) {
  .header__body {
    justify-content: center;
    margin-top: 70px;
  }
}
.header__content {
  width: 33.5rem;
}
@media (max-width: 61.25em) {
  .header__content {
    width: 28rem;
  }
}
@media (max-width: 46em) {
  .header__content {
    width: 70%;
  }
}
@media (max-width: 46em) {
  .header__content {
    font-size: 1.5rem;
  }
}
@media (max-width: 35em) {
  .header__content {
    width: 90%;
  }
}
.header__subtitle {
  color: #ada580;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 61.25em) {
  .header__subtitle {
    font-size: 1.25rem;
  }
}
@media (max-width: 46em) {
  .header__subtitle {
    font-size: 1.115rem;
  }
}
@media (max-width: 35em) {
  .header__subtitle {
    font-size: 1rem;
  }
}
.header__title {
  color: #dcd4ae;
  font-size: 6rem;
  font-weight: 500;
  line-height: normal;
  margin-top: -0.07291em;
}
@media (max-width: 71.25em) {
  .header__title {
    font-size: 5rem;
  }
}
@media (max-width: 46em) {
  .header__title {
    font-size: 4rem;
  }
}
@media (max-width: 35em) {
  .header__title {
    font-size: 3rem;
  }
}
.header__text {
  margin-top: 1.9444444em;
  color: #dcd4ae;
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%; /* 1.6875rem */
}
@media (max-width: 61.25em) {
  .header__text {
    font-size: 1rem;
  }
}
.header__button {
  margin-top: 2.32142em;
  transition: all 0.2s ease-in;
  display: inline-block;
  padding: 0.785714em 1.285714em;
  border-radius: 5px;
  border: 3px solid #ada580;
  background: #42380e;
  color: #ada580;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 150%; /* 2.625rem */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.header__button:active {
  background: #2b2409;
  color: #b9b089;
}
@media (hover: hover) {
  .header__button:hover {
    background: #382f0c;
    color: #b9b089;
  }
}
@media (max-width: 46em) {
  .header__button {
    font-size: 1.5rem;
  }
}
@media (max-width: 35em) {
  .header__button {
    margin-bottom: 18rem;
  }
}
.header__image {
  position: absolute;
  bottom: -205px;
  right: calc(50% - 887.3684210526px);
  filter: drop-shadow(28px 18px 101px #222114);
  background-color: rgba(0, 0, 0, 0);
}
.header__image img {
  width: 936px;
}
@media (max-width: 61.25em) {
  .header__image {
    width: 880px;
  }
}
@media (max-width: 35em) {
  .header__image {
    width: 640px;
    right: calc(50% - 376.4705882353px);
  }
}

.menu-switcher {
  position: relative;
  z-index: 101;
  display: none;
  flex-direction: column;
  transition: gap 0.4s ease-in-out;
  gap: 8px;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
}
.menu-switcher__line {
  position: relative;
  transition: all 0.4s ease-in-out;
  width: 3.5rem;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.menu-switcher__line:focus {
  outline: none !important;
}
.menu-switcher__line:nth-child(1) {
  top: 0;
}
.menu-switcher__line:nth-child(3) {
  bottom: 0;
}
.menu-switcher_opened .menu-switcher__line:nth-child(1) {
  transform: rotate(45deg);
  top: 15px;
}
.menu-switcher_opened .menu-switcher__line:nth-child(2) {
  transform: rotate(-45deg);
}
.menu-switcher_opened .menu-switcher__line:nth-child(3) {
  bottom: 15px;
  transform: rotate(45deg);
}
@media (max-width: 71.25em) {
  .menu-switcher {
    display: flex;
  }
}

.phone {
  display: flex;
  gap: 10px;
  align-items: center;
}
.phone__image {
  width: 1.35rem;
  height: 1.35rem;
}
.phone__image img {
  width: 100%;
}
.phone__phone-number {
  color: #DCD4AE;
  font-family: Montserrat Alternates;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media (max-width: 61.25em) {
  .phone__phone-number {
    font-size: 1.115rem;
  }
}

.navigation__list {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
}
.navigation__item {
  font-family: Montserrat Alternates;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.045em;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.navigation__link {
  color: #ada580;
}
.navigation__link:active {
  color: #b9b089;
}
@media (hover: hover) {
  .navigation__link:hover {
    color: #cec497;
  }
}

.main {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}
.our-bestsellers {
  background-color: #DCD4AE;
  position: relative;
}
.our-bestsellers__background-line {
  max-width: none;
  z-index: 0;
  position: absolute;
  bottom: 0;
  left: calc(50% - 727.2727272727px);
}
.our-bestsellers__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding-top: 85px;
  padding-bottom: 85px;
}
@media (max-width: 61.25em) {
  .our-bestsellers__container {
    padding-top: 75px;
    padding-bottom: 85px;
  }
}
@media (max-width: 35em) {
  .our-bestsellers__container {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.our-bestsellers__title {
  margin-bottom: 1.09375em;
}
.our-bestsellers__row {
  margin: 0 auto;
  display: flex;
  max-width: 75.5rem;
  gap: 60px;
  justify-content: space-between;
}
@media (max-width: 61.25em) {
  .our-bestsellers__row {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.our-bestsellers__column {
  flex: 1 1 33.3333%;
}
@media (max-width: 61.25em) {
  .our-bestsellers__column {
    flex: unset;
    width: max(20rem, 40%);
  }
}
.our-bestsellers__link {
  margin-top: 2.5em;
  align-self: center;
}

.item-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 25px;
  border-radius: 10px;
  background-color: rgba(66, 56, 14, 0.4784313725);
  font-size: 20px;
  gap: 1em;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  cursor: pointer;
  box-shadow: 13px 10px 30px #b7b08f;
}
.item-card:hover {
  background-color: rgba(66, 56, 14, 0.6901960784);
  transform: scale(1.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@keyframes hoveringCard {
  0% {
    background-color: rgba(66, 56, 14, 0.4784313725);
    transform: scale(1);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
  50% {
    background-color: rgba(66, 56, 14, 0.4784313725);
    transform: scale(1.2);
  }
  100% {
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    background-color: rgba(66, 56, 14, 0.5294117647);
    transform: scale(1.2);
  }
}
.item-card__image {
  border-radius: 12px;
  overflow: hidden;
}
.item-card__image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 17.6875rem;
}
.item-card__info {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 0.75em;
}
.item-card__title {
  flex: 1 0 auto;
  color: #dcd4ae;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 35em) {
  .item-card__title {
    font-size: 1.5rem;
  }
}
.item-card__text {
  overflow: hidden;
  height: 5.6em;
  color: #dcd4ae;
  text-align: justify;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 150%; /* 1.40625rem */
}
.item-card__button {
  padding: 0.8333em 1.875em;
  border-radius: 5px;
  border: 3px solid #dcd4ae;
  color: #ada580;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: normal;
  display: inline-block;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.item-card__button:active {
  background: #2b2409;
  color: #b9b089;
}
@media (hover: hover) {
  .item-card__button:hover {
    background: #382f0c;
    color: #b9b089;
  }
}
@media (max-width: 71.25em) {
  .item-card__button {
    font-size: 1.25rem;
  }
}

.about-us {
  overflow: hidden;
  background-color: #ADA580;
  position: relative;
}
.about-us__background-spruce-1 {
  max-width: none;
  position: absolute;
  z-index: 0;
  top: -10px;
  left: calc(50% - 898.6111111111px);
  width: 40.45219rem;
}
.about-us__background-spruce-2 {
  max-width: none;
  position: absolute;
  z-index: 0;
  top: -10px;
  right: calc(50% - 898.6111111111px);
  transform: rotate(-180deg);
  width: 40.45219rem;
}
.about-us__text {
  color: #33321E;
  text-align: justify;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 150%; /* 2.25rem */
}
@media (max-width: 61.25em) {
  .about-us__text {
    font-size: 1.25rem;
    max-width: 90%;
  }
}
@media (max-width: 35em) {
  .about-us__text {
    font-size: 1.115rem;
  }
}
.about-us__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding-top: 85px;
  padding-bottom: 90px;
}
@media (max-width: 61.25em) {
  .about-us__container {
    padding-top: 75px;
    padding-bottom: 85px;
  }
}
@media (max-width: 35em) {
  .about-us__container {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.about-us__title {
  margin-bottom: 1.09375em;
}
.about-us__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 65px;
  align-self: center;
  max-width: 66.375rem;
}
@media (max-width: 35em) {
  .about-us__content {
    gap: 40px;
  }
}
.about-us__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
}
@media (max-width: 46em) {
  .about-us__items {
    flex-wrap: wrap;
  }
}
.about-us__image img {
  width: 21rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 46em) {
  .about-us__image img {
    width: 18rem;
  }
}

.news {
  position: relative;
  background-color: #DCD4AE;
}
.news__background-line {
  max-width: none;
  position: absolute;
  z-index: 0;
  top: -10px;
  left: calc(50% - 833.3333333333px);
}
.news__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding-top: 85px;
  padding-bottom: 85px;
}
@media (max-width: 61.25em) {
  .news__container {
    padding-top: 75px;
    padding-bottom: 85px;
  }
}
@media (max-width: 35em) {
  .news__container {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.news__title {
  margin-bottom: 1.09375em;
}
.news__content {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 71.25em) {
  .news__content {
    flex-direction: column;
  }
}
.news__description {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 37.5625rem;
}
@media (max-width: 71.25em) {
  .news__description {
    flex: auto;
    max-width: 50rem;
  }
}
@media (max-width: 46em) {
  .news__description {
    max-width: 85%;
  }
}
.news__subtitle {
  text-align: center;
  color: #33321E;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.25em;
}
@media (max-width: 35em) {
  .news__subtitle {
    font-size: 1.4rem;
  }
}
.news__text {
  color: #33321E;
  text-align: justify;
  font-size: 1.115rem;
  font-weight: 500;
  line-height: 150%; /* 1.875rem */
}
.news__image {
  flex: 1 1 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__image img {
  width: 35rem;
}
@media (max-width: 61.25em) {
  .news__image img {
    width: 30rem;
  }
}
@media (max-width: 46em) {
  .news__image img {
    width: 28rem;
  }
}
.news__link {
  align-self: center;
  margin-top: 3.2857em;
}

.contacts {
  background-color: #33321E;
  overflow: hidden;
  position: relative;
}
.contacts__background-line-1 {
  max-width: none;
  position: absolute;
  top: -20px;
  left: calc(50% - 1077.7777777778px);
  z-index: 0;
}
.contacts__background-line-2 {
  max-width: none;
  position: absolute;
  top: 150px;
  right: calc(50% - 970px);
  z-index: 0;
}
.contacts__container {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 85px;
  padding-bottom: 95px;
}
@media (max-width: 61.25em) {
  .contacts__container {
    padding-top: 75px;
    padding-bottom: 85px;
  }
}
@media (max-width: 35em) {
  .contacts__container {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.contacts__title {
  color: #DCD4AE;
  margin-bottom: 1.09375em;
}
.contacts__feedback-form {
  align-self: center;
}
@media (max-width: 35em) {
  .contacts__feedback-form {
    align-self: center;
  }
}

.feedback-form {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 35em) {
  .feedback-form {
    align-items: stretch;
    width: 80%;
  }
}
@media (max-width: 26em) {
  .feedback-form {
    width: 100%;
  }
}
.feedback-form__inputs {
  display: flex;
  flex-direction: column;
  font-size: 2rem;
  gap: 1.875em;
}
@media (max-width: 71.25em) {
  .feedback-form__inputs {
    font-size: 1.55rem;
  }
}
@media (max-width: 61.25em) {
  .feedback-form__inputs {
    font-size: 1.4rem;
  }
}
@media (max-width: 46em) {
  .feedback-form__inputs {
    font-size: 1.115rem;
  }
}
@media (max-width: 26em) {
  .feedback-form__inputs {
    font-size: 1rem;
  }
}
.feedback-form__personal-information {
  position: relative;
  display: flex;
  gap: 1.875em;
}
@media (max-width: 35em) {
  .feedback-form__personal-information {
    flex-direction: column;
  }
}
.feedback-form__input {
  width: 50%;
  padding: 0.9375em;
  border-radius: 5px;
  border: 4px solid #dcd4ae;
  color: #dcd4ae;
  font-weight: 500;
  line-height: normal;
}
.feedback-form__input::-moz-placeholder {
  color: #ada580;
  font-weight: 500;
  line-height: normal;
}
.feedback-form__input::placeholder {
  color: #ada580;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 35em) {
  .feedback-form__input {
    width: 100%;
  }
}
.feedback-form__user-message {
  resize: none;
  padding: 0.9375em;
  height: 12.375em;
  border-radius: 5px;
  border: 4px solid #dcd4ae;
  color: #dcd4ae;
  font-weight: 500;
  line-height: normal;
}
.feedback-form__user-message::-moz-placeholder {
  color: #ada580;
  font-weight: 500;
  line-height: normal;
}
.feedback-form__user-message::placeholder {
  color: #ada580;
  font-weight: 500;
  line-height: normal;
}
.feedback-form__submit-button {
  margin-top: 2.321428em;
  border-radius: 5px;
  border: 3px solid #ada580;
  box-shadow: 13px 10px 30px #36351f;
}

.footer {
  overflow: hidden;
  border-top: 4px solid #DCD4AE;
  background-color: #33321E;
}
.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 40px;
}
@media (max-width: 46em) {
  .footer__container {
    flex-direction: column;
    gap: 1.85rem;
  }
}
.footer__navigation .navigation__list {
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
@media (max-width: 46em) {
  .footer__navigation .navigation__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}
.footer__navigation .navigation__list .navigation__item {
  font-size: 1.375rem !important;
}
@media (max-width: 61.25em) {
  .footer__navigation .navigation__list .navigation__item {
    font-size: 1.25rem !important;
  }
}
.footer__policy-privacy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.88rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.06rem;
}
@media (max-width: 61.25em) {
  .footer__policy-privacy {
    font-size: 1.25rem;
  }
}
.footer__rights-information {
  color: #DCD4AE;
}
.footer__policy-privacy-link {
  color: #ADA580;
  text-decoration: underline !important;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 13.56rem;
  text-align: center;
}
.footer__company-adress {
  color: #DCD4AE;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05rem;
}
@media (max-width: 61.25em) {
  .footer__company-adress {
    font-size: 1.115rem;
  }
}