* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  word-wrap: break-word;
  color: #51413d;
}

img {
  width: 100%;
  height: auto;
}

h1 {
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: 7px;
  margin-bottom: 30px;
}

h2 {
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-align: center;
}

p {
  font-size: 2rem;
  line-height: 30px;
}

a {
  transition: 0.2s;
}

a:hover {
  color: #bfa276 !important;
}

.container {
  max-width: 1350px;
  padding: 0 25px;
  margin: 0 auto;
}

.margin__bottom {
  margin-bottom: 70px;
}

.banner {
  width: 400px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  transition: 0.2s;
}

.banner.hide-element {
  opacity: 0;
  visibility: hidden;
}

header {
  padding: 30px 0;
  display: flex;
  align-items: center;
}

.header__logo {
  width: 200px;
}

.header__menu {
  margin-left: auto;
}

.header__menu ul {
  display: flex;
  align-items: center;
  margin: 0 -15px;
}

.header__menu_item {
  padding: 0 15px;
}

.header__menu_item a {
  font-size: 2rem;
  color: #51413d;
}

.content {
  margin: 100px 0;
}

.content__top_info {
  text-align: center;
}

.content__top_info p {
  margin-bottom: 30px;
}

.content__about_info {
  margin-bottom: 30px;
}

.content__about_info p {
  margin-bottom: 15px;
}

.content__about_images {
  display: flex;
  margin: 0 -10px;
}

.content__about_images-image {
  flex: 0 1 33.3%;
  padding: 0 10px;
}

.content__products_info {
  margin-bottom: 30px;
}

.content__products_images {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}

.content__products_images-image {
  flex: 0 1 25%;
  padding: 10px;
  max-width: 350px;
}

footer {
  padding: 30px 0;
}

.footer__contact_info-block {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer__contact_info-block span {
  margin: 0 5px;
}

.footer__contact_info-block a {
  font-size: 1.8rem;
  color: #51413d;
}

.footer__contact-icon {
  width: 25px;
  margin-right: 10px;
}

.footer__contact-icon svg {
  width: 25px;
  display: block;
}

.footer__contact-link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 992px) {
  h1 {
    font-size: 4.2rem;
    letter-spacing: 4px;
  }

  h2 {
    font-size: 3.2rem;
    letter-spacing: 1px;
  }
}

@media screen and (max-width: 756px) {
  header {
    flex-direction: column;
  }

  .header__menu {
    margin-left: unset;
    margin-top: 20px;
  }

  .content__about_images-image:last-child {
    display: none;
  }

  .content__about_images-image {
    flex-basis: 50%;
  }

  .content__products_images-image:last-child {
    display: none;
  }

  .content__products_images-image {
    flex-basis: 33.3%;
  }
}

@media screen and (max-width: 568px) {
  h1 {
    font-size: 3.7rem;
    letter-spacing: 2px;
  }

  h2 {
    font-size: 2.7rem;
  }

  .content {
    margin: 70px 0;
  }

  .content__about_images-image:first-child {
    display: none;
  }

  .content__about_images-image {
    flex-basis: 100%;
  }

  .content__products_images-image:last-child {
    display: block;
  }

  .content__products_images-image {
    flex-basis: 50%;
  }

  .footer__contact_info-block a {
    font-size: 1.5rem;
    color: #51413d;
  }
}

@media screen and (max-width: 530px) {
  .header__menu {
    display: none;
  }
}