.text {
  color: #4a4a47;
  line-height: 170%;
}
.text--mb {
  margin-bottom: 20px;
}
.text--bold {
  font-weight: bold;
}
.text--center {
  text-align: center;
}

.heading {
  margin-bottom: 10px;
}
.heading--main {
  font-family: "Oregano", sans-serif;
  font-size: 34px;
}
@media screen and (min-width: 1200px) {
  .heading--main {
    font-size: 46px;
  }
}
.heading--section {
  position: relative;
  margin-bottom: 30px;
  font-family: "Oregano", sans-serif;
  text-align: center;
  max-width: 90%;
  font-size: 34px;
}
@media screen and (min-width: 1200px) {
  .heading--section {
    display: inline-block;
    font-size: 46px;
  }
  .heading--section::before {
    content: "";
    display: block;
    width: 100%;
    height: 0.5px;
    background-color: #4b6043;
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateX(-120%);
  }
  .heading--section::after {
    content: "";
    display: block;
    width: 100%;
    height: 0.5px;
    background-color: #4b6043;
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateX(120%);
  }
}
.heading--product {
  font-size: 30px;
  color: #4b6043;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}
.heading--product:first-of-type {
  margin-top: 30px;
}
.heading--faq {
  font-size: 22px;
  color: #4b6043;
  font-weight: 600;
  margin-bottom: 10px;
}
.heading--category-card {
  font-size: 20px;
  color: #4b6043;
  font-weight: 600;
  margin-bottom: 20px;
}

.logo-container {
  width: 200px;
  flex-shrink: 0;
}

.nav-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-grow: 1;
  padding-top: 10px;
}
@media screen and (max-width: 1200px) {
  .nav-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
  }
}

.socials-icons-wrapper {
  gap: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: none;
}
@media screen and (min-width: 1200px) {
  .socials-icons-wrapper {
    display: flex;
  }
}
.socials-icons-wrapper .social-ico {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.menu-wrapper {
  position: relative;
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 1200px) {
  .menu-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fefefe;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
  }
}
.menu-wrapper.active {
  opacity: 1;
  pointer-events: all;
}
.menu-wrapper ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0;
}
@media screen and (min-width: 1200px) {
  .menu-wrapper ul {
    flex-direction: row;
    justify-content: center;
    gap: 25px;
  }
}
.menu-wrapper ul .menu-item {
  list-style-type: none;
  font-size: 18px;
  color: #4b6043;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 5px;
  margin: 0;
  line-height: normal;
}
@media screen and (min-width: 1200px) {
  .menu-wrapper ul .menu-item::before {
    content: "";
    display: block;
    width: 100%;
    height: 0.5px;
    background-color: #4b6043;
    transition: all 0.3s ease-in-out;
    position: absolute;
    bottom: 2px;
    left: 0;
    transform: translateX(-100%);
    transition: 0.4s ease-in-out;
  }
}
.menu-wrapper ul .menu-item:hover::before {
  transform: translateX(0);
}
.menu-wrapper ul .menu-item a {
  text-decoration: none;
}

.burger {
  width: 30px;
  height: 19px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 2000;
}
@media screen and (min-width: 1200px) {
  .burger {
    display: none;
  }
}
.burger-element {
  width: 100%;
  height: 1.5px;
  background-color: #4b6043;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  color: #4a4a47;
}

html {
  scroll-behavior: smooth;
  overflow: auto;
}
html.menu-active {
  overflow: hidden;
}

body {
  background: #fefefe;
  overflow-x: hidden;
}

.content-container {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin: 0 auto;
  height: 100%;
}
@media screen and (min-width: 576px) {
  .content-container {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .content-container {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .content-container {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .content-container {
    max-width: 1140px;
  }
}
@media screen and (min-width: 1400px) {
  .content-container {
    max-width: 1320px;
  }
}
@media screen and (min-width: 1600px) {
  .content-container {
    max-width: 1570px;
  }
}

@media screen and (min-width: 1200px) {
  .flex-wrapper--text-left {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .flex-wrapper--text-right {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .flex-wrapper--standard {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1200px) {
  .flex-wrapper--center-align {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .flex-wrapper--center-align-reverse {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
}

.img-container img,
.img-container picture {
  width: 100%;
  height: 100%;
  display: block;
}
.img-container--contain img,
.img-container--contain picture {
  -o-object-fit: contain;
     object-fit: contain;
}
.img-container--cover img,
.img-container--cover picture {
  -o-object-fit: cover;
     object-fit: cover;
}

.link-res {
  display: inline-block;
  text-decoration: none;
}

.pos-rel {
  position: relative;
}

section {
  margin-bottom: 60px;
}
@media screen and (min-width: 1200px) {
  section {
    margin-bottom: 100px;
  }
}

.text-section-intro {
  margin-bottom: 50px;
}

.section-heading-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

footer {
  background-color: #f7f4ef;
  padding: 40px 0;
}
footer .footer-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  footer .footer-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
footer .footer-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  footer .footer-container {
    width: auto;
    display: block;
  }
}
footer .socials-icons-wrapper {
  display: flex;
}
footer .socials-icons-wrapper .social-ico a {
  display: block;
  width: 100%;
  height: 100%;
}

.footer--heading {
  font-size: 32px;
  color: #4b6043;
  font-family: "Oregano", sans-serif;
  margin-bottom: 15px;
}

.footer-menu-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  padding-left: 20px;
}
.footer-menu-wrapper .menu-item {
  list-style-type: none;
  cursor: pointer;
  position: relative;
}
.footer-menu-wrapper .menu-item::before {
  content: "";
  display: block;
  height: 80%;
  width: 0.5px;
  background-color: #4b6043;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-10px, -50%);
  opacity: 0;
  transition: 0.3s;
}
.footer-menu-wrapper .menu-item:hover::before {
  opacity: 1;
}
.footer-menu-wrapper .menu-item a {
  text-decoration: none;
}

.list {
  padding-left: 40px;
}
.list li {
  margin-bottom: 10px;
}/*# sourceMappingURL=global.css.map */