* {
  box-sizing: border-box;
  outline: none !important;
  margin: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  /* font-family: 'Inter', sans-serif; */
  /* font-family: 'Roboto', sans-serif; */
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  margin: 0;
}

a {
  text-decoration: none;
}

.header {
  background: #3e75d1;
}

.container {
  margin: 0 auto;
  max-width: 970px;
  width: 100%;
  padding: 0 15px;
}

.head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  padding: 10px 0 6px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-link {
  color: #fff;
  padding: 5px 10px;
}

.intro-block {
  text-align: center;
  margin-bottom: 20px;
}

h1 {
  font-size: 42px;
  font-weight: 400;
  margin: 20px 0 20px;
}

.top-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.content-line {
  border: 1px solid #E2E2E2;
  padding: 10px;
  display: flex;
  align-items: center;
}

.top1 {
  background-color: #FFFBE8;
  border: solid 2px #F6EAB7;
}

.content-line__item {
  width: 20%;
  text-align: center;
}

.line__logo {
  padding-top: 5px;
}

.bigtxt {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  line-height: 17px;
  color: #333;
  font-weight: 700;
}

.redtxt {
  font-size: 14px;
  font-weight: 700;
  color: #de3838;
}

.promotxt {
  font-size: 13px;
  font-weight: 700;
}

.delivery-price {
  color: #DE3838;
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}

.site-link {
  display: inline-block;
  background-color: #3e75d1;
  padding: 7px 32px;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
}

p {
  margin: 10px 0 10px;
}

h2 {
  margin: 30px 0 10px;
}

h3 {
  margin: 20px 0 10px;
}

.text-img {
  text-align: center;
}

.text-img img {
  max-width: 100%;
}

.main-text__review-block {
  display: flex;
  gap: 15px;
}

.reviews {
  margin-bottom: 10px;
  text-align: center;
}

.reviews-line {
  display: flex;
}

.review {
  width: 33%;
  padding-bottom: 20px;
}

.review:hover {
  border-right: solid 1px #f0efe4;
  border-bottom: solid 1px #f0efe4;
}

.reviews-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 25px;
  font-style: italic;
  color: #4b4b4b;
  padding: 10px 15px 15px;
  margin: 0;
}

.review-name {
  margin-top: 0px;
  font-size: 18px;
}

.footer {
  background-color: #FFCA6A;
}

.copyright {
  display: block;
  line-height: 40px;
  margin: 0;
}

.menu-btn {
  display: none;
}

@media (max-width: 850px) {
  .site-link {
    padding: 7px 22px;
  }
}

@media (max-width: 768px) {
  .content-line {
    flex-wrap: wrap;
  }

  .content-line__item {
    width: 33%;
  }

  .site-link {
    padding: 7px 32px;
  }

  .main-text__review-block {
    flex-direction: column;
  }

  .reviews-line {
    flex-wrap: wrap;
  }

  .review {
    width: 50%;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 32px;
  }

  .content-line__item {
    width: 50%;
  }

  .content-line__item.line__link {
    width: 100%;
    margin-top: 10px;
  }

  .review {
    width: 100%;
  }

  .logo img {
    height: 40px;
  }

  .menu-btn {
    height: 30px;
    width: 40px;
    display: inline-block;
    background-color: transparent;
    border: none;
    position: relative;
    z-index: 50;
  }

  .logo {
    position: relative;
    z-index: 50;
  }

  .btn-line {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: #fff;
    height: 2px;
    transition: .3s ease;
  }

  .btn-line:nth-child(1) {
    top: 0;
  }

  .btn-line:nth-child(2) {
    top: 15px;
  }

  .btn-line:nth-child(3) {
    top: 15px;
  }

  .btn-line:nth-child(4) {
    top: 30px;
  }

  .menu-open .btn-line:nth-child(1) {
    transform: scaleX(0);
  }

  .menu-open .btn-line:nth-child(2) {
    transform: rotate(45deg);
  }

  .menu-open .btn-line:nth-child(3) {
    transform: rotate(-45deg);
  }

  .menu-open .btn-line:nth-child(4) {
    transform: scaleX(0);
  }

  .menu {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #3e75d1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    transform: translateY(-100%);
    transition: .3s ease;
  }

  .menu-link {
    font-size: 22px;
  }

  .menu-open .menu {
    transform: translateY(0%);
  }
}