@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;
}

.contact-section {
  padding: 10vh 0 6vh;
}
@media (max-width: 1024px) {
  .contact-section {
    padding: 4rem 0;
  }
}
@media (max-width: 767px) {
  .contact-section {
    padding: 3rem 0;
  }
}
.contact-section .contact-wrapper {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 17px;
       column-gap: 17px;
}
@media (max-width: 767px) {
  .contact-section .contact-wrapper {
    flex-direction: column;
  }
}
.contact-section .contact-wrapper .contact-left-section {
  flex: 1 1 auto;
  max-width: 510px;
  display: flex;
  flex-direction: column;
}
.contact-section .contact-wrapper .contact-left-section h1 {
  font-family: "noto-serif";
  font-size: 4rem;
}
@media (max-width: 767px) {
  .contact-section .contact-wrapper .contact-left-section h1 {
    font-size: 2.1em;
  }
}
.contact-section .contact-wrapper .contact-right-section {
  flex: 1 1 auto;
  max-width: 773px;
  background: #A5D206;
  border-radius: 20px;
  padding: 48px 90px 80px 70px;
}
@media (max-width: 767px) {
  .contact-section .contact-wrapper .contact-right-section {
    margin-top: 1.5rem;
    padding: 48px 40px 50px 40px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .contact-section .contact-wrapper .contact-right-section {
    flex: 1 2 auto;
  }
}
.contact-section .contact-wrapper .contact-right-section form .form-group label {
  color: #fff;
  margin-bottom: 0.5rem;
  font-family: "montserrat-bold";
}
.contact-section .contact-wrapper .contact-right-section 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 #fff;
  transition: all 0.5s ease;
  color: #fff;
}
@media (max-width: 767px) {
  .contact-section .contact-wrapper .contact-right-section form .form-group .form-control {
    font-size: 14px;
  }
}
.contact-section .contact-wrapper .contact-right-section form .form-group .form-control:focus {
  border-color: none;
  box-shadow: none;
}
.contact-section .contact-wrapper .contact-right-section form .form-group .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.368627451);
  opacity: 1;
}
.contact-section .contact-wrapper .contact-right-section form .form-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.368627451);
  opacity: 1;
}
.contact-section .contact-wrapper .contact-right-section form .contact-btn {
  background-color: #ffffff;
  color: #000000;
  padding: 0.6rem 1.85rem;
  border-radius: 30px;
  display: block;
  font-family: "montserrat-bold";
  letter-spacing: 0.5px;
  transition: 0.18s;
  border: none;
}
.contact-section .contact-wrapper .contact-right-section form .contact-btn:hover {
  background-color: #000000;
  color: #fff;
}/*# sourceMappingURL=contact.css.map */