.hero {
  padding: 30px 40px 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 70px;
}

@media screen and (min-width: 1200px) {
  .hero-banner-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
}
.hero-banner-wrapper .hero-banner-img {
  width: 100%;
  height: 300px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .hero-banner-wrapper .hero-banner-img {
    width: 600px;
    height: 491px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}

.hero-banner-section {
  background: #f7f4ef;
  padding: 60px 0;
}

.product-btn,
.contact-btn {
  background-color: transparent;
  color: #4b6043;
  border-radius: 5px;
  display: inline-block;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  transition: 0.3s all ease-in-out;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #4b6043;
  cursor: pointer;
}
.product-btn:hover,
.contact-btn:hover {
  width: 220px;
}

.btn-container--center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .blog-cards-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
  }
}
.blog-cards-wrapper .blog-card {
  cursor: pointer;
  margin-bottom: 45px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .blog-cards-wrapper .blog-card {
    width: 45%;
  }
}
@media screen and (min-width: 1200px) {
  .blog-cards-wrapper .blog-card {
    width: 30%;
  }
}
.blog-cards-wrapper .blog-card--img-container {
  width: 100%;
  height: 270px;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .blog-cards-wrapper .blog-card--img-container {
    height: 350px;
  }
}
.blog-cards-wrapper .blog-card--img-container img {
  transition: all 0.3s ease-in-out;
}
.blog-cards-wrapper .blog-card--title {
  font-size: 20px;
  color: #4b6043;
  font-weight: 600;
  margin-bottom: 20px;
  min-height: 81px;
}
.blog-cards-wrapper .blog-card--btn-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.blog-cards-wrapper .blog-card--btn {
  margin-top: 20px;
  margin-right: 10px;
  text-align: right;
  display: inline-block;
  color: #a68a64;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  padding: 5px;
  overflow: hidden;
}
.blog-cards-wrapper .blog-card--btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.5px;
  background-color: #a68a64;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 2px;
  left: 0;
  transform: translateX(-100%);
  transition: 0.4s ease-in-out;
}
.blog-cards-wrapper .blog-card:hover .blog-card--img-container img {
  transform: scale(1.05);
}
.blog-cards-wrapper .blog-card:hover .blog-card--btn::before {
  transform: translateX(0);
}
.blog-cards-wrapper .blog-card--category {
  margin-bottom: 5px;
  color: #a68a64;
  text-transform: uppercase;
  font-size: 10px;
}
.blog-cards-wrapper .blog-card a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.product-wrapper:not(:last-of-type) {
  padding-bottom: 100px;
  position: relative;
}
.product-wrapper:not(:last-of-type)::after {
  content: "";
  width: 60%;
  height: 0.5px;
  background-color: #bebcba;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}
.product-wrapper .product-element-container {
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .product-wrapper .product-element-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
}
.product-wrapper .product-element-container--text-area {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .product-wrapper .product-element-container--text-area {
    margin-bottom: 0;
  }
}
.product-wrapper .product-element-container--btn {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .product-wrapper .product-element-container--btn {
    width: 300px;
  }
}
.product-wrapper .product-element-container .product-element-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-wrapper .faq-element {
  margin-bottom: 20px;
}/*# sourceMappingURL=health.css.map */