@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

body {
  font-family: "Open Sans";
}
section {
  padding: 50px 0;
}
@media only screen and (max-width: 480px) {
  section {
    padding: 20px 0;
  }
}
.hidden {
  display: none;
}
.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px 20px;
}
.title {
  font-family: "Cormorant";
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 480px) {
  .title {
    font-size: 26px;
  margin-bottom: 20px;

  }
}
@media only screen and (min-width: 767px) {
  .menu-button {
    display: none;
  }
}

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

.menu__list {
  display: flex;
  gap: 70px;
}
@media only screen and (max-width: 767px) {
  .header {
    padding: 25px 0;
    position: relative;
  }
  .header__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .menu__list {
    display: none;
  }
  .menu-button {
    position: absolute;
    left: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .header {
    padding: 10px 0;
    position: relative;
  }
  .header__logo img {
    width: 30px;
    height: 50px;
  }
  .header__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .menu__list {
    display: none;
  }
  .menu-button {
    position: absolute;
    left: 10px;
  }
}
.menu__item {
  font-size: 18px;
}
.menu__item:hover {
  text-decoration: underline;
}
.mobile-menu {
  position: absolute;
  top: -1000px;
  left: 10%;
}
.mobile-menu.is-open {
  background: #fff;
  width: 80%;

  position: absolute;
  top: 0;
  left: 10%;
}
.mobile__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 40px 0;
}
.mobile__list.links {
  font-weight: lighter;
}
.menu-btn-close {
  padding: 10px;
  float: right;
}
.hero {
  background-image: url(../img/hero-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__content {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
  z-index: 2;
  text-align: start;
}
.hero__title {
  font-size: 60px;
  max-width: 780px;
  text-align: start;
}
.hero__text {
  font-family: "Cormorant";
  font-size: 24px;
  max-width: 560px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 480px) {
  .hero__title {
    font-size: 26px;
  }
  .hero__text {
    font-size: 16px;
  }
}

.explore__life {
  margin: 100px auto;
  max-width: 710px;
  text-align: center;
  position: relative;
  font-weight: lighter;
}
@media only screen and (max-width: 480px) {
  .explore__life {
    font-size: 16px;
    margin: 40px auto;
  }
}
.explore__life::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 60px;
  right: -42px;
  bottom: -20px;
  background: #f7f2ea;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .explore__life::before {
    display: none;
  }
}
.eplore__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
.explore__card {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .explore__card {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .explore__card img {
    width: 180px;
  }
  .explore__card {
    display: flex;
  }
}
.card__img {
  margin-bottom: 10px;
  transition: all 0.5s ease-in;
  overflow: hidden;
}
.card__img:hover {
  transform: scale(1.1);
}
.card__name {
  font-family: "Cormorant";
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}

.clients {
  background: #f7f2ea;
}

.clients__content {
  display: flex;
  width: 100%;
  gap: 20px;
  padding: 40px 0;
}
.clients__block {
  width: 280px;
}
@media only screen and (max-width: 767px) {
  .clients__content {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.client__text {
  margin-bottom: 10px;
}
.client__name {
  font-weight: 700;
}

.blog__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
}

.blog__card {
  display: flex;
  gap: 15px;
  width: 540px;
}
@media only screen and (max-width: 480px) {
  .blog__card {
    flex-direction: column;
  }
  .blog__text {
    gap: 10px;
  }
}
.blog__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog__name {
  font-family: "Cormornant";
  font-size: 24px;
  font-weight: 200;
}
.blog__by {
  font-size: 13px;
  color: #151618;
}
.blog__btn {
  text-align: center;
  display: block;
}
.blog__link {
  padding: 12px 41px;
  border: 1px solid #000;
}

.subs {
  background: #f7f2ea;
  position: relative;
}
.subs::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background: url(../img/tea-bg.png);
}

.subs__content {
  display: flex;
  align-items: flex-end;
  gap: 50px;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .subs__content {
    flex-direction: column;
  }
}
.subs__text {
  line-height: 150%;
}
@media only screen and (max-width: 767px) {
  .subs__text {
    font-size: 13px;
    text-align: center;
  }
}
.subs__subs {
  margin-bottom: 12px;
}
.subs__subs input {
  background: inherit;
  border-bottom: 1px solid #151618;
  width: 60%;
  height: 40px;
}
.subs__subs input::placeholder {
  font-size: 20px;
  color: #b8b58b;
}
.subs__subs button {
  padding: 12px 41px;
  background: #fff;
  border: 1px solid #000;
}
.subs__inner label {
  font-size: 13px;
}

.we__content {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}
@media only screen and (max-width: 1200px) {
  .we__content {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
.we__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 0;
}
@media only screen and (max-width: 1200px) {
  .we__block {
    padding: 20px 0;
  }
}
.we__block h3 {
  font-size: 30px;
  font-weight: lighter;
}
.we__block h4 {
  font-weight: 600;
}

.footer {
  background: #f7f2ea;
}

.footer h4 {
  font-size: 24px;
  font-family: "Cormorant";
  margin-bottom: 50px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .footer__inner {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 480px) {
  .footer__inner {
    justify-content: center;
    gap: 60px;
  }
  .footer__products {
  }
}

.footer__inner li {
  font-weight: lighter;
  transition: all 0.3s ease;
}
.footer__inner li:hover {
  transform: scale(1.1);
}
.footer__products ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__company ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__other {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 480px) {
  .footer__other {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.footer__text {
  max-width: 270px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}
.footer__text p {
  text-align: start;
  font-weight: lighter;
  margin-bottom: 20px;
}
.footer__text span {
  font-weight: lighter;
  font-size: 12px;
}
.footer__contacts {
  max-width: 270px;
  font-weight: lighter;
  font-size: 13px;
}
.footer__contacts p {
  margin-bottom: 20px;
}
.footer__number {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
.footer__number--mail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}
