.page {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.page--hidden {
  overflow: hidden;
}
.page__body {
  margin: 0;
  padding: 0;
  font-family: Rubik, Arial, Helvetica, sans-serif;
}
@media (max-width: 400px) {
  .page__body {
    min-width: 399px;
  }
}
@media (min-width: 1630px) {
  .page__body {
    max-width: 1630px;
    margin: 0 auto;
  }
}
.page__header {
  margin-bottom: 50px;
}
@media (min-width: 640px) {
  .page__header {
    margin-bottom: 110px;
  }
}
@media (min-width: 1280px) {
  .page__header {
    margin-bottom: 130px;
  }
}
.page__about-us {
  margin-bottom: 65px;
}
@media (min-width: 640px) {
  .page__about-us {
    margin-bottom: 90px;
  }
}
@media (min-width: 1280px) {
  .page__about-us {
    margin-bottom: 120px;
  }
}
.page__products {
  margin-bottom: 65px;
}
@media (min-width: 640px) {
  .page__products {
    margin-bottom: 90px;
  }
}
@media (min-width: 1280px) {
  .page__products {
    margin-bottom: 120px;
  }
}
.page__burger-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateX(-100%);
  transition: transform 0.3s;
}
.page__burger-menu--open {
  transform: translateX(0);
}

.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 15px 0;
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .header__top {
    padding: 20px 30px 0;
    margin-bottom: 50px;
  }
}
@media (min-width: 1280px) {
  .header__top {
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: 230px 1fr 200px;
    justify-items: center;
    align-items: center;
  }
}
.header__desktop-menu {
  display: none;
}
@media (min-width: 1280px) {
  .header__desktop-menu {
    display: block;
  }
}
.header__desktop-list {
  display: flex;
  column-gap: 35px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header__desktop-link {
  text-decoration: none;
  color: #390b0b;
  font-size: 15px;
  font-weight: 500;
}
.header__desktop-right-content {
  display: none;
}
@media (min-width: 1280px) {
  .header__desktop-right-content {
    display: block;
    margin: 0;
    color: #390b0b;
    font-size: 15px;
    font-weight: 500;
  }
}
@media (min-width: 640px) {
  .header__image-info-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 30px;
    align-items: start;
  }
}
@media (min-width: 1280px) {
  .header__image-info-container {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 20px;
  }
}
.header__image-container {
  margin: 0 -25px 25px;
}
@media (min-width: 640px) {
  .header__image-container {
    margin: 0;
    grid-column: 4/7;
    order: 1;
  }
}
@media (min-width: 1280px) {
  .header__image-container {
    grid-column: 7/13;
  }
}
.header__image {
  width: 100%;
  border-radius: 0 0 30px 30px;
}
@media (min-width: 640px) {
  .header__image {
    border-radius: 30px;
  }
}
@media (min-width: 640px) {
  .header__title-info {
    grid-column: 1/4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
  }
}
@media (min-width: 1280px) {
  .header__title-info {
    grid-column: 1/7;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 20px;
  }
}
.header__title {
  margin: 0 0 15px;
  color: #390b0b;
  letter-spacing: -1.2px;
  line-height: 40px;
  font-size: 25px;
  font-weight: 500;
  text-transform: uppercase;
}
@media (min-width: 640px) {
  .header__title {
    font-size: 30px;
    letter-spacing: -0.2px;
    grid-column: 1/4;
  }
}
@media (min-width: 1280px) {
  .header__title {
    font-size: 45px;
    line-height: 50px;
    grid-column: 1/7;
  }
}
.header__info {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.4em;
  color: #390b0b;
}
@media (min-width: 640px) {
  .header__info {
    grid-column: 1/4;
  }
}
@media (min-width: 1280px) {
  .header__info {
    grid-column: 1/7;
    margin: 0 0 40px;
  }
}

.burger-menu {
  background-color: #fff;
  height: 100%;
}
@media (min-width: 1280px) {
  .burger-menu {
    display: none;
  }
}
.burger-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 15px 0;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .burger-menu__top {
    padding: 20px 30px 0;
    margin-bottom: 60px;
  }
}
.burger-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 640px) {
  .burger-menu__list {
    gap: 30px;
  }
}
.burger-menu__link {
  display: block;
  text-decoration: none;
  color: #390b0b;
  font-size: 20px;
  font-weight: 500;
}
@media (min-width: 640px) {
  .burger-menu__link {
    font-size: 25px;
  }
}

.popup-layout {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 8;
  overflow-y: hidden;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  transition: display 0.3s;
}
.popup-layout--open-layout {
  display: block;
}
.popup-layout__phone-form-window {
  display: none;
  background-color: #fff;
  width: 300px;
  padding: 35px;
  border: 1px solid #390b0b;
  border-radius: 10px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup-layout__phone-form-window--open-form-window {
  display: block;
}
@media (min-width: 640px) {
  .popup-layout__phone-form-window {
    width: 600px;
    box-sizing: border-box;
  }
}
@media (min-width: 1280px) {
  .popup-layout__phone-form-window {
    width: 800px;
  }
}
.popup-layout__close-window-button {
  background-color: #fff;
  padding: 10px 11px;
  border: 3px solid #390b0b;
  border-radius: 50px;
  position: absolute;
  top: -16px;
  right: -16px;
  cursor: pointer;
}

.container {
  padding: 0 25px;
}
@media (min-width: 640px) {
  .container {
    padding: 0 60px;
  }
}
@media (min-width: 1280px) {
  .container {
    padding: 0 100px;
  }
}

.button {
  width: 100%;
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(141, 59, 15);
  box-sizing: border-box;
  height: 40px;
  border-radius: 25px;
  color: rgb(141, 59, 15);
  font-size: 16px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  transform: scale(1);
  animation: button-header-call-order 1s linear infinite alternate;
}
.button:hover {
  background-color: rgb(141, 59, 15);
  color: #fff;
}
@media (min-width: 640px) {
  .button--header {
    grid-column: 1/3;
  }
}
@media (min-width: 1280px) {
  .button--header {
    grid-column: 1/4;
  }
}
.button--contact-form {
  margin: 0 auto;
  width: 50%;
}
.button--more-about-product {
  margin: 0 0 20px;
}

.logo__image {
  height: 30px;
}
@media (min-width: 640px) {
  .logo__image {
    height: 40px;
  }
}
@media (min-width: 1280px) {
  .logo__image {
    height: 50px;
  }
}

.icon {
  position: relative;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.icon--menu {
  border: none;
  background-color: #fff;
  background-image: url(../assets/images/icon-menu.jpg);
  width: 25px;
  padding-bottom: 25px;
}
@media (min-width: 1280px) {
  .icon--menu {
    display: none;
  }
}
.icon--cross {
  border: none;
  background-color: #fff;
  background-image: url(../assets/images/icon-cross.jpg);
  width: 25px;
  padding-bottom: 25px;
}
.icon--cross-popup {
  border: none;
  background-color: #fff;
  background-image: url(../assets/images/icon-cross.jpg);
  width: 15px;
  padding-bottom: 15px;
}

.title {
  margin: 0 0 25px;
  color: #390b0b;
  letter-spacing: -1.2px;
  line-height: 40px;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 640px) {
  .title {
    font-size: 25px;
    letter-spacing: -0.2px;
  }
}
@media (min-width: 1280px) {
  .title {
    font-size: 35px;
    line-height: 50px;
  }
}

.about-us__block {
  margin: 0 0 25px;
}
@media (min-width: 640px) {
  .about-us__block {
    margin: 0 0 50px;
  }
}
@media (min-width: 1280px) {
  .about-us__block {
    margin: 0 0 100px;
  }
}
.about-us__block:last-child {
  margin: 0;
}
.about-us__grid-container {
  overflow-x: hidden;
}
@media (min-width: 640px) {
  .about-us__grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 30px;
  }
}
@media (min-width: 1280px) {
  .about-us__grid-container {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 20px;
  }
}
.about-us__left-moving {
  margin: 0 -25px;
  padding: 0 25px;
  transform: translateX(-100%);
}
@media (min-width: 640px) {
  .about-us__left-moving {
    grid-column: 1/4;
    margin: 0 0 0 -60px;
    padding: 0 0 0 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
  }
}
@media (min-width: 1280px) {
  .about-us__left-moving {
    grid-column: 1/7;
    margin: 0 0 0 -100px;
    padding: 0 0 0 100px;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 20px;
  }
}
.about-us__right-moving {
  margin: 0 -25px;
  padding: 0 25px;
  transform: translateX(100%);
}
@media (min-width: 640px) {
  .about-us__right-moving {
    grid-column: 4/7;
    margin: 0 -60px 0 0;
    padding: 0 60px 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
  }
}
@media (min-width: 1280px) {
  .about-us__right-moving {
    grid-column: 7/13;
    margin: 0 -100px 0 0;
    padding: 0 100px 0 0;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 20px;
  }
}
.about-us__start-left-animation {
  animation: move-left 1s alternate;
  animation-fill-mode: forwards;
}
.about-us__start-right-animation {
  animation: move-right 1s alternate;
  animation-fill-mode: forwards;
}
.about-us__info {
  margin: 0;
  line-height: 1.4em;
  color: #390b0b;
}
@media (min-width: 640px) {
  .about-us__info {
    grid-column: 1/4;
  }
}
@media (min-width: 1280px) {
  .about-us__info {
    grid-column: 1/7;
  }
}
.about-us__info--main {
  margin: 0 0 30px;
}
@media (min-width: 640px) {
  .about-us__info--main {
    margin: 0 0 50px;
  }
}
@media (min-width: 640px) {
  .about-us__info--main {
    margin: 0 0 70px;
  }
}
.about-us__image-container {
  margin: 0 0 10px;
}
@media (min-width: 640px) {
  .about-us__image-container {
    margin: 0;
    grid-column: 1/4;
  }
}
@media (min-width: 1280px) {
  .about-us__image-container {
    grid-column: 1/7;
  }
}
.about-us__image {
  width: 100%;
  border-radius: 5px;
}
@media (min-width: 640px) {
  .about-us__info-container {
    grid-column: 1/4;
  }
}
@media (min-width: 1280px) {
  .about-us__info-container {
    grid-column: 1/7;
  }
}
.about-us__block-title {
  margin: 0 0 15px;
  color: #390b0b;
  letter-spacing: -1.2px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 640px) {
  .about-us__block-title {
    margin: 0 0 20px;
    font-size: 19px;
    letter-spacing: -0.2px;
  }
}
@media (min-width: 1280px) {
  .about-us__block-title {
    margin: 0 0 25px;
    font-size: 25px;
    line-height: 50px;
  }
}

.products__flex-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 760px) {
  .products__flex-container {
    flex-direction: row;
    flex-wrap: wrap;
    width: 630px;
    margin: 0 auto;
    justify-content: flex-start;
  }
}
@media (min-width: 1300px) {
  .products__flex-container {
    width: 960px;
  }
}
@media (min-width: 1630px) {
  .products__flex-container {
    width: 1283px;
  }
}
.products__products-by-category:not(:has(.products__product-card)) {
  display: none;
}
.products__title-category {
  margin: 0 0 20px;
  color: #390b0b;
  letter-spacing: -1.2px;
  line-height: 40px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 640px) {
  .products__title-category {
    font-size: 16px;
  }
}
@media (min-width: 1280px) {
  .products__title-category {
    font-size: 18px;
  }
}
.products__products-by-category {
  margin: 0 0 50px;
}
.products__products-by-category:last-child {
  margin: 0;
}
@media (min-width: 640px) {
  .products__products-by-category {
    margin: 0 0 80px;
  }
}
.products__product-card {
  width: 300px;
  border: 1px solid #520d0d;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 23px 0 15px;
  transition: transform 0.3s;
}
.products__product-card:hover {
  transform: scale(1.05);
}
.products__image-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.products__image-container {
  border-radius: 5px;
  display: flex;
  width: 235px;
  overflow: hidden;
  justify-content: center;
  height: 235px;
}
.products__info-container {
  padding: 0 25px;
}
.products__info-container div div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 20px;
}
.products__info-container div h3, .products__info-container div p {
  margin: 0;
}
.products__info-container div h3 {
  font-size: 15px;
  color: #390b0b;
  font-weight: 600;
}
.products__info-container div p {
  font-size: 14px;
  color: #6b4949;
  font-weight: 500;
}
.products__name {
  margin: 0 0 12px;
  height: 70px;
  text-align: center;
  color: #390b0b;
  letter-spacing: -1.2px;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid #6b4949;
}
.products__flex-option-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 20px;
}
.products__option-title {
  margin: 0;
  font-size: 15px;
  color: #390b0b;
  font-weight: 600;
}
.products__option {
  margin: 0;
  font-size: 14px;
  color: #6b4949;
  font-weight: 500;
}
.products__option--yes {
  color: rgb(11, 158, 11);
}
.products__option--not {
  color: rgb(232, 39, 39);
}

.networks {
  display: grid;
  grid-template-columns: 35px 35px 35px;
  column-gap: 20px;
}
.networks__image {
  width: 100%;
}

.footer {
  background-image: url(../assets/images/footer-test-image-2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20px 0;
}
.footer__logo-container {
  margin-bottom: 25px;
}
.footer__grid-container {
  margin: 0 0 40px;
}
@media (min-width: 640px) {
  .footer__grid-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    column-gap: 30px;
    margin: 0 0 30px;
  }
}
@media (min-width: 1280px) {
  .footer__grid-container {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 20px;
  }
}
.footer__contacts-container {
  margin: 0 0 45px;
}
@media (min-width: 640px) {
  .footer__contacts-container {
    margin: 0;
    grid-column: 1/4;
  }
}
@media (min-width: 1280px) {
  .footer__contacts-container {
    grid-column: 1/6;
  }
}
.footer__contact-block {
  margin: 0 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__contact-block:last-child {
  margin: 0 0 50px;
}
.footer__contact-title {
  margin: 0 0 8px;
  color: #390b0b;
  font-weight: 500;
  font-size: 15px;
}
.footer__contact {
  margin: 0;
  text-decoration: none;
  color: #390b0b;
  font-weight: 500;
  font-size: 14px;
}
@media (min-width: 640px) {
  .footer__contact-form-container {
    grid-column: 5/8;
  }
}
@media (min-width: 1280px) {
  .footer__contact-form-container {
    grid-column: 8/13;
  }
}
.footer__copyright {
  margin: 0;
  color: #390b0b;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form {
  display: flex;
  flex-direction: column;
}
.form__input-container {
  display: flex;
  flex-direction: column;
  margin: 0 0 10px;
}
.form__input-container :last-child {
  margin: 0 0 20px;
}
.form__error {
  color: #c91515;
  font-size: 13px;
}
.form__field {
  border: 1px solid rgb(141, 59, 15);
  padding: 12px 17px;
  font-size: 17px;
  color: rgb(141, 59, 15);
  border-radius: 20px;
  margin: 0 0 5px;
}
.form__field--textarea {
  resize: none;
  font-family: inherit;
}
.form__field:focus {
  outline: none;
}
.form__field:focus::placeholder {
  color: transparent;
}

.cart__product {
  border: 1px solid #390b0b;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart__image-container {
  width: 100px;
}
.cart__image {
  width: 100%;
}

@keyframes move-left {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes move-right {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes button-header-call-order {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}

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