@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;
}

.about-section {
  padding: 7vh 0 8vh;
}
@media (max-width: 767px) {
  .about-section {
    padding: 0 0 4vh;
  }
}
.about-section .about-wrapper {
  position: relative;
  width: 100%;
}
.about-section .about-wrapper .about-content-wrapper {
  display: flex;
  flex-direction: column;
}
.about-section .about-wrapper .about-content-wrapper .heading-wrapper {
  z-index: 2;
  flex-direction: column;
  display: flex;
  position: relative;
}
.about-section .about-wrapper .about-content-wrapper .heading-wrapper .main-heading {
  display: flex;
  margin-left: 30rem;
  margin-top: 2rem;
}
@media (max-width: 1200px) {
  .about-section .about-wrapper .about-content-wrapper .heading-wrapper .main-heading {
    margin-left: 0;
  }
}
.about-section .about-wrapper .about-content-wrapper .heading-wrapper .main-heading h1 {
  font-size: 6rem;
  color: #000;
  font-family: "montserrat-bold";
  font-weight: 300;
}
@media (max-width: 478px) {
  .about-section .about-wrapper .about-content-wrapper .heading-wrapper .main-heading h1 {
    font-size: 2.1rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 479px) and (max-width: 1200px) {
  .about-section .about-wrapper .about-content-wrapper .heading-wrapper .main-heading h1 {
    font-size: 4rem;
    line-height: 5rem;
    width: 65vw;
  }
}
.about-section .about-wrapper .about-content-wrapper .about-body-wrapper {
  height: 20rem;
  align-items: center;
  display: grid;
  position: relative;
  margin-left: 50rem;
  margin-top: 2rem;
}
@media (max-width: 478px) {
  .about-section .about-wrapper .about-content-wrapper .about-body-wrapper {
    margin-left: 0;
    height: auto;
    margin-top: 1rem;
  }
}
@media (min-width: 479px) and (max-width: 1200px) {
  .about-section .about-wrapper .about-content-wrapper .about-body-wrapper {
    margin-left: 10rem;
    margin-top: 2rem;
  }
}
.about-section .about-wrapper .about-content-wrapper .about-body-wrapper .about-text {
  width: 30rem;
}
@media (max-width: 1300px) {
  .about-section .about-wrapper .about-content-wrapper .about-body-wrapper .about-text {
    width: 25rem;
  }
}
@media (max-width: 1200px) {
  .about-section .about-wrapper .about-content-wrapper .about-body-wrapper .about-text {
    width: 100%;
  }
}
.about-section .about-wrapper .about-content-wrapper .about-body-wrapper .about-text p {
  font-family: "montserrat-medium";
  font-size: 1.2rem;
  color: #000;
  line-height: 2rem;
}
@media (max-width: 1300px) {
  .about-section .about-wrapper .about-content-wrapper .about-body-wrapper .about-text p {
    font-size: unset;
  }
}
@media (max-width: 478px) {
  .about-section .about-wrapper .about-content-wrapper .about-body-wrapper .about-text p {
    font-size: 1rem;
    line-height: 2rem;
  }
}
@media (min-width: 479px) and (max-width: 1200px) {
  .about-section .about-wrapper .about-content-wrapper .about-body-wrapper .about-text p {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}
.about-section .about-wrapper .about-img-wrapper {
  width: 42rem;
  height: 36rem;
  max-width: 100%;
  border-radius: 2rem 0 2rem 2rem;
  position: absolute;
  top: 10rem;
  bottom: auto;
  left: 0%;
  right: auto;
}
@media (max-width: 478px) {
  .about-section .about-wrapper .about-img-wrapper {
    position: relative;
    width: 100%;
    top: 3rem;
    height: 13rem;
  }
}
@media (min-width: 479px) and (max-width: 1200px) {
  .about-section .about-wrapper .about-img-wrapper {
    position: relative;
    top: 0.5rem;
    width: 70rem;
    padding-bottom: 66%;
    height: auto;
  }
}
.about-section .about-wrapper .about-img-wrapper .about-main-img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 2rem 0 2rem 2rem;
  overflow: hidden;
}
@media (min-width: 478px) and (max-width: 1200px) {
  .about-section .about-wrapper .about-img-wrapper .about-main-img {
    position: absolute;
  }
}
.about-section .about-wrapper .about-img-wrapper .about-main-img img {
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.about-section .about-wrapper .about-img-wrapper .about-image-brake {
  z-index: 1;
  width: 16rem;
  height: 7vw;
  max-height: 7rem;
  background-color: #FFF9EF;
  border-bottom-left-radius: 2rem;
  position: absolute;
  top: -0.0625rem;
  bottom: auto;
  left: auto;
  right: -0.0625rem;
}
@media (max-width: 767px) {
  .about-section .about-wrapper .about-img-wrapper .about-image-brake {
    width: 12rem;
    height: 2rem;
    border-bottom-left-radius: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-section .about-wrapper .about-img-wrapper .about-image-brake {
    width: 35rem;
    height: 6rem;
  }
}
.about-section .about-main-text-wrapper {
  padding: 12rem 12rem 0rem 12rem;
}
@media (max-width: 478px) {
  .about-section .about-main-text-wrapper {
    padding: 7rem 0rem 0;
  }
}
@media (min-width: 479px) and (max-width: 767px) {
  .about-section .about-main-text-wrapper {
    padding: 9rem 2rem 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about-section .about-main-text-wrapper {
    padding: 5rem 5rem 0;
  }
}
.about-section .about-main-text-wrapper h5 {
  font-family: "montserrat-bold";
  font-size: 1.7vw;
  text-align: center;
}
@media (max-width: 1099px) {
  .about-section .about-main-text-wrapper h5 {
    font-size: 2vw;
  }
}
@media (max-width: 991px) {
  .about-section .about-main-text-wrapper h5 {
    font-size: 2.1vw;
  }
}
@media (max-width: 767px) {
  .about-section .about-main-text-wrapper h5 {
    font-size: 1.5em;
  }
}
.about-section .about-main-text-wrapper .text {
  width: 100%;
  color: rgba(182, 182, 182, 0.151);
  background: linear-gradient(to right, #000, #000) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 0%;
  transition: background-size cubic-bezier(0.1, 0.5, 0.5, 1) 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-section .about-story-description {
  margin-top: 2rem;
}
.about-section .about-story-description p {
  font-family: "montserrat-medium";
}

.fact {
  font-weight: bold;
}
.fact span {
  position: relative;
  display: inline-block;
}
.fact span::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  height: 5px;
  width: 90%;
  z-index: -1;
  background-color: #A5D206;
}

.our-mission, .our-story, .why-choose {
  padding: 0vh 0 8vh;
}
.our-mission .our-mission-wrapper h2, .our-story .our-mission-wrapper h2, .why-choose .our-mission-wrapper h2 {
  margin-top: 2rem;
  line-height: 5rem;
  width: 100%;
  color: rgba(182, 182, 182, 0.151);
  background: linear-gradient(to right, #000, #000) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 0%;
  transition: background-size cubic-bezier(0.1, 0.5, 0.5, 1) 0.5s;
}
@media (max-width: 767px) {
  .our-mission .our-mission-wrapper h2, .our-story .our-mission-wrapper h2, .why-choose .our-mission-wrapper h2 {
    line-height: 2.5rem;
    margin-top: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .our-mission .our-mission-wrapper h2, .our-story .our-mission-wrapper h2, .why-choose .our-mission-wrapper h2 {
    line-height: 1rem;
  }
}
.our-mission .our-mission-wrapper h2 span, .our-story .our-mission-wrapper h2 span, .why-choose .our-mission-wrapper h2 span {
  position: relative;
  z-index: 1;
  color: #000000;
}
.our-mission .our-mission-wrapper h2 span::after, .our-story .our-mission-wrapper h2 span::after, .why-choose .our-mission-wrapper h2 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.25em;
  background-color: #A5D206;
  z-index: -1;
  width: 4em;
}
.our-mission .our-mission-wrapper p, .our-story .our-mission-wrapper p, .why-choose .our-mission-wrapper p {
  margin-top: 1.5rem;
}
.our-mission .our-mission-image-wrapper, .our-story .our-mission-image-wrapper, .why-choose .our-mission-image-wrapper {
  align-items: center;
  display: grid;
  gap: clamp(30px, 2vw, 2vw);
  padding-top: 2em;
}
@media (min-width: 768px) {
  .our-mission .our-mission-image-wrapper, .our-story .our-mission-image-wrapper, .why-choose .our-mission-image-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "left-image right-image";
  }
}
.our-mission .our-mission-image-wrapper .image-left-wrapper, .our-story .our-mission-image-wrapper .image-left-wrapper, .why-choose .our-mission-image-wrapper .image-left-wrapper {
  position: relative;
}
@media (max-width: 767px) {
  .our-mission .our-mission-image-wrapper .image-left-wrapper, .our-story .our-mission-image-wrapper .image-left-wrapper, .why-choose .our-mission-image-wrapper .image-left-wrapper {
    order: 2;
  }
}
.our-mission .our-mission-image-wrapper .image-left-wrapper img, .our-story .our-mission-image-wrapper .image-left-wrapper img, .why-choose .our-mission-image-wrapper .image-left-wrapper img {
  aspect-ratio: 315/284;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
  width: 100%;
}
.our-mission .our-mission-image-wrapper .image-left-wrapper .mission-image-anim-line, .our-story .our-mission-image-wrapper .image-left-wrapper .mission-image-anim-line, .why-choose .our-mission-image-wrapper .image-left-wrapper .mission-image-anim-line {
  content: "";
  width: 10px;
  height: 25%;
  position: absolute;
  left: -7.5%;
  bottom: -10%;
  background-color: #A5D206;
}
.our-mission .our-mission-image-wrapper .image-left-wrapper .mission-image-anim-1, .our-story .our-mission-image-wrapper .image-left-wrapper .mission-image-anim-1, .why-choose .our-mission-image-wrapper .image-left-wrapper .mission-image-anim-1 {
  position: absolute;
  bottom: -25%;
  left: 20%;
  width: 130px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .our-mission .our-mission-image-wrapper .image-left-wrapper .mission-image-anim-1, .our-story .our-mission-image-wrapper .image-left-wrapper .mission-image-anim-1, .why-choose .our-mission-image-wrapper .image-left-wrapper .mission-image-anim-1 {
    width: 80px;
    bottom: -10%;
  }
}
.our-mission .our-mission-image-wrapper .image-right-wrapper, .our-story .our-mission-image-wrapper .image-right-wrapper, .why-choose .our-mission-image-wrapper .image-right-wrapper {
  position: relative;
}
@media (max-width: 767px) {
  .our-mission .our-mission-image-wrapper .image-right-wrapper, .our-story .our-mission-image-wrapper .image-right-wrapper, .why-choose .our-mission-image-wrapper .image-right-wrapper {
    order: 1;
  }
}
.our-mission .our-mission-image-wrapper .image-right-wrapper .mission-image-anim-line-2, .our-story .our-mission-image-wrapper .image-right-wrapper .mission-image-anim-line-2, .why-choose .our-mission-image-wrapper .image-right-wrapper .mission-image-anim-line-2 {
  content: "";
  width: 10px;
  height: 25%;
  position: absolute;
  right: -7.5%;
  top: -10%;
  background-color: #A5D206;
}
.our-mission .our-mission-image-wrapper .image-right-wrapper .mission-image-anim-2, .our-story .our-mission-image-wrapper .image-right-wrapper .mission-image-anim-2, .why-choose .our-mission-image-wrapper .image-right-wrapper .mission-image-anim-2 {
  position: absolute;
  top: -10%;
  right: 5%;
  width: 100px;
}
.our-mission img, .our-story img, .why-choose img {
  border-radius: 30px;
}

.our-story .img-wrapper, .why-choose .img-wrapper {
  position: relative;
}
.our-story .img-wrapper::before, .why-choose .img-wrapper::before {
  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) {
  .our-story .img-wrapper::before, .why-choose .img-wrapper::before {
    right: -9px;
    top: -9px;
    width: 200px;
    height: 200px;
  }
}
.our-story .text-wrapper-right, .why-choose .text-wrapper-right {
  position: relative;
}
.our-story .text-wrapper-right .choose-image-anim-line, .why-choose .text-wrapper-right .choose-image-anim-line {
  content: "";
  width: 10px;
  height: 25%;
  position: absolute;
  right: -7.5%;
  top: 70%;
  background-color: #A5D206;
}

@media (max-width: 767px) {
  .why-choose {
    padding-bottom: 0;
  }
}
.why-choose ul li span {
  font-family: "noto-serif";
  display: inline-block;
  margin-left: 4px;
}

.blog-section {
  padding: 7vh 0 8vh;
}
@media (max-width: 767px) {
  .blog-section {
    padding: 0 0 4vh;
  }
}

p {
  white-space: normal;
}/*# sourceMappingURL=about.css.map */