@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Pridi:wght@200;300;400;500;600;700&display=swap");
* {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
  font-family: Montserrat, sans-serif;
}
* .btn-vama {
  font-weight: 500;
  line-height: 1.5rem;
  color: #ffffff;
  background-color: #295321;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.475rem 0.85rem;
  font-size: 1.2rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
* .btn-vama:hover, * .btn-vama:active {
  background-color: #0c7411;
  outline: none;
  color: #ffffff;
}
* a:hover, * a:active {
  color: #12290e;
}
* .btn-vama-light {
  font-weight: 500;
  line-height: 1.5rem;
  color: #ffffff;
  background-color: #33f53d;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.475rem 1.85rem;
  font-size: 1.2rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
* .btn-vama-light:hover, * .btn-vama-light:active {
  background-color: #0c7411;
  outline: none;
  color: #ffffff;
}

/*################################# SPINNER */
#spinner {
  background-color: #ffffff;
  z-index: 9999;
  color: #0c7411;
}

/*################################# TOPBAR */
#top-bar {
  background-color: #12290e;
  padding: 4px 0;
  color: #eeeeee;
  font-size: 0.85rem;
}
#top-bar a {
  text-decoration: none;
  color: #eeeeee;
  font-size: 0.85rem;
}
#top-bar a:hover {
  color: #33f53d;
}
#top-bar a svg {
  font-size: 1.2rem;
}

/*################################# HEADER LINE */
.navbar #searchBox input#keyword {
  border: none;
  border-bottom: solid 1px #999;
  width: 90%;
  font-size: 1.4rem;
  padding: 4px 15px;
  color: #888;
  outline: none;
}
.navbar #searchBox button {
  border: none;
  background-color: transparent;
  color: #295321;
  font-size: 1.3rem;
}
.navbar #toggleButton button {
  border: none;
  background-color: transparent;
  color: #295321;
  font-size: 2rem;
  padding: 4px 15px;
}

.navbar-nav a {
  text-decoration: none;
  color: #12290e;
  font-size: 1.1rem;
}
.navbar-nav a:hover {
  color: #295321;
}

/*################################# SLIDER */
#slider .owl-dots {
  position: relative;
  z-index: 99;
  margin-top: -30px;
}
#slider .owl-dots .owl-dot span {
  width: 60px;
  height: 6px;
  margin: 5px 7px;
  background: #295321;
  display: block;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
#slider .owl-dots .owl-dot.active span {
  background: #0c7411;
}

/*################################# MAIN */
main .titleSection {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .titleSection h1 {
  font-family: Pridi, Georgia, "Times New Roman", Times, serif;
  font-size: 3rem;
  letter-spacing: 0.5px;
  color: #295321;
  text-align: center;
}
main .titleSection .line {
  position: relative;
  height: 2px;
  background-color: #ccc;
  width: 60%;
}
main #products .item {
  padding: 8px;
}
main #products .item .innerItem {
  border: solid 1px #ddd;
  border-radius: 6px;
}
main #products .item .innerItem figure {
  overflow: hidden;
}
main #products .item .innerItem figure img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
main #products .item .innerItem figure img:hover {
  transform: scale(1.1);
}
main #products .item .innerItem .description small {
  color: #777;
  margin-bottom: 10px;
}
main #products .item .innerItem .description a.title {
  text-decoration: none;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #12290e;
  line-height: 1.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: transform 0.5s ease;
}
main #products .item .innerItem .description a.title:hover {
  color: #295321;
  transition: transform 0.5s ease;
}
main #blognews .innerItem {
  padding: 8px;
}
main #blognews .innerItem .item {
  border: solid 1px #ddd;
  border-radius: 6px;
}
main #blognews .innerItem .item figure {
  overflow: hidden;
}
main #blognews .innerItem .item figure img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
main #blognews .innerItem .item figure img:hover {
  transform: scale(1.1);
}
main #blognews .innerItem .item .description small {
  color: #777;
  margin-bottom: 10px;
}
main #blognews .innerItem .item .description a.title {
  text-decoration: none;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #12290e;
  line-height: 1.6rem;
  overflow: hidden;
  transition: transform 0.5s ease;
}
main #blognews .innerItem .item .description a.title:hover {
  color: #295321;
  transition: transform 0.5s ease;
}
main #blognews .innerItem .item .description .call {
  margin-top: 10px;
}

/*################################# bottomBanners */
#bottomBanners {
  background-color: #295321;
  color: #ffffff;
}
#bottomBanners h1 {
  font-weight: 700;
  font-size: 2.5rem;
  font-family: Pridi, Georgia, "Times New Roman", Times, serif;
  letter-spacing: 1px;
}
#bottomBanners p {
  font-size: 1.6rem;
  padding: 8px 0;
}
@media (max-width: 1300px) {
  #bottomBanners h1 {
    font-size: 2rem;
  }
  #bottomBanners p {
    font-size: 1rem;
  }
}
@media (max-width: 1000px) {
  #bottomBanners h1 {
    font-size: 1.6rem;
  }
  #bottomBanners p {
    font-size: 1rem;
  }
}

/*################################# FOOTER */
footer {
  background-color: #12290e;
  color: #eeeeee;
  padding: 30px 0;
}
footer p {
  font-size: 1.1rem;
}
footer h5 {
  font-family: Pridi, "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.5px;
}
footer .btn-social svg {
  font-size: 1.8rem;
}
footer a {
  text-decoration: none;
  color: #eeeeee;
}
footer a:hover {
  color: #33f53d;
}
footer .copyright p {
  font-size: 1rem;
  color: #888;
}
footer .copyright p a {
  text-decoration: none;
  color: #0c7411;
}
footer .copyright p a:hover {
  color: #33f53d;
}

.btn-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 45px;
  z-index: 9999;
}

.back-to-top {
  position: fixed;
  left: 20px;
  bottom: 15px;
  background-color: #295321;
  color: #eeeeee;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  text-align: center;
  border-radius: 50%;
}
.back-to-top:hover {
  background-color: #0c7411;
}
.back-to-top button {
  position: relative;
  width: 100%;
  text-align: center;
  border: none;
  outline: none;
  background-color: transparent;
  color: #eeeeee;
  font-size: 1.5rem;
}/*# sourceMappingURL=style.css.map */