body {
  background-color: #fff;
}

.mobile-whatsapp {display: none;}

.header-1-decoration, .header-2-decoration, .header-3-decoration, .header-4-decoration, .header-5-decoration {
  display: none;
}

.product-1, .product-2, .product-3, .product-4 {
  z-index: 2;
}

.product-1 button, .prodcut-2 button, .product-3 button, .product-4 button {
  z-index: 3;
  transition: all .3s ease-in-out;
} 

.product-1 button:hover, .prodcut-2 button:hover, .product-3 button:hover, .product-4 button:hover {
  z-index: 3;
  background-color: #7b8f4c;
} 
.mobile-product-container {
  display: none;
}

.mobile-banner {display: none;}

.mySlides {display: none}


/* Banner container */
.banner-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 1;
  background-color: #000;
}

.banner-shadow {
  background-image: linear-gradient(to bottom, #000, #00000000);
  width: 100%;
  height: 20%;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 98;
}

.scroll-down-wrapper {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.chevron {
  width: 20px;
  height: 20px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  animation: scrollDownChevron 2s infinite;
  opacity: 0;
}

.chevron:nth-child(1) {
  animation-delay: 0s;
}
.chevron:nth-child(2) {
  animation-delay: 0.3s;
}
.chevron:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes scrollDownChevron {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
  50% {
    opacity: 1;
    transform: rotate(-45deg) translateY(0px);
  }
  100% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
}

.scroll-text {
  margin-top: 30px;
  color: white;
  font-size: 18px;
  display: block;
  text-align: center;
}

.banner-container img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.7;
  z-index: 2;
}

.banner-text {
  z-index: 3;
}

.banner-text h1{
  font-family: sans-serif;
  font-size: 60px;
  font-weight: 100;
  position: absolute;
  top: 40%;
  left: 30%;
  z-index: 3;
  opacity: 1;
  width: 40%;
  text-align: center;
}

.banner-text a button{
  width: 15%;
  height: 70px;
  background-color: #8ee600;
  font-family: 'Open sans', sans-serif;
  text-align: center;
  color: #fff;
  font-size: 24px;
  position: absolute;
  top: 800px;
  left: 5%;
  border: none;
  border-radius: 5px;
  opacity: 1;
  z-index: 3;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.banner-text a button:hover {
  background-color: #85d800;
}

.banner-dot {
  height: 15px;
  width: 15px;
  background-color: #afafaf;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  position: relative;
  top: 650px;
  z-index: 2;
}

.active {
  background-color: #009246;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 4s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.sliderImage img {
  width: 1600px;
  position: absolute;
  top: 2000px;
  left: -10%;
  z-index: 1;
}

#sliderText {
  width: 45%;
  position: absolute;
  top: 2400px;
  left: 52%;
  font-family: sans-serif;
  font-size: 60px;
  opacity: 0;
  animation: fade 1s ease-in-out forwards;
}

@keyframes fade {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

.social-menu {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100;
}

.main-btn {
  width: 60px;
  height: 60px;
  background-color: #7b8f4c;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.main-btn img {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50%;
}

.icon-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 70px;
  left: 6px;
  gap: 15px;
  pointer-events: none;
}

.icon {
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.icon.whatsapp {background-color: #25D366;}
.icon.phoneCall { background-color: #3f73e2;  }
.icon.messenger { background-color: #168AFF; }
.icon.instagram { background-color: #e1306c; }
.icon.linkedin { background-color: #0077b5; }

.icon img {
  width: 40px;
  position: absolute;
  top: 5px;
  left: 5px;
}

.social-menu.open .icon-list {
  pointer-events: all;
}

.social-menu.open .icon {
  transform: translateY(0);
  opacity: 1;
}

.header-1 { 
  font-family:'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 1200px;
    left: 0%;
}

.header-1-text {
  font-family:'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 100;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 1300px;
  left: 0%;
}

/* Slideshow container */
.product-container {
  background-color: #f6f6f6;
   width: 100%;
   height: 620px;
   position: absolute;
   top: 1400px;
   left: 0%;
   margin: auto;
   z-index: 2;
 }
 
 .pellet-1 {
  width: 18%;
  height: 480px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 60px;
  left: 2%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-2 {
  width: 18%;
  height: 480px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 60px;
  left: 21.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-3 {
  width: 18%;
  height: 480px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 60px;
  left: 41%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-4 {
  width: 18%;
  height: 480px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 60px;
  left: 60.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-5 {
  width: 18%;
  height: 480px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 60px;
  left: 80%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-1:hover, .pellet-2:hover, .pellet-3:hover, .pellet-4:hover, .pellet-5:hover {
  transform: scale(1.1);
 }

 .pellet-1 img, .pellet-2 img, .pellet-3 img, .pellet-4 img, .pellet-5 img {
  position: absolute;
  top: 10px;
  left: 5%;
  width: 85%;
  height: 367px;
 }

 .pellet-1 h1, .pellet-2 h1, .pellet-3 h1, .pellet-4 h1, .pellet-5 h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  position: absolute;
  top: 395px;
  left: 15%;
  font-weight: 200;
 }

 .pellet-1 button, .pellet-2 button, .pellet-3 button, .pellet-4 button, .pellet-5 button {
  font-weight: 300;
  font-size: 20px;
  width: 55px;
  height: 55px;
  background-color: #73b901;
  color: #fff;
  border: none;
  border-radius: 10px;
  position: absolute;
  top: 400px;
  right: 6%;
  cursor: pointer;
  transition: all .3s ease-in-out;
 }

 .pellet-1 button:hover, .pellet-2 button:hover , .pellet-3 button:hover, .pellet-4 button:hover, .pellet-5 button:hover {
  transform: scale(1.1);
 }
 

 .why-pellet {
  z-index: 3;
    width: 100%;
    height: 550px;
    background-color: #f6f6f6;
    position: absolute;
    top: 2900px;
    left: 0%;
}

.why-pellet h1 {
  font-family: sans-serif;
  font-size: 80px;
  font-weight: 400;
  position: absolute;
  top: 60px;
  left: 5%;
  color: #373737;
}

.box-1 {
  width: 18%;
  height: 460px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 45px;
  right: 45%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-1 img {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.box-1-icon {
  width: 70px;
  height: 70px;
  background-color: #85d800;
  position: absolute;
  top: 240px;
  left: 3%;
  border-radius: 15px;
  z-index: 3;
  border: none;
}

.box-2 {
  width: 18%;
  height: 460px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 45px;
  right: 25%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-2 img {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.box-2-icon {
  width: 70px;
  height: 70px;
  background-color: #85d800;
  position: absolute;
  top: 240px;
  left: 3%;
  border-radius: 15px;
  z-index: 3;
  border: none;
}

.box-3 {
  width: 18%;
  height: 460px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 45px;
  right: 5%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-3 img {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.box-3-icon {
  width: 70px;
  height: 70px;
  background-color: #85d800;
  position: absolute;
  top: 240px;
  left: 3%;
  border-radius: 15px;
  z-index: 3;
  border: none;
}


.box-1:hover, .box-2:hover, .box-3:hover {
 transform: scale(1.1);
}

.box-1-icon img, .box-2-icon img, .box-3-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.box-1 h1, .box-2 h1, .box-3 h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  position: absolute;
  top: 310px;
  left: 5%;
  cursor: default;
}

.box-1-line, .box-2-line, .box-3-line {
  width: 80%;
  height: 1px;
  background-color: #85d800;
  position: absolute;
  bottom: 20px;
  left: 10%;
}

.box-1 p, .box-2 p, .box-3 p {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  width: 90%;
  position: absolute;
  top: 350px;
  left: 5%;
  cursor: default;
}

#counter-banner {
  width: 100%;
  height: 650px;
  position: absolute;
  top: 3650px;
  left: 0%;
}

.counter-header { 
   font-family:'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 3570px;
    left: 0%;
}

 .counter-container-1 { 
  width: 16%;
  height: 270px;
  background-color: #fff;
  border: none;
  border-radius: 25px;
  position: absolute;
  top: 3850px;
  left: 22%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-2 { 
  width: 16%;
  height: 270px;
  background-color: #fff;
  border: none;
  border-radius: 25px;
  position: absolute;
  top: 3850px;
  left: 42%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-3 { 
  width: 16%;
  height: 270px;
  background-color: #fff;
  border: none;
  border-radius: 25px;
  position: absolute;
  top: 3850px;
  left: 62%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-1 img, .counter-container-2 img, .counter-container-3 img {
  width: 26%;
  position: absolute;
  top: 30px;
  left: 37%;
 }

 .counter-container-1 h1, .counter-container-2 h1, .counter-container-3 h1 {
  width: 100%;
  position: absolute;
  bottom: 3%;
  left: 0%;
  font-size: 22px;
  font-family: sans-serif;
  font-weight: 200;
  color: #303030;
 }

.count {
  color: #000;
  font-size: 48px;
  font-family: sans-serif;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 140px;
  left: 0%;
}
 
.contact-container {
  width: 100%;
  height: 600px;
  position: absolute;
  top: 4300px;
  left: 0%;
}

.contact-container img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.contact-header {
  font-family: 'Poppins', sans-serif;
  font-size: 70px;
  font-weight: 800px;
  color: #000;
  position: absolute;
  top: 150px;
  left: 5%;
}

.contact-text {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 100;
  color: #000;
  position: absolute;
  top: 270px;
  left: 5%;
}

.contact-container button {
  background-color: #7b8f4c;
  width: 9%;
  height: 60px;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: #fff;
  border: none;
  border-radius: 10px;
  position: absolute;
  top: 350px;
  left: 5%;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.contact-container button:hover {
  width: 10%;
}

.social-container {
  background-color: #7b8f4c;
  width: 100%;
  height: 550px;
  position: absolute;
  top: 4950px;
  left: 0%;
}

.social-container h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 100px;
  left: 0%;
}

.social-container p {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 100;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 200px;
  left: 0%;
}

.social-facebook {
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 350px;
  left: 41.5%;
  transition: all .3s ease-in-out;
}

.social-linkedin {
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 350px;
  left: 45.5%;
  transition: all .3s ease-in-out;
}

.social-youtube {
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 350px;
  left: 49.5%;
  transition: all .3s ease-in-out;
}

.social-instagram {
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 350px;
  left: 53.5%;
  transition: all .3s ease-in-out;
}

.social-facebook img, .social-linkedin img, .social-youtube img, .social-instagram img{
  width: 55%;
  position: absolute;
  top: 13px;
  left: 22.5%;
}

#social:hover {
  top: 340px;
}

.google-maps iframe {
    width: 40%;
    height: 480px;
    position: absolute;
    top: 4550px;
    left: 50%;
    border: none;
    border-radius: 5px;
    transition: all .3s ease-in-out;
    box-shadow:
  0px 0px 2.2px rgba(0, 0, 0, -0.056),
  0px 0px 5.3px rgba(0, 0, 0, -0.065),
  0px 0px 10px rgba(0, 0, 0, -0.061),
  0px 0px 17.9px rgba(0, 0, 0, -0.044),
  0px 0px 33.4px rgba(0, 0, 0, -0.009),
  0px 0px 80px rgba(0, 0, 0, 0.12)
;
}

.google-maps iframe:hover {
    transform: scale(1.05);
}


.footer {
  position: absolute;
  top: 5550px;
  left: 0%;
}










  /*RESPONSIVE*/
@media (min-width: 240px) and (max-width: 359.98px) and (orientation: portrait)  { 
body {
  background-color: #fff;
}

/* Banner container */
.banner-container {
  width: 100%;
  height: 400px;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 1;
  background-color: #000;
}

.banner img {
  width: 100%;
  height: 100vh;
  object-fit: cover; /* En kritik kısım */
}

.banner-shadow {
  background-image: linear-gradient(to bottom, #000, #00000000);
  width: 100%;
  height: 40%;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 98;
}

.scroll-down-wrapper {
  display: none;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.chevrons { 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.chevron {
  width: 20px;
  height: 20px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  animation: scrollDownChevron 2s infinite;
  opacity: 0;
}

.chevron:nth-child(1) {
  animation-delay: 0s;
}
.chevron:nth-child(2) {
  animation-delay: 0.3s;
}
.chevron:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes scrollDownChevron {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
  50% {
    opacity: 1;
    transform: rotate(-45deg) translateY(0px);
  }
  100% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
}

.scroll-text { display: none;
  margin-top: 30px;
  color: white;
  font-size: 18px;
  display: block;
  text-align: center;
}

.banner-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.7;
    z-index: 2;
}

.banner-text {
  z-index: 3;
}

.banner-text h1{
  font-family: sans-serif;
  font-size: 30px;
  font-weight: 100;
  position: absolute;
  top: 40%;
  left: 15%;
  z-index: 3;
  opacity: 1;
  width: 70%;
  text-align: center;
}

.social-menu {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 5;
}

.main-btn {
  width: 45px;
  height: 45px;
  background-color: #7b8f4c;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.main-btn img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50%;
}

.icon-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 70px;
  left: 2px;
  gap: 6px;
  pointer-events: none;
}

.icon {
  width: 45px;
  height: 45px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.icon.whatsapp {background-color: #25D366;}
.icon.phoneCall { background-color: #3f73e2;  }
.icon.messenger { background-color: #168AFF; }
.icon.instagram { background-color: #e1306c; }
.icon.linkedin { background-color: #0077b5; }

.icon img {
  width: 35px;
  position: absolute;
  top: 5px;
  left: 5px;
}

.social-menu.open .icon-list {
  pointer-events: all;
}

.social-menu.open .icon {
  transform: translateY(0);
  opacity: 1;
}

.header-1 { 
  font-family:'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 900;
    width: 90%;
    text-align: center;
    position: absolute;
    top: 420px;
    left: 5%;
}

.header-1-text {
  font-family:'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 100;
  width: 80%;
  text-align: center;
  position: absolute;
  top: 480px;
  left: 10%;
}

/* Slideshow container */
.product-container {
  background-color: #f6f6f6;
   width: 100%;
   height: 600px;
   position: absolute;
   top: 540px;
   left: 0%;
   margin: auto;
   z-index: 2;
 }
 
 .pellet-1 {
  width: 45%;
  height: 180px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 3.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-2 {
  width: 45%;
  height: 180px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 51.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-3 {
  width: 45%;
  height: 180px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 210px;
  left: 3.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-4 {
  width: 45%;
  height: 180px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 210px;
  left: 51.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-5 {
  width: 45%;
  height: 180px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 400px;
  left: 3.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-1:hover, .pellet-2:hover, .pellet-3:hover, .pellet-4:hover, .pellet-5:hover {
  transform: scale(1.1);
 }

 .pellet-1 img, .pellet-2 img, .pellet-3 img, .pellet-4 img, .pellet-5 img {
  position: absolute;
  top: 0px;
  left: 5%;
  width: 85%;
  height: 130px;
 }

 .pellet-1 h1, .pellet-2 h1, .pellet-3 h1, .pellet-4 h1, .pellet-5 h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  position: absolute;
  top: 135px;
  left: 5%;
  font-weight: 200;
 }

 .pellet-1 button, .pellet-2 button, .pellet-3 button, .pellet-4 button, .pellet-5 button {
  font-size: 10px !important;
  width: 30px;
  height: 30px;
  background-color: #73b901;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 140px;
  right: 6%;
  cursor: pointer;
  transition: all .3s ease-in-out;
 }

 .pellet-1 button:hover, .pellet-2 button:hover , .pellet-3 button:hover, .pellet-4 button:hover, .pellet-5 button:hover {
  display: none;
  transform: scale(1.1);
 }
 
 .sliderImage img {
  width: 100%;
  position: absolute;
  top: 1225px;
  left: 0%;
  z-index: 1;
}

#sliderText {
  width: 80%;
  position: absolute;
  top: 1200px;
  left: 10%;
  font-family: sans-serif;
  font-size: 20px;
  opacity: 0;
  animation: fade 1s ease-in-out forwards;
  text-align: center;
}

@keyframes fade {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

 .why-pellet {
  z-index: 3;
    width: 100%;
    height: 400px;
    background-color: #f6f6f6;
    position: absolute;
    top: 1435px;
    left: 0%;
}

.why-pellet h1 {
  font-family: sans-serif;
  font-size: 30px;
  font-weight: 400;
  position: absolute;
  top: 20px;
  left: 5%;
  color: #373737;
}

.box-1 {
  width: 45%;
  height: 210px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 150px;
  left: 3.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-1 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-1-icon {
  width: 20px;
  height: 20px;
  background-color: #85d800;
  position: absolute;
  top: 120px;
  left: 3%;
  border-radius: 2px;
  z-index: 3;
  border: none;
}

.box-2 {
  width: 45%;
  height: 210px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 150px;
  left: 51.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-2 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-2-icon {
  width: 20px;
  height: 20px;
  background-color: #85d800;
  position: absolute;
  top: 120px;
  left: 3%;
  border-radius: 2px;
  z-index: 3;
  border: none;
}

.box-3 {display: none;
  width: 18%;
  height: 460px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 45px;
  right: 5%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-3 img {display: none;
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.box-3-icon {display: none;
  width: 70px;
  height: 70px;
  background-color: #85d800;
  position: absolute;
  top: 240px;
  left: 3%;
  border-radius: 15px;
  z-index: 3;
  border: none;
}


.box-1:hover, .box-2:hover, .box-3:hover {
 transform: scale(1.1);
}

.box-1-icon img, .box-2-icon img, .box-3-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.box-1 h1, .box-2 h1, .box-3 h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  position: absolute;
  top: 110px;
  left: 20%;
  cursor: default;
}

.box-1-line, .box-2-line, .box-3-line {
  display: none;
  width: 80%;
  height: 1px;
  background-color: #85d800;
  position: absolute;
  bottom: 20px;
  left: 10%;
}

.box-1 p, .box-2 p, .box-3 p {
  font-family: 'Open Sans', sans-serif;
  font-size: 9px;
  width: 90%;
  position: absolute;
  top: 140px;
  left: 5%;
  cursor: default;
}

#counter-banner {
  width: 100%;
  height: 200px;
  position: absolute;
  top: 1950px;
  left: 0%;
  object-fit: cover;
}

.counter-header { 
   font-family:'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 800px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 1870px;
    left: 0%;
}

 .counter-container-1 { 
  width: 30%;
  height: 90px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 2030px;
  left: 2.5%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-2 { 
  width: 30%;
  height: 90px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 2030px;
  left: 35%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-3 { 
   width: 30%;
  height: 90px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 2030px;
  left: 67.5%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-1 img, .counter-container-2 img, .counter-container-3 img {
  width: 30%;
  position: absolute;
  top: 10px;
  left: 35%;
 }

 .counter-container-1 h1, .counter-container-2 h1, .counter-container-3 h1 {
  width: 100%;
  position: absolute;
  bottom: 3%;
  left: 0%;
  font-size: 12px;
  font-family: sans-serif;
  font-weight: 200;
  color: #303030;
 }

.count { 
  color: #000;
  font-size: 14px;
  font-family: sans-serif;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 45px;
  left: 0%;
}
 
.contact-container { 
  width: 100%;
  height: 240px;
  position: absolute;
  top: 2150px;
  left: 0%;
}

.contact-container img {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.contact-header { 
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #000;
  position: absolute;
  top: 30px;
  left: 5%;
  width: 60%;
}

.contact-text { 
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 100;
  color: #000;
  position: absolute;
  top: 110px;
  left: 5%;
  width: 70%;
}

.contact-container button { 
  background-color: #7b8f4c;
  width: 30%;
  height: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 170px;
  left: 5%;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.contact-container button:hover {
  width: 10%;
}

.social-container {
  background-color: #7b8f4c;
  width: 100%;
  height: 270px;
  position: absolute;
  top: 2390px;
  left: 0%;
}

.social-container h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: #fff;
  width: 90%;
  text-align: left;
  position: absolute;
  top: 30px;
  left: 5%;
}

.social-container p {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 100;
  color: #fff;
  width: 90%;
  text-align: left;
  position: absolute;
  top: 100px;
  left: 5%;
}

.social-facebook {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 180px;
  left: 17%;
  transition: all .3s ease-in-out;
}

.social-linkedin {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 180px;
  left: 34%;
  transition: all .3s ease-in-out;
}

.social-youtube {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 180px;
  left: 51.5%;
  transition: all .3s ease-in-out;
}

.social-instagram {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 180px;
  left: 69%;
  transition: all .3s ease-in-out;
}

.social-facebook img, .social-linkedin img, .social-youtube img, .social-instagram img{
  width: 45%;
  position: absolute;
  top: 10px;
  left: 27.5%;
}

#social:hover {
  top: 340px;
}


.footer { 
  position: absolute;
  top: 2660px;
  left: 0%;
}
 
}
  
@media (min-width: 360px) and (max-width: 575.98px) and (orientation: portrait) {
body {
  background-color: #fff;
}

/* Banner container */
.banner-container {
  width: 100%;
  height: 500px;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 1;
  background-color: #000;
}

.banner img {
  width: 100%;
  height: 100vh;
  object-fit: cover; 
}

.banner-shadow {
  background-image: linear-gradient(to bottom, #000, #00000000);
  width: 100%;
  height: 40%;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 98;
}

.scroll-down-wrapper {
  display: none;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.chevrons { 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.chevron {
  width: 20px;
  height: 20px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  animation: scrollDownChevron 2s infinite;
  opacity: 0;
}

.chevron:nth-child(1) {
  animation-delay: 0s;
}
.chevron:nth-child(2) {
  animation-delay: 0.3s;
}
.chevron:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes scrollDownChevron {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
  50% {
    opacity: 1;
    transform: rotate(-45deg) translateY(0px);
  }
  100% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
}

.scroll-text { display: none;
  margin-top: 30px;
  color: white;
  font-size: 18px;
  display: block;
  text-align: center;
}

.banner-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.7;
    z-index: 2;
}

.banner-text {
  z-index: 3;
}

.banner-text h1{
  font-family: sans-serif;
  font-size: 34px;
  font-weight: 100;
  position: absolute;
  top: 40%;
  left: 15%;
  z-index: 3;
  opacity: 1;
  width: 70%;
  text-align: center;
}

.social-menu {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 5;
}

.main-btn {
  width: 50px;
  height: 50px;
  background-color: #7b8f4c;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.main-btn img {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50%;
}

.icon-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 70px;
  left: 2px;
  gap: 6px;
  pointer-events: none;
}

.icon {
  width: 45px;
  height: 45px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.icon.whatsapp {background-color: #25D366;}
.icon.phoneCall { background-color: #3f73e2;  }
.icon.messenger { background-color: #168AFF; }
.icon.instagram { background-color: #e1306c; }
.icon.linkedin { background-color: #0077b5; }

.icon img {
  width: 35px;
  position: absolute;
  top: 5px;
  left: 5px;
}

.social-menu.open .icon-list {
  pointer-events: all;
}

.social-menu.open .icon {
  transform: translateY(0);
  opacity: 1;
}

.header-1 { 
  font-family:'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 900;
    width: 90%;
    text-align: center;
    position: absolute;
    top: 530px;
    left: 5%;
}

.header-1-text {
  font-family:'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 100;
  width: 80%;
  text-align: center;
  position: absolute;
  top: 600px;
  left: 10%;
}

/* Slideshow container */
.product-container {
  background-color: #f6f6f6;
   width: 100%;
   height: 690px;
   position: absolute;
   top: 670px;
   left: 0%;
   margin: auto;
   z-index: 2;
 }
 
 .pellet-1 {
  width: 45%;
  height: 210px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 3.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-2 { 
  width: 45%;
  height: 210px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 51.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-3 {
  width: 45%;
  height: 210px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 240px;
  left: 3.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-4 {
  width: 45%;
  height: 210px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 240px;
  left: 51.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-5 {
  width: 45%;
  height: 210px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 460px;
  left: 3.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-1:hover, .pellet-2:hover, .pellet-3:hover, .pellet-4:hover, .pellet-5:hover {
  transform: scale(1.1);
 }

 .pellet-1 img, .pellet-2 img, .pellet-3 img, .pellet-4 img, .pellet-5 img {
  position: absolute;
  top: -5px;
  left: 5%;
  width: 85%;
  height: 170px;
 }

 .pellet-1 h1, .pellet-2 h1, .pellet-3 h1, .pellet-4 h1, .pellet-5 h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  position: absolute;
  top: 167px;
  left: 5%;
  font-weight: 200;
 }

 .pellet-1 button, .pellet-2 button, .pellet-3 button, .pellet-4 button, .pellet-5 button {
  font-size: 10px !important;
  width: 35px;
  height: 35px;
  background-color: #73b901;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 170px;
  right: 6%;
  cursor: pointer;
  transition: all .3s ease-in-out;
 }

 .pellet-1 button:hover, .pellet-2 button:hover , .pellet-3 button:hover, .pellet-4 button:hover, .pellet-5 button:hover {
  display: none;
  transform: scale(1.1);
 }
 
 .sliderImage img {
  width: 100%;
  position: absolute;
  top: 1450px;
  left: 0%;
  z-index: 1;
}

#sliderText {
  width: 80%;
  position: absolute;
  top: 1420px;
  left: 10%;
  font-family: sans-serif;
  font-size: 24px;
  opacity: 0;
  animation: fade 1s ease-in-out forwards;
  text-align: center;
}

@keyframes fade {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

 .why-pellet {
  z-index: 3;
    width: 100%;
    height: 470px;
    background-color: #f6f6f6;
    position: absolute;
    top: 1700px;
    left: 0%;
}

.why-pellet h1 {
  font-family: sans-serif;
  font-size: 34px;
  font-weight: 400;
  position: absolute;
  top: 20px;
  left: 5%;
  color: #373737;
}

.box-1 {
  width: 40%;
  height: 250px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 180px;
  left: 5%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-1 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-1-icon {
  width: 30px;
  height: 30px;
  background-color: #85d800;
  position: absolute;
  top: 140px;
  left: 5%;
  border-radius: 2px;
  z-index: 3;
  border: none;
}

.box-2 {
  width: 40%;
  height: 250px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 180px;
  left: 50%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-2 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-2-icon {
  width: 30px;
  height: 30px;
  background-color: #85d800;
  position: absolute;
  top: 140px;
  left: 5%;
  border-radius: 2px;
  z-index: 3;
  border: none;
}

.box-3 {display: none;
  width: 18%;
  height: 460px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 45px;
  right: 5%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-3 img {display: none;
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.box-3-icon {display: none;
  width: 70px;
  height: 70px;
  background-color: #85d800;
  position: absolute;
  top: 240px;
  left: 3%;
  border-radius: 15px;
  z-index: 3;
  border: none;
}


.box-1:hover, .box-2:hover, .box-3:hover {
 transform: scale(1.1);
}

.box-1-icon img, .box-2-icon img, .box-3-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.box-1 h1, .box-2 h1, .box-3 h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  position: absolute;
  top: 135px;
  left: 27%;
  cursor: default;
}

.box-1-line, .box-2-line, .box-3-line {
  display: none;
  width: 80%;
  height: 1px;
  background-color: #85d800;
  position: absolute;
  bottom: 20px;
  left: 10%;
}

.box-1 p, .box-2 p, .box-3 p {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  width: 90%;
  position: absolute;
  top: 170px;
  left: 7%;
  cursor: default;
}

#counter-banner {
  width: 100%;
  height: 200px;
  position: absolute;
  top: 2300px;
  left: 0%;
  object-fit: cover;
}

.counter-header { 
   font-family:'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 2220px;
    left: 0%;
}

 .counter-container-1 { 
  width: 30%;
  height: 90px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 2360px;
  left: 2.5%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-2 { 
  width: 30%;
  height: 90px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 2360px;
  left: 35%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-3 { 
  width: 30%;
  height: 90px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 2360px;
  left: 67.5%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-1 img, .counter-container-2 img, .counter-container-3 img {
  width: 30%;
  position: absolute;
  top: 10px;
  left: 35%;
 }

 .counter-container-1 h1, .counter-container-2 h1, .counter-container-3 h1 {
  width: 100%;
  position: absolute;
  bottom: 0%;
  left: 0%;
  font-size: 14px;
  font-family: sans-serif;
  font-weight: 200;
  color: #303030;
 }

.count { 
  color: #000;
  font-size: 16px;
  font-family: sans-serif;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 45px;
  left: 0%;
}
 
.contact-container { 
  width: 100%;
  height: 270px;
  position: absolute;
  top: 2500px;
  left: 0%;
}

.contact-container img {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.contact-header { 
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #000;
  position: absolute;
  top: 30px;
  left: 5%;
  width: 60%;
}

.contact-text { 
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 100;
  color: #000;
  position: absolute;
  top: 120px;
  left: 5%;
  width: 70%;
}

.contact-container button { 
  background-color: #7b8f4c;
  width: 30%;
  height: 35px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 190px;
  left: 5%;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.contact-container button:hover {
  width: 10%;
}

.social-container {
  background-color: #7b8f4c;
  width: 100%;
  height: 280px;
  position: absolute;
  top: 2770px;
  left: 0%;
}

.social-container h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: #fff;
  width: 90%;
  text-align: left;
  position: absolute;
  top: 30px;
  left: 5%;
}

.social-container p {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 100;
  color: #fff;
  width: 90%;
  text-align: left;
  position: absolute;
  top: 110px;
  left: 5%;
}

.social-facebook {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 200px;
  left: 17%;
  transition: all .3s ease-in-out;
}

.social-linkedin {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 200px;
  left: 34%;
  transition: all .3s ease-in-out;
}

.social-youtube {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 200px;
  left: 51.5%;
  transition: all .3s ease-in-out;
}

.social-instagram {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 200px;
  left: 69%;
  transition: all .3s ease-in-out;
}

.social-facebook img, .social-linkedin img, .social-youtube img, .social-instagram img{
  width: 45%;
  position: absolute;
  top: 10px;
  left: 27.5%;
}

#social:hover {
  top: 340px;
}


.footer { 
  position: absolute;
  top: 3050px;
  left: 0%;
}
}

@media (min-width: 576px) and (max-width: 767.98px) and (orientation: portrait)  {
  body {
  background-color: #fff;
}

/* Banner container */
.banner-container {
  width: 100%;
  height: 600px;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 1;
  background-color: #000;
}

.banner img {
  width: 100%;
  height: 100vh;
  object-fit: cover; 
}

.banner-shadow {
  background-image: linear-gradient(to bottom, #000, #00000000);
  width: 100%;
  height: 40%;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 98;
}

.scroll-down-wrapper {
  display: none;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.chevrons { 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.chevron {
  width: 20px;
  height: 20px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  animation: scrollDownChevron 2s infinite;
  opacity: 0;
}

.chevron:nth-child(1) {
  animation-delay: 0s;
}
.chevron:nth-child(2) {
  animation-delay: 0.3s;
}
.chevron:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes scrollDownChevron {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
  50% {
    opacity: 1;
    transform: rotate(-45deg) translateY(0px);
  }
  100% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
}

.scroll-text { display: none;
  margin-top: 30px;
  color: white;
  font-size: 18px;
  display: block;
  text-align: center;
}

.banner-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.7;
    z-index: 2;
}

.banner-text {
  z-index: 3;
}

.banner-text h1{
  font-family: sans-serif;
  font-size: 40px;
  font-weight: 100;
  position: absolute;
  top: 40%;
  left: 15%;
  z-index: 3;
  opacity: 1;
  width: 70%;
  text-align: center;
}

.social-menu {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 5;
}

.main-btn {
  width: 70px;
  height: 70px;
  background-color: #7b8f4c;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.main-btn img {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50%;
}

.icon-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 90px;
  left: 9px;
  gap: 12px;
  pointer-events: none;
}

.icon {
  width: 55px;
  height: 55px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.icon.whatsapp {background-color: #25D366;}
.icon.phoneCall { background-color: #3f73e2;  }
.icon.messenger { background-color: #168AFF; }
.icon.instagram { background-color: #e1306c; }
.icon.linkedin { background-color: #0077b5; }

.icon img {
  width: 45px;
  position: absolute;
  top: 5px;
  left: 5px;
}

.social-menu.open .icon-list {
  pointer-events: all;
}

.social-menu.open .icon {
  transform: translateY(0);
  opacity: 1;
}

.header-1 { 
  font-family:'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 900;
  width: 90%;
  text-align: center;
  position: absolute;
  top: 640px;
  left: 5%;
}

.header-1-text {
  font-family:'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 100;
  width: 80%;
  text-align: center;
  position: absolute;
  top: 720px;
  left: 10%;
}

/* Slideshow container */
.product-container { 
  background-color: #f6f6f6;
   width: 100%;
   height: 540px;
   position: absolute;
   top: 800px;
   left: 0%;
   margin: auto;
   z-index: 2;
 }
 
 .pellet-1 {
  width: 30%;
  height: 240px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 2%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-2 { 
  width: 30%;
  height: 240px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 35%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-3 {
  width: 30%;
  height: 240px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 68%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-4 {
  width: 30%;
  height: 240px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 280px;
  left: 2%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-5 {
  width: 30%;
  height: 240px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 280px;
  left: 35%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-1:hover, .pellet-2:hover, .pellet-3:hover, .pellet-4:hover, .pellet-5:hover {
  transform: scale(1.1);
 }

 .pellet-1 img, .pellet-2 img, .pellet-3 img, .pellet-4 img, .pellet-5 img {
  position: absolute;
  top: -5px;
  left: -5%;
  width: 100%;
  height: 170px;
 }

 .pellet-1 h1, .pellet-2 h1, .pellet-3 h1, .pellet-4 h1, .pellet-5 h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  position: absolute;
  top: 180px;
  left: 5%;
  font-weight: 200;
 }

 .pellet-1 button, .pellet-2 button, .pellet-3 button, .pellet-4 button, .pellet-5 button {
  font-size: 10px !important;
  width: 35px;
  height: 35px;
  background-color: #73b901;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 190px;
  right: 6%;
  cursor: pointer;
  transition: all .3s ease-in-out;
 }

 .pellet-1 button:hover, .pellet-2 button:hover , .pellet-3 button:hover, .pellet-4 button:hover, .pellet-5 button:hover {
  display: none;
  transform: scale(1.1);
 }
 
 .sliderImage img { 
  width: 100%;
  position: absolute;
  top: 1450px;
  left: 0%;
  z-index: 1;
}

#sliderText { 
  width: 80%;
  position: absolute;
  top: 1420px;
  left: 10%;
  font-family: sans-serif;
  font-size: 30px;
  opacity: 0;
  animation: fade 1s ease-in-out forwards;
  text-align: center;
}

@keyframes fade {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

 .why-pellet { 
  z-index: 3;
    width: 100%;
    height: 520px;
    background-color: #f6f6f6;
    position: absolute;
    top: 1850px;
    left: 0%;
}

.why-pellet h1 {
  font-family: sans-serif;
  font-size: 38px;
  font-weight: 400;
  position: absolute;
  top: 20px;
  left: 5%;
  color: #373737;
}

.box-1 {
  width: 30%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 180px;
  left: 5%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-1 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-1-icon {
  width: 35px;
  height: 35px;
  background-color: #85d800;
  position: absolute;
  top: 160px;
  left: 5%;
  border-radius: 2px;
  z-index: 3;
  border: none;
}

.box-2 {
  width: 30%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 180px;
  left: 36%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-2 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-2-icon {
  width: 35px;
  height: 35px;
  background-color: #85d800;
  position: absolute;
  top: 160px;
  left: 5%;
  border-radius: 2px;
  z-index: 3;
  border: none;
}

.box-3 {
  width: 30%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 180px;
  left: 68%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-3 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-3-icon {
  width: 35px;
  height: 35px;
  background-color: #85d800;
  position: absolute;
  top: 160px;
  left: 5%;
  border-radius: 2px;
  z-index: 3;
  border: none;
}

.box-1:hover, .box-2:hover, .box-3:hover {
 transform: scale(1.1);
}

.box-1-icon img, .box-2-icon img, .box-3-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.box-1 h1, .box-2 h1, .box-3 h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  position: absolute;
  top: 150px;
  left: 27%;
  cursor: default;
}

.box-1-line, .box-2-line, .box-3-line {
  display: none;
  width: 80%;
  height: 1px;
  background-color: #85d800;
  position: absolute;
  bottom: 20px;
  left: 10%;
}

.box-1 p, .box-2 p, .box-3 p {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  width: 90%;
  position: absolute;
  top: 190px;
  left: 7%;
  cursor: default;
}

#counter-banner { 
  width: 100%;
  height: 260px;
  position: absolute;
  top: 2600px;
  left: 0%;
  object-fit: cover;
}

.counter-header { 
  font-family:'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800px;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 2500px;
  left: 0%;
}

 .counter-container-1 { 
  width: 25%;
  height: 120px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 2670px;
  left: 5%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-2 { 
  width: 25%;
  height: 120px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 2670px;
  left: 35%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-3 { 
  width: 25%;
  height: 120px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 2670px;
  left: 65%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-1 img, .counter-container-2 img, .counter-container-3 img {
  width: 40%;
  position: absolute;
  top: 10px;
  left: 30%;
 }

 .counter-container-1 h1, .counter-container-2 h1, .counter-container-3 h1 {
  width: 100%;
  position: absolute;
  bottom: 0%;
  left: 0%;
  font-size: 14px;
  font-family: sans-serif;
  font-weight: 200;
  color: #303030;
}

.count { 
  color: #000;
  font-size: 24px;
  font-family: sans-serif;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 65px;
  left: 0%;
}
 
.contact-container { 
  width: 100%;
  height: 300px;
  position: absolute;
  top: 2860px;
  left: 0%;
}

.contact-container img {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.contact-header { 
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #000;
  position: absolute;
  top: 30px;
  left: 5%;
  width: 60%;
}

.contact-text { 
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 100;
  color: #000;
  position: absolute;
  top: 140px;
  left: 5%;
  width: 70%;
}

.contact-container button { 
  background-color: #7b8f4c;
  width: 20%;
  height: 45px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 220px;
  left: 5%;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.contact-container button:hover {
  width: 10%;
}

.social-container { 
  background-color: #7b8f4c;
  width: 100%;
  height: 360px;
  position: absolute;
  top: 3160px;
  left: 0%;
}

.social-container h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  color: #fff;
  width: 80%;
  text-align: left;
  position: absolute;
  top: 30px;
  left: 5%;
}

.social-container p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 100;
  color: #fff;
  width: 90%;
  text-align: left;
  position: absolute;
  top: 140px;
  left: 5%;
}

.social-facebook {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 250px;
  left: 17%;
  transition: all .3s ease-in-out;
}

.social-linkedin {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 250px;
  left: 34%;
  transition: all .3s ease-in-out;
}

.social-youtube {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 250px;
  left: 51.5%;
  transition: all .3s ease-in-out;
}

.social-instagram {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 250px;
  left: 69%;
  transition: all .3s ease-in-out;
}

.social-facebook img, .social-linkedin img, .social-youtube img, .social-instagram img{
  width: 45%;
  position: absolute;
  top: 15px;
  left: 27.5%;
}

#social:hover {
  top: 340px;
}


.footer { 
  position: absolute;
  top: 3520px;
  left: 0%;
}
}
     
@media  (min-width: 768px) and (max-width: 991.98px) and (orientation: portrait) {
  body {
  background-color: #fff;
}

/* Banner container */
.banner-container {
  width: 100%;
  height: 600px;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 1;
  background-color: #000;
}

.banner img {
  width: 100%;
  height: 100vh;
  object-fit: cover; 
}

.banner-shadow {
  background-image: linear-gradient(to bottom, #000, #00000000);
  width: 100%;
  height: 40%;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 98;
}

.scroll-down-wrapper {
  display: none;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.chevrons { 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.chevron {
  width: 20px;
  height: 20px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  animation: scrollDownChevron 2s infinite;
  opacity: 0;
}

.chevron:nth-child(1) {
  animation-delay: 0s;
}
.chevron:nth-child(2) {
  animation-delay: 0.3s;
}
.chevron:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes scrollDownChevron {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
  50% {
    opacity: 1;
    transform: rotate(-45deg) translateY(0px);
  }
  100% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
}

.scroll-text { display: none;
  margin-top: 30px;
  color: white;
  font-size: 18px;
  display: block;
  text-align: center;
}

.banner-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.7;
    z-index: 2;
}

.banner-text {
  z-index: 3;
}

.banner-text h1{
  font-family: sans-serif;
  font-size: 44px;
  font-weight: 100;
  position: absolute;
  top: 40%;
  left: 15%;
  z-index: 3;
  opacity: 1;
  width: 70%;
  text-align: center;
}

.social-menu {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 5;
}

.main-btn {
  width: 70px;
  height: 70px;
  background-color: #7b8f4c;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.main-btn img {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50%;
}

.icon-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 90px;
  left: 9px;
  gap: 12px;
  pointer-events: none;
}

.icon {
  width: 55px;
  height: 55px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.icon.whatsapp {background-color: #25D366;}
.icon.phoneCall { background-color: #3f73e2;  }
.icon.messenger { background-color: #168AFF; }
.icon.instagram { background-color: #e1306c; }
.icon.linkedin { background-color: #0077b5; }

.icon img {
  width: 45px;
  position: absolute;
  top: 5px;
  left: 5px;
}

.social-menu.open .icon-list {
  pointer-events: all;
}

.social-menu.open .icon {
  transform: translateY(0);
  opacity: 1;
}

.header-1 {
  font-family:'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 900;
  width: 90%;
  text-align: center;
  position: absolute;
  top: 650px;
  left: 5%;
}

.header-1-text { 
  font-family:'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 100;
  width: 80%;
  text-align: center;
  position: absolute;
  top: 740px;
  left: 10%;
}

/* Slideshow container */
.product-container {  
  background-color: #f6f6f6;
   width: 100%;
   height: 770px;
   position: absolute;
   top: 830px;
   left: 0%;
   margin: auto;
   z-index: 2;
 }
 
 .pellet-1 {
  width: 30%;
  height: 350px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 2%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-2 { 
  width: 30%;
  height: 350px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 35%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-3 { 
  width: 30%;
  height: 350px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 68%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-4 { 
  width: 30%;
  height: 350px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 395px;
  left: 2%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-5 { 
  width: 30%;
  height: 350px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 395px;
  left: 35%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-1:hover, .pellet-2:hover, .pellet-3:hover, .pellet-4:hover, .pellet-5:hover {
  transform: scale(1.1);
 }

 .pellet-1 img, .pellet-2 img, .pellet-3 img, .pellet-4 img, .pellet-5 img {
  position: absolute;
  top: -5px;
  left: -5%;
  width: 100%;
  height: 270px;
 }

 .pellet-1 h1, .pellet-2 h1, .pellet-3 h1, .pellet-4 h1, .pellet-5 h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  position: absolute;
  top: 285px;
  left: 5%;
  font-weight: 200;
 }

 .pellet-1 button, .pellet-2 button, .pellet-3 button, .pellet-4 button, .pellet-5 button {
  font-size: 10px !important;
  width: 45px;
  height: 45px;
  background-color: #73b901;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 290px;
  right: 6%;
  cursor: pointer;
  transition: all .3s ease-in-out;
 }

 .pellet-1 button:hover, .pellet-2 button:hover , .pellet-3 button:hover, .pellet-4 button:hover, .pellet-5 button:hover {
  display: none;
  transform: scale(1.1);
 }
 
 .sliderImage img { 
  width: 100%;
  position: absolute;
  top: 1750px;
  left: 0%;
  z-index: 1;
}

#sliderText { 
  width: 80%;
  position: absolute;
  top: 1720px;
  left: 10%;
  font-family: sans-serif;
  font-size: 38px;
  opacity: 0;
  animation: fade 1s ease-in-out forwards;
  text-align: center;
}

@keyframes fade {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

 .why-pellet { 
  z-index: 3;
    width: 100%;
    height: 600px;
    background-color: #f6f6f6;
    position: absolute;
    top: 2260px;
    left: 0%;
}

.why-pellet h1 {
  font-family: sans-serif;
  font-size: 50px;
  font-weight: 400;
  position: absolute;
  top: 20px;
  left: 5%;
  color: #373737;
}

.box-1 {
  width: 30%;
  height: 340px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 220px;
  left: 5%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-1 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}


.box-2 {
  width: 30%;
  height: 340px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 220px;
  left: 36%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-2 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-3 {
  width: 30%;
  height: 340px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 220px;
  left: 68%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-3 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-1-icon, .box-2-icon, .box-3-icon {
  width: 45px;
  height: 45px;
  background-color: #85d800;
  position: absolute;
  top: 200px;
  left: 5%;
  border-radius: 2px;
  z-index: 3;
  border: none;
}

.box-1:hover, .box-2:hover, .box-3:hover {
 transform: scale(1.1);
}

.box-1-icon img, .box-2-icon img, .box-3-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.box-1 h1, .box-2 h1, .box-3 h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  position: absolute;
  top: 195px;
  left: 27%;
  cursor: default;
}

.box-1-line, .box-2-line, .box-3-line {
  display: none;
  width: 80%;
  height: 1px;
  background-color: #85d800;
  position: absolute;
  bottom: 20px;
  left: 10%;
}

.box-1 p, .box-2 p, .box-3 p {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  width: 90%;
  position: absolute;
  top: 240px;
  left: 7%;
  cursor: default;
}

#counter-banner { 
  width: 100%;
  height: 290px;
  position: absolute;
  top: 3100px;
  left: 0%;
  object-fit: cover;
}

.counter-header { 
  font-family:'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800px;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 3000px;
  left: 0%;
}

 .counter-container-1 { 
  width: 20%;
  height: 140px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 3200px;
  left: 15%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-2 { 
  width: 20%;
  height: 140px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 3200px;
  left: 40%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-3 { 
  width: 20%;
  height: 140px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 3200px;
  left: 65%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-1 img, .counter-container-2 img, .counter-container-3 img {
  width: 38%;
  position: absolute;
  top: 10px;
  left: 31%;
 }

 .counter-container-1 h1, .counter-container-2 h1, .counter-container-3 h1 {
  width: 100%;
  position: absolute;
  bottom: 0%;
  left: 0%;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: 200;
  color: #303030;
}

.count { 
  color: #000;
  font-size: 24px;
  font-family: sans-serif;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 75px;
  left: 0%;
}
 
.contact-container { 
  width: 100%;
  height: 350px;
  position: absolute;
  top: 3390px;
  left: 0%;
}

.contact-container img {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.contact-header { 
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: #000;
  position: absolute;
  top: 70px;
  left: 5%;
  width: 60%;
}

.contact-text { 
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 100;
  color: #000;
  position: absolute;
  top: 140px;
  left: 5%;
  width: 70%;
}

.contact-container button { 
  background-color: #7b8f4c;
  width: 20%;
  height: 55px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 260px;
  left: 5%;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.contact-container button:hover {
  width: 10%;
}

.social-container { 
  background-color: #7b8f4c;
  width: 100%;
  height: 360px;
  position: absolute;
  top: 3740px;
  left: 0%;
}

.social-container h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  color: #fff;
  width: 80%;
  text-align: left;
  position: absolute;
  top: 30px;
  left: 5%;
}

.social-container p {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 100;
  color: #fff;
  width: 90%;
  text-align: left;
  position: absolute;
  top: 140px;
  left: 5%;
}

.social-facebook {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 250px;
  left: 30%;
  transition: all .3s ease-in-out;
}

.social-linkedin {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 250px;
  left: 40%;
  transition: all .3s ease-in-out;
}

.social-youtube {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 250px;
  left: 50.5%;
  transition: all .3s ease-in-out;
}

.social-instagram {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 250px;
  left: 60%;
  transition: all .3s ease-in-out;
}

.social-facebook img, .social-linkedin img, .social-youtube img, .social-instagram img{
  width: 45%;
  position: absolute;
  top: 15px;
  left: 27.5%;
}

#social:hover {
  top: 340px;
}


.footer { 
  position: absolute;
  top: 4100px;
  left: 0%;
}
}
     
@media (min-width: 992px) and (max-width: 1199.98px) and (orientation: portrait)  {
body {
  background-color: #fff;
}

/* Banner container */
.banner-container {
  width: 100%;
  height: 600px;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 1;
  background-color: #000;
}

.banner img {
  width: 100%;
  height: 100vh;
  object-fit: cover; 
}

.banner-shadow {
  background-image: linear-gradient(to bottom, #000, #00000000);
  width: 100%;
  height: 40%;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 98;
}

.scroll-down-wrapper {
  display: none;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.chevrons { 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.chevron {
  width: 20px;
  height: 20px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  animation: scrollDownChevron 2s infinite;
  opacity: 0;
}

.chevron:nth-child(1) {
  animation-delay: 0s;
}
.chevron:nth-child(2) {
  animation-delay: 0.3s;
}
.chevron:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes scrollDownChevron {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
  50% {
    opacity: 1;
    transform: rotate(-45deg) translateY(0px);
  }
  100% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
}

.scroll-text { display: none;
  margin-top: 30px;
  color: white;
  font-size: 18px;
  display: block;
  text-align: center;
}

.banner-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.7;
    z-index: 2;
}

.banner-text {
  z-index: 3;
}

.banner-text h1{
  font-family: sans-serif;
  font-size: 50px;
  font-weight: 100;
  position: absolute;
  top: 40%;
  left: 15%;
  z-index: 3;
  opacity: 1;
  width: 70%;
  text-align: center;
}

.social-menu {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 5;
}

.main-btn {
  width: 70px;
  height: 70px;
  background-color: #7b8f4c;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.main-btn img {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50%;
}

.icon-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 90px;
  left: 9px;
  gap: 12px;
  pointer-events: none;
}

.icon {
  width: 55px;
  height: 55px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.icon.whatsapp {background-color: #25D366;}
.icon.phoneCall { background-color: #3f73e2;  }
.icon.messenger { background-color: #168AFF; }
.icon.instagram { background-color: #e1306c; }
.icon.linkedin { background-color: #0077b5; }

.icon img {
  width: 45px;
  position: absolute;
  top: 5px;
  left: 5px;
}

.social-menu.open .icon-list {
  pointer-events: all;
}

.social-menu.open .icon {
  transform: translateY(0);
  opacity: 1;
}

.header-1 {
  font-family:'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 900;
  width: 90%;
  text-align: center;
  position: absolute;
  top: 650px;
  left: 5%;
}

.header-1-text { 
  font-family:'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 100;
  width: 80%;
  text-align: center;
  position: absolute;
  top: 730px;
  left: 10%;
}

/* Slideshow container */
.product-container {  
  background-color: #f6f6f6;
   width: 100%;
   height: 350px;
   position: absolute;
   top: 830px;
   left: 0%;
   margin: auto;
   z-index: 2;
 }
 
 .pellet-1 {
  width: 19%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 0.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-2 { 
  width: 19%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 20.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-3 { 
  width: 19%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 40.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-4 { 
  width: 19%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 60%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-5 { 
  width: 19%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 79.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-1:hover, .pellet-2:hover, .pellet-3:hover, .pellet-4:hover, .pellet-5:hover {
  transform: scale(1.1);
 }

 .pellet-1 img, .pellet-2 img, .pellet-3 img, .pellet-4 img, .pellet-5 img {
  position: absolute;
  top: -5px;
  left: -5%;
  width: 100%;
  height: 230px;
 }

 .pellet-1 h1, .pellet-2 h1, .pellet-3 h1, .pellet-4 h1, .pellet-5 h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  position: absolute;
  top: 240px;
  left: 5%;
  font-weight: 200;
 }

 .pellet-1 button, .pellet-2 button, .pellet-3 button, .pellet-4 button, .pellet-5 button {
  font-size: 10px !important;
  width: 45px;
  height: 45px;
  background-color: #73b901;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 245px;
  right: 6%;
  cursor: pointer;
  transition: all .3s ease-in-out;
 }

 .pellet-1 button:hover, .pellet-2 button:hover , .pellet-3 button:hover, .pellet-4 button:hover, .pellet-5 button:hover {
  display: none;
  transform: scale(1.1);
 }
 
 .sliderImage img { 
  width: 100%;
  position: absolute;
  top: 1300px;
  left: 0%;
  z-index: 1;
}

#sliderText { 
  width: 80%;
  position: absolute;
  top: 1300px;
  left: 10%;
  font-family: sans-serif;
  font-size: 42px;
  opacity: 0;
  animation: fade 1s ease-in-out forwards;
  text-align: center;
}

@keyframes fade {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

 .why-pellet { 
  z-index: 3;
    width: 100%;
    height: 700px;
    background-color: #f6f6f6;
    position: absolute;
    top: 1980px;
    left: 0%;
}

.why-pellet h1 {
  font-family: sans-serif;
  font-size: 50px;
  font-weight: 400;
  position: absolute;
  top: 20px;
  left: 5%;
  color: #373737;
}

.box-1 {
  width: 30%;
  height: 400px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 220px;
  left: 5%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-1 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}


.box-2 {
  width: 30%;
  height: 400px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 220px;
  left: 36%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-2 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-3 {
  width: 30%;
  height: 400px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 220px;
  left: 68%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-3 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-1-icon, .box-2-icon, .box-3-icon {
  width: 50px;
  height: 50px;
  background-color: #85d800;
  position: absolute;
  top: 260px;
  left: 7%;
  border-radius: 2px;
  z-index: 3;
  border: none;
}

.box-1:hover, .box-2:hover, .box-3:hover {
 transform: scale(1.1);
}

.box-1-icon img, .box-2-icon img, .box-3-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.box-1 h1, .box-2 h1, .box-3 h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  position: absolute;
  top: 250px;
  left: 27%;
  cursor: default;
}

.box-1-line, .box-2-line, .box-3-line {
  display: none;
  width: 80%;
  height: 1px;
  background-color: #85d800;
  position: absolute;
  bottom: 20px;
  left: 10%;
}

.box-1 p, .box-2 p, .box-3 p {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  width: 90%;
  position: absolute;
  top: 310px;
  left: 7%;
  cursor: default;
}

#counter-banner { 
  width: 100%;
  height: 290px;
  position: absolute;
  top: 2900px;
  left: 0%;
  object-fit: cover;
}

.counter-header { 
  font-family:'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800px;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 2800px;
  left: 0%;
}

 .counter-container-1 { 
  width: 18%;
  height: 150px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 3000px;
  left: 15%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-2 { 
  width: 18%;
  height: 150px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 3000px;
  left: 41%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-3 { 
  width: 18%;
  height: 150px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 3000px;
  left: 65%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-1 img, .counter-container-2 img, .counter-container-3 img {
  width: 38%;
  position: absolute;
  top: 10px;
  left: 31%;
 }

 .counter-container-1 h1, .counter-container-2 h1, .counter-container-3 h1 {
  width: 100%;
  position: absolute;
  bottom: 0%;
  left: 0%;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: 200;
  color: #303030;
}

.count { 
  color: #000;
  font-size: 28px;
  font-family: sans-serif;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 85px;
  left: 0%;
}
 
.contact-container { 
  width: 100%;
  height: 400px;
  position: absolute;
  top: 3190px;
  left: 0%;
}

.contact-container img {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.contact-header { 
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #000;
  position: absolute;
  top: 70px;
  left: 5%;
  width: 60%;
}

.contact-text { 
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 100;
  color: #000;
  position: absolute;
  top: 140px;
  left: 5%;
  width: 60%;
}

.contact-container button { 
  background-color: #7b8f4c;
  width: 20%;
  height: 60px;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 260px;
  left: 5%;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.contact-container button:hover {
  width: 10%;
}

.social-container { 
  background-color: #7b8f4c;
  width: 100%;
  height: 400px;
  position: absolute;
  top: 3590px;
  left: 0%;
}

.social-container h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  color: #fff;
  width: 80%;
  text-align: left;
  position: absolute;
  top: 60px;
  left: 5%;
}

.social-container p {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 100;
  color: #fff;
  width: 90%;
  text-align: left;
  position: absolute;
  top: 140px;
  left: 5%;
}

.social-facebook {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 290px;
  left: 30%;
  transition: all .3s ease-in-out;
}

.social-linkedin {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 290px;
  left: 40%;
  transition: all .3s ease-in-out;
}

.social-youtube {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 290px;
  left: 50.5%;
  transition: all .3s ease-in-out;
}

.social-instagram {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 290px;
  left: 60%;
  transition: all .3s ease-in-out;
}

.social-facebook img, .social-linkedin img, .social-youtube img, .social-instagram img{
  width: 45%;
  position: absolute;
  top: 15px;
  left: 27.5%;
}

#social:hover {
  top: 340px;
}


.footer { 
  position: absolute;
  top: 3990px;
  left: 0%;
}
}

@media  (min-width: 1200px) and (max-width: 1399.98px) {  
body {
  background-color: #fff;
}

.mobile-whatsapp {display: none;}

.header-1-decoration, .header-2-decoration, .header-3-decoration, .header-4-decoration, .header-5-decoration {
  display: none;
}

.product-1, .product-2, .product-3, .product-4 {
  z-index: 2;
}

.product-1 button, .product-2 button, .product-3 button, .product-4 button {
  z-index: 3;
  transition: all .3s ease-in-out;
} 

.product-1 button:hover, .product-2 button:hover, .product-3 button:hover, .product-4 button:hover {
  z-index: 3;
  background-color: #7b8f4c;
} 
.mobile-product-container {
  display: none;
}

.mobile-banner {display: none;}

.mySlides {display: none}

/* Banner container */
.banner-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 1;
  background-color: #000;
}

.banner-shadow {
  background-image: linear-gradient(to bottom, #000, #00000000);
  width: 100%;
  height: 20%;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 98;
}

.scroll-down-wrapper {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.chevron {
  width: 20px;
  height: 20px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  animation: scrollDownChevron 2s infinite;
  opacity: 0;
}

.chevron:nth-child(1) {
  animation-delay: 0s;
}
.chevron:nth-child(2) {
  animation-delay: 0.3s;
}
.chevron:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes scrollDownChevron {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
  50% {
    opacity: 1;
    transform: rotate(-45deg) translateY(0px);
  }
  100% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
}

.scroll-text {
  margin-top: 30px;
  color: white;
  font-size: 18px;
  display: block;
  text-align: center;
}

.banner-container img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.7;
  z-index: 2;
}

.banner-text {
  z-index: 3;
}

.banner-text h1{
  font-family: sans-serif;
  font-size: 50px;
  font-weight: 100;
  position: absolute;
  top: 40%;
  left: 30%;
  z-index: 3;
  opacity: 1;
  width: 40%;
  text-align: center;
}

.banner-text a button{
  width: 15%;
  height: 70px;
  background-color: #8ee600;
  font-family: 'Open sans', sans-serif;
  text-align: center;
  color: #fff;
  font-size: 24px;
  position: absolute;
  top: 800px;
  left: 5%;
  border: none;
  border-radius: 5px;
  opacity: 1;
  z-index: 3;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.banner-text a button:hover {
  background-color: #85d800;
}

.banner-dot {
  height: 15px;
  width: 15px;
  background-color: #afafaf;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  position: relative;
  top: 650px;
  z-index: 2;
}

.active {
  background-color: #009246;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 4s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}


.social-menu {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100;
}

.main-btn {
  width: 60px;
  height: 60px;
  background-color: #7b8f4c;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.main-btn img {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50%;
}

.icon-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 70px;
  left: 6px;
  gap: 15px;
  pointer-events: none;
}

.icon {
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.icon.whatsapp {background-color: #25D366;}
.icon.phoneCall { background-color: #3f73e2;  }
.icon.messenger { background-color: #168AFF; }
.icon.instagram { background-color: #e1306c; }
.icon.linkedin { background-color: #0077b5; }

.icon img {
  width: 40px;
  position: absolute;
  top: 5px;
  left: 5px;
}

.social-menu.open .icon-list {
  pointer-events: all;
}

.social-menu.open .icon {
  transform: translateY(0);
  opacity: 1;
}

.header-1 { 
  font-family:'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 800px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 870px;
    left: 0%;
}

.header-1-text {
  font-family:'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 100;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 940px;
  left: 0%;
}

/* Slideshow container */
.product-container {
  background-color: #f6f6f6;
   width: 100%;
   height: 420px;
   position: absolute;
   top: 1050px;
   left: 0%;
   margin: auto;
   z-index: 2;
 }
 
 .pellet-1 {
  width: 18%;
  height: 300px;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  top: 60px;
  left: 2%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-2 {
  width: 18%;
  height: 300px;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  top: 60px;
  left: 21.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-3 {
  width: 18%;
  height: 300px;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  top: 60px;
  left: 41%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-4 {
  width: 18%;
  height: 300px;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  top: 60px;
  left: 60.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-5 {
  width: 18%;
  height: 300px;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  top: 60px;
  left: 80%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-1:hover, .pellet-2:hover, .pellet-3:hover, .pellet-4:hover, .pellet-5:hover {
  transform: scale(1.1);
 }

 .pellet-1 img, .pellet-2 img, .pellet-3 img, .pellet-4 img, .pellet-5 img {
  position: absolute;
  top: 10px;
  left: 5%;
  width: 85%;
  height: 200px;
 }

 .pellet-1 h1, .pellet-2 h1, .pellet-3 h1, .pellet-4 h1, .pellet-5 h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  position: absolute;
  top: 230px;
  left: 10%;
  font-weight: 200;
 }

 .pellet-1 button, .pellet-2 button, .pellet-3 button, .pellet-4 button, .pellet-5 button {
  font-weight: 300;
  font-size: 20px;
  width: 45px;
  height: 45px;
  background-color: #73b901;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 235px;
  right: 6%;
  cursor: pointer;
  transition: all .3s ease-in-out;
 }

 .pellet-1 button:hover, .pellet-2 button:hover , .pellet-3 button:hover, .pellet-4 button:hover, .pellet-5 button:hover {
  transform: scale(1.1);
 }
 

 .sliderImage img {
  width: 1100px;
  position: absolute;
  top: 1450px;
  left: -10%;
  z-index: 1;
}

#sliderText {
  width: 45%;
  position: absolute;
  top: 1700px;
  left: 52%;
  font-family: sans-serif;
  font-size: 40px;
  opacity: 0;
  animation: fade 1s ease-in-out forwards;
}

@keyframes fade {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

.why-pellet {
  z-index: 3;
  width: 100%;
  height: 430px;
  background-color: #f6f6f6;
  position: absolute;
  top: 2050px;
  left: 0%;
}

.why-pellet h1 {
  font-family: sans-serif;
  font-size: 54px;
  font-weight: 400;
  position: absolute;
  top: 60px;
  left: 5%;
  color: #373737;
}

.box-1 {
  width: 18%;
  height: 340px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 45px;
  right: 45%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-1 img {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.box-1-icon {
  width: 40px;
  height: 40px;
  background-color: #85d800;
  position: absolute;
  top: 200px;
  left: 3%;
  border-radius: 5px;
  z-index: 3;
  border: none;
}

.box-2 {
  width: 18%;
  height: 340px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 45px;
  right: 25%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-2 img {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.box-2-icon {
  width: 40px;
  height: 40px;
  background-color: #85d800;
  position: absolute;
  top: 200px;
  left: 3%;
  border-radius: 5px;
  z-index: 3;
  border: none;
}

.box-3 {
  width: 18%;
  height: 340px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 45px;
  right: 5%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-3 img {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.box-3-icon {
   width: 40px;
  height: 40px;
  background-color: #85d800;
  position: absolute;
  top: 200px;
  left: 3%;
  border-radius: 5px;
  z-index: 3;
  border: none;
}


.box-1:hover, .box-2:hover, .box-3:hover {
 transform: scale(1.1);
}

.box-1-icon img, .box-2-icon img, .box-3-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.box-1 h1, .box-2 h1, .box-3 h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  position: absolute;
  top: 190px;
  left: 25%;
  cursor: default;
}

.box-1-line, .box-2-line, .box-3-line {
  width: 80%;
  height: 1px;
  background-color: #85d800;
  position: absolute;
  bottom: 20px;
  left: 10%;
}

.box-1 p, .box-2 p, .box-3 p {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  width: 90%;
  position: absolute;
  top: 230px;
  left: 5%;
  cursor: default;
}

#counter-banner {
  width: 100%;
  height: 400px;
  position: absolute;
  top: 2800px;
  left: 0%;
}

.counter-header { 
   font-family:'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 2650px;
    left: 0%;
}

 .counter-container-1 { 
  width: 15%;
  height: 180px;
  background-color: #fff;
  border: none;
  border-radius: 25px;
  position: absolute;
  top: 2930px;
  left: 22%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-2 { 
  width: 15%;
  height: 180px;
  background-color: #fff;
  border: none;
  border-radius: 25px;
  position: absolute;
  top: 2930px;
  left: 42.5%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-3 { 
  width: 15%;
  height: 180px;
  background-color: #fff;
  border: none;
  border-radius: 25px;
  position: absolute;
  top: 2930px;
  left: 63%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-1 img, .counter-container-2 img, .counter-container-3 img {
  width: 40%;
  position: absolute;
  top: 10px;
  left: 30%;
 }

 .counter-container-1 h1, .counter-container-2 h1, .counter-container-3 h1 {
  width: 100%;
  position: absolute;
  bottom: 3%;
  left: 0%;
  font-size: 18px;
  font-family: sans-serif;
  font-weight: 200;
  color: #303030;
 }

.count {
  color: #000;
  font-size: 36px;
  font-family: sans-serif;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 95px;
  left: 0%;
}
 
.contact-container {
  width: 100%;
  height: 500px;
  position: absolute;
  top: 3200px;
  left: 0%;
}

.contact-container img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.contact-header {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  font-weight: 800px;
  color: #000;
  position: absolute;
  top: 120px;
  left: 5%;
}

.contact-text {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 100;
  color: #000;
  position: absolute;
  top: 220px;
  left: 5%;
}

.contact-container button {
  background-color: #7b8f4c;
  width: 12%;
  height: 60px;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  color: #fff;
  border: none;
  border-radius: 10px;
  position: absolute;
  top: 330px;
  left: 5%;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.contact-container button:hover {
  width: 10%;
}

.social-container {
  background-color: #7b8f4c;
  width: 100%;
  height: 500px;
  position: absolute;
  top: 3700px;
  left: 0%;
}

.social-container h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 100px;
  left: 0%;
}

.social-container p {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 100;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 200px;
  left: 0%;
}

.social-facebook {
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 350px;
  left: 38%;
  transition: all .3s ease-in-out;
}

.social-linkedin {
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 350px;
  left: 43.5%;
  transition: all .3s ease-in-out;
}

.social-youtube {
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 350px;
  left: 49.5%;
  transition: all .3s ease-in-out;
}

.social-instagram {
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 350px;
  left: 55.5%;
  transition: all .3s ease-in-out;
}

.social-facebook img, .social-linkedin img, .social-youtube img, .social-instagram img{
  width: 55%;
  position: absolute;
  top: 13px;
  left: 22.5%;
}

#social:hover {
  top: 340px;
}

.google-maps iframe {
    width: 40%;
    height: 480px;
    position: absolute;
    top: 4550px;
    left: 50%;
    border: none;
    border-radius: 5px;
    transition: all .3s ease-in-out;
    box-shadow:
  0px 0px 2.2px rgba(0, 0, 0, -0.056),
  0px 0px 5.3px rgba(0, 0, 0, -0.065),
  0px 0px 10px rgba(0, 0, 0, -0.061),
  0px 0px 17.9px rgba(0, 0, 0, -0.044),
  0px 0px 33.4px rgba(0, 0, 0, -0.009),
  0px 0px 80px rgba(0, 0, 0, 0.12)
;
}

.google-maps iframe:hover {
    transform: scale(1.05);
}


.footer {
  position: absolute;
  top: 4200px;
  left: 0%;
}



}
     
@media  (min-width: 1400px) and (max-width: 1599.98px) { 
body {
    background-color: #fff;

}

.mobile-whatsapp {display: none;}

.header-1-decoration, .header-2-decoration, .header-3-decoration, .header-4-decoration, .header-5-decoration {
  display: none;
}

.product-1, .product-2, .product-3, .product-4 {
  z-index: 2;
}

.product-1 button, .prodcut-2 button, .product-3 button, .product-4 button {
  z-index: 3;
  transition: all .3s ease-in-out;
} 

.product-1 button:hover, .prodcut-2 button:hover, .product-3 button:hover, .product-4 button:hover {
  z-index: 3;
  background-color: #7b8f4c;
} 
.mobile-product-container {
  display: none;
}

.mobile-banner {display: none;}

.mySlides {display: none}


/* Banner container */
.banner-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 1;
  background-color: #000;
}

.banner-shadow {
  background-image: linear-gradient(to bottom, #000, #00000000);
  width: 100%;
  height: 20%;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 98;
}

.scroll-down-wrapper {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.chevron {
  width: 20px;
  height: 20px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  animation: scrollDownChevron 2s infinite;
  opacity: 0;
}

.chevron:nth-child(1) {
  animation-delay: 0s;
}
.chevron:nth-child(2) {
  animation-delay: 0.3s;
}
.chevron:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes scrollDownChevron {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
  50% {
    opacity: 1;
    transform: rotate(-45deg) translateY(0px);
  }
  100% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
}

.scroll-text {
  margin-top: 30px;
  color: white;
  font-size: 18px;
  display: block;
  text-align: center;
}

.banner-container img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.7;
  z-index: 2;
}

.banner-text {
  z-index: 3;
}

.banner-text h1{
  font-family: sans-serif;
  font-size: 52px;
  font-weight: 100;
  position: absolute;
  top: 40%;
  left: 30%;
  z-index: 3;
  opacity: 1;
  width: 40%;
  text-align: center;
}

.banner-text a button{
  width: 15%;
  height: 70px;
  background-color: #8ee600;
  font-family: 'Open sans', sans-serif;
  text-align: center;
  color: #fff;
  font-size: 24px;
  position: absolute;
  top: 800px;
  left: 5%;
  border: none;
  border-radius: 5px;
  opacity: 1;
  z-index: 3;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.banner-text a button:hover {
  background-color: #85d800;
}

.banner-dot {
  height: 15px;
  width: 15px;
  background-color: #afafaf;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  position: relative;
  top: 650px;
  z-index: 2;
}

.active {
  background-color: #009246;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 4s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.social-menu {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100;
}

.main-btn {
  width: 60px;
  height: 60px;
  background-color: #7b8f4c;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.main-btn img {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50%;
}

.icon-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 70px;
  left: 6px;
  gap: 15px;
  pointer-events: none;
}

.icon {
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.icon.whatsapp {background-color: #25D366;}
.icon.phoneCall { background-color: #3f73e2;  }
.icon.messenger { background-color: #168AFF; }
.icon.instagram { background-color: #e1306c; }
.icon.linkedin { background-color: #0077b5; }

.icon img {
  width: 40px;
  position: absolute;
  top: 5px;
  left: 5px;
}

.social-menu.open .icon-list {
  pointer-events: all;
}

.social-menu.open .icon {
  transform: translateY(0);
  opacity: 1;
}

.header-1 { 
  font-family:'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 970px;
    left: 0%;
}

.header-1-text {
  font-family:'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 100;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 1040px;
  left: 0%;
}

/* Slideshow container */
.product-container {
  background-color: #f6f6f6;
   width: 100%;
   height: 470px;
   position: absolute;
   top: 1150px;
   left: 0%;
   margin: auto;
   z-index: 2;
 }
 
 .pellet-1 {
  width: 18%;
  height: 350px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 60px;
  left: 2%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-2 {
  width: 18%;
  height: 350px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 60px;
  left: 21.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-3 {
  width: 18%;
  height: 350px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 60px;
  left: 41%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-4 {
  width: 18%;
  height: 350px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 60px;
  left: 60.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-5 {
  width: 18%;
  height: 350px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 60px;
  left: 80%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-1:hover, .pellet-2:hover, .pellet-3:hover, .pellet-4:hover, .pellet-5:hover {
  transform: scale(1.1);
 }

 .pellet-1 img, .pellet-2 img, .pellet-3 img, .pellet-4 img, .pellet-5 img {
  position: absolute;
  top: 0px;
  left: 5%;
  width: 85%;
  height: 270px;
 }

 .pellet-1 h1, .pellet-2 h1, .pellet-3 h1, .pellet-4 h1, .pellet-5 h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  position: absolute;
  top: 280px;
  left: 10%;
  font-weight: 200;
 }

 .pellet-1 button, .pellet-2 button, .pellet-3 button, .pellet-4 button, .pellet-5 button {
  font-weight: 300;
  font-size: 20px;
  width: 55px;
  height: 55px;
  background-color: #73b901;
  color: #fff;
  border: none;
  border-radius: 10px;
  position: absolute;
  top: 280px;
  right: 6%;
  cursor: pointer;
  transition: all .3s ease-in-out;
 }

 .pellet-1 button:hover, .pellet-2 button:hover , .pellet-3 button:hover, .pellet-4 button:hover, .pellet-5 button:hover {
  transform: scale(1.1);
 }
 
 .sliderImage img {
  width: 1200px;
  position: absolute;
  top: 1600px;
  left: -10%;
  z-index: 1;
}

#sliderText {
  width: 45%;
  position: absolute;
  top: 1850px;
  left: 52%;
  font-family: sans-serif;
  font-size: 48px;
  opacity: 0;
  animation: fade 1s ease-in-out forwards;
}

@keyframes fade {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

 .why-pellet {
  z-index: 3;
    width: 100%;
    height: 480px;
    background-color: #f6f6f6;
    position: absolute;
    top: 2280px;
    left: 0%;
}

.why-pellet h1 {
  font-family: sans-serif;
  font-size: 64px;
  font-weight: 400;
  position: absolute;
  top: 60px;
  left: 5%;
  color: #373737;
}

.box-1 {
  width: 18%;
  height: 380px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 45px;
  right: 45%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-1 img {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.box-1-icon, .box-2-icon, .box-3-icon {
  width: 50px;
  height: 50px;
  background-color: #85d800;
  position: absolute;
  top: 220px;
  left: 3%;
  border-radius: 5px;
  z-index: 3;
  border: none;
}

.box-2 {
  width: 18%;
  height: 380px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 45px;
  right: 25%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-2 img {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.box-3 {
  width: 18%;
  height: 380px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 45px;
  right: 5%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-3 img {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}


.box-1:hover, .box-2:hover, .box-3:hover {
 transform: scale(1.1);
}

.box-1-icon img, .box-2-icon img, .box-3-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.box-1 h1, .box-2 h1, .box-3 h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  position: absolute;
  top: 220px;
  left: 25%;
  cursor: default;
}

.box-1-line, .box-2-line, .box-3-line {
  width: 80%;
  height: 1px;
  background-color: #85d800;
  position: absolute;
  bottom: 20px;
  left: 10%;
}

.box-1 p, .box-2 p, .box-3 p {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  width: 90%;
  position: absolute;
  top: 260px;
  left: 5%;
  cursor: default;
}

#counter-banner {
  width: 100%;
  height: 400px;
  position: absolute;
  top: 3050px;
  left: 0%;
}

.counter-header { 
   font-family:'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 800px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 2900px;
    left: 0%;
}

 .counter-container-1 { 
  width: 16%;
  height: 200px;
  background-color: #fff;
  border: none;
  border-radius: 25px;
  position: absolute;
  top: 3170px;
  left: 22%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-2 { 
  width: 16%;
  height: 200px;
  background-color: #fff;
  border: none;
  border-radius: 25px;
  position: absolute;
  top: 3170px;
  left: 42%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-3 { 
  width: 16%;
  height: 200px;
  background-color: #fff;
  border: none;
  border-radius: 25px;
  position: absolute;
  top: 3170px;
  left: 62%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-1 img, .counter-container-2 img, .counter-container-3 img {
  width: 30%;
  position: absolute;
  top: 10px;
  left: 35%;
 }

 .counter-container-1 h1, .counter-container-2 h1, .counter-container-3 h1 {
  width: 100%;
  position: absolute;
  bottom: 3%;
  left: 0%;
  font-size: 22px;
  font-family: sans-serif;
  font-weight: 200;
  color: #303030;
 }

.count {
  color: #000;
  font-size: 42px;
  font-family: sans-serif;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 100px;
  left: 0%;
}
 
.contact-container {
  width: 100%;
  height: 550px;
  position: absolute;
  top: 3450px;
  left: 0%;
}

.contact-container img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.contact-header {
  font-family: 'Poppins', sans-serif;
  font-size: 64px;
  font-weight: 800px;
  color: #000;
  position: absolute;
  top: 150px;
  left: 5%;
}

.contact-text {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 100;
  color: #000;
  position: absolute;
  top: 260px;
  left: 5%;
}

.contact-container button {
  background-color: #7b8f4c;
  width: 10%;
  height: 55px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #fff;
  border: none;
  border-radius: 10px;
  position: absolute;
  top: 350px;
  left: 5%;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.contact-container button:hover {
  width: 10%;
}

.social-container {
  background-color: #7b8f4c;
  width: 100%;
  height: 550px;
  position: absolute;
  top: 4000px;
  left: 0%;
}

.social-container h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 100px;
  left: 0%;
}

.social-container p {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 100;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 200px;
  left: 0%;
}

.social-facebook {
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 350px;
  left: 39%;
  transition: all .3s ease-in-out;
}

.social-linkedin {
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 350px;
  left: 44.3%;
  transition: all .3s ease-in-out;
}

.social-youtube {
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 350px;
  left: 49.7%;
  transition: all .3s ease-in-out;
}

.social-instagram {
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 350px;
  left: 55%;
  transition: all .3s ease-in-out;
}

.social-facebook img, .social-linkedin img, .social-youtube img, .social-instagram img{
  width: 55%;
  position: absolute;
  top: 13px;
  left: 22.5%;
}

#social:hover {
  top: 340px;
}

.google-maps iframe {
    width: 40%;
    height: 480px;
    position: absolute;
    top: 4550px;
    left: 50%;
    border: none;
    border-radius: 5px;
    transition: all .3s ease-in-out;
    box-shadow:
  0px 0px 2.2px rgba(0, 0, 0, -0.056),
  0px 0px 5.3px rgba(0, 0, 0, -0.065),
  0px 0px 10px rgba(0, 0, 0, -0.061),
  0px 0px 17.9px rgba(0, 0, 0, -0.044),
  0px 0px 33.4px rgba(0, 0, 0, -0.009),
  0px 0px 80px rgba(0, 0, 0, 0.12)
;
}

.google-maps iframe:hover {
    transform: scale(1.05);
}


.footer {
  position: absolute;
  top: 4550px;
  left: 0%;
}


    
}
     
@media  (min-width: 3840px) and (max-width: 7679.98px)  {
body {
  background-color: #fff;

}

.mobile-whatsapp {display: none;}

.header-1-decoration, .header-2-decoration, .header-3-decoration, .header-4-decoration, .header-5-decoration {
  display: none;
}

.product-1, .product-2, .product-3, .product-4 {
  z-index: 2;
}

.product-1 button, .prodcut-2 button, .product-3 button, .product-4 button {
  z-index: 3;
  transition: all .3s ease-in-out;
} 

.product-1 button:hover, .prodcut-2 button:hover, .product-3 button:hover, .product-4 button:hover {
  z-index: 3;
  background-color: #7b8f4c;
} 
.mobile-product-container {
  display: none;
}

.mobile-banner {display: none;}

.mySlides {display: none}


/* Banner container */
.banner-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 1;
  background-color: #000;
}

.banner-shadow {
  background-image: linear-gradient(to bottom, #000, #00000000);
  width: 100%;
  height: 20%;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 98;
}

.scroll-down-wrapper {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.chevron {
  width: 40px;
  height: 40px;
  border-left: 4px solid white;
  border-bottom: 4px solid white;
  transform: rotate(-45deg);
  animation: scrollDownChevron 2s infinite;
  opacity: 0;
}

.chevron:nth-child(1) {
  animation-delay: 0s;
}
.chevron:nth-child(2) {
  animation-delay: 0.3s;
}
.chevron:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes scrollDownChevron {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
  50% {
    opacity: 1;
    transform: rotate(-45deg) translateY(0px);
  }
  100% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
}

.scroll-text {
  margin-top: 60px;
  color: white;
  font-size: 36px;
  display: block;
  text-align: center;
}

.banner-container img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.7;
  z-index: 2;
}

.banner-text {
  z-index: 3;
}

.banner-text h1{
  font-family: sans-serif;
  font-size: 120px;
  font-weight: 100;
  position: absolute;
  top: 40%;
  left: 30%;
  z-index: 3;
  opacity: 1;
  width: 40%;
  text-align: center;
}

.banner-text a button{
  width: 15%;
  height: 140px;
  background-color: #8ee600;
  font-family: 'Open sans', sans-serif;
  text-align: center;
  color: #fff;
  font-size: 48px;
  position: absolute;
  top: 1600px;
  left: 5%;
  border: none;
  border-radius: 10px;
  opacity: 1;
  z-index: 3;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.banner-text a button:hover {
  background-color: #85d800;
}

.banner-dot {
  height: 30px;
  width: 30px;
  background-color: #afafaf;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  position: relative;
  top: 1300px;
  z-index: 2;
}

.active {
  background-color: #009246;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 4s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.sliderImage img {
  width: 3200px;
  position: absolute;
  top: 4000px;
  left: -10%;
  z-index: 1;
}

#sliderText {
  width: 45%;
  position: absolute;
  top: 4800px;
  left: 52%;
  font-family: sans-serif;
  font-size: 120px;
  opacity: 0;
  animation: fade 1s ease-in-out forwards;
}

@keyframes fade {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

.social-menu {
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 100;
}

.main-btn {
  width: 120px;
  height: 120px;
  background-color: #7b8f4c;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 48px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.main-btn img {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50%;
}

.icon-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 140px;
  left: 12px;
  gap: 30px;
  pointer-events: none;
}

.icon {
  width: 100px;
  height: 100px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  text-align: center;
  line-height: 100px;
  font-size: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.3s ease;
}

.icon.whatsapp {background-color: #25D366;}
.icon.phoneCall { background-color: #3f73e2;  }
.icon.messenger { background-color: #168AFF; }
.icon.instagram { background-color: #e1306c; }
.icon.linkedin { background-color: #0077b5; }

.icon img {
  width: 80px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.social-menu.open .icon-list {
  pointer-events: all;
}

.social-menu.open .icon {
  transform: translateY(0);
  opacity: 1;
}

.header-1 { 
  font-family:'Poppins', sans-serif;
    font-size: 84px;
    font-weight: 1600px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 2400px;
    left: 0%;
}

.header-1-text {
  font-family:'Poppins', sans-serif;
  font-size: 44px;
  font-weight: 100;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 2600px;
  left: 0%;
}

/* Slideshow container */
.product-container {
  background-color: #f6f6f6;
   width: 100%;
   height: 1240px;
   position: absolute;
   top: 2800px;
   left: 0%;
   margin: auto;
   z-index: 2;
 }
 
 .pellet-1 {
  width: 18%;
  height: 960px;
  background-color: #fff;
  border-radius: 40px;
  position: absolute;
  top: 120px;
  left: 2%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-2 {
  width: 18%;
  height: 960px;
  background-color: #fff;
  border-radius: 40px;
  position: absolute;
  top: 120px;
  left: 21.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-3 {
  width: 18%;
  height: 960px;
  background-color: #fff;
  border-radius: 40px;
  position: absolute;
  top: 120px;
  left: 41%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-4 {
  width: 18%;
  height: 960px;
  background-color: #fff;
  border-radius: 40px;
  position: absolute;
  top: 120px;
  left: 60.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-5 {
  width: 18%;
  height: 960px;
  background-color: #fff;
  border-radius: 40px;
  position: absolute;
  top: 120px;
  left: 80%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-1:hover, .pellet-2:hover, .pellet-3:hover, .pellet-4:hover, .pellet-5:hover {
  transform: scale(1.1);
 }

 .pellet-1 img, .pellet-2 img, .pellet-3 img, .pellet-4 img, .pellet-5 img {
  position: absolute;
  top: 20px;
  left: 5%;
  width: 85%;
  height: 734px;
 }

 .pellet-1 h1, .pellet-2 h1, .pellet-3 h1, .pellet-4 h1, .pellet-5 h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 44px;
  position: absolute;
  top: 790px;
  left: 15%;
  font-weight: 200;
 }

 .pellet-1 button, .pellet-2 button, .pellet-3 button, .pellet-4 button, .pellet-5 button {
  font-weight: 300;
  font-size: 40px;
  width: 110px;
  height: 110px;
  background-color: #73b901;
  color: #fff;
  border: none;
  border-radius: 20px;
  position: absolute;
  top: 800px;
  right: 6%;
  cursor: pointer;
  transition: all .3s ease-in-out;
 }

 .pellet-1 button:hover, .pellet-2 button:hover , .pellet-3 button:hover, .pellet-4 button:hover, .pellet-5 button:hover {
  transform: scale(1.1);
 }
 

 .why-pellet {
  z-index: 3;
    width: 100%;
    height: 1100px;
    background-color: #f6f6f6;
    position: absolute;
    top: 5800px;
    left: 0%;
}

.why-pellet h1 {
  font-family: sans-serif;
  font-size: 160px;
  font-weight: 400;
  position: absolute;
  top: 120px;
  left: 5%;
  color: #373737;
}

.box-1 {
  width: 18%;
  height: 920px;
  background-color: #fff;
  border-radius: 40px;
  position: absolute;
  top: 90px;
  right: 45%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-1 img {
  width: 100%;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.box-1-icon {
  width: 140px;
  height: 140px;
  background-color: #85d800;
  position: absolute;
  top: 480px;
  left: 3%;
  border-radius: 30px;
  z-index: 3;
  border: none;
}

.box-2 {
  width: 18%;
  height: 920px;
  background-color: #fff;
  border-radius: 40px;
  position: absolute;
  top: 90px;
  right: 25%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-2 img {
  width: 100%;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.box-2-icon {
  width: 140px;
  height: 140px;
  background-color: #85d800;
  position: absolute;
  top: 480px;
  left: 3%;
  border-radius: 30px;
  z-index: 3;
  border: none;
}

.box-3 {
  width: 18%;
  height: 920px;
  background-color: #fff;
  border-radius: 40px;
  position: absolute;
  top: 90px;
  right: 5%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-3 img {
  width: 100%;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.box-3-icon {
  width: 140px;
  height: 140px;
  background-color: #85d800;
  position: absolute;
  top: 480px;
  left: 3%;
  border-radius: 30px;
  z-index: 3;
  border: none;
}


.box-1:hover, .box-2:hover, .box-3:hover {
 transform: scale(1.1);
}

.box-1-icon img, .box-2-icon img, .box-3-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.box-1 h1, .box-2 h1, .box-3 h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 44px;
  position: absolute;
  top: 620px;
  left: 5%;
  cursor: default;
}

.box-1-line, .box-2-line, .box-3-line {
  width: 80%;
  height: 2px;
  background-color: #85d800;
  position: absolute;
  bottom: 40px;
  left: 10%;
}

.box-1 p, .box-2 p, .box-3 p {
  font-family: 'Open Sans', sans-serif;
  font-size: 28px;
  width: 90%;
  position: absolute;
  top: 700px;
  left: 5%;
  cursor: default;
}

#counter-banner {
  width: 100%;
  height: 1300px;
  position: absolute;
  top: 7300px;
  left: 0%;
}

.counter-header { 
   font-family:'Poppins', sans-serif;
    font-size: 84px;
    font-weight: 1600;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 7140px;
    left: 0%;
}

 .counter-container-1 { 
  width: 16%;
  height: 540px;
  background-color: #fff;
  border: none;
  border-radius: 50px;
  position: absolute;
  top: 7700px;
  left: 22%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-2 { 
  width: 16%;
  height: 540px;
  background-color: #fff;
  border: none;
  border-radius: 50px;
  position: absolute;
  top: 7700px;
  left: 42%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-3 { 
  width: 16%;
  height: 540px;
  background-color: #fff;
  border: none;
  border-radius: 50px;
  position: absolute;
  top: 7700px;
  left: 62%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-1 img, .counter-container-2 img, .counter-container-3 img {
  width: 26%;
  position: absolute;
  top: 60px;
  left: 37%;
 }

 .counter-container-1 h1, .counter-container-2 h1, .counter-container-3 h1 {
  width: 100%;
  position: absolute;
  bottom: 3%;
  left: 0%;
  font-size: 44px;
  font-family: sans-serif;
  font-weight: 200;
  color: #303030;
 }

.count {
  color: #000;
  font-size: 96px;
  font-family: sans-serif;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 280px;
  left: 0%;
}
 
.contact-container {
  width: 100%;
  height: 1200px;
  position: absolute;
  top: 8600px;
  left: 0%;
}

.contact-container img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.contact-header {
  font-family: 'Poppins', sans-serif;
  font-size: 140px;
  font-weight: 800;
  color: #000;
  position: absolute;
  top: 300px;
  left: 5%;
}

.contact-text {
  font-family: 'Poppins', sans-serif;
  font-size: 44px;
  font-weight: 100;
  color: #000;
  position: absolute;
  top: 540px;
  left: 5%;
}

.contact-container button {
  background-color: #7b8f4c;
  width: 9%;
  height: 120px;
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  color: #fff;
  border: none;
  border-radius: 20px;
  position: absolute;
  top: 700px;
  left: 5%;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.contact-container button:hover {
  width: 10%;
}

.social-container {
  background-color: #7b8f4c;
  width: 100%;
  height: 1100px;
  position: absolute;
  top: 9900px;
  left: 0%;
}

.social-container h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 64px;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 200px;
  left: 0%;
}

.social-container p {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 100;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 400px;
  left: 0%;
}

.social-facebook {
  background-color: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: absolute;
  top: 700px;
  left: 41.5%;
  transition: all .3s ease-in-out;
}

.social-linkedin {
  background-color: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: absolute;
  top: 700px;
  left: 45.5%;
  transition: all .3s ease-in-out;
}

.social-youtube {
  background-color: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: absolute;
  top: 700px;
  left: 49.5%;
  transition: all .3s ease-in-out;
}

.social-instagram {
  background-color: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: absolute;
  top: 700px;
  left: 53.5%;
  transition: all .3s ease-in-out;
}

.social-facebook img, .social-linkedin img, .social-youtube img, .social-instagram img{
  width: 55%;
  position: absolute;
  top: 26px;
  left: 22.5%;
}

#social:hover {
  top: 780px;
}


.footer {
  position: absolute;
  top: 11000px;
  left: 0%;
}  
}
     
@media  (min-width: 7680px) and (max-width: 7681px) {
  body {
  background-color: #fff;

}

.mobile-whatsapp {display: none;}

.header-1-decoration, .header-2-decoration, .header-3-decoration, .header-4-decoration, .header-5-decoration {
  display: none;
}

.product-1, .product-2, .product-3, .product-4 {
  z-index: 2;
}

.product-1 button, .prodcut-2 button, .product-3 button, .product-4 button {
  z-index: 3;
  transition: all .3s ease-in-out;
} 

.product-1 button:hover, .prodcut-2 button:hover, .product-3 button:hover, .product-4 button:hover {
  z-index: 3;
  background-color: #7b8f4c;
} 
.mobile-product-container {
  display: none;
}

.mobile-banner {display: none;}

.mySlides {display: none}


/* Banner container */
.banner-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 1;
  background-color: #000;
}

.banner-shadow {
  background-image: linear-gradient(to bottom, #000, #00000000);
  width: 100%;
  height: 20%;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 98;
}

.scroll-down-wrapper {
  position: absolute;
  bottom: 240px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.chevron {
  width: 80px;
  height: 80px;
  border-left: 8px solid white;
  border-bottom: 8px solid white;
  transform: rotate(-45deg);
  animation: scrollDownChevron 2s infinite;
  opacity: 0;
}

.chevron:nth-child(1) {
  animation-delay: 0s;
}
.chevron:nth-child(2) {
  animation-delay: 0.3s;
}
.chevron:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes scrollDownChevron {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
  50% {
    opacity: 1;
    transform: rotate(-45deg) translateY(0px);
  }
  100% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
}

.scroll-text {
  margin-top: 120px;
  color: white;
  font-size: 72px;
  display: block;
  text-align: center;
}

.banner-container img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.7;
  z-index: 2;
}

.banner-text {
  z-index: 3;
}

.banner-text h1{
  font-family: sans-serif;
  font-size: 240px;
  font-weight: 100;
  position: absolute;
  top: 40%;
  left: 30%;
  z-index: 3;
  opacity: 1;
  width: 40%;
  text-align: center;
}

.banner-text a button{
  width: 15%;
  height: 280px;
  background-color: #8ee600;
  font-family: 'Open sans', sans-serif;
  text-align: center;
  color: #fff;
  font-size: 96px;
  position: absolute;
  top: 3200px;
  left: 5%;
  border: none;
  border-radius: 20px;
  opacity: 1;
  z-index: 3;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.banner-text a button:hover {
  background-color: #85d800;
}

.banner-dot {
  height: 60px;
  width: 60px;
  background-color: #afafaf;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  position: relative;
  top: 2600px;
  z-index: 2;
}

.active {
  background-color: #009246;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 4s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.sliderImage img {
  width: 6400px;
  position: absolute;
  top: 8000px;
  left: -10%;
  z-index: 1;
}

#sliderText {
  width: 45%;
  position: absolute;
  top: 9600px;
  left: 52%;
  font-family: sans-serif;
  font-size: 240px;
  opacity: 0;
  animation: fade 1s ease-in-out forwards;
}

@keyframes fade {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

.social-menu {
  position: fixed;
  bottom: 80px;
  left: 80px;
  z-index: 100;
}

.main-btn {
  width: 240px;
  height: 240px;
  background-color: #7b8f4c;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 96px;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.main-btn img {
  width: 240px;
  height: 240px;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50%;
}

.icon-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 280px;
  left: 24px;
  gap: 60px;
  pointer-events: none;
}

.icon {
  width: 200px;
  height: 200px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  text-align: center;
  line-height: 200px;
  font-size: 80px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s ease;
}

.icon.whatsapp {background-color: #25D366;}
.icon.phoneCall { background-color: #3f73e2;  }
.icon.messenger { background-color: #168AFF; }
.icon.instagram { background-color: #e1306c; }
.icon.linkedin { background-color: #0077b5; }

.icon img {
  width: 160px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.social-menu.open .icon-list {
  pointer-events: all;
}

.social-menu.open .icon {
  transform: translateY(0);
  opacity: 1;
}

.header-1 { 
  font-family:'Poppins', sans-serif;
    font-size: 168px;
    font-weight: 3200px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 4800px;
    left: 0%;
}

.header-1-text {
  font-family:'Poppins', sans-serif;
  font-size: 88px;
  font-weight: 100;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 5200px;
  left: 0%;
}

/* Slideshow container */
.product-container {
  background-color: #f6f6f6;
   width: 100%;
   height: 2480px;
   position: absolute;
   top: 5600px;
   left: 0%;
   margin: auto;
   z-index: 2;
 }
 
 .pellet-1 {
  width: 18%;
  height: 1920px;
  background-color: #fff;
  border-radius: 80px;
  position: absolute;
  top: 240px;
  left: 2%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-2 {
  width: 18%;
  height: 1920px;
  background-color: #fff;
  border-radius: 80px;
  position: absolute;
  top: 240px;
  left: 21.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-3 {
  width: 18%;
  height: 1920px;
  background-color: #fff;
  border-radius: 80px;
  position: absolute;
  top: 240px;
  left: 41%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-4 {
  width: 18%;
  height: 1920px;
  background-color: #fff;
  border-radius: 80px;
  position: absolute;
  top: 240px;
  left: 60.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-5 {
  width: 18%;
  height: 1920px;
  background-color: #fff;
  border-radius: 80px;
  position: absolute;
  top: 240px;
  left: 80%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-1:hover, .pellet-2:hover, .pellet-3:hover, .pellet-4:hover, .pellet-5:hover {
  transform: scale(1.1);
 }

 .pellet-1 img, .pellet-2 img, .pellet-3 img, .pellet-4 img, .pellet-5 img {
  position: absolute;
  top: 40px;
  left: 5%;
  width: 85%;
  height: 1468px;
 }

 .pellet-1 h1, .pellet-2 h1, .pellet-3 h1, .pellet-4 h1, .pellet-5 h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 88px;
  position: absolute;
  top: 1580px;
  left: 15%;
  font-weight: 200;
 }

 .pellet-1 button, .pellet-2 button, .pellet-3 button, .pellet-4 button, .pellet-5 button {
  font-weight: 300;
  font-size: 80px;
  width: 220px;
  height: 220px;
  background-color: #73b901;
  color: #fff;
  border: none;
  border-radius: 40px;
  position: absolute;
  top: 1600px;
  right: 6%;
  cursor: pointer;
  transition: all .3s ease-in-out;
 }

 .pellet-1 button:hover, .pellet-2 button:hover , .pellet-3 button:hover, .pellet-4 button:hover, .pellet-5 button:hover {
  transform: scale(1.1);
 }
 

 .why-pellet {
  z-index: 3;
    width: 100%;
    height: 2200px;
    background-color: #f6f6f6;
    position: absolute;
    top: 11600px;
    left: 0%;
}

.why-pellet h1 {
  font-family: sans-serif;
  font-size: 320px;
  font-weight: 400;
  position: absolute;
  top: 240px;
  left: 5%;
  color: #373737;
}

.box-1 {
  width: 18%;
  height: 1840px;
  background-color: #fff;
  border-radius: 80px;
  position: absolute;
  top: 180px;
  right: 45%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-1 img {
  width: 100%;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}

.box-1-icon {
  width: 280px;
  height: 280px;
  background-color: #85d800;
  position: absolute;
  top: 960px;
  left: 3%;
  border-radius: 60px;
  z-index: 3;
  border: none;
}

.box-2 {
  width: 18%;
  height: 1840px;
  background-color: #fff;
  border-radius: 80px;
  position: absolute;
  top: 180px;
  right: 25%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-2 img {
  width: 100%;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}

.box-2-icon {
  width: 280px;
  height: 280px;
  background-color: #85d800;
  position: absolute;
  top: 960px;
  left: 3%;
  border-radius: 60px;
  z-index: 3;
  border: none;
}

.box-3 {
  width: 18%;
  height: 1840px;
  background-color: #fff;
  border-radius: 80px;
  position: absolute;
  top: 180px;
  right: 5%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-3 img {
  width: 100%;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}

.box-3-icon {
  width: 280px;
  height: 280px;
  background-color: #85d800;
  position: absolute;
  top: 960px;
  left: 3%;
  border-radius: 60px;
  z-index: 3;
  border: none;
}


.box-1:hover, .box-2:hover, .box-3:hover {
 transform: scale(1.1);
}

.box-1-icon img, .box-2-icon img, .box-3-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.box-1 h1, .box-2 h1, .box-3 h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 88px;
  position: absolute;
  top: 1240px;
  left: 5%;
  cursor: default;
}

.box-1-line, .box-2-line, .box-3-line {
  width: 80%;
  height: 4px;
  background-color: #85d800;
  position: absolute;
  bottom: 80px;
  left: 10%;
}

.box-1 p, .box-2 p, .box-3 p {
  font-family: 'Open Sans', sans-serif;
  font-size: 56px;
  width: 90%;
  position: absolute;
  top: 1400px;
  left: 5%;
  cursor: default;
}

#counter-banner {
  width: 100%;
  height: 2600px;
  position: absolute;
  top: 14600px;
  left: 0%;
}

.counter-header { 
   font-family:'Poppins', sans-serif;
    font-size: 168px;
    font-weight: 1600;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 14280px;
    left: 0%;
}

 .counter-container-1 { 
  width: 16%;
  height: 1080px;
  background-color: #fff;
  border: none;
  border-radius: 100px;
  position: absolute;
  top: 15400px;
  left: 22%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 2px rgba(3, 7, 18, 0.01),
  0px 0px 8px rgba(3, 7, 18, 0.02),
  0px 0px 18px rgba(3, 7, 18, 0.03),
  0px 0px 30px rgba(3, 7, 18, 0.04),
  0px 0px 48px rgba(3, 7, 18, 0.05);
 }

 .counter-container-2 { 
  width: 16%;
  height: 1080px;
  background-color: #fff;
  border: none;
  border-radius: 100px;
  position: absolute;
  top: 15400px;
  left: 42%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 2px rgba(3, 7, 18, 0.01),
  0px 0px 8px rgba(3, 7, 18, 0.02),
  0px 0px 18px rgba(3, 7, 18, 0.03),
  0px 0px 30px rgba(3, 7, 18, 0.04),
  0px 0px 48px rgba(3, 7, 18, 0.05);
 }

 .counter-container-3 { 
  width: 16%;
  height: 1080px;
  background-color: #fff;
  border: none;
  border-radius: 100px;
  position: absolute;
  top: 15400px;
  left: 62%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 2px rgba(3, 7, 18, 0.01),
  0px 0px 8px rgba(3, 7, 18, 0.02),
  0px 0px 18px rgba(3, 7, 18, 0.03),
  0px 0px 30px rgba(3, 7, 18, 0.04),
  0px 0px 48px rgba(3, 7, 18, 0.05);
 }

 .counter-container-1 img, .counter-container-2 img, .counter-container-3 img {
  width: 26%;
  position: absolute;
  top: 120px;
  left: 37%;
 }

 .counter-container-1 h1, .counter-container-2 h1, .counter-container-3 h1 {
  width: 100%;
  position: absolute;
  bottom: 3%;
  left: 0%;
  font-size: 88px;
  font-family: sans-serif;
  font-weight: 200;
  color: #303030;
 }

.count {
  color: #000;
  font-size: 192px;
  font-family: sans-serif;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 560px;
  left: 0%;
}
 
.contact-container {
  width: 100%;
  height: 2400px;
  position: absolute;
  top: 17200px;
  left: 0%;
}

.contact-container img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.contact-header {
  font-family: 'Poppins', sans-serif;
  font-size: 280px;
  font-weight: 800;
  color: #000;
  position: absolute;
  top: 600px;
  left: 5%;
}

.contact-text {
  font-family: 'Poppins', sans-serif;
  font-size: 88px;
  font-weight: 100;
  color: #000;
  position: absolute;
  top: 1080px;
  left: 5%;
}

.contact-container button {
  background-color: #7b8f4c;
  width: 9%;
  height: 240px;
  font-family: 'Poppins', sans-serif;
  font-size: 80px;
  color: #fff;
  border: none;
  border-radius: 40px;
  position: absolute;
  top: 1400px;
  left: 5%;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.contact-container button:hover {
  width: 10%;
}

.social-container {
  background-color: #7b8f4c;
  width: 100%;
  height: 2200px;
  position: absolute;
  top: 19800px;
  left: 0%;
}

.social-container h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 128px;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 400px;
  left: 0%;
}

.social-container p {
  font-family: 'Poppins', sans-serif;
  font-size: 80px;
  font-weight: 100;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 800px;
  left: 0%;
}

.social-facebook {
  background-color: #fff;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  position: absolute;
  top: 1400px;
  left: 41.5%;
  transition: all .3s ease-in-out;
}

.social-linkedin {
  background-color: #fff;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  position: absolute;
  top: 1400px;
  left: 45.5%;
  transition: all .3s ease-in-out;
}

.social-youtube {
  background-color: #fff;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  position: absolute;
  top: 1400px;
  left: 49.5%;
  transition: all .3s ease-in-out;
}

.social-instagram {
  background-color: #fff;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  position: absolute;
  top: 1400px;
  left: 53.5%;
  transition: all .3s ease-in-out;
}

.social-facebook img, .social-linkedin img, .social-youtube img, .social-instagram img{
  width: 55%;
  position: absolute;
  top: 52px;
  left: 22.5%;
}

#social:hover {
  top: 1560px;
}


.footer {
  position: absolute;
  top: 22000px;
  left: 0%;
}    
}





/* LANDSCAPE RESPONSIVE*/
@media (min-width: 500px) and (max-width: 639.98px) and (orientation: landscape) {
  body {
  background-color: #fff;
}

/* Banner container */
.banner-container {
  width: 100%;
  height: 500px;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 1;
  background-color: #000;
}

.banner img {
  width: 100%;
  height: 100vh;
  object-fit: cover; 
}

.banner-shadow {
  background-image: linear-gradient(to bottom, #000, #00000000);
  width: 100%;
  height: 40%;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 98;
}

.scroll-down-wrapper {
  display: none;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.chevrons { 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.chevron {
  width: 20px;
  height: 20px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  animation: scrollDownChevron 2s infinite;
  opacity: 0;
}

.chevron:nth-child(1) {
  animation-delay: 0s;
}
.chevron:nth-child(2) {
  animation-delay: 0.3s;
}
.chevron:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes scrollDownChevron {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
  50% {
    opacity: 1;
    transform: rotate(-45deg) translateY(0px);
  }
  100% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
}

.scroll-text { display: none;
  margin-top: 30px;
  color: white;
  font-size: 18px;
  display: block;
  text-align: center;
}

.banner-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.7;
    z-index: 2;
}

.banner-text {
  z-index: 3;
}

.banner-text h1{
  font-family: sans-serif;
  font-size: 34px;
  font-weight: 100;
  position: absolute;
  top: 40%;
  left: 15%;
  z-index: 3;
  opacity: 1;
  width: 70%;
  text-align: center;
}

.social-menu {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 5;
}

.main-btn {
  width: 50px;
  height: 50px;
  background-color: #7b8f4c;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.main-btn img {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50%;
}

.icon-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 70px;
  left: 2px;
  gap: 6px;
  pointer-events: none;
}

.icon {
  width: 45px;
  height: 45px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.icon.whatsapp {background-color: #25D366;}
.icon.phoneCall { background-color: #3f73e2;  }
.icon.messenger { background-color: #168AFF; }
.icon.instagram { background-color: #e1306c; }
.icon.linkedin { background-color: #0077b5; }

.icon img {
  width: 35px;
  position: absolute;
  top: 5px;
  left: 5px;
}

.social-menu.open .icon-list {
  pointer-events: all;
}

.social-menu.open .icon {
  transform: translateY(0);
  opacity: 1;
}

.header-1 { 
  font-family:'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 900;
    width: 90%;
    text-align: center;
    position: absolute;
    top: 530px;
    left: 5%;
}

.header-1-text {
  font-family:'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 100;
  width: 80%;
  text-align: center;
  position: absolute;
  top: 600px;
  left: 10%;
}

/* Slideshow container */
.product-container {
  background-color: #f6f6f6;
   width: 100%;
   height: 690px;
   position: absolute;
   top: 670px;
   left: 0%;
   margin: auto;
   z-index: 2;
 }
 
 .pellet-1 {
  width: 45%;
  height: 210px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 3.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-2 { 
  width: 45%;
  height: 210px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 51.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-3 {
  width: 45%;
  height: 210px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 240px;
  left: 3.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-4 {
  width: 45%;
  height: 210px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 240px;
  left: 51.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-5 {
  width: 45%;
  height: 210px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 460px;
  left: 3.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-1:hover, .pellet-2:hover, .pellet-3:hover, .pellet-4:hover, .pellet-5:hover {
  transform: scale(1.1);
 }

 .pellet-1 img, .pellet-2 img, .pellet-3 img, .pellet-4 img, .pellet-5 img {
  position: absolute;
  top: -5px;
  left: 5%;
  width: 85%;
  height: 170px;
 }

 .pellet-1 h1, .pellet-2 h1, .pellet-3 h1, .pellet-4 h1, .pellet-5 h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  position: absolute;
  top: 167px;
  left: 5%;
  font-weight: 200;
 }

 .pellet-1 button, .pellet-2 button, .pellet-3 button, .pellet-4 button, .pellet-5 button {
  font-size: 10px !important;
  width: 35px;
  height: 35px;
  background-color: #73b901;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 170px;
  right: 6%;
  cursor: pointer;
  transition: all .3s ease-in-out;
 }

 .pellet-1 button:hover, .pellet-2 button:hover , .pellet-3 button:hover, .pellet-4 button:hover, .pellet-5 button:hover {
  display: none;
  transform: scale(1.1);
 }
 
 .sliderImage img {
  width: 100%;
  position: absolute;
  top: 1450px;
  left: 0%;
  z-index: 1;
}

#sliderText {
  width: 80%;
  position: absolute;
  top: 1420px;
  left: 10%;
  font-family: sans-serif;
  font-size: 24px;
  opacity: 0;
  animation: fade 1s ease-in-out forwards;
  text-align: center;
}

@keyframes fade {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

 .why-pellet {
  z-index: 3;
    width: 100%;
    height: 470px;
    background-color: #f6f6f6;
    position: absolute;
    top: 1700px;
    left: 0%;
}

.why-pellet h1 {
  font-family: sans-serif;
  font-size: 34px;
  font-weight: 400;
  position: absolute;
  top: 20px;
  left: 5%;
  color: #373737;
}

.box-1 {
  width: 40%;
  height: 250px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 180px;
  left: 5%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-1 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-1-icon {
  width: 30px;
  height: 30px;
  background-color: #85d800;
  position: absolute;
  top: 140px;
  left: 5%;
  border-radius: 2px;
  z-index: 3;
  border: none;
}

.box-2 {
  width: 40%;
  height: 250px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 180px;
  left: 50%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-2 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-2-icon {
  width: 30px;
  height: 30px;
  background-color: #85d800;
  position: absolute;
  top: 140px;
  left: 5%;
  border-radius: 2px;
  z-index: 3;
  border: none;
}

.box-3 {display: none;
  width: 18%;
  height: 460px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 45px;
  right: 5%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-3 img {display: none;
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.box-3-icon {display: none;
  width: 70px;
  height: 70px;
  background-color: #85d800;
  position: absolute;
  top: 240px;
  left: 3%;
  border-radius: 15px;
  z-index: 3;
  border: none;
}


.box-1:hover, .box-2:hover, .box-3:hover {
 transform: scale(1.1);
}

.box-1-icon img, .box-2-icon img, .box-3-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.box-1 h1, .box-2 h1, .box-3 h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  position: absolute;
  top: 135px;
  left: 27%;
  cursor: default;
}

.box-1-line, .box-2-line, .box-3-line {
  display: none;
  width: 80%;
  height: 1px;
  background-color: #85d800;
  position: absolute;
  bottom: 20px;
  left: 10%;
}

.box-1 p, .box-2 p, .box-3 p {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  width: 90%;
  position: absolute;
  top: 170px;
  left: 7%;
  cursor: default;
}

#counter-banner {
  width: 100%;
  height: 200px;
  position: absolute;
  top: 2300px;
  left: 0%;
  object-fit: cover;
}

.counter-header { 
   font-family:'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 2220px;
    left: 0%;
}

 .counter-container-1 { 
  width: 30%;
  height: 90px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 2360px;
  left: 2.5%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-2 { 
  width: 30%;
  height: 90px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 2360px;
  left: 35%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-3 { 
  width: 30%;
  height: 90px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 2360px;
  left: 67.5%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-1 img, .counter-container-2 img, .counter-container-3 img {
  width: 30%;
  position: absolute;
  top: 10px;
  left: 35%;
 }

 .counter-container-1 h1, .counter-container-2 h1, .counter-container-3 h1 {
  width: 100%;
  position: absolute;
  bottom: 0%;
  left: 0%;
  font-size: 14px;
  font-family: sans-serif;
  font-weight: 200;
  color: #303030;
 }

.count { 
  color: #000;
  font-size: 16px;
  font-family: sans-serif;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 45px;
  left: 0%;
}
 
.contact-container { 
  width: 100%;
  height: 270px;
  position: absolute;
  top: 2500px;
  left: 0%;
}

.contact-container img {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.contact-header { 
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #000;
  position: absolute;
  top: 30px;
  left: 5%;
  width: 60%;
}

.contact-text { 
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 100;
  color: #000;
  position: absolute;
  top: 120px;
  left: 5%;
  width: 70%;
}

.contact-container button { 
  background-color: #7b8f4c;
  width: 30%;
  height: 35px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 190px;
  left: 5%;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.contact-container button:hover {
  width: 10%;
}

.social-container {
  background-color: #7b8f4c;
  width: 100%;
  height: 280px;
  position: absolute;
  top: 2770px;
  left: 0%;
}

.social-container h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: #fff;
  width: 90%;
  text-align: left;
  position: absolute;
  top: 30px;
  left: 5%;
}

.social-container p {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 100;
  color: #fff;
  width: 90%;
  text-align: left;
  position: absolute;
  top: 110px;
  left: 5%;
}

.social-facebook {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 200px;
  left: 17%;
  transition: all .3s ease-in-out;
}

.social-linkedin {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 200px;
  left: 34%;
  transition: all .3s ease-in-out;
}

.social-youtube {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 200px;
  left: 51.5%;
  transition: all .3s ease-in-out;
}

.social-instagram {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 200px;
  left: 69%;
  transition: all .3s ease-in-out;
}

.social-facebook img, .social-linkedin img, .social-youtube img, .social-instagram img{
  width: 45%;
  position: absolute;
  top: 10px;
  left: 27.5%;
}

#social:hover {
  top: 340px;
}


.footer { 
  position: absolute;
  top: 3050px;
  left: 0%;
}
}

@media (min-width: 640px) and (max-width: 811.98px) and (orientation: landscape) {
  body {
  background-color: #fff;
}

/* Banner container */
.banner-container {
  width: 100%;
  height: 600px;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 1;
  background-color: #000;
}

.banner img {
  width: 100%;
  height: 100vh;
  object-fit: cover; 
}

.banner-shadow {
  background-image: linear-gradient(to bottom, #000, #00000000);
  width: 100%;
  height: 40%;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 98;
}

.scroll-down-wrapper {
  display: none;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.chevrons { 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.chevron {
  width: 20px;
  height: 20px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  animation: scrollDownChevron 2s infinite;
  opacity: 0;
}

.chevron:nth-child(1) {
  animation-delay: 0s;
}
.chevron:nth-child(2) {
  animation-delay: 0.3s;
}
.chevron:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes scrollDownChevron {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
  50% {
    opacity: 1;
    transform: rotate(-45deg) translateY(0px);
  }
  100% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
}

.scroll-text { display: none;
  margin-top: 30px;
  color: white;
  font-size: 18px;
  display: block;
  text-align: center;
}

.banner-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.7;
    z-index: 2;
}

.banner-text {
  z-index: 3;
}

.banner-text h1{
  font-family: sans-serif;
  font-size: 40px;
  font-weight: 100;
  position: absolute;
  top: 40%;
  left: 15%;
  z-index: 3;
  opacity: 1;
  width: 70%;
  text-align: center;
}

.social-menu {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 5;
}

.main-btn {
  width: 70px;
  height: 70px;
  background-color: #7b8f4c;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.main-btn img {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50%;
}

.icon-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 90px;
  left: 9px;
  gap: 12px;
  pointer-events: none;
}

.icon {
  width: 55px;
  height: 55px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.icon.whatsapp {background-color: #25D366;}
.icon.phoneCall { background-color: #3f73e2;  }
.icon.messenger { background-color: #168AFF; }
.icon.instagram { background-color: #e1306c; }
.icon.linkedin { background-color: #0077b5; }

.icon img {
  width: 45px;
  position: absolute;
  top: 5px;
  left: 5px;
}

.social-menu.open .icon-list {
  pointer-events: all;
}

.social-menu.open .icon {
  transform: translateY(0);
  opacity: 1;
}

.header-1 { 
  font-family:'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 900;
  width: 90%;
  text-align: center;
  position: absolute;
  top: 640px;
  left: 5%;
}

.header-1-text {
  font-family:'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 100;
  width: 80%;
  text-align: center;
  position: absolute;
  top: 720px;
  left: 10%;
}

/* Slideshow container */
.product-container { 
  background-color: #f6f6f6;
   width: 100%;
   height: 540px;
   position: absolute;
   top: 800px;
   left: 0%;
   margin: auto;
   z-index: 2;
 }
 
 .pellet-1 {
  width: 30%;
  height: 240px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 2%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-2 { 
  width: 30%;
  height: 240px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 35%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-3 {
  width: 30%;
  height: 240px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 68%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-4 {
  width: 30%;
  height: 240px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 280px;
  left: 2%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-5 {
  width: 30%;
  height: 240px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 280px;
  left: 35%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-1:hover, .pellet-2:hover, .pellet-3:hover, .pellet-4:hover, .pellet-5:hover {
  transform: scale(1.1);
 }

 .pellet-1 img, .pellet-2 img, .pellet-3 img, .pellet-4 img, .pellet-5 img {
  position: absolute;
  top: -5px;
  left: -5%;
  width: 100%;
  height: 170px;
 }

 .pellet-1 h1, .pellet-2 h1, .pellet-3 h1, .pellet-4 h1, .pellet-5 h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  position: absolute;
  top: 180px;
  left: 5%;
  font-weight: 200;
 }

 .pellet-1 button, .pellet-2 button, .pellet-3 button, .pellet-4 button, .pellet-5 button {
  font-size: 10px !important;
  width: 35px;
  height: 35px;
  background-color: #73b901;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 190px;
  right: 6%;
  cursor: pointer;
  transition: all .3s ease-in-out;
 }

 .pellet-1 button:hover, .pellet-2 button:hover , .pellet-3 button:hover, .pellet-4 button:hover, .pellet-5 button:hover {
  display: none;
  transform: scale(1.1);
 }
 
 .sliderImage img { 
  width: 100%;
  position: absolute;
  top: 1450px;
  left: 0%;
  z-index: 1;
}

#sliderText { 
  width: 80%;
  position: absolute;
  top: 1420px;
  left: 10%;
  font-family: sans-serif;
  font-size: 30px;
  opacity: 0;
  animation: fade 1s ease-in-out forwards;
  text-align: center;
}

@keyframes fade {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

 .why-pellet { 
  z-index: 3;
    width: 100%;
    height: 520px;
    background-color: #f6f6f6;
    position: absolute;
    top: 1850px;
    left: 0%;
}

.why-pellet h1 {
  font-family: sans-serif;
  font-size: 38px;
  font-weight: 400;
  position: absolute;
  top: 20px;
  left: 5%;
  color: #373737;
}

.box-1 {
  width: 30%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 180px;
  left: 5%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-1 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-1-icon {
  width: 35px;
  height: 35px;
  background-color: #85d800;
  position: absolute;
  top: 160px;
  left: 5%;
  border-radius: 2px;
  z-index: 3;
  border: none;
}

.box-2 {
  width: 30%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 180px;
  left: 36%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-2 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-2-icon {
  width: 35px;
  height: 35px;
  background-color: #85d800;
  position: absolute;
  top: 160px;
  left: 5%;
  border-radius: 2px;
  z-index: 3;
  border: none;
}

.box-3 {
  width: 30%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 180px;
  left: 68%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-3 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-3-icon {
  width: 35px;
  height: 35px;
  background-color: #85d800;
  position: absolute;
  top: 160px;
  left: 5%;
  border-radius: 2px;
  z-index: 3;
  border: none;
}

.box-1:hover, .box-2:hover, .box-3:hover {
 transform: scale(1.1);
}

.box-1-icon img, .box-2-icon img, .box-3-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.box-1 h1, .box-2 h1, .box-3 h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  position: absolute;
  top: 150px;
  left: 27%;
  cursor: default;
}

.box-1-line, .box-2-line, .box-3-line {
  display: none;
  width: 80%;
  height: 1px;
  background-color: #85d800;
  position: absolute;
  bottom: 20px;
  left: 10%;
}

.box-1 p, .box-2 p, .box-3 p {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  width: 90%;
  position: absolute;
  top: 190px;
  left: 7%;
  cursor: default;
}

#counter-banner { 
  width: 100%;
  height: 260px;
  position: absolute;
  top: 2600px;
  left: 0%;
  object-fit: cover;
}

.counter-header { 
  font-family:'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800px;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 2500px;
  left: 0%;
}

 .counter-container-1 { 
  width: 25%;
  height: 120px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 2670px;
  left: 5%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-2 { 
  width: 25%;
  height: 120px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 2670px;
  left: 35%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-3 { 
  width: 25%;
  height: 120px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 2670px;
  left: 65%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-1 img, .counter-container-2 img, .counter-container-3 img {
  width: 40%;
  position: absolute;
  top: 10px;
  left: 30%;
 }

 .counter-container-1 h1, .counter-container-2 h1, .counter-container-3 h1 {
  width: 100%;
  position: absolute;
  bottom: 0%;
  left: 0%;
  font-size: 14px;
  font-family: sans-serif;
  font-weight: 200;
  color: #303030;
}

.count { 
  color: #000;
  font-size: 24px;
  font-family: sans-serif;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 65px;
  left: 0%;
}
 
.contact-container { 
  width: 100%;
  height: 300px;
  position: absolute;
  top: 2860px;
  left: 0%;
}

.contact-container img {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.contact-header { 
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #000;
  position: absolute;
  top: 30px;
  left: 5%;
  width: 60%;
}

.contact-text { 
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 100;
  color: #000;
  position: absolute;
  top: 140px;
  left: 5%;
  width: 70%;
}

.contact-container button { 
  background-color: #7b8f4c;
  width: 20%;
  height: 45px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 220px;
  left: 5%;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.contact-container button:hover {
  width: 10%;
}

.social-container { 
  background-color: #7b8f4c;
  width: 100%;
  height: 360px;
  position: absolute;
  top: 3160px;
  left: 0%;
}

.social-container h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  color: #fff;
  width: 80%;
  text-align: left;
  position: absolute;
  top: 30px;
  left: 5%;
}

.social-container p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 100;
  color: #fff;
  width: 90%;
  text-align: left;
  position: absolute;
  top: 140px;
  left: 5%;
}

.social-facebook {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 250px;
  left: 17%;
  transition: all .3s ease-in-out;
}

.social-linkedin {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 250px;
  left: 34%;
  transition: all .3s ease-in-out;
}

.social-youtube {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 250px;
  left: 51.5%;
  transition: all .3s ease-in-out;
}

.social-instagram {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 250px;
  left: 69%;
  transition: all .3s ease-in-out;
}

.social-facebook img, .social-linkedin img, .social-youtube img, .social-instagram img{
  width: 45%;
  position: absolute;
  top: 15px;
  left: 27.5%;
}

#social:hover {
  top: 340px;
}


.footer { 
  position: absolute;
  top: 3520px;
  left: 0%;
}
}

@media (min-width: 812px) and (max-width: 959.98px) and (orientation: landscape) {
    body {
  background-color: #fff;
}

/* Banner container */
.banner-container {
  width: 100%;
  height: 600px;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 1;
  background-color: #000;
}

.banner img {
  width: 100%;
  height: 100vh;
  object-fit: cover; 
}

.banner-shadow {
  background-image: linear-gradient(to bottom, #000, #00000000);
  width: 100%;
  height: 40%;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 98;
}

.scroll-down-wrapper {
  display: none;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.chevrons { 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.chevron {
  width: 20px;
  height: 20px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  animation: scrollDownChevron 2s infinite;
  opacity: 0;
}

.chevron:nth-child(1) {
  animation-delay: 0s;
}
.chevron:nth-child(2) {
  animation-delay: 0.3s;
}
.chevron:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes scrollDownChevron {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
  50% {
    opacity: 1;
    transform: rotate(-45deg) translateY(0px);
  }
  100% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
}

.scroll-text { display: none;
  margin-top: 30px;
  color: white;
  font-size: 18px;
  display: block;
  text-align: center;
}

.banner-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.7;
    z-index: 2;
}

.banner-text {
  z-index: 3;
}

.banner-text h1{
  font-family: sans-serif;
  font-size: 44px;
  font-weight: 100;
  position: absolute;
  top: 40%;
  left: 15%;
  z-index: 3;
  opacity: 1;
  width: 70%;
  text-align: center;
}

.social-menu {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 5;
}

.main-btn {
  width: 70px;
  height: 70px;
  background-color: #7b8f4c;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.main-btn img {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50%;
}

.icon-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 90px;
  left: 9px;
  gap: 12px;
  pointer-events: none;
}

.icon {
  width: 55px;
  height: 55px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.icon.whatsapp {background-color: #25D366;}
.icon.phoneCall { background-color: #3f73e2;  }
.icon.messenger { background-color: #168AFF; }
.icon.instagram { background-color: #e1306c; }
.icon.linkedin { background-color: #0077b5; }

.icon img {
  width: 45px;
  position: absolute;
  top: 5px;
  left: 5px;
}

.social-menu.open .icon-list {
  pointer-events: all;
}

.social-menu.open .icon {
  transform: translateY(0);
  opacity: 1;
}

.header-1 {
  font-family:'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 900;
  width: 90%;
  text-align: center;
  position: absolute;
  top: 650px;
  left: 5%;
}

.header-1-text { 
  font-family:'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 100;
  width: 80%;
  text-align: center;
  position: absolute;
  top: 740px;
  left: 10%;
}

/* Slideshow container */
.product-container {  
  background-color: #f6f6f6;
   width: 100%;
   height: 770px;
   position: absolute;
   top: 830px;
   left: 0%;
   margin: auto;
   z-index: 2;
 }
 
 .pellet-1 {
  width: 30%;
  height: 350px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 2%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-2 { 
  width: 30%;
  height: 350px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 35%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-3 { 
  width: 30%;
  height: 350px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 68%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-4 { 
  width: 30%;
  height: 350px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 395px;
  left: 2%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-5 { 
  width: 30%;
  height: 350px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 395px;
  left: 35%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-1:hover, .pellet-2:hover, .pellet-3:hover, .pellet-4:hover, .pellet-5:hover {
  transform: scale(1.1);
 }

 .pellet-1 img, .pellet-2 img, .pellet-3 img, .pellet-4 img, .pellet-5 img {
  position: absolute;
  top: -5px;
  left: -5%;
  width: 100%;
  height: 270px;
 }

 .pellet-1 h1, .pellet-2 h1, .pellet-3 h1, .pellet-4 h1, .pellet-5 h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  position: absolute;
  top: 285px;
  left: 5%;
  font-weight: 200;
 }

 .pellet-1 button, .pellet-2 button, .pellet-3 button, .pellet-4 button, .pellet-5 button {
  font-size: 10px !important;
  width: 45px;
  height: 45px;
  background-color: #73b901;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 290px;
  right: 6%;
  cursor: pointer;
  transition: all .3s ease-in-out;
 }

 .pellet-1 button:hover, .pellet-2 button:hover , .pellet-3 button:hover, .pellet-4 button:hover, .pellet-5 button:hover {
  display: none;
  transform: scale(1.1);
 }
 
 .sliderImage img { 
  width: 100%;
  position: absolute;
  top: 1750px;
  left: 0%;
  z-index: 1;
}

#sliderText { 
  width: 80%;
  position: absolute;
  top: 1720px;
  left: 10%;
  font-family: sans-serif;
  font-size: 38px;
  opacity: 0;
  animation: fade 1s ease-in-out forwards;
  text-align: center;
}

@keyframes fade {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

 .why-pellet { 
  z-index: 3;
    width: 100%;
    height: 600px;
    background-color: #f6f6f6;
    position: absolute;
    top: 2260px;
    left: 0%;
}

.why-pellet h1 {
  font-family: sans-serif;
  font-size: 50px;
  font-weight: 400;
  position: absolute;
  top: 20px;
  left: 5%;
  color: #373737;
}

.box-1 {
  width: 30%;
  height: 340px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 220px;
  left: 5%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-1 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}


.box-2 {
  width: 30%;
  height: 340px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 220px;
  left: 36%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-2 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-3 {
  width: 30%;
  height: 340px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 220px;
  left: 68%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-3 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-1-icon, .box-2-icon, .box-3-icon {
  width: 45px;
  height: 45px;
  background-color: #85d800;
  position: absolute;
  top: 200px;
  left: 5%;
  border-radius: 2px;
  z-index: 3;
  border: none;
}

.box-1:hover, .box-2:hover, .box-3:hover {
 transform: scale(1.1);
}

.box-1-icon img, .box-2-icon img, .box-3-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.box-1 h1, .box-2 h1, .box-3 h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  position: absolute;
  top: 195px;
  left: 27%;
  cursor: default;
}

.box-1-line, .box-2-line, .box-3-line {
  display: none;
  width: 80%;
  height: 1px;
  background-color: #85d800;
  position: absolute;
  bottom: 20px;
  left: 10%;
}

.box-1 p, .box-2 p, .box-3 p {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  width: 90%;
  position: absolute;
  top: 240px;
  left: 7%;
  cursor: default;
}

#counter-banner { 
  width: 100%;
  height: 290px;
  position: absolute;
  top: 3100px;
  left: 0%;
  object-fit: cover;
}

.counter-header { 
  font-family:'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800px;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 3000px;
  left: 0%;
}

 .counter-container-1 { 
  width: 20%;
  height: 140px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 3200px;
  left: 15%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-2 { 
  width: 20%;
  height: 140px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 3200px;
  left: 40%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-3 { 
  width: 20%;
  height: 140px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 3200px;
  left: 65%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-1 img, .counter-container-2 img, .counter-container-3 img {
  width: 38%;
  position: absolute;
  top: 10px;
  left: 31%;
 }

 .counter-container-1 h1, .counter-container-2 h1, .counter-container-3 h1 {
  width: 100%;
  position: absolute;
  bottom: 0%;
  left: 0%;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: 200;
  color: #303030;
}

.count { 
  color: #000;
  font-size: 24px;
  font-family: sans-serif;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 75px;
  left: 0%;
}
 
.contact-container { 
  width: 100%;
  height: 350px;
  position: absolute;
  top: 3390px;
  left: 0%;
}

.contact-container img {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.contact-header { 
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: #000;
  position: absolute;
  top: 70px;
  left: 5%;
  width: 60%;
}

.contact-text { 
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 100;
  color: #000;
  position: absolute;
  top: 140px;
  left: 5%;
  width: 70%;
}

.contact-container button { 
  background-color: #7b8f4c;
  width: 20%;
  height: 55px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 260px;
  left: 5%;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.contact-container button:hover {
  width: 10%;
}

.social-container { 
  background-color: #7b8f4c;
  width: 100%;
  height: 360px;
  position: absolute;
  top: 3740px;
  left: 0%;
}

.social-container h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  color: #fff;
  width: 80%;
  text-align: left;
  position: absolute;
  top: 30px;
  left: 5%;
}

.social-container p {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 100;
  color: #fff;
  width: 90%;
  text-align: left;
  position: absolute;
  top: 140px;
  left: 5%;
}

.social-facebook {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 250px;
  left: 30%;
  transition: all .3s ease-in-out;
}

.social-linkedin {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 250px;
  left: 40%;
  transition: all .3s ease-in-out;
}

.social-youtube {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 250px;
  left: 50.5%;
  transition: all .3s ease-in-out;
}

.social-instagram {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 250px;
  left: 60%;
  transition: all .3s ease-in-out;
}

.social-facebook img, .social-linkedin img, .social-youtube img, .social-instagram img{
  width: 45%;
  position: absolute;
  top: 15px;
  left: 27.5%;
}

#social:hover {
  top: 340px;
}


.footer { 
  position: absolute;
  top: 4100px;
  left: 0%;
}
}

@media (min-width: 960px) and (max-width: 999.98px) and (orientation: landscape) {
  body {
  background-color: #fff;
}

/* Banner container */
.banner-container {
  width: 100%;
  height: 600px;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 1;
  background-color: #000;
}

.banner img {
  width: 100%;
  height: 100vh;
  object-fit: cover; 
}

.banner-shadow {
  background-image: linear-gradient(to bottom, #000, #00000000);
  width: 100%;
  height: 40%;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 98;
}

.scroll-down-wrapper {
  display: none;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.chevrons { 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.chevron {
  width: 20px;
  height: 20px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  animation: scrollDownChevron 2s infinite;
  opacity: 0;
}

.chevron:nth-child(1) {
  animation-delay: 0s;
}
.chevron:nth-child(2) {
  animation-delay: 0.3s;
}
.chevron:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes scrollDownChevron {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
  50% {
    opacity: 1;
    transform: rotate(-45deg) translateY(0px);
  }
  100% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
}

.scroll-text { display: none;
  margin-top: 30px;
  color: white;
  font-size: 18px;
  display: block;
  text-align: center;
}

.banner-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.7;
    z-index: 2;
}

.banner-text {
  z-index: 3;
}

.banner-text h1{
  font-family: sans-serif;
  font-size: 50px;
  font-weight: 100;
  position: absolute;
  top: 40%;
  left: 15%;
  z-index: 3;
  opacity: 1;
  width: 70%;
  text-align: center;
}

.social-menu {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 5;
}

.main-btn {
  width: 70px;
  height: 70px;
  background-color: #7b8f4c;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.main-btn img {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50%;
}

.icon-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 90px;
  left: 9px;
  gap: 12px;
  pointer-events: none;
}

.icon {
  width: 55px;
  height: 55px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.icon.whatsapp {background-color: #25D366;}
.icon.phoneCall { background-color: #3f73e2;  }
.icon.messenger { background-color: #168AFF; }
.icon.instagram { background-color: #e1306c; }
.icon.linkedin { background-color: #0077b5; }

.icon img {
  width: 45px;
  position: absolute;
  top: 5px;
  left: 5px;
}

.social-menu.open .icon-list {
  pointer-events: all;
}

.social-menu.open .icon {
  transform: translateY(0);
  opacity: 1;
}

.header-1 {
  font-family:'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 900;
  width: 90%;
  text-align: center;
  position: absolute;
  top: 650px;
  left: 5%;
}

.header-1-text { 
  font-family:'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 100;
  width: 80%;
  text-align: center;
  position: absolute;
  top: 730px;
  left: 10%;
}

/* Slideshow container */
.product-container {  
  background-color: #f6f6f6;
   width: 100%;
   height: 350px;
   position: absolute;
   top: 830px;
   left: 0%;
   margin: auto;
   z-index: 2;
 }
 
 .pellet-1 {
  width: 19%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 0.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-2 { 
  width: 19%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 20.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-3 { 
  width: 19%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 40.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-4 { 
  width: 19%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 60%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-5 { 
  width: 19%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 79.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-1:hover, .pellet-2:hover, .pellet-3:hover, .pellet-4:hover, .pellet-5:hover {
  transform: scale(1.1);
 }

 .pellet-1 img, .pellet-2 img, .pellet-3 img, .pellet-4 img, .pellet-5 img {
  position: absolute;
  top: -5px;
  left: -5%;
  width: 100%;
  height: 230px;
 }

 .pellet-1 h1, .pellet-2 h1, .pellet-3 h1, .pellet-4 h1, .pellet-5 h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  position: absolute;
  top: 240px;
  left: 5%;
  font-weight: 200;
 }

 .pellet-1 button, .pellet-2 button, .pellet-3 button, .pellet-4 button, .pellet-5 button {
  font-size: 10px !important;
  width: 45px;
  height: 45px;
  background-color: #73b901;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 245px;
  right: 6%;
  cursor: pointer;
  transition: all .3s ease-in-out;
 }

 .pellet-1 button:hover, .pellet-2 button:hover , .pellet-3 button:hover, .pellet-4 button:hover, .pellet-5 button:hover {
  display: none;
  transform: scale(1.1);
 }
 
 .sliderImage img { 
  width: 100%;
  position: absolute;
  top: 1300px;
  left: 0%;
  z-index: 1;
}

#sliderText { 
  width: 80%;
  position: absolute;
  top: 1300px;
  left: 10%;
  font-family: sans-serif;
  font-size: 42px;
  opacity: 0;
  animation: fade 1s ease-in-out forwards;
  text-align: center;
}

@keyframes fade {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

 .why-pellet { 
  z-index: 3;
    width: 100%;
    height: 700px;
    background-color: #f6f6f6;
    position: absolute;
    top: 1980px;
    left: 0%;
}

.why-pellet h1 {
  font-family: sans-serif;
  font-size: 50px;
  font-weight: 400;
  position: absolute;
  top: 20px;
  left: 5%;
  color: #373737;
}

.box-1 {
  width: 30%;
  height: 400px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 220px;
  left: 5%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-1 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}


.box-2 {
  width: 30%;
  height: 400px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 220px;
  left: 36%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-2 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-3 {
  width: 30%;
  height: 400px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 220px;
  left: 68%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-3 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-1-icon, .box-2-icon, .box-3-icon {
  width: 50px;
  height: 50px;
  background-color: #85d800;
  position: absolute;
  top: 260px;
  left: 7%;
  border-radius: 2px;
  z-index: 3;
  border: none;
}

.box-1:hover, .box-2:hover, .box-3:hover {
 transform: scale(1.1);
}

.box-1-icon img, .box-2-icon img, .box-3-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.box-1 h1, .box-2 h1, .box-3 h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  position: absolute;
  top: 250px;
  left: 27%;
  cursor: default;
}

.box-1-line, .box-2-line, .box-3-line {
  display: none;
  width: 80%;
  height: 1px;
  background-color: #85d800;
  position: absolute;
  bottom: 20px;
  left: 10%;
}

.box-1 p, .box-2 p, .box-3 p {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  width: 90%;
  position: absolute;
  top: 310px;
  left: 7%;
  cursor: default;
}

#counter-banner { 
  width: 100%;
  height: 290px;
  position: absolute;
  top: 2900px;
  left: 0%;
  object-fit: cover;
}

.counter-header { 
  font-family:'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800px;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 2800px;
  left: 0%;
}

 .counter-container-1 { 
  width: 18%;
  height: 150px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 3000px;
  left: 15%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-2 { 
  width: 18%;
  height: 150px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 3000px;
  left: 41%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-3 { 
  width: 18%;
  height: 150px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 3000px;
  left: 65%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-1 img, .counter-container-2 img, .counter-container-3 img {
  width: 38%;
  position: absolute;
  top: 10px;
  left: 31%;
 }

 .counter-container-1 h1, .counter-container-2 h1, .counter-container-3 h1 {
  width: 100%;
  position: absolute;
  bottom: 0%;
  left: 0%;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: 200;
  color: #303030;
}

.count { 
  color: #000;
  font-size: 28px;
  font-family: sans-serif;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 85px;
  left: 0%;
}
 
.contact-container { 
  width: 100%;
  height: 400px;
  position: absolute;
  top: 3190px;
  left: 0%;
}

.contact-container img {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.contact-header { 
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #000;
  position: absolute;
  top: 70px;
  left: 5%;
  width: 60%;
}

.contact-text { 
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 100;
  color: #000;
  position: absolute;
  top: 140px;
  left: 5%;
  width: 60%;
}

.contact-container button { 
  background-color: #7b8f4c;
  width: 20%;
  height: 60px;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 260px;
  left: 5%;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.contact-container button:hover {
  width: 10%;
}

.social-container { 
  background-color: #7b8f4c;
  width: 100%;
  height: 400px;
  position: absolute;
  top: 3590px;
  left: 0%;
}

.social-container h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  color: #fff;
  width: 80%;
  text-align: left;
  position: absolute;
  top: 60px;
  left: 5%;
}

.social-container p {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 100;
  color: #fff;
  width: 90%;
  text-align: left;
  position: absolute;
  top: 140px;
  left: 5%;
}

.social-facebook {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 290px;
  left: 30%;
  transition: all .3s ease-in-out;
}

.social-linkedin {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 290px;
  left: 40%;
  transition: all .3s ease-in-out;
}

.social-youtube {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 290px;
  left: 50.5%;
  transition: all .3s ease-in-out;
}

.social-instagram {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 290px;
  left: 60%;
  transition: all .3s ease-in-out;
}

.social-facebook img, .social-linkedin img, .social-youtube img, .social-instagram img{
  width: 45%;
  position: absolute;
  top: 15px;
  left: 27.5%;
}

#social:hover {
  top: 340px;
}


.footer { 
  position: absolute;
  top: 3990px;
  left: 0%;
}
}

@media (min-width: 1000px) and (max-width: 1200px) and (orientation: landscape) {
  body {
  background-color: #fff;
}

/* Banner container */
.banner-container {
  width: 100%;
  height: 600px;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 1;
  background-color: #000;
}

.banner img {
  width: 100%;
  height: 100vh;
  object-fit: cover; 
}

.banner-shadow {
  background-image: linear-gradient(to bottom, #000, #00000000);
  width: 100%;
  height: 40%;
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 98;
}

.scroll-down-wrapper {
  display: none;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.chevrons { 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.chevron {
  width: 20px;
  height: 20px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  animation: scrollDownChevron 2s infinite;
  opacity: 0;
}

.chevron:nth-child(1) {
  animation-delay: 0s;
}
.chevron:nth-child(2) {
  animation-delay: 0.3s;
}
.chevron:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes scrollDownChevron {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
  50% {
    opacity: 1;
    transform: rotate(-45deg) translateY(0px);
  }
  100% {
    opacity: 0;
    transform: rotate(-45deg) translateY(0px);
  }
}

.scroll-text { display: none;
  margin-top: 30px;
  color: white;
  font-size: 18px;
  display: block;
  text-align: center;
}

.banner-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.7;
    z-index: 2;
}

.banner-text {
  z-index: 3;
}

.banner-text h1{
  font-family: sans-serif;
  font-size: 50px;
  font-weight: 100;
  position: absolute;
  top: 40%;
  left: 15%;
  z-index: 3;
  opacity: 1;
  width: 70%;
  text-align: center;
}

.social-menu {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 5;
}

.main-btn {
  width: 70px;
  height: 70px;
  background-color: #7b8f4c;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.main-btn img {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50%;
}

.icon-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 90px;
  left: 9px;
  gap: 12px;
  pointer-events: none;
}

.icon {
  width: 55px;
  height: 55px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.icon.whatsapp {background-color: #25D366;}
.icon.phoneCall { background-color: #3f73e2;  }
.icon.messenger { background-color: #168AFF; }
.icon.instagram { background-color: #e1306c; }
.icon.linkedin { background-color: #0077b5; }

.icon img {
  width: 45px;
  position: absolute;
  top: 5px;
  left: 5px;
}

.social-menu.open .icon-list {
  pointer-events: all;
}

.social-menu.open .icon {
  transform: translateY(0);
  opacity: 1;
}

.header-1 {
  font-family:'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 900;
  width: 90%;
  text-align: center;
  position: absolute;
  top: 650px;
  left: 5%;
}

.header-1-text { 
  font-family:'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 100;
  width: 80%;
  text-align: center;
  position: absolute;
  top: 730px;
  left: 10%;
}

/* Slideshow container */
.product-container {  
  background-color: #f6f6f6;
   width: 100%;
   height: 350px;
   position: absolute;
   top: 830px;
   left: 0%;
   margin: auto;
   z-index: 2;
 }
 
 .pellet-1 {
  width: 19%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 0.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-2 { 
  width: 19%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 20.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-3 { 
  width: 19%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 40.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-4 { 
  width: 19%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 60%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-5 { 
  width: 19%;
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 79.5%;
  transition: all .3s ease-in-out;
  z-index: 2;
 }

 .pellet-1:hover, .pellet-2:hover, .pellet-3:hover, .pellet-4:hover, .pellet-5:hover {
  transform: scale(1.1);
 }

 .pellet-1 img, .pellet-2 img, .pellet-3 img, .pellet-4 img, .pellet-5 img {
  position: absolute;
  top: -5px;
  left: -5%;
  width: 100%;
  height: 230px;
 }

 .pellet-1 h1, .pellet-2 h1, .pellet-3 h1, .pellet-4 h1, .pellet-5 h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  position: absolute;
  top: 240px;
  left: 5%;
  font-weight: 200;
 }

 .pellet-1 button, .pellet-2 button, .pellet-3 button, .pellet-4 button, .pellet-5 button {
  font-size: 10px !important;
  width: 45px;
  height: 45px;
  background-color: #73b901;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 245px;
  right: 6%;
  cursor: pointer;
  transition: all .3s ease-in-out;
 }

 .pellet-1 button:hover, .pellet-2 button:hover , .pellet-3 button:hover, .pellet-4 button:hover, .pellet-5 button:hover {
  display: none;
  transform: scale(1.1);
 }
 
 .sliderImage img { 
  width: 100%;
  position: absolute;
  top: 1300px;
  left: 0%;
  z-index: 1;
}

#sliderText { 
  width: 80%;
  position: absolute;
  top: 1300px;
  left: 10%;
  font-family: sans-serif;
  font-size: 42px;
  opacity: 0;
  animation: fade 1s ease-in-out forwards;
  text-align: center;
}

@keyframes fade {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

 .why-pellet { 
  z-index: 3;
    width: 100%;
    height: 700px;
    background-color: #f6f6f6;
    position: absolute;
    top: 1980px;
    left: 0%;
}

.why-pellet h1 {
  font-family: sans-serif;
  font-size: 50px;
  font-weight: 400;
  position: absolute;
  top: 20px;
  left: 5%;
  color: #373737;
}

.box-1 {
  width: 30%;
  height: 400px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 220px;
  left: 5%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-1 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}


.box-2 {
  width: 30%;
  height: 400px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 220px;
  left: 36%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-2 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-3 {
  width: 30%;
  height: 400px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 220px;
  left: 68%;
  transition: all .3s ease-in-out;
  z-index: 2;
}

.box-3 img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.box-1-icon, .box-2-icon, .box-3-icon {
  width: 50px;
  height: 50px;
  background-color: #85d800;
  position: absolute;
  top: 260px;
  left: 7%;
  border-radius: 2px;
  z-index: 3;
  border: none;
}

.box-1:hover, .box-2:hover, .box-3:hover {
 transform: scale(1.1);
}

.box-1-icon img, .box-2-icon img, .box-3-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.box-1 h1, .box-2 h1, .box-3 h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  position: absolute;
  top: 250px;
  left: 27%;
  cursor: default;
}

.box-1-line, .box-2-line, .box-3-line {
  display: none;
  width: 80%;
  height: 1px;
  background-color: #85d800;
  position: absolute;
  bottom: 20px;
  left: 10%;
}

.box-1 p, .box-2 p, .box-3 p {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  width: 90%;
  position: absolute;
  top: 310px;
  left: 7%;
  cursor: default;
}

#counter-banner { 
  width: 100%;
  height: 290px;
  position: absolute;
  top: 2900px;
  left: 0%;
  object-fit: cover;
}

.counter-header { 
  font-family:'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800px;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 2800px;
  left: 0%;
}

 .counter-container-1 { 
  width: 18%;
  height: 150px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 3000px;
  left: 15%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-2 { 
  width: 18%;
  height: 150px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 3000px;
  left: 41%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-3 { 
  width: 18%;
  height: 150px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 3000px;
  left: 65%;
  z-index: 4;
  text-align: center;
  cursor: default;
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.03),
  0px 0px 15px rgba(3, 7, 18, 0.04),
  0px 0px 24px rgba(3, 7, 18, 0.05);
 }

 .counter-container-1 img, .counter-container-2 img, .counter-container-3 img {
  width: 38%;
  position: absolute;
  top: 10px;
  left: 31%;
 }

 .counter-container-1 h1, .counter-container-2 h1, .counter-container-3 h1 {
  width: 100%;
  position: absolute;
  bottom: 0%;
  left: 0%;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: 200;
  color: #303030;
}

.count { 
  color: #000;
  font-size: 28px;
  font-family: sans-serif;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 85px;
  left: 0%;
}
 
.contact-container { 
  width: 100%;
  height: 400px;
  position: absolute;
  top: 3190px;
  left: 0%;
}

.contact-container img {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.contact-header { 
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #000;
  position: absolute;
  top: 70px;
  left: 5%;
  width: 60%;
}

.contact-text { 
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 100;
  color: #000;
  position: absolute;
  top: 140px;
  left: 5%;
  width: 60%;
}

.contact-container button { 
  background-color: #7b8f4c;
  width: 20%;
  height: 60px;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: #fff;
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 260px;
  left: 5%;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.contact-container button:hover {
  width: 10%;
}

.social-container { 
  background-color: #7b8f4c;
  width: 100%;
  height: 400px;
  position: absolute;
  top: 3590px;
  left: 0%;
}

.social-container h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  color: #fff;
  width: 80%;
  text-align: left;
  position: absolute;
  top: 60px;
  left: 5%;
}

.social-container p {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 100;
  color: #fff;
  width: 90%;
  text-align: left;
  position: absolute;
  top: 140px;
  left: 5%;
}

.social-facebook {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 290px;
  left: 30%;
  transition: all .3s ease-in-out;
}

.social-linkedin {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 290px;
  left: 40%;
  transition: all .3s ease-in-out;
}

.social-youtube {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 290px;
  left: 50.5%;
  transition: all .3s ease-in-out;
}

.social-instagram {
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 290px;
  left: 60%;
  transition: all .3s ease-in-out;
}

.social-facebook img, .social-linkedin img, .social-youtube img, .social-instagram img{
  width: 45%;
  position: absolute;
  top: 15px;
  left: 27.5%;
}

#social:hover {
  top: 340px;
}


.footer { 
  position: absolute;
  top: 3990px;
  left: 0%;
}
}