@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,300;1,400;1,500&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;
}

body {
  font-size: 16px;
  font-family: "Nunito", sans-serif;
  background-color: white;
  color: #343434;
}
body.home .header {
  border-bottom: none;
}

a {
  color: #094900;
}
a:hover {
  color: #50bf01;
}

strong {
  font-weight: 700;
}

p {
  margin-bottom: 15px;
}

.button {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: white;
  width: max-content;
  padding: 10px 20px;
  transition: all 0.3s ease;
}
.button i {
  font-size: 22px;
}
.button--hero {
  padding: 15px 30px;
  border-radius: 10px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
}
.button--all {
  border: 1px solid #eee;
  background-color: transparent;
  color: #094900;
}
.button--detail {
  padding: 8px 15px;
  background: #50bf01;
  font-size: 14px;
  color: white;
}
.button--detail:hover {
  background: #72BF44;
  color: white;
}
.button--detail i {
  font-size: 18px;
}

.main-title {
  font-size: 36px;
  font-weight: 400;
  color: #094900;
}
@media (max-width: 600px) {
  .main-title {
    font-size: 24px;
  }
}
.main-title strong {
  font-weight: 700;
}

.header {
  position: relative;
  z-index: 9;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 0px;
  border-bottom: 1px solid #eee;
}
@media (max-width: 600px) {
  .header {
    padding: 15px 20px;
  }
}
.header__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .header__container {
    width: 100%;
  }
}
.header__logo {
  display: flex;
}
.header__logo img {
  max-width: 300px;
}
@media (max-width: 600px) {
  .header__logo img {
    max-width: 200px;
  }
}
.header__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 600px) {
  .header__nav {
    display: none;
    position: absolute;
    background-color: white;
    padding: 20px;
    left: 0px;
    top: 81px;
    width: 100%;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1215686275);
  }
}
.header__nav-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
@media (max-width: 600px) {
  .header__nav-top {
    justify-content: flex-start;
    padding-bottom: 20px;
  }
}
.header__nav-contact {
  display: flex;
  gap: 20px;
}
@media (max-width: 600px) {
  .header__nav-contact {
    display: none;
  }
}
.header__nav-contact li {
  display: flex;
}
.header__nav-contact a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__nav-contact a i {
  color: #50bf01;
}
.header__nav-lang {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 600px) {
  .header__nav-lang {
    margin: auto;
  }
}
.header__nav-lang li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__nav-lang li:first-child::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #50bf01;
  display: block;
}
.header__nav-lang a {
  display: flex;
}
.header__nav-lang a.active {
  font-weight: 600;
}
.header__nav-menu {
  display: flex;
  align-items: center;
  gap: 60px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .header__nav-menu {
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    width: 100%;
  }
}
.header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .header__nav-item {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid #eee;
  }
}
.header__nav-item--has-children:hover .header__nav-submenu, .header__nav-item--has-children:focus-within .header__nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  pointer-events: auto;
}
.header__nav-item--has-children:hover .header__submenu-toggle i, .header__nav-item--has-children:focus-within .header__submenu-toggle i {
  transform: rotate(180deg);
}
.header__nav-item--has-children.is-open .header__submenu-toggle i {
  transform: rotate(180deg);
}
.header__nav-link-group {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 600px) {
  .header__nav-link-group {
    width: 100%;
    justify-content: space-between;
  }
}
.header__nav-link {
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .header__nav-link {
    width: 100%;
    padding: 14px 0px;
  }
}
.header__submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border: 0px;
  border-radius: 0px;
  background: transparent;
  color: #7b9072;
  cursor: default;
  pointer-events: none;
  transition: all 0.3s ease;
  padding: 0px;
}
.header__submenu-toggle i {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.header__submenu-toggle:hover {
  background: transparent;
}
@media (max-width: 600px) {
  .header__submenu-toggle {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    background: rgba(80, 191, 1, 0.12);
    color: #094900;
    flex-shrink: 0;
    cursor: pointer;
    pointer-events: auto;
  }
  .header__submenu-toggle:hover {
    background: rgba(80, 191, 1, 0.2);
  }
}
.header__nav-submenu {
  min-width: 250px;
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  transform: translateY(12px);
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding: 12px 0px;
  border: 1px solid #e5efdc;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0px 24px 48px rgba(9, 73, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
}
.header__nav-submenu::before {
  content: "";
  position: absolute;
  left: 0px;
  top: -14px;
  width: 100%;
  height: 14px;
}
.header__nav-submenu li {
  width: 100%;
}
.header__nav-submenu a {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 0px;
  font-weight: 500;
  transition: all 0.25s ease;
}
.header__nav-submenu a:hover {
  color: #094900;
  background: #f4faef;
}
@media (max-width: 600px) {
  .header__nav-submenu {
    width: 100%;
    min-width: 100%;
    position: static;
    transform: none;
    display: none;
    margin-top: 0px;
    padding: 0px 0px 10px 0px;
    border: 0px;
    border-radius: 0px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header__nav-submenu a {
    padding: 10px 0px 10px 14px;
    border-left: 2px solid #d9e8cb;
    border-radius: 0px;
  }
  .header__nav-submenu::before {
    display: none;
  }
}
.header__mobile-menu {
  display: none;
  width: 50px;
  height: 50px;
  background-color: #50bf01;
  color: white;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 24px;
  border: 0px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .header__mobile-menu {
    display: flex;
  }
}

.hero {
  display: flex;
  justify-content: center;
  padding: 24px 0 48px;
  background: linear-gradient(180deg, #f4f8ee 0%, #ffffff 100%);
}
@media (max-width: 600px) {
  .hero {
    padding: 16px 20px 28px;
  }
}
.hero__container {
  width: 1200px;
}
@media (max-width: 600px) {
  .hero__container {
    width: 100%;
  }
}
.hero__slider {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(9, 73, 0, 0.14);
}
@media (max-width: 600px) {
  .hero__slider {
    border-radius: 18px;
  }
}
.hero__slide {
  width: 100%;
}
.hero__slide-link {
  position: relative;
  display: block;
  height: 560px;
  background: #edf1e7;
}
@media (max-width: 600px) {
  .hero__slide-link {
    height: 220px;
  }
}
.hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hero__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.75);
  opacity: 1;
  transition: all 0.3s ease;
}
.hero__pagination .swiper-pagination-bullet-active {
  width: 34px;
  border-radius: 999px;
  background: #50bf01;
}
@media (max-width: 600px) {
  .hero__pagination {
    bottom: 10px;
  }
}
.hero__navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #094900;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(9, 73, 0, 0.14);
  transition: all 0.3s ease;
}
.hero__navigation i {
  font-size: 32px;
}
.hero__navigation:hover {
  background: #50bf01;
  color: white;
}
.hero__navigation--prev {
  left: 24px;
}
.hero__navigation--next {
  right: 24px;
}
.hero__navigation.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 600px) {
  .hero__navigation {
    width: 40px;
    height: 40px;
  }
  .hero__navigation i {
    font-size: 24px;
  }
  .hero__navigation--prev {
    left: 12px;
  }
  .hero__navigation--next {
    right: 12px;
  }
}

.products {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 80px 0px;
}
@media (max-width: 600px) {
  .products {
    padding: 40px 20px;
  }
}
.products__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
}
@media (max-width: 600px) {
  .products__container {
    width: 100%;
  }
}
.products__container > i.uil {
  font-size: 40px;
  color: #094900;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .products__container > i.uil {
    display: none;
  }
}
.products__container > i.uil:hover {
  opacity: 1;
}
.products__container > i.uil.uil-angle-left-b {
  left: -50px;
}
.products__container > i.uil.uil-angle-right-b {
  right: -50px;
}
.products__slider {
  width: 100%;
  overflow: hidden;
  display: flex;
}
.products__slider-container {
  width: 100%;
  display: flex;
}

.product {
  height: 300px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
}
@media (max-width: 600px) {
  .product {
    height: auto;
    padding: 20px;
    flex-direction: column;
  }
}
.product::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("../images/product-bg.png") center center no-repeat;
  z-index: 2;
  transition: all 0.6s ease;
}
@media (max-width: 600px) {
  .product::before {
    display: none;
  }
}
.product::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(134deg, #FFFDF6 0%, #FFF0C6 100%);
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease;
}
.product:hover::after {
  opacity: 1;
}
.product:hover::before {
  filter: blur(5px);
}
.product:hover .button--detail {
  background: white;
}
.product__text {
  width: 260px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
}
@media (max-width: 600px) {
  .product__text {
    width: 100%;
    order: 2;
  }
}
.product__text h2 {
  font-size: 16px;
  font-weight: 300;
}
.product__text h2 a {
  color: #50bf01;
}
.product__text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.product__text h3 a {
  color: #094900;
}
.product__text span {
  font-weight: 300;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
.product__text span::after {
  content: "";
  width: 5px;
  height: 100%;
  background-color: #72BF44;
  display: block;
  position: absolute;
  border-radius: 5px;
  left: 0px;
  top: 0px;
}
.product__img {
  position: relative;
  z-index: 3;
}
@media (max-width: 600px) {
  .product__img {
    order: 1;
  }
}
.product__img img {
  width: 245px;
  height: 220px;
}

.why-us {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #f8fff3;
}
@media (max-width: 600px) {
  .why-us {
    padding: 40px 20px;
  }
}
.why-us__container {
  width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  padding: 80px 0;
}
@media (max-width: 600px) {
  .why-us__container {
    width: 100%;
    padding: 0px;
  }
}
.why-us__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 600px) {
  .why-us__wrapper {
    flex-direction: column;
  }
}
.why-us__wrapper-left {
  width: 300px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .why-us__wrapper-left {
    width: 100%;
  }
}
.why-us__wrapper-left .slogan {
  align-items: flex-end;
  text-align: right;
}
@media (max-width: 600px) {
  .why-us__wrapper-left .slogan {
    align-items: flex-start;
    text-align: left;
  }
}
.why-us__wrapper-right {
  width: 300px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .why-us__wrapper-right {
    width: 100%;
  }
}
.why-us__img {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.6;
}
@media (max-width: 600px) {
  .why-us__img {
    display: none;
  }
}

.slogan {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  background-color: transparent;
  border-radius: 10px;
}
.slogan:hover {
  background-color: white;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
}
.slogan i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 10px;
  width: 45px;
  height: 45px;
  background-color: #50bf01;
  color: white;
  margin-bottom: 10px;
}
.slogan h5 {
  font-size: 18px;
  color: #094900;
  font-weight: 700;
  margin-bottom: 5px;
}
.slogan span {
  font-weight: 300;
  position: relative;
}

.numbers {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 90px 0px;
}
@media (max-width: 600px) {
  .numbers {
    padding: 50px 20px;
  }
}
.numbers__container {
  width: 1200px;
  display: grid;
  grid-template-columns: minmax(0, 330px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 600px) {
  .numbers__container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.numbers__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(155deg, #0a5c00 0%, #094900 100%);
  color: white;
  box-shadow: 0px 26px 50px rgba(9, 73, 0, 0.16);
}
@media (max-width: 600px) {
  .numbers__intro {
    padding: 28px 24px;
  }
}
.numbers__intro .main-title {
  color: white;
  margin-bottom: 16px;
}
.numbers__intro p {
  margin: 0px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}
.numbers__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f4ffd9;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 600px) {
  .numbers__grid {
    grid-template-columns: 1fr;
  }
}

.number {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  border: 1px solid #e6efdb;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fff3 100%);
  box-shadow: 0px 20px 40px rgba(34, 87, 13, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.number:hover {
  transform: translateY(-4px);
  box-shadow: 0px 24px 44px rgba(34, 87, 13, 0.12);
}
.number i {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff3d0 0%, #ecffd9 100%);
  color: #094900;
}
.number__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.number__text h6 {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  font-weight: 300;
  font-size: 26px;
  color: #094900;
  line-height: 1;
}
.number__text h6 strong {
  font-weight: 900;
  font-size: 42px;
  letter-spacing: -0.03em;
}
.number__text h6 small {
  padding-bottom: 5px;
  color: #4f6842;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.number__text span {
  font-weight: 300;
  line-height: 1.6;
  color: #45603c;
}

.company {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 80px 0;
}
@media (max-width: 600px) {
  .company {
    padding: 40px 20px;
  }
}
.company__container {
  width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 600px) {
  .company__container {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

.comp {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
}
.comp img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.comp__text {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 9;
  padding: 30px 20px 20px 20px;
  margin-top: -30px;
  background: linear-gradient(0deg, #FFF 80%, rgba(255, 255, 255, 0) 100%);
}
.comp__text h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #094900;
}
.comp__text span {
  font-weight: 300;
  position: relative;
  padding-left: 15px;
  color: #343434;
}
.comp__text span::after {
  content: "";
  width: 5px;
  height: 100%;
  background-color: #72BF44;
  display: block;
  position: absolute;
  border-radius: 5px;
  left: 0px;
  top: 0px;
}

.gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 80px 0;
}
@media (max-width: 600px) {
  .gallery {
    padding: 40px 20px;
  }
}
.gallery__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
@media (max-width: 600px) {
  .gallery__container {
    width: 100%;
  }
}
.gallery__container > i.uil {
  font-size: 40px;
  color: #094900;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .gallery__container > i.uil {
    display: none;
  }
}
.gallery__container > i.uil:hover {
  opacity: 1;
}
.gallery__container > i.uil.uil-angle-left-b {
  left: -50px;
}
.gallery__container > i.uil.uil-angle-right-b {
  right: -50px;
}
.gallery__slider {
  width: 100%;
  display: flex;
}
.gallery__slider-container {
  width: 100%;
  display: flex;
}
.gallery__slider-container a {
  display: flex;
  width: 280px;
  border-radius: 10px;
}
.gallery__slider-container a img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 600px) {
  .gallery__slider-container a img {
    aspect-ratio: 4/3;
  }
}
.gallery--documents .gallery__slider-container a {
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fff3 100%);
  border: 1px solid #e7eedf;
  padding: 12px;
}
.gallery--documents .gallery__slider-container img {
  aspect-ratio: 210/297;
  object-fit: contain;
  background: #ffffff;
  border-radius: 12px;
}
@media (max-width: 600px) {
  .gallery--documents .gallery__slider-container img {
    aspect-ratio: 210/297;
  }
}

.blogs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 80px 0;
  background: #f8fff3;
}
.blogs--services {
  background: #FFFFFF;
}
@media (max-width: 600px) {
  .blogs {
    padding: 40px 20px;
  }
}
.blogs__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 600px) {
  .blogs__container {
    width: 100%;
  }
}
.blogs__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 600px) {
  .blogs__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.blogs__wrapper--categories {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .blogs__wrapper--categories {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .blogs__wrapper--categories {
    grid-template-columns: 1fr;
  }
}

.blog {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog__img {
  width: 100%;
  display: flex;
  margin-bottom: 15px;
}
.blog__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 10px;
  object-fit: cover;
}
.blog__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.blog__eyebrow {
  margin-bottom: 8px;
  color: #50bf01;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.blog__count {
  margin-bottom: 18px;
  color: #57724c;
  font-size: 15px;
  line-height: 1.6;
}
.blog h3 {
  display: flex;
  margin-bottom: 5px;
}
.blog span {
  font-weight: 300;
  position: relative;
  margin-bottom: 10px;
}
.blog--category {
  padding: 18px;
  border: 1px solid #e8efe0;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fff3 100%);
  box-shadow: 0px 18px 38px rgba(9, 73, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog--category:hover {
  transform: translateY(-4px);
  box-shadow: 0px 22px 44px rgba(9, 73, 0, 0.1);
}
.blog--category .blog__img {
  margin-bottom: 18px;
}
.blog--category .blog__img img {
  border-radius: 18px;
}
.blog--category h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.2;
}
.blog--category .button {
  margin-top: auto;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  float: left;
}
.footer__top {
  width: 100%;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-top: 1px solid #eee;
}
@media (max-width: 600px) {
  .footer__top {
    padding: 40px 20px;
  }
}
.footer__top-container {
  width: 1200px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .footer__top-container {
    width: 100%;
    flex-direction: column;
    gap: 30px;
  }
}
.footer__cop {
  width: 360px;
  display: flex;
  flex-direction: column;
  font-weight: 300;
}
@media (max-width: 600px) {
  .footer__cop {
    width: 100%;
  }
}
.footer__logo {
  display: flex;
  margin-bottom: 10px;
}
.footer__logo img {
  height: 80px;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__menu h6 {
  font-size: 18px;
  font-weight: 700;
  color: #094900;
}
.footer__menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__menu ul li {
  display: flex;
}
.footer__menu ul a {
  font-weight: 300;
}
.footer__contact {
  width: 285px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 600px) {
  .footer__contact {
    width: 100%;
  }
}
.footer__social {
  width: 100%;
  padding: 40px 0;
  background-color: #72BF44;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 600px) {
  .footer__social {
    padding: 30px 20px;
  }
}
.footer__social-container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .footer__social-container {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
}
.footer__social-container span {
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .footer__social-container span {
    font-size: 22px;
  }
}
.footer__social-container ul {
  display: flex;
  gap: 20px;
}
.footer__social-container ul li {
  display: flex;
}
.footer__social-container ul a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: white;
  font-size: 24px;
  width: 55px;
  height: 55px;
}
.footer__bottom {
  width: 850px;
  text-align: center;
  font-weight: 300;
  padding: 40px 0;
  font-size: 14px;
}
@media (max-width: 600px) {
  .footer__bottom {
    width: 100%;
    padding: 30px 20px;
  }
}

.contact {
  display: flex;
  gap: 10px;
}
.contact i {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background-color: #50bf01;
  color: white;
  flex-shrink: 0;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__text {
  display: flex;
  flex-direction: column;
}
.contact__text span:first-child {
  font-weight: 300;
  font-size: 14px;
}

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