body {
  font-family: "Inter";
  color: var(--black);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* banner */
.banner {
  display: flex;
  padding-top: 75px;
  padding-bottom: 45px;
  position: relative;
}

.banner_info {
  width: 552px;
  background-color: rgb(235, 255, 243);
  padding: 60px 80px 60px 60px;
  position: absolute;
  top: 120px;
}

.banner_info > h2 {
  font-family: var(--font-main);
  margin-bottom: 16px;
  font-size: 42px;
  font-weight: 600;
  line-height: 50px;
}

.banner_info > h2::after {
  content: "";
  background-color: #028c3b;
  opacity: 0.6;
  width: 50px;
  height: 3px;
  display: block;
  margin-top: 16px;
}

.banner_info > p {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  margin-bottom: 60px;
}

.banner_info > a {
  color: #fff;
  text-decoration: none;
  background-color: #028c3b;
  padding: 15px 60px;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  display: block;
  width: fit-content;
}

.banner_img {
  margin-left: auto;
  display: block;
  width: 850px;
  height: 500px;
  object-fit: cover;
}

/* products */
.products {
  overflow: hidden;
  margin-bottom: 70px;
}

.products > h2 {
  background: linear-gradient(
    90deg,
    rgba(0, 170, 54, 1) 0%,
    rgba(0, 168, 55, 1) 35%
  );
  text-align: center;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 52px;
  line-height: 55px;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 50px;
}

.products > h2 a {
  position: absolute;
  bottom: 20px;
  cursor: pointer;
  animation: arrow-bottom 1.7s infinite ease;
}

@keyframes arrow-bottom {
  0% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -moz-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    -webkit-transform: translateY(-7px);
    -o-transform: translateY(-7px);
    transform: translateY(-7px);
  }

  55% {
    -moz-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    -webkit-transform: translateY(-7px);
    -o-transform: translateY(-7px);
    transform: translateY(-7px);
  }

  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

.products > h2 i {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
}

/* swiper */
.productsSlider {
  overflow: visible;
  height: 400px;
}

.swiper {
  width: 100%;
  /* height: 100%; */
}

.swiper-slide {
  text-decoration: none;
  color: #000;
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: auto;
}

.swiper-slide > .product {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  width: 100%;
}

.productsSlider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 3/4;
}

.product_info {
  display: flex;
  flex-direction: column;
}

.products_link {
  display: block;
  width: fit-content;
  margin: auto;
  border: 3px solid #009405;
  padding: 20px 60px;
  color: var(--black);
  text-decoration: none;
  font-family: var(--font-playfair);
  font-size: 16px;
  font-weight: 700;
  color: #009405;
  margin-top: 100px;
}

.products_link:hover {
  color: #009405;
}

.clients {
  margin-bottom: 100px;
}

.clients > h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 52px;
  font-weight: 700;
  color: rgb(0, 122, 43);
  line-height: 55px;
  font-family: var(--font-playfair);
}

.clients > .logos {
  display: flex;
  flex-wrap: wrap;
}

.clients .client {
  text-align: center;
  width: 20%;
  border-right: 1px solid #bebebe;
  border-bottom: 1px solid #bebebe;
}

.clients .client:nth-of-type(5n) {
  border-right: none;
}

.clients .client:nth-of-type(11),
.clients .client:nth-of-type(12),
.clients .client:nth-of-type(13) {
  border-bottom: none;
}

.clients .client > img {
  width: 100%;
}

.aksiya {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.aksiya > img {
  /* max-width: 500px; */
  width: 100%;
}
/* .aksiya > img.mob {
  display: none;
}
.aksiya > img.desc {
  display: inline-block;
} */
.aksiya > p {
  text-align: center;
  max-width: 400px;
  width: 100%;

  font-family: var(--font-playfair);
  font-size: 20px;
  font-weight: 500;
}

.video {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.video > video {
  max-height: 80vh;
  width: 100%;
}

@media (max-width: 1400px) {
  .banner_img {
    width: 650px;
    height: 500px;
  }
}

@media (max-width: 1200px) {
  .banner_img {
    width: 550px;
    height: 500px;
  }

  .banner_info {
    width: 450px;
  }
}

@media (max-width: 992px) {
  .banner {
    flex-direction: column;
    gap: 30px;
  }

  .banner_img {
    width: 100%;
    height: auto;
  }

  .banner_info {
    position: static;
    width: 100%;
  }

  .clients .client {
    text-align: center;
    width: calc(100% / 3);
    border-right: 1px solid #bebebe;
    border-bottom: 1px solid #bebebe;
  }

  .clients .client:nth-of-type(5n) {
    border-right: 1px solid #bebebe;
  }

  .clients .client:nth-of-type(11),
  .clients .client:nth-of-type(12),
  .clients .client:nth-of-type(13) {
    border-bottom: 1px solid #bebebe;
  }

  .clients .client:nth-of-type(3n) {
    border-right: none;
  }

  .clients .client:nth-of-type(13) {
    border-bottom: none;
  }

  .clients .client > img {
    width: 100%;
  }
}

@media (max-width: 768px) {
 
}
@media (max-width: 576px) {
  .clients > h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 1.3;
  }
}
