@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,300;1,400;1,500;1,600;1,700&display=swap");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input, textarea, select, button {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.hidden {
  display: none;
}

.justify-start {
  justify-content: start;
}
.justify-end {
  justify-content: end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-evenly {
  justify-content: space-evenly;
}

.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-start {
  text-align: start;
}
.text-end {
  text-align: end;
}

.place-items-start {
  place-items: start;
}
.place-items-end {
  place-items: end;
}
.place-items-center {
  place-items: center;
}
.place-items-baseline {
  place-items: baseline;
}
.place-items-stretch {
  place-items: stretch;
}

.gap-10 {
  gap: 10px;
}
.gap-20 {
  gap: 20px;
}
.gap-30 {
  gap: 30px;
}

.shrink {
  flex-shrink: 1;
}
.shrink-0 {
  flex-shrink: 0;
}

.w-full {
  width: 100%;
}

.h-screen {
  height: 100vh;
}

.cms-button {
  padding: 10px 20px;
  border: none;
  border-radius: 6.6666666667px;
  background: #355d1f;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  transition: all 0.3s ease;
}
.cms-button:hover {
  color: white;
  background: rgb(31.2016129032, 54.75, 18.25);
}

.cms-title {
  width: 100%;
  padding: 80px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 480px) {
  .cms-title {
    padding: 50px 15px;
  }
}
.cms-title__container {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cms-title__container h1 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .cms-title__container h1 {
    font-size: 28px;
  }
}
.cms-title__container span {
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .cms-title__container span {
    font-size: 14px;
  }
}

.cms-category {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-category {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-category__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-category__container {
    width: 100%;
  }
}
.cms-category__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-category__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .cms-category__wrapper.mobile-1cols {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cms-team {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-team {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-team__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-team__container {
    width: 100%;
  }
}
.cms-team__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-team__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cms-contact {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-contact {
    padding: 20px 15px;
  }
}
.cms-contact__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .cms-contact__container {
    width: 100%;
  }
}
.cms-contact__wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 50px 50px 0 50px;
  gap: 60px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper {
    flex-direction: column;
    padding: 0px;
    gap: 30px;
    margin-top: 20px;
  }
}
.cms-contact__wrapper-text {
  display: flex;
  flex-direction: column;
}
.cms-contact__wrapper-text h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper-text h1 {
    font-size: 24px;
  }
}
.cms-contact__wrapper-text h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper-text h4 {
    font-size: 18px;
  }
}
.cms-contact__wrapper-form {
  padding: 40px;
  border: 1px solid rgba(53, 93, 31, 0.062745098);
  background: white;
  border-radius: 20px;
  width: 650px;
  margin-top: -100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper-form {
    width: 100%;
    margin-top: 0px;
    padding: 20px;
  }
}
.cms-contact__wrapper-form > h3 {
  font-size: 26px;
  font-weight: 600;
}
.cms-contact__wrapper-form > button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #355d1f;
  color: white;
}
.cms-contact__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.cms-contact__items > li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cms-contact__items > li i {
  width: 65px;
  height: 65px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: #355d1f;
  background: rgba(53, 93, 31, 0.1);
  flex-shrink: 0;
  font-size: 30px;
}
.cms-contact__items > li div {
  display: flex;
  flex-direction: column;
}
.cms-contact__items > li div > span:first-child {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
}
.cms-contact__social {
  display: flex;
  gap: 15px;
}
.cms-contact__social li {
  display: flex;
}
.cms-contact__social a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white !important;
  transition: all 0.3s ease;
}
.cms-contact__social a.uil-facebook-f {
  background: #3b5998;
}
.cms-contact__social a.uil-instagram {
  background: #e4405f;
}
.cms-contact__social a.uil-youtube {
  background: #cd201f;
}
.cms-contact__social a.uil-twitter-alt {
  background: #55acee;
}
.cms-contact__social a.fa-x-twitter {
  background: #262829;
}
.cms-contact__social a.uil-linkedin-alt {
  background: #0077b5;
}
.cms-contact__social a:hover {
  transform: scale(1.1);
}
.cms-contact__map {
  width: 100%;
  height: auto;
  aspect-ratio: 3/1;
  border-radius: 20px;
  overflow: hidden;
}
.cms-contact__form-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cms-contact__form-row label {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
}
.cms-contact__form-row input, .cms-contact__form-row textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(53, 93, 31, 0.062745098);
  border-radius: 5px;
  outline: none;
  transition: all 0.3s ease;
}
.cms-contact__form-row input:focus, .cms-contact__form-row textarea:focus {
  border-color: #355d1f;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
.cms-contact__form-row textarea {
  height: 150px;
  resize: none;
}

.cms-page {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-page {
    padding: 20px 15px;
  }
}
.cms-page__container {
  width: 960px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-page__container {
    width: 100%;
  }
}
.cms-page__container svg.not-found {
  max-height: 450px;
}
.cms-page__title {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cms-page__title h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 5px;
}
.cms-page__title span {
  font-size: 18px;
  font-weight: 300;
}
.cms-page__title span img {
  max-width: 100% !important;
  height: auto !important;
}
.cms-page__img {
  width: calc(100% + 170px);
  margin-left: -85px;
  border-radius: 20px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/8;
  background: rgba(53, 93, 31, 0.062745098);
}
@media (max-width: 480px) {
  .cms-page__img {
    width: 100%;
    margin-left: 0px;
  }
}
.cms-page__content {
  width: 100%;
  line-height: 1.5;
}
.cms-page__content img {
  max-width: 100% !important;
  height: auto !important;
}

.cms-post {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cms-post__img {
  width: 100%;
  display: flex;
  margin-bottom: 10px;
}
.cms-post__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
  background: rgba(53, 93, 31, 0.062745098);
  border: 1px solid rgba(53, 93, 31, 0.062745098);
  border-radius: 20px;
}
.cms-post__category {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.cms-post__category:hover {
  opacity: 1;
}
.cms-post > h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .cms-post > h2 {
    font-size: 16px;
  }
}
.cms-user {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cms-user img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 13/16;
  background: rgba(53, 93, 31, 0.062745098);
  border: 1px solid rgba(53, 93, 31, 0.062745098);
  border-radius: 20px;
  margin-bottom: 10px;
}
.cms-user > h2 {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .cms-user > h2 {
    font-size: 16px;
  }
}
.cms-user > span {
  font-weight: 300;
  font-size: 14px;
}

.cms-comment {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  border: 1px solid rgba(53, 93, 31, 0.062745098);
}
.cms-comment__header {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(53, 93, 31, 0.062745098);
  display: flex;
  font-size: 14px;
  gap: 10px;
  align-items: center;
}
.cms-comment__header span {
  font-weight: 700;
}
.cms-comment__text {
  padding: 20px;
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
}
@media (max-width: 480px) {
  .cms-comment__text {
    font-size: 16px;
    padding: 15px;
  }
}

.cms-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.cms-pagination a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid rgba(53, 93, 31, 0.062745098);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.cms-pagination a:hover {
  opacity: 1;
}
.cms-pagination a.active {
  background: #355d1f;
  color: white;
  border: none;
  opacity: 1;
}

.cms-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cms-gallery__item {
  display: flex;
}
.cms-gallery__item img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
  background: rgba(53, 93, 31, 0.062745098);
  border: 1px solid rgba(53, 93, 31, 0.062745098);
}

.cms-form {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
}
.cms-form h2 {
  font-size: 24px;
  font-weight: 600;
}
.cms-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #355d1f;
  color: white;
}
.cms-form__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cms-form__item label {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
}
.cms-form__item input, .cms-form__item textarea, .cms-form__item select {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(53, 93, 31, 0.062745098);
  border-radius: 5px;
  outline: none;
  transition: all 0.3s ease;
}
.cms-form__item input:focus, .cms-form__item textarea:focus, .cms-form__item select:focus {
  border-color: #355d1f;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
.cms-form__item input:required, .cms-form__item textarea:required, .cms-form__item select:required {
  border-left: 2px solid #cd201f;
}
.cms-form__item textarea {
  height: 150px;
  resize: none;
}

.cms-product {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-product {
    padding: 20px 15px;
  }
}
.cms-product__container {
  width: 1200px;
  display: flex;
  gap: 40px;
}
@media (max-width: 480px) {
  .cms-product__container {
    width: 100%;
    flex-direction: column;
    gap: 30px;
  }
}
.cms-product__gallery {
  width: 610px;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 15px;
  align-self: flex-start;
  position: sticky;
  top: 150px;
}
@media (max-width: 480px) {
  .cms-product__gallery {
    width: 100%;
    position: relative;
    top: 0px;
  }
}
.cms-product__top {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.cms-product__top-wrapper {
  display: flex;
}
.cms-product__top-img {
  display: flex;
  width: 100%;
}
.cms-product__top-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
  background: rgba(53, 93, 31, 0.062745098);
  border: 1px solid rgba(53, 93, 31, 0.062745098);
  border-radius: 20px;
}
.cms-product__bottom {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.cms-product__bottom-wrapper {
  display: flex;
}
.cms-product__bottom-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
  background: rgba(53, 93, 31, 0.062745098);
  border: 1px solid rgba(53, 93, 31, 0.062745098);
  border-radius: 10px;
  cursor: pointer;
}
.cms-product__bottom-img.swiper-slide-thumb-active {
  border-color: #355d1f;
}
.cms-product__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cms-product__content h1 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .cms-product__content h1 {
    font-size: 28px;
  }
}
.cms-product__content-description {
  font-size: 18px;
  font-weight: 300;
}
.cms-product__content-description p:last-child {
  margin-bottom: 0px;
}
.cms-product__item {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(53, 93, 31, 0.062745098);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
}
.cms-product__item.active h2 i {
  transform: rotate(180deg);
}
.cms-product__item.active .cms-product__item-content {
  max-height: 1000px;
  padding: 20px;
  line-height: 1.5;
}
.cms-product__item.active .cms-product__item-content h1 {
  font-size: 24px;
  font-weight: 600;
}
.cms-product__item.active .cms-product__item-content h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cms-product__item.active .cms-product__item-content h3, .cms-product__item.active .cms-product__item-content h4, .cms-product__item.active .cms-product__item-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cms-product__item.active .cms-product__item-content ul {
  margin: 15px;
}
.cms-product__item.active .cms-product__item-content img {
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
}
.cms-product__item h2 {
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid rgba(53, 93, 31, 0.062745098);
  color: #355d1f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.cms-product__item h2 i {
  transition: all 0.3s ease;
}
.cms-product__item-content {
  padding: 0px;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cms-catalogs {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-catalogs {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-catalogs__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-catalogs__container {
    width: 100%;
  }
}
.cms-catalogs__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-catalogs__wrapper {
    grid-template-columns: 1fr;
  }
}

.cms-catalog {
  display: flex;
  width: 100%;
  border: 1px solid rgba(53, 93, 31, 0.062745098);
  border-radius: 20px;
  padding: 20px;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.cms-catalog:hover {
  border: 1px solid #355d1f;
  background: rgba(53, 93, 31, 0.1);
}
.cms-catalog i {
  width: 60px;
  height: 60px;
  font-size: 30px;
  color: #355d1f;
  background: rgba(53, 93, 31, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cms-catalog h2 {
  font-size: 22px;
  font-weight: 600;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#preloader .spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(53, 93, 31, 0.3);
  border-radius: 50%;
  border-top-color: #355d1f;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
body {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #1d1d1b;
  background: #ffffff;
}

a {
  color: #1d1d1b;
  transition: color 0.3s ease;
}
a:hover {
  color: #355d1f;
  text-shadow: none;
}

strong {
  font-weight: 700;
}

p {
  margin-bottom: 15px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) translateX(100px);
  }
  100% {
    transform: rotate(360deg) translate(100px);
  }
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  width: max-content;
}
.button--ghost {
  padding: 15px 25px;
  border: 1px solid #1d1d1b;
  color: #1d1d1b;
}
.button--ghost:hover {
  border: 1px solid #355d1f;
  color: #355d1f;
  box-shadow: none;
}
.button--lang {
  background: #1d1d1b;
  color: #ffffff;
  padding: 8px 10px;
  border-radius: 35px;
}
.button--lang:hover {
  background: #355d1f;
  color: white;
}
.button--lang:hover i {
  color: white;
}
.button--lang img {
  width: 20px;
  height: 20px;
  object-fit: cover;
  border-radius: 50%;
}
.button--lang i {
  color: #ffffff;
}

.title-main {
  display: flex;
  flex-direction: column;
  max-width: 820px;
}
.title-main h6 {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2px;
}
@media (max-width: 480px) {
  .title-main h6 {
    font-size: 14px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .title-main h6 {
    font-size: 14px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .title-main h6 {
    font-size: 14px;
  }
}
.title-main h5 {
  background: none;
  -webkit-text-fill-color: initial;
  color: #1d1d1b;
  font-size: 40px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .title-main h5 {
    font-size: 22px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .title-main h5 {
    font-size: 22px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .title-main h5 {
    font-size: 22px;
  }
}

.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9;
}
.header::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: #355d1f;
  opacity: 0.2;
}
.header__container {
  width: 100%;
  max-width: 1340px;
  padding: 25px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .header__container {
    padding: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__container {
    padding: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__container {
    padding: 15px;
  }
}
.header__container nav {
  display: flex;
  width: 100%;
  max-width: 600px;
  font-size: 14px;
  position: relative;
}
@media (max-width: 480px) {
  .header__container nav {
    display: none;
    position: absolute;
    width: calc(100% - 30px);
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1019607843);
    left: 15px;
    top: 80px;
    padding: 20px 15px;
    border-radius: 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__container nav {
    display: none;
    position: absolute;
    width: calc(100% - 30px);
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1019607843);
    left: 15px;
    top: 80px;
    padding: 20px 15px;
    border-radius: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__container nav {
    display: none;
    position: absolute;
    width: calc(100% - 30px);
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1019607843);
    left: 15px;
    top: 80px;
    padding: 20px 15px;
    border-radius: 10px;
  }
}
.header__container nav ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 480px) {
  .header__container nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__container nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__container nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
.header__container nav ul li {
  display: flex;
  position: relative;
}
@media (max-width: 480px) {
  .header__container nav ul li {
    width: 100%;
    flex-direction: column;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__container nav ul li {
    width: 100%;
    flex-direction: column;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__container nav ul li {
    width: 100%;
    flex-direction: column;
  }
}
.header__container nav ul a {
  display: flex;
  position: relative;
  color: #1d1d1b;
}
@media (max-width: 480px) {
  .header__container nav ul a {
    color: #1d1d1b !important;
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__container nav ul a {
    color: #1d1d1b !important;
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__container nav ul a {
    color: #1d1d1b !important;
    width: 100%;
  }
}
.header__container nav ul a:hover {
  color: #355d1f;
}
.header__container nav ul a:hover::before {
  width: 100%;
  opacity: 1;
}
.header__container nav ul a::before {
  content: "";
  height: 3px;
  width: 0;
  opacity: 0;
  border-radius: 3px;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #355d1f;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .header__container nav ul a::before {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__container nav ul a::before {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__container nav ul a::before {
    display: none;
  }
}
.header__nav-link-group {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 480px) {
  .header__nav-link-group {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__nav-link-group {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__nav-link-group {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }
}
.header__nav-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(53, 93, 31, 0.14);
  background: rgba(53, 93, 31, 0.08);
  color: #355d1f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.header__nav-toggle i {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.header__nav-toggle:hover {
  background: #355d1f;
  color: #ffffff;
}
.header__logo {
  display: flex;
}
.header__logo img {
  height: 75px;
}
@media (max-width: 480px) {
  .header__logo img {
    height: 45px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__logo img {
    height: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__logo img {
    height: 45px;
  }
}
.header__mobile-menu {
  width: 45px;
  height: 45px;
  border: 1px solid #1d1d1b;
  color: #1d1d1b;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}
@media (max-width: 480px) {
  .header__mobile-menu {
    display: flex;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__mobile-menu {
    display: flex;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__mobile-menu {
    display: flex;
  }
}
.header__mobile-menu:hover {
  color: #355d1f;
  border: 1px solid #355d1f;
  box-shadow: none;
}

.nav-item--has-mega {
  position: static !important;
}
.nav-item--has-mega:hover .mega-menu, .nav-item--has-mega:focus-within .mega-menu {
  transform: translateX(-50%) translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.nav-item--has-mega:hover .header__nav-toggle, .nav-item--has-mega:focus-within .header__nav-toggle {
  background: #355d1f;
  color: #ffffff;
}
.nav-item--has-mega:hover .header__nav-toggle i, .nav-item--has-mega:focus-within .header__nav-toggle i {
  transform: rotate(180deg);
}
.nav-item--has-mega.is-open .header__nav-toggle {
  background: #355d1f;
  color: #ffffff;
}
.nav-item--has-mega.is-open .header__nav-toggle i {
  transform: rotate(180deg);
}
@media (max-width: 480px) {
  .nav-item--has-mega {
    position: relative !important;
  }
  .nav-item--has-mega:hover .mega-menu, .nav-item--has-mega:focus-within .mega-menu {
    transform: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .nav-item--has-mega {
    position: relative !important;
  }
  .nav-item--has-mega:hover .mega-menu, .nav-item--has-mega:focus-within .mega-menu {
    transform: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-item--has-mega {
    position: relative !important;
  }
  .nav-item--has-mega:hover .mega-menu, .nav-item--has-mega:focus-within .mega-menu {
    transform: none;
  }
}

.nav-item--has-mega--compact .header__nav-link-group {
  gap: 2px;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  transform: translateX(-50%) translateY(18px);
  width: min(1240px, 100vw - 60px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(53, 93, 31, 0.1);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(29, 29, 27, 0.12);
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
  z-index: 15;
}
.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  top: -24px;
  width: 100%;
  height: 24px;
}
@media (max-width: 480px) {
  .mega-menu {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 12px;
    padding: 0;
    border: none;
    border-radius: 18px;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    display: none;
    background: #f8f8f5;
  }
  .mega-menu::before {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .mega-menu {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 12px;
    padding: 0;
    border: none;
    border-radius: 18px;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    display: none;
    background: #f8f8f5;
  }
  .mega-menu::before {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .mega-menu {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 12px;
    padding: 0;
    border: none;
    border-radius: 18px;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    display: none;
    background: #f8f8f5;
  }
  .mega-menu::before {
    display: none;
  }
}
.mega-menu__inner {
  display: grid;
  grid-template-columns: minmax(220px, 250px) minmax(0, 1fr);
  gap: 16px;
}
@media (max-width: 480px) {
  .mega-menu__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .mega-menu__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .mega-menu__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.mega-menu__intro {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0.12) 70px, transparent 71px), radial-gradient(circle at left bottom, rgba(255, 255, 255, 0.09) 0, rgba(255, 255, 255, 0.09) 56px, transparent 57px), linear-gradient(160deg, #1e3512 0%, #355d1f 55%, #6d9f4e 100%);
  color: #ffffff !important;
  border-radius: 22px;
  padding: 28px 24px;
  min-height: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.mega-menu__intro::before {
  display: none;
}
@media (max-width: 480px) {
  .mega-menu__intro {
    padding: 22px 18px;
    color: #ffffff !important;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .mega-menu__intro {
    padding: 22px 18px;
    color: #ffffff !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .mega-menu__intro {
    padding: 22px 18px;
    color: #ffffff !important;
  }
}
.mega-menu__intro span {
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  opacity: 0.75;
}
.mega-menu__intro strong {
  margin-top: 12px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 600;
}
@media (max-width: 480px) {
  .mega-menu__intro strong {
    font-size: 24px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .mega-menu__intro strong {
    font-size: 24px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .mega-menu__intro strong {
    font-size: 24px;
  }
}
.mega-menu__intro p {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}
.mega-menu__intro em {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  margin-top: 28px;
  font-size: 20px;
  font-style: normal;
}
.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media only screen and (max-width: 1250px) {
  .mega-menu__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .mega-menu__grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .mega-menu__grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .mega-menu__grid {
    grid-template-columns: 1fr;
  }
}
.mega-menu__card {
  background: #ffffff;
  border: 1px solid rgba(53, 93, 31, 0.08);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.mega-menu__card:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 93, 31, 0.2);
  box-shadow: 0 18px 40px rgba(29, 29, 27, 0.08);
}
.mega-menu__image {
  width: 100%;
  height: 118px;
  overflow: hidden;
}
.mega-menu__image::before {
  display: none;
}
.mega-menu__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.mega-menu__image:hover img {
  transform: scale(1.05);
}
.mega-menu__content {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.mega-menu__title {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.mega-menu__title::before {
  display: none;
}
.mega-menu__title i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(53, 93, 31, 0.08);
  color: #355d1f;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.mega-menu__title:hover i {
  background: #355d1f;
  color: #ffffff;
}
.mega-menu__content p {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(29, 29, 27, 0.68);
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mega-menu__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(53, 93, 31, 0.08);
}
.mega-menu__links li {
  display: flex;
  width: 100%;
}
.mega-menu__links a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(29, 29, 27, 0.82);
}
.mega-menu__links a::before {
  content: "";
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  position: static;
  transform: none;
  opacity: 1;
  background: rgba(53, 93, 31, 0.4);
  transition: all 0.3s ease;
}
.mega-menu__links a:hover {
  color: #355d1f;
}
.mega-menu__links a:hover::before {
  background: #355d1f;
}

.mega-menu--compact {
  width: min(920px, 100vw - 180px);
}
@media (max-width: 480px) {
  .mega-menu--compact {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .mega-menu--compact {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .mega-menu--compact {
    width: 100%;
  }
}

.mega-menu__inner--compact {
  grid-template-columns: minmax(220px, 245px) minmax(0, 1fr);
}
@media (max-width: 480px) {
  .mega-menu__inner--compact {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .mega-menu__inner--compact {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .mega-menu__inner--compact {
    grid-template-columns: 1fr;
  }
}

.mega-menu__intro--compact {
  padding: 24px 22px;
}
.mega-menu__intro--compact strong {
  font-size: 24px;
}
.mega-menu__intro--compact p {
  font-size: 13px;
  line-height: 1.65;
}

.mega-menu__grid--compact {
  gap: 14px;
}

.mega-menu__card--compact .mega-menu__image {
  height: 130px;
}
.mega-menu__card--compact .mega-menu__content {
  padding: 14px 14px 16px;
  gap: 8px;
}
.mega-menu__card--compact .mega-menu__title {
  font-size: 15px;
}
.mega-menu__card--compact .mega-menu__title i {
  width: 30px;
  height: 30px;
}
.mega-menu__card--compact .mega-menu__content p {
  font-size: 12px;
  line-height: 1.6;
}

.mega-menu .mega-menu__intro::before,
.mega-menu .mega-menu__image::before,
.mega-menu .mega-menu__title::before {
  display: none !important;
  content: none;
}

.mega-menu .mega-menu__links a::before {
  content: "";
  width: 6px !important;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  position: static !important;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
  opacity: 1 !important;
  background: rgba(53, 93, 31, 0.4);
  transition: all 0.3s ease;
}

.mega-menu .mega-menu__links a:hover::before {
  width: 6px !important;
  background: #355d1f;
}

@media (max-width: 480px) {
  .header__container nav ul .mega-menu__intro {
    color: #ffffff !important;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__container nav ul .mega-menu__intro {
    color: #ffffff !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__container nav ul .mega-menu__intro {
    color: #ffffff !important;
  }
}

.page-home .header {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10;
}
.page-home .header::before {
  display: none;
}

.lang {
  position: relative;
}
.lang:hover .button--lang {
  background: #355d1f;
  color: white;
}
.lang:hover .button--lang i {
  color: white;
}
.lang:hover .sub-menu {
  transform: translateX(-50%) translateY(0);
  visibility: visible;
  opacity: 1;
}
.lang .sub-menu {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  background: white;
  border-radius: 8px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.lang .sub-menu > ul {
  display: flex;
  flex-direction: column;
}
.lang .sub-menu > ul > li {
  display: flex;
}
.lang .sub-menu > ul > li > a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  white-space: nowrap;
}
.lang .sub-menu > ul > li > a:hover {
  background: #F5F5F7;
}
.lang .sub-menu > ul > li > a img {
  width: 20px;
  height: 20px;
  object-fit: cover;
  border-radius: 50%;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: calc(100vh - 125px);
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background: #2b1808;
  color: #ffffff;
  isolation: isolate;
}
@media (max-width: 480px) {
  .hero {
    height: 800px;
    padding: 0 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero {
    height: 800px;
    padding: 0 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    height: 800px;
    padding: 0 15px;
  }
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__image, .hero__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 29, 27, 0.16) 0%, rgba(29, 29, 27, 0.28) 35%, rgba(29, 29, 27, 0.52) 100%);
  z-index: 1;
}
.hero i {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: #355d1f;
  z-index: 4;
  opacity: 0.1;
}
.hero__container {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 3;
}
.hero__container h1 {
  font-size: 76px;
  line-height: 90px;
  font-weight: 700;
}
@media (max-width: 480px) {
  .hero__container h1 {
    font-size: 32px;
    line-height: 1.5;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero__container h1 {
    font-size: 32px;
    line-height: 1.5;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__container h1 {
    font-size: 32px;
    line-height: 1.5;
  }
}
.hero__container h1 strong {
  background: none;
  -webkit-text-fill-color: initial;
}
.hero__container p {
  font-size: 24px;
  font-weight: 300;
  opacity: 0.9;
  margin: 0;
}
@media (max-width: 480px) {
  .hero__container p {
    font-size: 18px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero__container p {
    font-size: 18px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__container p {
    font-size: 18px;
  }
}

.page-home .hero {
  height: 100vh;
  padding-top: 125px;
}
@media (max-width: 480px) {
  .page-home .hero {
    height: 800px;
    padding-top: 100px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .page-home .hero {
    height: 800px;
    padding-top: 100px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .page-home .hero {
    height: 800px;
    padding-top: 100px;
  }
}
.page-home .hero::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 220px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 38%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 0 0;
  position: relative;
  z-index: 3;
}
@media (max-width: 480px) {
  .stats {
    padding: 26px 15px 0;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .stats {
    padding: 26px 15px 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .stats {
    padding: 26px 15px 0;
  }
}
.stats__container {
  width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 480px) {
  .stats__container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .stats__container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .stats__container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.stats__item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 26px;
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(29, 29, 27, 0.06);
}
@media (max-width: 480px) {
  .stats__item {
    padding: 20px 18px;
    gap: 16px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .stats__item {
    padding: 20px 18px;
    gap: 16px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .stats__item {
    padding: 20px 18px;
    gap: 16px;
  }
}
.stats__icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(53, 93, 31, 0.08);
  color: #355d1f;
}
@media (max-width: 480px) {
  .stats__icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .stats__icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .stats__icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
  }
}
.stats__icon i {
  font-size: 32px;
}
@media (max-width: 480px) {
  .stats__icon i {
    font-size: 26px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .stats__icon i {
    font-size: 26px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .stats__icon i {
    font-size: 26px;
  }
}
.stats__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stats__value {
  font-size: 46px;
  line-height: 1;
  font-weight: 700;
  color: #1d1d1b;
}
@media (max-width: 480px) {
  .stats__value {
    font-size: 34px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .stats__value {
    font-size: 34px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .stats__value {
    font-size: 34px;
  }
}
.stats span {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(29, 29, 27, 0.68);
  max-width: 220px;
}
@media (max-width: 480px) {
  .stats span {
    max-width: none;
    font-size: 13px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .stats span {
    max-width: none;
    font-size: 13px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .stats span {
    max-width: none;
    font-size: 13px;
  }
}

.welcome {
  display: flex;
  align-items: center;
  justify-content: center;
}
.welcome__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 120px 0;
  position: relative;
}
@media (max-width: 480px) {
  .welcome__container {
    padding: 60px 15px;
    width: 100%;
    gap: 15px;
    flex-direction: column;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .welcome__container {
    padding: 60px 15px;
    width: 100%;
    gap: 15px;
    flex-direction: column;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .welcome__container {
    padding: 60px 15px;
    width: 100%;
    gap: 15px;
    flex-direction: column;
  }
}
.welcome__container::before {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 3px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #355d1f;
  opacity: 0.1;
}
@media (max-width: 480px) {
  .welcome__container::before {
    width: calc(100% - 30px);
    left: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .welcome__container::before {
    width: calc(100% - 30px);
    left: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .welcome__container::before {
    width: calc(100% - 30px);
    left: 15px;
  }
}
.welcome__img {
  width: 660px;
  height: 550px;
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .welcome__img {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .welcome__img {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .welcome__img {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
.welcome__img img {
  position: absolute;
}
@media (max-width: 480px) {
  .welcome__img img {
    position: relative;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .welcome__img img {
    position: relative;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .welcome__img img {
    position: relative;
  }
}
.welcome__img-1 {
  width: 285px;
  height: 285px;
  left: 0px;
  top: 0px;
  border-radius: 20px 20px 0 20px;
}
@media (max-width: 480px) {
  .welcome__img-1 {
    border-radius: 20px;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .welcome__img-1 {
    border-radius: 20px;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .welcome__img-1 {
    border-radius: 20px;
    width: 100%;
    height: auto;
  }
}
.welcome__img-2 {
  width: 285px;
  height: 240px;
  left: 0px;
  bottom: 0px;
  border-radius: 20px 0 20px 20px;
}
@media (max-width: 480px) {
  .welcome__img-2 {
    border-radius: 20px;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .welcome__img-2 {
    border-radius: 20px;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .welcome__img-2 {
    border-radius: 20px;
    width: 100%;
    height: auto;
  }
}
.welcome__img-3 {
  width: 350px;
  height: 550px;
  right: 0px;
  top: 0px;
  border-radius: 20px;
}
@media (max-width: 480px) {
  .welcome__img-3 {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .welcome__img-3 {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .welcome__img-3 {
    display: none;
  }
}
.welcome__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.welcome__text h2 {
  font-size: 38px;
  font-weight: 700;
}
@media (max-width: 480px) {
  .welcome__text h2 {
    font-size: 28px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .welcome__text h2 {
    font-size: 28px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .welcome__text h2 {
    font-size: 28px;
  }
}
.welcome__text-description {
  font-weight: 300;
  line-height: 1.75;
}
.welcome__text-description p:last-child {
  margin-bottom: 0px;
}

.products {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 120px 0;
  overflow: hidden;
}
@media (max-width: 480px) {
  .products {
    padding: 0 15px 60px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products {
    padding: 0 15px 60px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products {
    padding: 0 15px 60px 15px;
  }
}
.products__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
}
@media (max-width: 480px) {
  .products__container {
    width: 100%;
    gap: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products__container {
    width: 100%;
    gap: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products__container {
    width: 100%;
    gap: 15px;
  }
}
.products__slider {
  width: 800px;
  margin: auto;
  display: flex;
  position: relative;
}
@media (max-width: 480px) {
  .products__slider {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products__slider {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products__slider {
    width: 100%;
  }
}
.products__slider-wrapper {
  display: flex;
}
.products__slider-arrow {
  position: absolute;
  width: 65px;
  height: 65px;
  background: #1d1d1b;
  color: #ffffff;
  font-size: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .products__slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products__slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products__slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}
.products__slider-arrow:hover {
  opacity: 1;
}
.products__slider-arrow--left {
  left: 20px;
}
@media (max-width: 480px) {
  .products__slider-arrow--left {
    left: 5px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products__slider-arrow--left {
    left: 5px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products__slider-arrow--left {
    left: 5px;
  }
}
.products__slider-arrow--right {
  right: 20px;
}
@media (max-width: 480px) {
  .products__slider-arrow--right {
    right: 5px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products__slider-arrow--right {
    right: 5px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products__slider-arrow--right {
    right: 5px;
  }
}

.product {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(53, 93, 31, 0.062745098);
  background: #ffffff;
  transition: all 0.3s ease;
}
.product:hover {
  box-shadow: 0 15px 30px rgba(53, 93, 31, 0.15);
  transform: translateY(-5px);
  border-color: rgba(53, 93, 31, 0.3);
}
.product:hover svg {
  right: 20px;
  opacity: 1;
}
.product img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
@media (max-width: 480px) {
  .product img {
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .product img {
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product img {
    height: auto;
    aspect-ratio: 1/1;
  }
}
.product__text {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 25px 30px;
  height: auto;
  background: #ffffff;
  color: #1d1d1b;
  border-top: 1px solid rgba(53, 93, 31, 0.062745098);
}
@media (max-width: 480px) {
  .product__text {
    padding: 20px;
    height: auto;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .product__text {
    padding: 20px;
    height: auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product__text {
    padding: 20px;
    height: auto;
  }
}
.product__text > span {
  font-size: 13px;
  font-weight: 600;
  color: #355d1f;
  opacity: 0.8;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 480px) {
  .product__text > span {
    font-size: 12px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .product__text > span {
    font-size: 12px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product__text > span {
    font-size: 12px;
  }
}
.product__text > h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1d1d1b;
  line-height: 1.4;
  margin: 0;
  padding-right: 40px;
}
@media (max-width: 480px) {
  .product__text > h2 {
    font-size: 18px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .product__text > h2 {
    font-size: 18px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product__text > h2 {
    font-size: 18px;
  }
}
.product svg {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  opacity: 0.3;
  width: 28px;
  height: 28px;
}
.product svg path {
  fill: #355d1f !important;
  stroke: #355d1f !important;
  transition: all 0.3s ease;
}

@keyframes certificates-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 12px));
  }
}
.certificates {
  display: flex;
  justify-content: center;
  padding: 0 0 120px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .certificates {
    padding: 10px 15px 60px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .certificates {
    padding: 10px 15px 60px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .certificates {
    padding: 10px 15px 60px;
  }
}
.certificates__container {
  width: 1200px;
  position: relative;
}
@media (max-width: 480px) {
  .certificates__container {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .certificates__container {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .certificates__container {
    width: 100%;
  }
}
.certificates__marquee {
  position: relative;
  overflow: hidden;
}
.certificates__marquee::before, .certificates__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 480px) {
  .certificates__marquee::before, .certificates__marquee::after {
    width: 48px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .certificates__marquee::before, .certificates__marquee::after {
    width: 48px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .certificates__marquee::before, .certificates__marquee::after {
    width: 48px;
  }
}
.certificates__marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.certificates__marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.certificates__track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: certificates-marquee 28s linear infinite;
}
@media (max-width: 480px) {
  .certificates__track {
    gap: 16px;
    animation-duration: 20s;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .certificates__track {
    gap: 16px;
    animation-duration: 20s;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .certificates__track {
    gap: 16px;
    animation-duration: 20s;
  }
}
.certificates__item {
  flex: 0 0 154.2857142857px;
  width: 154.2857142857px;
}
@media (max-width: 480px) {
  .certificates__item {
    flex: 0 0 110px;
    width: 110px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .certificates__item {
    flex: 0 0 110px;
    width: 110px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .certificates__item {
    flex: 0 0 110px;
    width: 110px;
  }
}
.certificates__item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  display: block;
}

.slogans {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
  background: #f9f9f9;
}
@media (max-width: 480px) {
  .slogans {
    padding: 60px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .slogans {
    padding: 60px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .slogans {
    padding: 60px 15px;
  }
}
.slogans__container {
  max-width: 1340px;
  padding: 0 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 480px) {
  .slogans__container {
    padding: 0px;
    gap: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .slogans__container {
    padding: 0px;
    gap: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .slogans__container {
    padding: 0px;
    gap: 15px;
  }
}
.slogans__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .slogans__wrapper {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .slogans__wrapper {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .slogans__wrapper {
    grid-template-columns: 1fr;
  }
}

.slogan {
  padding: 60px 45px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(53, 93, 31, 0.062745098);
  transition: all 0.3s ease;
  border-radius: 20px;
  background: #ffffff;
}
@media (max-width: 480px) {
  .slogan {
    padding: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .slogan {
    padding: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .slogan {
    padding: 20px;
  }
}
.slogan:hover {
  border: 1px solid #355d1f;
  background: #ffffff;
}
.slogan:hover svg {
  opacity: 1;
}
.slogan:hover svg path {
  fill: #355d1f !important;
  stroke: #355d1f !important;
}
.slogan:hover i {
  background: #355d1f;
  color: #ffffff;
}
.slogan i {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  background: #f9f9f9;
  color: #1d1d1b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 55px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .slogan i {
    margin-bottom: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .slogan i {
    margin-bottom: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .slogan i {
    margin-bottom: 20px;
  }
}
.slogan i::before {
  position: relative;
  z-index: 2;
}
.slogan i::after {
  display: none;
}
.slogan h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.slogan span {
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .slogan span {
    margin-bottom: 0px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .slogan span {
    margin-bottom: 0px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .slogan span {
    margin-bottom: 0px;
  }
}
.slogan svg {
  opacity: 0.1;
}
@media (max-width: 480px) {
  .slogan svg {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .slogan svg {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .slogan svg {
    display: none;
  }
}
.slogan svg path {
  fill: #1d1d1b !important;
  stroke: #1d1d1b !important;
}

.about {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
}
@media (max-width: 480px) {
  .about {
    padding: 60px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about {
    padding: 60px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about {
    padding: 60px 15px;
  }
}
.about__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (max-width: 480px) {
  .about__container {
    width: 100%;
    gap: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about__container {
    width: 100%;
    gap: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about__container {
    width: 100%;
    gap: 20px;
  }
}
.about__slider-shell {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about__slider {
  width: 100%;
  overflow: hidden;
}
.about__item {
  display: grid;
  grid-template-columns: minmax(0, 590px) minmax(0, 1fr);
  align-items: stretch;
  gap: 34px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 244, 237, 0.94) 100%);
  border: 1px solid rgba(29, 29, 27, 0.06);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(29, 29, 27, 0.06);
}
@media (max-width: 480px) {
  .about__item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px;
    border-radius: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about__item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px;
    border-radius: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about__item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px;
    border-radius: 20px;
  }
}
.about__media {
  min-width: 0;
}
.about__img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border-radius: 20px;
  object-fit: cover;
}
@media (max-width: 480px) {
  .about__img {
    min-height: auto;
    aspect-ratio: 4/3;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about__img {
    min-height: auto;
    aspect-ratio: 4/3;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about__img {
    min-height: auto;
    aspect-ratio: 4/3;
  }
}
.about__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  min-width: 0;
  padding: 8px 8px 8px 0;
}
@media (max-width: 480px) {
  .about__text {
    gap: 18px;
    padding: 0 2px 2px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about__text {
    gap: 18px;
    padding: 0 2px 2px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about__text {
    gap: 18px;
    padding: 0 2px 2px;
  }
}
.about__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 480px) {
  .about__meta {
    gap: 12px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about__meta {
    gap: 12px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about__meta {
    gap: 12px;
  }
}
.about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: #355d1f;
}
.about__count {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-size: 17px;
  font-weight: 700;
  color: #1d1d1b;
}
.about__count small {
  font-size: 13px;
  font-weight: 500;
  color: rgba(29, 29, 27, 0.45);
}
.about h3 {
  font-size: 42px;
  line-height: 1.12;
  font-weight: 700;
}
@media (max-width: 480px) {
  .about h3 {
    font-size: 28px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about h3 {
    font-size: 28px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about h3 {
    font-size: 28px;
  }
}
.about__text-description {
  color: rgba(29, 29, 27, 0.78);
  font-weight: 300;
  line-height: 1.85;
}
.about__text-description p {
  margin-bottom: 16px;
}
.about__text-description p:last-child {
  margin-bottom: 0;
}
.about .button {
  width: fit-content;
  margin-top: 4px;
}
.about__controls {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  padding: 0 8px;
}
@media (max-width: 480px) {
  .about__controls {
    gap: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about__controls {
    gap: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about__controls {
    gap: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
}
.about__pagination {
  position: relative;
  flex: 1;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(29, 29, 27, 0.08);
}
.about__pagination .swiper-pagination-progressbar-fill {
  background: #355d1f;
  border-radius: 999px;
}
.about__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  justify-content: flex-end;
}
.about__slider-arrow {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(29, 29, 27, 0.08);
  border-radius: 50%;
  background: #ffffff;
  color: #355d1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s;
}
.about__slider-arrow:hover {
  background: #355d1f;
  color: #ffffff;
  border-color: #355d1f;
}
@media (max-width: 480px) {
  .about__slider-arrow {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about__slider-arrow {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about__slider-arrow {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

.production {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
  overflow: hidden;
}
@media (max-width: 480px) {
  .production {
    padding: 60px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .production {
    padding: 60px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .production {
    padding: 60px 15px;
  }
}
.production__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 54px;
}
@media (max-width: 480px) {
  .production__container {
    width: 100%;
    gap: 24px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .production__container {
    width: 100%;
    gap: 24px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .production__container {
    width: 100%;
    gap: 24px;
  }
}
.production__heading {
  position: relative;
  text-align: center;
}
.production__heading h6,
.production__heading h5 {
  position: relative;
}
.production__heading h6 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2.6px;
  color: #355d1f;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.production__heading h5 {
  max-width: 900px;
  margin: auto;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 600;
  color: #1d1d1b;
}
@media (max-width: 480px) {
  .production__heading h5 {
    font-size: 24px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .production__heading h5 {
    font-size: 24px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .production__heading h5 {
    font-size: 24px;
  }
}
.production__slider {
  position: relative;
  overflow: visible;
}
.production__slider-wrapper {
  display: flex;
}
.production__slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 62px;
  height: 62px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 35px rgba(29, 29, 27, 0.08);
  color: #355d1f;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .production__slider-arrow {
    width: 42px;
    height: 42px;
    top: auto;
    bottom: -60px;
    transform: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .production__slider-arrow {
    width: 42px;
    height: 42px;
    top: auto;
    bottom: -60px;
    transform: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .production__slider-arrow {
    width: 42px;
    height: 42px;
    top: auto;
    bottom: -60px;
    transform: none;
  }
}
.production__slider-arrow i {
  font-size: 30px;
}
@media (max-width: 480px) {
  .production__slider-arrow i {
    font-size: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .production__slider-arrow i {
    font-size: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .production__slider-arrow i {
    font-size: 20px;
  }
}
.production__slider-arrow:hover {
  background: #355d1f;
  color: #ffffff;
  box-shadow: 0 18px 35px rgba(53, 93, 31, 0.22);
}
.production__slider-arrow--left {
  left: -30px;
}
@media (max-width: 480px) {
  .production__slider-arrow--left {
    left: calc(50% - 52px);
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .production__slider-arrow--left {
    left: calc(50% - 52px);
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .production__slider-arrow--left {
    left: calc(50% - 52px);
  }
}
.production__slider-arrow--right {
  right: -30px;
}
@media (max-width: 480px) {
  .production__slider-arrow--right {
    right: calc(50% - 52px);
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .production__slider-arrow--right {
    right: calc(50% - 52px);
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .production__slider-arrow--right {
    right: calc(50% - 52px);
  }
}

.production-item {
  position: relative;
  height: 640px;
  border-radius: 20px;
  overflow: hidden;
  background: #dcdcdc;
  border: 1px solid rgba(53, 93, 31, 0.062745098);
}
@media (max-width: 480px) {
  .production-item {
    height: 460px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .production-item {
    height: 460px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .production-item {
    height: 460px;
  }
}
.production-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 29, 27, 0.02) 0%, rgba(29, 29, 27, 0.12) 32%, rgba(29, 29, 27, 0.34) 100%);
  pointer-events: none;
}
.production-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.production-item:hover .production-item__image {
  transform: scale(1.04);
}
.production-item:hover .production-item__overlay {
  background: rgba(29, 29, 27, 0.76);
}
.production-item:hover p {
  max-height: 130px;
  opacity: 1;
  margin-top: 16px;
}
.production-item__overlay {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  min-height: 190px;
  padding: 24px 24px 26px;
  background: rgba(29, 29, 27, 0.58);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: background 0.3s ease;
}
@media (max-width: 480px) {
  .production-item__overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
    min-height: 155px;
    padding: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .production-item__overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
    min-height: 155px;
    padding: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .production-item__overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
    min-height: 155px;
    padding: 20px;
  }
}
.production-item__number {
  display: block;
  font-size: 78px;
  line-height: 1;
  font-weight: 700;
  color: #98bf1f;
  margin-bottom: 18px;
}
@media (max-width: 480px) {
  .production-item__number {
    font-size: 52px;
    margin-bottom: 12px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .production-item__number {
    font-size: 52px;
    margin-bottom: 12px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .production-item__number {
    font-size: 52px;
    margin-bottom: 12px;
  }
}
.production-item h3 {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 480px) {
  .production-item h3 {
    font-size: 22px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .production-item h3 {
    font-size: 22px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .production-item h3 {
    font-size: 22px;
  }
}
.production-item p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  transition: all 0.35s ease;
}
@media (max-width: 480px) {
  .production-item p {
    max-height: 120px;
    opacity: 1;
    margin-top: 12px;
    font-size: 13px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .production-item p {
    max-height: 120px;
    opacity: 1;
    margin-top: 12px;
    font-size: 13px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .production-item p {
    max-height: 120px;
    opacity: 1;
    margin-top: 12px;
    font-size: 13px;
  }
}

.contact {
  width: 100%;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .contact {
    height: auto;
    padding: 60px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .contact {
    height: auto;
    padding: 60px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .contact {
    height: auto;
    padding: 60px 15px;
  }
}
.contact__container {
  width: 1200px;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 480px) {
  .contact__container {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .contact__container {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .contact__container {
    width: 100%;
  }
}
.contact__container img {
  max-width: 500px;
  transform: rotate(-35deg);
  position: absolute;
  right: -50px;
  top: -30xpx;
}
@media (max-width: 480px) {
  .contact__container img {
    width: 70%;
    height: auto;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .contact__container img {
    width: 70%;
    height: auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .contact__container img {
    width: 70%;
    height: auto;
  }
}
.contact__text {
  width: 620px;
  display: flex;
  flex-direction: column;
}
.contact__text span {
  font-size: 46px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .contact__text span {
    font-size: 22px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .contact__text span {
    font-size: 22px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .contact__text span {
    font-size: 22px;
  }
}
.contact__text strong {
  font-weight: 700;
  font-size: 46px;
  margin-bottom: 10px;
  background: none;
  -webkit-text-fill-color: initial;
  color: #355d1f;
}
@media (max-width: 480px) {
  .contact__text strong {
    font-size: 22px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .contact__text strong {
    font-size: 22px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .contact__text strong {
    font-size: 22px;
  }
}

.blogs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
  overflow: hidden;
}
@media (max-width: 480px) {
  .blogs {
    padding: 60px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blogs {
    padding: 60px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blogs {
    padding: 60px 15px;
  }
}
.blogs__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 480px) {
  .blogs__container {
    width: 100%;
    gap: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blogs__container {
    width: 100%;
    gap: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blogs__container {
    width: 100%;
    gap: 15px;
  }
}
.blogs__slider {
  display: flex;
}
.blogs__slider-wrapper {
  display: flex;
}

.blog {
  display: flex;
  flex-direction: column;
  width: 550px;
}
@media (max-width: 480px) {
  .blog {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blog {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blog {
    width: 100%;
  }
}
.blog__img {
  display: flex;
}
.blog__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 20px;
}
.blog__text {
  width: calc(100% - 40px);
  position: relative;
  z-index: 2;
  border-radius: 20px;
  background: #f9f9f9;
  padding: 30px;
  margin-left: 20px;
  margin-top: -40px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .blog__text {
    padding: 20px;
    margin-top: -20px;
    margin-left: 10px;
    width: calc(100% - 20px);
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blog__text {
    padding: 20px;
    margin-top: -20px;
    margin-left: 10px;
    width: calc(100% - 20px);
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blog__text {
    padding: 20px;
    margin-top: -20px;
    margin-left: 10px;
    width: calc(100% - 20px);
  }
}
.blog__text:hover svg {
  opacity: 1;
}
.blog__text > h3 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .blog__text > h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blog__text > h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blog__text > h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.blog__text > span {
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .blog__text > span {
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blog__text > span {
    margin-bottom: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blog__text > span {
    margin-bottom: 10px;
  }
}
.blog__text-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog__text-footer span {
  opacity: 0.4;
  font-weight: 300;
}
.blog__text-footer svg {
  opacity: 0.4;
  transition: all 0.3s ease;
}
.blog__text-footer svg path {
  fill: #1d1d1b !important;
  stroke: #1d1d1b !important;
}

.footer {
  display: flex;
  flex-direction: column;
  background: #f9f9f9;
  color: #1d1d1b;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
}
@media (max-width: 480px) {
  .footer__top {
    padding: 0px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__top {
    padding: 0px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__top {
    padding: 0px 15px;
  }
}
.footer__top-container {
  width: 100%;
  max-width: 1340px;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 480px) {
  .footer__top-container {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__top-container {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__top-container {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }
}
.footer__top-container::before {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 3px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #355d1f;
  opacity: 0.1;
}
.footer__logo {
  display: flex;
}
.footer__logo img {
  height: 75px;
}
@media (max-width: 480px) {
  .footer__logo img {
    height: 45px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__logo img {
    height: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__logo img {
    height: 45px;
  }
}
.footer__social {
  display: flex;
  gap: 15px;
}
.footer__social li {
  display: flex;
}
.footer__social a {
  display: flex;
}
.footer__social i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid #1d1d1b;
  transition: all 0.3s ease;
  color: #1d1d1b;
}
.footer__social i:hover {
  border: 1px solid #355d1f;
  background: #355d1f;
  color: #ffffff;
  box-shadow: none;
}
.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 70px 0;
  position: relative;
}
@media (max-width: 480px) {
  .footer__nav {
    padding: 30px 0;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__nav {
    padding: 30px 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__nav {
    padding: 30px 0;
  }
}
.footer__nav::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: #355d1f;
  opacity: 0.2;
}
.footer__nav-container {
  width: 100%;
  max-width: 1340px;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
@media (max-width: 480px) {
  .footer__nav-container {
    padding: 0px 15px;
    flex-direction: column;
    gap: 30px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__nav-container {
    padding: 0px 15px;
    flex-direction: column;
    gap: 30px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__nav-container {
    padding: 0px 15px;
    flex-direction: column;
    gap: 30px;
  }
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 480px) {
  .footer__menu {
    gap: 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__menu {
    gap: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__menu {
    gap: 10px;
  }
}
.footer__menu--col-3 {
  max-width: 610px;
}
.footer__menu--col-3 ul {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 30px !important;
}
@media (max-width: 480px) {
  .footer__menu--col-3 ul {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__menu--col-3 ul {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__menu--col-3 ul {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}
.footer__menu h3 {
  font-size: 22px;
  font-weight: 600;
}
.footer__menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 300;
}
.footer__menu ul li {
  display: flex;
}
.footer__menu ul a {
  display: flex;
  width: fit-content;
  color: #1d1d1b;
}
.footer__menu ul a:hover {
  color: #355d1f;
}
.footer__contact {
  width: 385px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 480px) {
  .footer__contact {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__contact {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__contact {
    width: 100%;
  }
}
.footer__contact h3 {
  font-size: 22px;
  font-weight: 600;
}
.footer__contact-item {
  display: flex;
  flex-direction: column;
}
.footer__contact-item > span:first-child {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
}
.footer__contact-item > span:last-child, .footer__contact-item a {
  color: #1d1d1b;
}
.footer__contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .footer__contact-row {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__contact-row {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__contact-row {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
.footer__copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}
@media (max-width: 480px) {
  .footer__copyright {
    padding: 30px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__copyright {
    padding: 30px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__copyright {
    padding: 30px 15px;
  }
}
.footer__copyright-container {
  max-width: 600px;
  text-align: center;
  font-size: 14px;
}
.footer__copyright-container a {
  color: #355d1f;
  text-decoration: underline;
}
.footer__copyright-container p:last-child {
  margin-bottom: 0px;
}

/*# sourceMappingURL=main.css.map */
