@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  transition: 0.5s;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 26px;
  margin: 0;
  background-color: #fff;
}

h1, h2, h3 {
  font-weight: 600;
}

.content-section {
  transition: opacity 1s, transform 1s;
}
.content-section .content-section:nth-child(even) {
  transition-delay: 0.1s;
}

/* --- Initial Hidden State (Off-screen/Invisible) --- */
.animatable {
  /* Start slightly transparent and moved */
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

/* Special starting states for different effects */
.fade-in-left {
  transform: translateX(-100px);
}

.fade-in-right {
  transform: translateX(100px);
}

/* --- Animation State (When the 'loaded' class is added) --- */
.animatable.loaded {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

footer {
  background-color: #f2f2f2;
}
footer .f-content {
  padding: 60px 0;
  font-size: 14px;
}
footer .f-content .f-column {
  padding-right: 40px;
}
footer .f-content .logo {
  width: 100px;
}
footer .f-content p {
  margin: 20px 0 0 0;
}
footer .f-content .social-icons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
footer .f-content .social-icons a {
  text-decoration: none;
  color: #000;
}
footer .f-content .social-icons a:hover {
  color: #82ae46;
}
footer .f-content .social-icons a i {
  font-size: 20px;
}
footer .f-content ul {
  padding: 0;
}
footer .f-content ul li {
  list-style-type: none;
}
footer .f-content ul li a {
  text-decoration: none;
  color: #000;
}
footer .f-content h6 {
  margin-bottom: 25px;
}
footer .f-content ul.contact-info {
  padding-left: 25px;
}
footer .f-content ul.contact-info li {
  position: relative;
  margin-bottom: 10px;
}
footer .f-content ul.contact-info li:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 5px;
  left: -25px;
}
footer .f-content ul.contact-info li:nth-child(1):before {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-geo-alt-fill' viewBox='0 0 16 16'><path d='M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10m0-7a3 3 0 1 1 0-6 3 3 0 0 1 0 6'/></svg>");
}
footer .f-content ul.contact-info li:nth-child(2):before {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-telephone-fill' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877z'/></svg>");
}
footer .f-content ul.contact-info li:nth-child(3):before {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-envelope-fill' viewBox='0 0 16 16'><path d='M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414zM0 4.697v7.104l5.803-3.558zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586zm3.436-.586L16 11.801V4.697z'/></svg>");
}
footer .copyright {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
  margin: 0;
}

header {
  width: 100%;
  position: fixed;
  z-index: 3;
}
header .nav-top {
  background-color: #82ae46;
  padding: 7px 0;
  font-size: 12px;
  color: #fff;
}
header .nav-top .info-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .nav-top .info-area .info-single {
  display: flex;
  align-items: center;
}
header .nav-top .info-area .info-single:nth-child(1) {
  margin-right: 100px;
}
header .nav-top .info-area .info-single:nth-last-child(1) {
  margin-left: 100px;
}
header .nav-top .info-area .info-single i {
  margin-right: 7px;
}
header .nav-top .info-area .info-single a {
  text-decoration: none;
  color: #fff;
}
header .nav-top .info-area .info-single.social {
  font-size: 18px;
  text-align: center;
  gap: 10px;
}
header .nav-top .info-area .info-single.social i {
  text-align: center;
}
header .nav-top .info-area .info-single.social:hover {
  opacity: 0.6;
}
header nav {
  height: 102px;
  background-color: #fff;
  transition: 0.3s;
}
header nav .navbar-brand img {
  width: 160px;
}
header nav .navbar-nav .nav-item {
  padding: 0 10px;
}
header nav .navbar-nav .nav-item .nav-link.active {
  font-weight: 600;
}

.shrink {
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
}
.shrink .nav-top {
  padding: 2px 0;
  height: 0;
}
.shrink nav {
  height: 64px;
}
.shrink nav .navbar-brand img {
  width: 80px;
}
.shrink nav .navbar-nav .nav-item .nav-link {
  font-size: 14px;
  transition: 0.3s ease;
}

.carousel {
  position: relative;
  padding-top: 140px;
}
.carousel .slider-overlay {
  position: absolute;
  bottom: 0;
  background-image: url("../images/slider-overlay.png");
  width: 100%;
  height: 156px;
  background-size: cover;
  z-index: 2;
}

section {
  padding: 120px 0;
}
section small {
  color: #82ae46;
  display: block;
  margin-bottom: 20px;
  letter-spacing: 10px;
  text-transform: uppercase;
}
section h3 {
  margin-bottom: 20px;
}

.steps {
  padding: 0;
}

.welcome {
  background-image: url("../images/bg-1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.welcome .container {
  display: flex;
  align-items: center;
}
.welcome .container .row .welcome-img {
  width: 90%;
}

.products {
  background-color: #f5f6f7;
  text-align: center;
}
.products .card-area {
  row-gap: 22px;
}
.products .card-area .card {
  border-radius: 0;
}
.products .card-area .card .card-content .pro-img {
  margin: 40px auto 30px auto;
}
.products .card-area .card .card-content h6 {
  margin-bottom: 60px;
}

.gallery {
  padding: 0;
}
.gallery .row {
  gap: 0;
}
.gallery .row div {
  padding: 0;
  margin: 0;
}
.gallery .row .img-wrapper {
  overflow: hidden;
}
.gallery .row .img-wrapper img {
  width: 100%;
  filter: grayscale(1);
}
.gallery .row .img-wrapper img:hover {
  filter: grayscale(0);
  transform: scale(1.1);
}

.partners {
  text-align: center;
}
.partners .swiper {
  width: 100%;
  height: 100px;
  margin-top: 40px;
}
.partners .swiper .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.partners .swiper .swiper-slide .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comments {
  text-align: center;
}
.comments .swiperComments {
  margin-top: 80px;
}
.comments .swiperComments .swiper-wrapper {
  padding-bottom: 60px;
}
.comments .swiperComments .swiper-wrapper .swiper-slide {
  text-align: center;
  padding: 0 50px;
  position: relative;
}
.comments .swiperComments .swiper-wrapper .swiper-slide:before {
  content: "";
  position: absolute;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  width: 1px;
  height: 100px;
  left: 2px;
  top: 42%;
}
.comments .swiperComments .swiper-wrapper .swiper-slide:after {
  content: "";
  position: absolute;
  border-left: 3px solid #82ae46;
  width: 1px;
  height: 30px;
  left: 1px;
  top: 52%;
}
.comments .swiperComments .swiper-wrapper .swiper-slide .avatar {
  width: 120px;
  height: 120px;
  border-radius: 150px;
  display: block;
  margin: 0 auto;
  overflow: hidden;
}
.comments .swiperComments .swiper-wrapper .swiper-slide .avatar img {
  width: 100%;
}
.comments .swiperComments .swiper-wrapper .swiper-slide p {
  font-size: 14px;
  text-align: center;
  margin: 30px auto;
}
.comments .swiperComments .swiper-wrapper .swiper-slide h6 {
  text-align: center;
  margin: 0 auto;
}
.comments .swiperComments .swiper-wrapper .swiper-slide small {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 5px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 5px;
}
.comments .swiperComments .swiper-pagination {
  bottom: 0;
}
.comments .swiperComments .swiper-pagination .swiper-pagination-bullet-active {
  background: #82ae46;
}

.page {
  text-align: center;
  padding: 220px 0 80px 0;
  background-image: url("../images/pattern-bg-1.png");
  background-repeat: repeat;
}

#about .info .row {
  align-items: center;
}
#about .info .row .info-img {
  width: 90%;
}
#about .info .row p span {
  color: #82ae46;
  font-weight: 600;
}
#about .vision-mission {
  padding: 0;
}
#about .vision-mission .vision, #about .vision-mission .mission, #about .vision-mission .values {
  padding: 60px 40px;
  text-align: center;
  color: #fff;
}
#about .vision-mission .vision ul, #about .vision-mission .mission ul, #about .vision-mission .values ul {
  text-align: left;
}
#about .vision-mission .vision ul li, #about .vision-mission .mission ul li, #about .vision-mission .values ul li {
  margin-bottom: 10px;
  line-height: 22px;
}
#about .vision-mission .vision ul li b, #about .vision-mission .mission ul li b, #about .vision-mission .values ul li b {
  font-weight: 600;
}
#about .vision-mission .vision {
  background-color: #82ae46;
}
#about .vision-mission .mission {
  background-color: #edc31d;
}
#about .vision-mission .values {
  background-color: #ee312d;
}
#about .quality-controll {
  background-color: rgba(130, 174, 70, 0.2);
}
#about .quality-controll .row {
  align-items: center;
}
#about .quality-controll img {
  width: 90%;
}
#about .quality-assurance .row {
  align-items: center;
}
#about .quality-assurance .image {
  text-align: right;
}
#about .quality-assurance .image img {
  width: 90%;
}
#about .research {
  padding: 0;
}
#about .research .box {
  background-image: linear-gradient(#fff, #fff, rgba(0, 0, 0, 0.05));
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 60px;
  text-align: left;
}
#about .why-choose .row {
  align-items: center;
}
#about .why-choose .row dl {
  padding-left: 100px;
  position: relative;
  margin-top: 40px;
}
#about .why-choose .row dl dt {
  font-size: 18px;
  color: #82ae46;
  margin-bottom: 6px;
}
#about .why-choose .row dl dt span {
  position: absolute;
  font-size: 50px;
  line-height: 1;
  text-align: center;
  color: #fff;
  background-color: #82ae46;
  border-radius: 100px;
  min-width: 70px;
  max-width: 70px;
  min-height: 70px;
  max-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
}
#about .why-choose .row dl dd {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.1);
}

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