@font-face {
  font-family: "noto-serif";
  src: url(../css/fonts/notoserif/NotoSerif-ExtraBold.ttf);
}
@font-face {
  font-family: "noto-serif-bold";
  src: url(../css/fonts/notoserif/NotoSerif-SemiBold.ttf);
}
@font-face {
  font-family: "montserrat-regular";
  src: url(../css/fonts/montserrat/Montserrat-Regular.ttf);
}
@font-face {
  font-family: "montserrat-medium";
  src: url(../css/fonts/montserrat/Montserrat-Medium.ttf);
}
@font-face {
  font-family: "montserrat-semibold";
  src: url(../css/fonts/montserrat/Montserrat-SemiBold.ttf);
}
@font-face {
  font-family: "montserrat-bold";
  src: url(../css/fonts/montserrat/Montserrat-Bold.ttf);
}
@font-face {
  font-family: "montserrat-extrabold";
  src: url(../css/fonts/montserrat/Montserrat-ExtraBold.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: auto;
}

body {
  background-color: #FFF9EF;
  color: #000000;
  font-family: "montserrat-medium";
  font-size: 0.95vw;
  line-height: 1.875vw;
  overflow-x: clip;
}
@media (max-width: 1399px) {
  body {
    font-size: 1.1vw;
    line-height: 2vw;
  }
}
@media (max-width: 1199px) {
  body {
    font-size: 1.2vw;
    line-height: 2.2vw;
  }
}
@media (max-width: 1060px) {
  body {
    font-size: 1.4vw;
    line-height: 2.4vw;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 26px;
  }
}

.c-container {
  max-width: 1420px;
  padding: 0 1rem;
  margin: auto;
}
@media (max-width: 1024px) {
  .c-container {
    padding: 0 6.25vw;
  }
}
@media (max-width: 1499px) {
  .c-container {
    max-width: 1300px;
  }
}
@media (max-width: 1320px) {
  .c-container {
    max-width: 1200px;
  }
}
@media (max-width: 1224px) {
  .c-container {
    max-width: 1140px;
  }
}
@media (max-width: 1140px) {
  .c-container {
    padding: 0 3vw;
  }
}
@media (max-width: 1024px) {
  .c-container {
    padding: 0 6.25vw;
  }
}

a {
  color: #000000;
  text-decoration: none;
}

h2 {
  font-family: "noto-serif";
  font-size: 3.3vw;
}
@media (max-width: 767px) {
  h2 {
    font-size: 2.1em;
  }
}

h3 {
  font-family: "noto-serif";
  font-size: 1.7vw;
}
@media (max-width: 1099px) {
  h3 {
    font-size: 2vw;
  }
}
@media (max-width: 991px) {
  h3 {
    font-size: 2.1vw;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.5em;
  }
}

@media (max-width: 991px) {
  h4 {
    font-size: 16px;
  }
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
}

.img-container {
  border-radius: 30px;
  background-color: #A5D206;
  transition: 0.3s;
}

.img-container img {
  border-radius: 30px;
  transition: 0.3s;
}

.img-container:hover img {
  opacity: 0.9;
}

.main-btn {
  background-color: #A5D206;
  color: #fff;
  padding: 0.6rem 1.85rem;
  border-radius: 30px;
  display: inline-block;
  font-family: "montserrat-bold";
  letter-spacing: 0.5px;
  transition: 0.18s;
}
@media (max-width: 767px) {
  .main-btn {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
}

.main-btn:hover {
  background-color: #000000;
  color: #fff;
}

header nav ul li a {
  overflow: hidden;
  position: relative;
  display: inline-block;
}
header nav ul li a::before, header nav ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
}
header nav ul li a::before {
  background-color: #000000;
  height: 2px;
  bottom: 0;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
header nav ul li a::after {
  content: attr(data-replace);
  height: 100%;
  top: 0;
  transform-origin: 100% 50%;
  transform: translate3d(200%, 0, 0);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  color: #000000;
}
header nav ul li a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
header nav ul li a:hover::after {
  transform: translate3d(0, 0, 0);
}
header nav ul li a span {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
header nav ul li a:hover span {
  transform: translate3d(-200%, 0, 0);
}
header nav ul li a:hover {
  color: #000000;
}
header nav .left-menu {
  flex-basis: 20%;
}
@media (max-width: 1099px) {
  header nav .left-menu {
    flex-basis: 25%;
  }
}
header nav .right-menu {
  flex-basis: 20%;
}
@media (max-width: 1099px) {
  header nav .right-menu {
    flex-basis: 25%;
  }
}
@media (max-width: 1024px) {
  header nav .logo {
    width: 75px;
  }
}
header .hamburger svg {
  fill: #000000;
}
header .mobile-nav-menu {
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1098039216);
  position: fixed;
  top: 5.5rem;
  width: calc(100% - 10vw);
  left: 50%;
  transform: translateX(-50%);
  padding: 0 2rem;
  border-radius: 30px;
  z-index: 9;
  display: none;
  overflow: hidden;
}
@media (max-width: 767px) {
  header .mobile-nav-menu {
    padding: 0 1.5rem;
  }
}
header .mobile-nav-menu .logo img {
  width: 75px;
}
header .mobile-nav-menu .close-btn svg {
  fill: #A5D206;
}
header .mobile-nav-menu .menu {
  font-family: "montserrat-semibold";
  font-size: 1rem;
}
header .mobile-nav-menu .menu li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(52, 66, 1, 0.0901960784);
}
header .mobile-nav-menu .menu li:first-child {
  padding-top: 2rem;
}
header .mobile-nav-menu .menu li:last-child {
  border: none;
  padding-bottom: 2rem;
}
header .mobile-nav-menu .menu li a:hover, header .mobile-nav-menu .menu li a:active {
  color: #A5D206;
}

.cta-Section {
  padding: 8vh 0;
  position: relative;
  z-index: 5;
}
@media (max-width: 1024px) {
  .cta-Section {
    padding: 4rem 0;
  }
}
@media (max-width: 767px) {
  .cta-Section {
    padding: 3rem 0;
  }
}
.cta-Section .cta-content-wrapper {
  background-color: #A5D206;
  background-image: url(../images/soil.png);
  background-position: bottom;
  background-repeat: no-repeat;
  padding: 3vw 2vw;
  border-radius: 30px;
  position: relative;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.137254902);
}
@media (max-width: 767px) {
  .cta-Section .cta-content-wrapper {
    padding: 8vw 2vw;
  }
}
.cta-Section .cta-content-wrapper:hover .watermelon-2 {
  right: -3vw;
}
.cta-Section .cta-content-wrapper:hover .watermelon-1 {
  left: -3vw;
}
.cta-Section .cta-content-wrapper .watermelon-img {
  position: absolute;
  width: 8vw;
  z-index: -1;
  animation: rotation 15s ease infinite;
}
@media (max-width: 767px) {
  .cta-Section .cta-content-wrapper .watermelon-img {
    width: 12vw;
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.cta-Section .cta-content-wrapper .watermelon-1 {
  left: 0;
  top: 0;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .cta-Section .cta-content-wrapper .watermelon-1 {
    left: 2px;
    top: 2px;
  }
}
.cta-Section .cta-content-wrapper .watermelon-2 {
  right: 0;
  bottom: 0;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .cta-Section .cta-content-wrapper .watermelon-2 {
    right: 2px;
    bottom: 2px;
  }
}
.cta-Section .cta-content-wrapper .cta-content {
  max-width: 60%;
  margin: auto;
  color: #fff;
}
@media (max-width: 991px) {
  .cta-Section .cta-content-wrapper .cta-content {
    max-width: 70%;
  }
}
@media (max-width: 767px) {
  .cta-Section .cta-content-wrapper .cta-content {
    max-width: 90%;
  }
}
.cta-Section .cta-content-wrapper .cta-content h4 {
  font-family: "noto-serif";
  font-size: 3vw;
}
@media (max-width: 991px) {
  .cta-Section .cta-content-wrapper .cta-content h4 {
    font-size: 5vw;
  }
}
@media (max-width: 767px) {
  .cta-Section .cta-content-wrapper .cta-content h4 {
    font-size: 1.8rem;
  }
}
.cta-Section .cta-content-wrapper .cta-content .ctabrief {
  font-size: 1.1vw;
}
@media (max-width: 1499px) {
  .cta-Section .cta-content-wrapper .cta-content .ctabrief {
    font-size: 1.4vw;
  }
}
@media (max-width: 1199px) {
  .cta-Section .cta-content-wrapper .cta-content .ctabrief {
    font-size: 1.5vw;
  }
}
@media (max-width: 991px) {
  .cta-Section .cta-content-wrapper .cta-content .ctabrief {
    font-size: 2vw;
  }
}
@media (max-width: 767px) {
  .cta-Section .cta-content-wrapper .cta-content .ctabrief {
    font-size: 1rem;
    line-height: 1.4;
  }
}
.cta-Section .cta-content-wrapper .cta-content .main-btn {
  background-color: #fff;
  color: #000000;
}
.cta-Section .cta-content-wrapper .cta-content .main-btn:hover {
  background-color: #000000;
  color: #fff;
}

footer {
  padding-top: 30vh;
  margin-top: -27vh;
  background-color: #65412e;
  color: white;
  font-family: "montserrat-regular";
}
footer .whatsapp-icon {
  width: 70px;
  height: 70px;
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 10;
  transition: transform 200ms linear;
}
@media (max-width: 992PX) {
  footer .whatsapp-icon {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 14px;
    right: 14px;
  }
}
footer .whatsapp-icon:hover {
  transform: translateY(-8%);
}
@media (max-width: 1024px) {
  footer {
    padding-top: 14rem;
    margin-top: -12rem;
  }
}
@media (max-width: 767px) {
  footer {
    padding-top: 10rem;
    margin-top: -11rem;
  }
}
footer .footer-title {
  font-family: "noto-serif";
  font-size: 1.5rem;
}
@media (max-width: 991px) {
  footer .footer-title {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  footer .footer-title {
    font-size: 1.2rem;
  }
}
footer ul li {
  margin-bottom: -4px;
}
footer ul li a {
  overflow: hidden;
  position: relative;
  display: inline-block;
  color: white;
  font-family: "montserrat-regular";
}
footer ul li a::before, footer ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
}
footer ul li a::before {
  background-color: #A5D206;
  height: 2px;
  bottom: 0;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
footer ul li a::after {
  content: attr(data-replace);
  height: 100%;
  top: 0;
  transform-origin: 100% 50%;
  transform: translate3d(200%, 0, 0);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  color: #A5D206;
}
footer ul li a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
footer ul li a:hover::after {
  transform: translate3d(0, 0, 0);
}
footer ul li a span {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
footer ul li a:hover span {
  transform: translate3d(-200%, 0, 0);
}
footer ul li a:hover {
  color: #A5D206;
}
footer .social-link-title {
  font-family: "montserrat-bold";
}
footer .email img {
  width: 20px;
}
@media (max-width: 1399px) {
  footer .email img {
    width: 23px;
  }
}
@media (max-width: 767px) {
  footer .email img {
    width: 18px;
  }
}
footer .mobile img {
  width: 24px;
}
@media (max-width: 767px) {
  footer .mobile img {
    width: 18px;
  }
}
footer .address img {
  width: 24px;
}
@media (max-width: 767px) {
  footer .address img {
    width: 18px;
  }
}
footer .social-links {
  font-size: 2rem;
}
footer .social-links svg {
  width: 32px;
  height: 32px;
  fill: #A5D206;
  padding: 1px;
  border-radius: 8px;
  transition: 0.1s;
}
@media (max-width: 767px) {
  footer .social-links svg {
    width: 28px;
    height: 28px;
  }
}
footer .social-links svg:hover {
  background-color: #A5D206;
  fill: #fff;
}
footer .footer-bottom {
  font-size: 0.8vw;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4392156863);
  margin-top: 5rem;
}
@media (max-width: 1399px) {
  footer .footer-bottom {
    font-size: 1vw;
  }
}
@media (max-width: 1060px) {
  footer .footer-bottom {
    font-size: 1.2vw;
  }
}
@media (max-width: 767px) {
  footer .footer-bottom {
    font-size: 13px;
    margin-top: 3rem;
  }
}
footer .footer-bottom .copyright a {
  color: white;
  text-decoration: underline;
}
footer .footer-bottom .copyright a:hover {
  color: #A5D206;
}
footer .footer-bottom .policy-links a {
  color: white;
}
footer .footer-bottom .policy-links a:hover {
  color: #A5D206;
}

#quoteModal .modal-header {
  font-family: "noto-serif";
  color: #000000;
  border-bottom: 1px solid #000000 !important;
}
#quoteModal .modal-header h1 {
  font-size: 2rem !important;
}
@media (max-width: 767px) {
  #quoteModal .modal-header h1 {
    font-size: 1.5rem !important;
  }
}
#quoteModal .modal-header .btn-close {
  color: #000000;
  font-size: 1rem !important;
}
#quoteModal .modal-content {
  background-color: #FFF9EF;
  border-radius: 30px;
  padding: 1rem;
}
#quoteModal form .form-group label {
  color: #000000;
  margin-bottom: 0.5rem;
  font-family: "montserrat-bold";
}
#quoteModal form .form-group .form-control {
  display: block;
  width: 100%;
  padding: 0 0 10px;
  font-size: 17px;
  line-height: 12px;
  background: 0 0;
  border-width: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.8078431373);
  transition: all 0.5s ease;
  color: #000000;
}
@media (max-width: 767px) {
  #quoteModal form .form-group .form-control {
    font-size: 14px;
  }
}
#quoteModal form .form-group .form-control:focus {
  border-color: none;
  box-shadow: none;
}
#quoteModal form .form-group .form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.1529411765);
  opacity: 1;
}
#quoteModal form .form-group .form-control::placeholder {
  color: rgba(0, 0, 0, 0.1529411765);
  opacity: 1;
}
#quoteModal form .contact-btn {
  background-color: #A5D206;
  color: #fff;
  padding: 0.6rem 1.85rem;
  border-radius: 30px;
  display: block;
  font-family: "montserrat-bold";
  letter-spacing: 0.5px;
  transition: 0.18s;
  border: none;
  margin: auto;
}
#quoteModal form .contact-btn:hover {
  background-color: #000000;
  color: #fff;
}

.error-msg {
  font-size: 14px;
  font-family: "poppins";
  color: #e03531;
  margin-top: 2px;
}

#success-msg {
  font-weight: bold;
  font-size: 18px;
}

#watermelon {
  z-index: 9;
}

.heroSection {
  padding: 8vh 0 0;
  margin-bottom: 10vh;
  background-color: #BBE9F8;
  position: relative;
  overflow-x: clip;
  -webkit-user-select: none; /* Safari */ /* IE 10 and IE 11 */
  -moz-user-select: none;
       user-select: none; /* Standard syntax */
}
@media (max-width: 1024px) {
  .heroSection {
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .heroSection {
    margin-bottom: 2rem;
    padding-top: 3.5vh;
  }
}
.heroSection .animated-wrapper .bg {
  margin-top: -19vw;
  z-index: 0;
  position: relative;
}
@media (max-width: 760px) {
  .heroSection .animated-wrapper .bg {
    display: none;
  }
}
@media (min-width: 761px) {
  .heroSection .animated-wrapper .mobile-bg {
    display: none;
  }
}
.heroSection .animated-wrapper .front-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35vw;
  z-index: 2;
}
@media (max-width: 760px) {
  .heroSection .animated-wrapper .front-right {
    width: 70vw;
  }
}
.heroSection .animated-wrapper .front-left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32vw;
  z-index: 2;
}
@media (max-width: 760px) {
  .heroSection .animated-wrapper .front-left {
    width: 60vw;
  }
}
.heroSection .animated-wrapper .cloud {
  position: absolute;
  z-index: 2;
  animation: clouds 2s linear infinite alternate-reverse;
}
.heroSection .animated-wrapper .cloud1 {
  left: 5%;
  top: 2%;
  width: 18vw;
  animation-delay: 0.5s;
}
@media (max-width: 760px) {
  .heroSection .animated-wrapper .cloud1 {
    width: 44vw;
    left: 0;
    top: -2%;
  }
}
.heroSection .animated-wrapper .cloud3 {
  right: 7%;
  top: 12%;
  width: 16vw;
}
@media (max-width: 760px) {
  .heroSection .animated-wrapper .cloud3 {
    right: 4%;
    top: 5%;
    width: 32vw;
  }
}
@keyframes clouds {
  from {
    transform: translateX(-2%);
  }
  to {
    transform: translateX(2%);
  }
}
.heroSection .animated-wrapper .truck {
  position: absolute;
  z-index: 1;
  right: 25%;
  bottom: 12%;
  width: 44vw;
  cursor: pointer;
}
@media (max-width: 760px) {
  .heroSection .animated-wrapper .truck {
    right: 5%;
    bottom: 25%;
    width: 90vw;
  }
}
.heroSection .animated-wrapper .truck .tyer {
  position: absolute;
  width: 4.9vw;
  bottom: 0.3vw;
}
@media (max-width: 760px) {
  .heroSection .animated-wrapper .truck .tyer {
    width: 9.8vw;
    bottom: 0.65vw;
  }
}
.heroSection .animated-wrapper .truck .tyer1 {
  right: 5.52vw;
}
@media (max-width: 760px) {
  .heroSection .animated-wrapper .truck .tyer1 {
    right: 11.25vw;
  }
}
.heroSection .animated-wrapper .truck .tyer2 {
  right: 18.7vw;
}
@media (max-width: 760px) {
  .heroSection .animated-wrapper .truck .tyer2 {
    right: 38.18vw;
  }
}
.heroSection .animated-wrapper .truck .tyer3 {
  right: 24.7vw;
}
@media (max-width: 760px) {
  .heroSection .animated-wrapper .truck .tyer3 {
    right: 50.5vw;
  }
}
.heroSection .animated-wrapper .truck .tyer4 {
  right: 35.8vw;
}
@media (max-width: 760px) {
  .heroSection .animated-wrapper .truck .tyer4 {
    right: 73.2vw;
  }
}
.heroSection .animated-wrapper .wgroup {
  position: absolute;
  z-index: 3;
  width: 15vw;
  bottom: 5%;
  left: 5%;
  animation: elements 0.1s linear 9s forwards;
  opacity: 0;
}
@media (max-width: 760px) {
  .heroSection .animated-wrapper .wgroup {
    animation: elements 0.2s linear 7s forwards;
  }
}
@media (max-width: 760px) {
  .heroSection .animated-wrapper .wgroup {
    width: 33vw;
    bottom: 4%;
    left: 3%;
  }
}
.heroSection .animated-wrapper .jeera {
  position: absolute;
  z-index: 4;
  width: 14vw;
  bottom: 2%;
  right: 5%;
  animation: elements 0.1s linear 9s forwards;
  opacity: 0;
}
@media (max-width: 760px) {
  .heroSection .animated-wrapper .jeera {
    animation: elements 0.2s linear 7s forwards;
  }
}
@media (max-width: 760px) {
  .heroSection .animated-wrapper .jeera {
    width: 30vw;
    right: 2%;
  }
}
@keyframes elements {
  100% {
    opacity: 1;
  }
}
.heroSection h1 {
  font-size: 5vw;
  font-family: "noto-serif";
  max-width: 80%;
  position: relative;
  z-index: 5;
  margin: 2rem auto 5rem;
  animation: typing 3.5s steps(30, end) 3.45s, blink-caret 0.5s step-end 3.45s infinite;
  white-space: nowrap;
  line-height: 1.3;
  /* The typing effect */
  /* The typewriter cursor effect */
}
@media (max-width: 760px) {
  .heroSection h1 {
    font-size: 11vw;
    margin: 3rem auto 0;
    animation: none;
    white-space: unset;
  }
}
@keyframes typing {
  from {
    width: 0;
    overflow-x: clip;
  }
  to {
    width: 100%;
    overflow-x: clip;
  }
}
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: black;
  }
}
.heroSection h1 .oElement {
  position: relative;
}
.heroSection h1 .oElement img {
  position: absolute;
  width: 3.3vw;
  left: 0;
  bottom: 1.2vw;
  z-index: 999;
}
@media (min-width: 761px) {
  .heroSection h1 .oElement img {
    opacity: 0;
    animation: rotation 10s ease infinite, showing 0.2s ease 6.6s forwards;
  }
  @keyframes showing {
    100% {
      opacity: 1;
    }
  }
}
@media (max-width: 760px) {
  .heroSection h1 .oElement img {
    width: 7.2vw;
    bottom: 2.8vw;
    animation: rotation 10s ease infinite;
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.heroSection h1 .hide {
  display: none;
}
.heroSection .hero-image-container .hero-product-image {
  filter: drop-shadow(0px 4px 5px rgba(0, 0, 0, 0.2470588235));
  transition: 0.3s;
}
.heroSection .hero-image-container .hero-product-image:nth-child(1) {
  flex-basis: 31%;
}
.heroSection .hero-image-container .hero-product-image:nth-child(2) {
  flex-basis: 37%;
}
.heroSection .hero-image-container .hero-product-image:nth-child(3) {
  flex-basis: 31%;
}
.heroSection .hero-image-container .hero-product-image:hover {
  filter: drop-shadow(0px 10px 20px rgba(25, 39, 0, 0.2470588235));
  transform: translateY(-10px);
}

.aboutSection, .workSection, .productSection, .qualitySection {
  padding: 7vh 0;
}
@media (max-width: 1024px) {
  .aboutSection, .workSection, .productSection, .qualitySection {
    padding: 4rem 0;
  }
}
@media (max-width: 767px) {
  .aboutSection, .workSection, .productSection, .qualitySection {
    padding: 3rem 0;
  }
}
.aboutSection .c-row, .workSection .c-row, .productSection .c-row, .qualitySection .c-row {
  gap: 7rem;
}
@media (max-width: 991px) {
  .aboutSection .c-row, .workSection .c-row, .productSection .c-row, .qualitySection .c-row {
    gap: 3rem;
  }
}
@media (max-width: 767px) {
  .aboutSection .c-row, .workSection .c-row, .productSection .c-row, .qualitySection .c-row {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.aboutSection .c-row .content-container, .workSection .c-row .content-container, .productSection .c-row .content-container, .qualitySection .c-row .content-container {
  flex-basis: 50%;
}
@media (max-width: 767px) {
  .aboutSection .c-row .content-container, .workSection .c-row .content-container, .productSection .c-row .content-container, .qualitySection .c-row .content-container {
    flex-basis: 100%;
  }
}
.aboutSection .c-row .img-container, .workSection .c-row .img-container, .productSection .c-row .img-container, .qualitySection .c-row .img-container {
  flex-basis: 50%;
  position: relative;
  z-index: 1;
  height: 56vh;
}
@media (max-width: 1024px) {
  .aboutSection .c-row .img-container, .workSection .c-row .img-container, .productSection .c-row .img-container, .qualitySection .c-row .img-container {
    height: 28rem;
  }
}
@media (max-width: 767px) {
  .aboutSection .c-row .img-container, .workSection .c-row .img-container, .productSection .c-row .img-container, .qualitySection .c-row .img-container {
    flex-basis: 100%;
    height: 20rem;
  }
}
.aboutSection .c-row .img-container img, .workSection .c-row .img-container img, .productSection .c-row .img-container img, .qualitySection .c-row .img-container img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.aboutSection .c-row .img-container::before, .workSection .c-row .img-container::before, .productSection .c-row .img-container::before, .qualitySection .c-row .img-container::before {
  position: absolute;
  content: "";
  width: 250px;
  height: 250px;
  background-color: #A5D206;
  z-index: -1;
  border-radius: 40px;
  right: -12px;
  top: -12px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .aboutSection .c-row .img-container::before, .workSection .c-row .img-container::before, .productSection .c-row .img-container::before, .qualitySection .c-row .img-container::before {
    right: -9px;
    top: -9px;
    width: 200px;
    height: 200px;
  }
}
.aboutSection .c-row .img-container::after, .workSection .c-row .img-container::after, .productSection .c-row .img-container::after, .qualitySection .c-row .img-container::after {
  position: absolute;
  content: "";
  width: 250px;
  height: 250px;
  background-color: #A5D206;
  z-index: -1;
  border-radius: 40px;
  left: -12px;
  bottom: -12px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .aboutSection .c-row .img-container::after, .workSection .c-row .img-container::after, .productSection .c-row .img-container::after, .qualitySection .c-row .img-container::after {
    left: -9px;
    bottom: -9px;
    width: 200px;
    height: 200px;
  }
}
@media (min-width: 1100px) {
  .aboutSection .c-row .img-container:hover::before, .workSection .c-row .img-container:hover::before, .productSection .c-row .img-container:hover::before, .qualitySection .c-row .img-container:hover::before {
    transform: translateX(-21.5vw);
  }
  .aboutSection .c-row .img-container:hover::after, .workSection .c-row .img-container:hover::after, .productSection .c-row .img-container:hover::after, .qualitySection .c-row .img-container:hover::after {
    transform: translateX(21.5vw);
  }
}

.qualitySection .counter {
  font-family: "montserrat-bold";
  color: #A5D206;
  font-size: 2.4vw;
  margin-bottom: 1.2vw;
}
@media (max-width: 767px) {
  .qualitySection .counter {
    font-size: 1.2rem;
  }
}
.qualitySection .counter-text {
  font-size: 0.8vw;
  line-height: 1.18vw;
  font-family: "montserrat-semibold";
}
@media (max-width: 1399px) {
  .qualitySection .counter-text {
    font-size: 1vw;
    line-height: 1.4vw;
  }
}
@media (max-width: 1060px) {
  .qualitySection .counter-text {
    font-size: 1.1vw;
    line-height: 1.5vw;
  }
}
@media (max-width: 767px) {
  .qualitySection .counter-text {
    font-size: 12px;
    line-height: 16px;
  }
}
.qualitySection .img-container {
  height: 52vh;
  position: relative;
  background-image: url(../images/quality.webp);
  background-position: center right;
  background-attachment: fixed;
  background-size: cover;
}
@media (max-width: 1024px) {
  .qualitySection .img-container {
    height: 30rem;
  }
}
@media (max-width: 767px) {
  .qualitySection .img-container {
    height: 24rem;
    background-attachment: unset;
  }
}
.qualitySection .img-container img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.qualitySection .img-container::after {
  position: absolute;
  content: "";
  width: 250px;
  height: 250px;
  background-color: #A5D206;
  z-index: -1;
  border-radius: 40px;
  right: -12px;
  bottom: -12px;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .qualitySection .img-container::after {
    right: -9px;
    bottom: -9px;
    width: 200px;
    height: 200px;
  }
}
.qualitySection .img-container::before {
  position: absolute;
  content: "";
  width: 250px;
  height: 250px;
  background-color: #A5D206;
  z-index: -1;
  border-radius: 40px;
  left: -12px;
  top: -12px;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .qualitySection .img-container::before {
    left: -9px;
    top: -9px;
    width: 200px;
    height: 200px;
  }
}

.productSection {
  padding-bottom: 0;
}
.productSection .productSwiper {
  transform: translateY(-14%);
  padding-bottom: 8vh;
}
@media (max-width: 991px) {
  .productSection .productSwiper {
    transform: translateY(-14%);
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .productSection .productSwiper {
    transform: translateY(-15%);
  }
}
@media (max-width: 559px) {
  .productSection .productSwiper {
    transform: translateY(-10%);
  }
}
.productSection .product-card {
  transition: 0.3s;
}
.productSection .product-card:hover {
  margin-top: -1rem;
}
.productSection .product-card:hover .watermelon-img {
  bottom: -12%;
}
.productSection .product-card .product-media {
  border-radius: 30px 30px 0 0;
  padding: 0 2.5vw 1vw;
  overflow: hidden;
  transform: translateY(48%);
}
@media (max-width: 991px) and (min-width: 768px) {
  .productSection .product-card .product-media {
    transform: translateY(30%);
  }
}
@media (max-width: 767px) {
  .productSection .product-card .product-media {
    transform: translateY(62%);
  }
}
@media (max-width: 559px) {
  .productSection .product-card .product-media {
    transform: translateY(30%);
  }
}
.productSection .product-card .product-media img {
  filter: drop-shadow(0px 5px 8px rgba(0, 0, 0, 0.1450980392));
}
@media (max-width: 767px) {
  .productSection .product-card .product-media img {
    width: 85%;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.1450980392));
  }
}
.productSection .product-card .product-information {
  padding: 8vw 2.5vw 2.5vw;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.062745098);
  background-color: #fff;
  border-radius: 30px;
}
@media (max-width: 1399px) {
  .productSection .product-card .product-information {
    padding: 9vw 2.5vw 2.5vw;
  }
}
@media (max-width: 767px) {
  .productSection .product-card .product-information {
    padding-top: 19vw;
    padding-bottom: 5vw;
  }
}
.productSection .product-card .product-information .product-title {
  font-family: "noto-serif";
  font-size: 1.5vw;
}
@media (max-width: 1399px) {
  .productSection .product-card .product-information .product-title {
    font-size: 2vw;
  }
}
@media (max-width: 1099px) {
  .productSection .product-card .product-information .product-title {
    font-size: 1.9vw;
  }
}
@media (max-width: 991px) {
  .productSection .product-card .product-information .product-title {
    font-size: 2vw;
  }
}
@media (max-width: 767px) {
  .productSection .product-card .product-information .product-title {
    font-size: 1.4rem;
  }
}
.productSection .product-card .product-information .product-title a:hover {
  color: #A5D206;
}
.productSection .product-card .watermelon-img {
  position: absolute;
  width: 10vw;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  transition: 0.3s;
  z-index: -1;
}
@media (max-width: 767px) {
  .productSection .product-card .watermelon-img {
    width: 22vw;
  }
}

.productSectionInner {
  padding: 7vh 0 0;
}
.productSectionInner .product-card {
  position: relative;
  bottom: 20%;
}

.workSection {
  padding: 1vh 0 7vh;
}
@media (max-width: 1024px) {
  .workSection {
    padding-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .workSection {
    padding-bottom: 3rem;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .workSection .c-row {
    flex-wrap: wrap-reverse !important;
  }
}

.blogSection {
  padding: 7vh 0 0;
}
@media (max-width: 1024px) {
  .blogSection {
    padding-top: 4rem;
  }
}
@media (max-width: 767px) {
  .blogSection {
    padding-top: 3rem;
  }
}
.blogSection .blogSwiper {
  padding-bottom: 8vh;
}
@media (max-width: 1024px) {
  .blogSection .blogSwiper {
    padding-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .blogSection .blogSwiper {
    padding-bottom: 3rem;
  }
}
.blogSection .blogSwiper .swiper-slide {
  height: auto;
}
.blogSection .blog-card {
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.062745098);
  height: 100%;
  transition: 0.3s;
}
@media (min-width: 992px) {
  .blogSection .blog-card:hover {
    margin-top: -1rem;
    box-shadow: 0px 10px 20px 5px rgba(90, 117, 0, 0.0823529412);
  }
}
.blogSection .blog-card .blog-media {
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}
.blogSection .blog-card .blog-information {
  padding: 1.5vw;
}
@media (max-width: 1199px) {
  .blogSection .blog-card .blog-information {
    padding: 2vw;
  }
}
@media (max-width: 767px) {
  .blogSection .blog-card .blog-information {
    padding: 1.5rem;
  }
}
.blogSection .blog-card .blog-information .blog-title {
  font-size: 1.2vw;
  font-family: "noto-serif-bold";
  line-height: 1.6vw;
}
@media (max-width: 1399px) {
  .blogSection .blog-card .blog-information .blog-title {
    font-size: 1.3vw;
    line-height: 1.7vw;
  }
}
@media (max-width: 1199px) {
  .blogSection .blog-card .blog-information .blog-title {
    font-size: 1.5vw;
    line-height: 2vw;
  }
}
@media (max-width: 991px) {
  .blogSection .blog-card .blog-information .blog-title {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
.blogSection .blog-card .blog-information .blog-content {
  font-size: 0.85vw;
  line-height: 1.5vw;
  height: 4.5vw;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
@media (max-width: 1499px) {
  .blogSection .blog-card .blog-information .blog-content {
    font-size: 0.9vw;
  }
}
@media (max-width: 1399px) {
  .blogSection .blog-card .blog-information .blog-content {
    font-size: 1vw;
  }
}
@media (max-width: 1199px) {
  .blogSection .blog-card .blog-information .blog-content {
    font-size: 1.1vw;
  }
}
@media (max-width: 1060px) {
  .blogSection .blog-card .blog-information .blog-content {
    font-size: 1.3vw;
    line-height: 1.6;
  }
}
@media (max-width: 991px) {
  .blogSection .blog-card .blog-information .blog-content {
    font-size: unset;
    height: 4.5rem;
  }
}
.blogSection .blog-card .blog-information .read-more {
  font-size: 0.85vw;
  font-family: "montserrat-semibold";
  color: #A5D206;
}
@media (max-width: 1499px) {
  .blogSection .blog-card .blog-information .read-more {
    font-size: 0.9vw;
  }
}
@media (max-width: 1399px) {
  .blogSection .blog-card .blog-information .read-more {
    font-size: 1vw;
  }
}
@media (max-width: 1199px) {
  .blogSection .blog-card .blog-information .read-more {
    font-size: 1.1vw;
  }
}
@media (max-width: 1060px) {
  .blogSection .blog-card .blog-information .read-more {
    font-size: 1.2vw;
  }
}
@media (max-width: 991px) {
  .blogSection .blog-card .blog-information .read-more {
    font-size: 1em;
  }
}
.blogSection .blog-card .blog-information .read-more:hover {
  text-decoration: underline;
}
.blogSection .blog-card .blog-information .blog-date {
  font-size: 0.75vw;
  font-family: "montserrat-semibold";
}
@media (max-width: 1499px) {
  .blogSection .blog-card .blog-information .blog-date {
    font-size: 0.9vw;
  }
}
@media (max-width: 1399px) {
  .blogSection .blog-card .blog-information .blog-date {
    font-size: 1vw;
  }
}
@media (max-width: 1199px) {
  .blogSection .blog-card .blog-information .blog-date {
    font-size: 1.1vw;
  }
}
@media (max-width: 1060px) {
  .blogSection .blog-card .blog-information .blog-date {
    font-size: 1.2vw;
  }
}
@media (max-width: 991px) {
  .blogSection .blog-card .blog-information .blog-date {
    font-size: 0.9em;
  }
}

.swiper-pagination-bullet-active {
  background: #A5D206;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #FFF9EF;
  color: #000000;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.loader .loading-text {
  font-family: "noto-serif";
  font-size: 2rem;
}
@media (max-width: 767px) {
  .loader .loading-text {
    font-size: 7rem;
  }
}
.loader .color-change {
  width: 200px;
  margin: 0 auto;
  margin-bottom: 1rem;
}
.loader .color-change img {
  width: 100%;
  animation: colorchange 2s linear infinite;
}
.loader .rotatingLoader {
  width: 150px;
  margin: 0 auto;
  margin-bottom: 1rem;
}
.loader .rotatingLoader img {
  width: 100%;
  animation: rotation 10s ease infinite;
}
@media (max-width: 991px) {
  .loader .rotatingLoader {
    width: 100px;
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.work-top-container {
  padding: 10vh 0;
}
@media (max-width: 1024px) {
  .work-top-container {
    padding: 4rem 0;
  }
}
@media (max-width: 767px) {
  .work-top-container {
    padding: 3rem 0;
  }
}
.work-top-container h1 {
  font-family: "noto-serif";
  font-size: 1.5vw;
  color: #A5D206;
}
@media (max-width: 991px) {
  .work-top-container h1 {
    font-size: 1rem;
  }
}
.work-top-container .img-container {
  position: relative;
  overflow: hidden;
  background-color: transparent;
  width: 100%;
}
@media (max-width: 991px) {
  .work-top-container .img-container {
    visibility: visible;
  }
}
.work-top-container .img-container img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: left;
}

.work-bottom-container {
  padding: 7vh 0;
}
@media (max-width: 1024px) {
  .work-bottom-container {
    padding: 2rem 0;
  }
}
@media (max-width: 767px) {
  .work-bottom-container {
    padding: 2rem 0;
  }
}
.work-bottom-container .video-row h4 {
  font-size: 1.2vw;
  font-family: "noto-serif";
}
@media (max-width: 1499px) {
  .work-bottom-container .video-row h4 {
    font-size: 1.5vw;
  }
}
@media (max-width: 991px) {
  .work-bottom-container .video-row h4 {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .work-bottom-container .video-row h4 {
    font-size: 1.2rem;
  }
}
.work-bottom-container .video-row .content {
  font-size: 0.8vw;
  line-height: 1.18vw;
  font-family: "montserrat-semibold";
}
@media (max-width: 1499px) {
  .work-bottom-container .video-row .content {
    font-size: 1vw;
    line-height: 1.4vw;
  }
}
@media (max-width: 1199px) {
  .work-bottom-container .video-row .content {
    font-size: unset;
    line-height: 1.5vw;
  }
}
@media (max-width: 991px) {
  .work-bottom-container .video-row .content {
    line-height: unset;
  }
}
.work-bottom-container .video-row .icon-row {
  margin-top: 2em;
}
.work-bottom-container .video-row .icon-row:first-child {
  margin-top: 0;
}
.work-bottom-container .video-row .icon-row .icon-wrapper {
  background-color: #fff;
  border-radius: 50px;
  padding: 8px;
  text-align: center;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.062745098);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px dashed #A5D206;
}
.work-bottom-container .video-row .icon-row .icon-wrapper img {
  width: 40px;
}
.work-bottom-container .video-row .icon-column {
  position: relative;
}
.work-bottom-container .video-row .icon-column::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 35vh;
  border: 1px dashed #A5D206;
  top: 0;
  left: 54px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .work-bottom-container .video-row .icon-column::before {
    left: 40px;
  }
}
@media (max-width: 991px) {
  .work-bottom-container .video-row .icon-column::before {
    height: 31vh;
  }
}
@media (max-width: 767px) {
  .work-bottom-container .video-row .icon-column::before {
    height: 18rem;
  }
}
.work-bottom-container .video-container {
  position: relative;
  transition: 0.5s;
  scale: 1;
  transform-origin: right;
}
.work-bottom-container .video-container::after {
  position: absolute;
  content: "";
  width: 250px;
  height: 250px;
  background-color: #A5D206;
  z-index: -1;
  border-radius: 40px;
  right: -11px;
  bottom: 0;
  transition: 0.5s;
}
@media (max-width: 1252px) {
  .work-bottom-container .video-container::after {
    bottom: -4px;
  }
}
@media (max-width: 991px) {
  .work-bottom-container .video-container::after {
    right: -9px;
    bottom: -2px;
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 767px) {
  .work-bottom-container .video-container::after {
    width: 150px;
    height: 150px;
  }
}
.work-bottom-container .video-container::before {
  position: absolute;
  content: "";
  width: 250px;
  height: 250px;
  background-color: #A5D206;
  z-index: -1;
  border-radius: 40px;
  left: -12px;
  top: -12px;
  transition: 0.5s;
}
@media (max-width: 991px) {
  .work-bottom-container .video-container::before {
    left: -9px;
    top: -9px;
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 767px) {
  .work-bottom-container .video-container::before {
    width: 150px;
    height: 150px;
  }
}
.work-bottom-container .video-container video {
  border-radius: 30px;
}
.work-bottom-container .fact span {
  position: relative;
  display: inline-block;
}
.work-bottom-container .fact span::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  height: 5px;
  width: 90%;
  z-index: -1;
  background-color: #A5D206;
}

.faq {
  padding: 7vh 0;
}
@media (max-width: 1024px) {
  .faq {
    padding: 2rem 0;
  }
}
@media (max-width: 767px) {
  .faq {
    padding: 2rem 0;
  }
}
.faq .accordion-button:not(.collapsed) {
  background-color: #A5D206;
  color: #fff;
}
.faq .accordion-button:not(.collapsed)::after {
  background-image: url(../images/work/activearrow.svg);
}
.faq h4 {
  font-family: "noto-serif";
}
.faq h4 button {
  font-size: 1.1rem;
}
.faq h4 button:focus {
  box-shadow: none;
}
.faq .accordion-button {
  background: #FFF9EF;
}
.faq .accordion-body {
  font-size: 1rem;
  line-height: 1.5;
  background: #FFF9EF;
}
@media (max-width: 767px) {
  .faq .accordion-body {
    font-size: 14px;
  }
}
.faq .img-wrapper img {
  max-width: 250px;
}/*# sourceMappingURL=work.css.map */