@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "black";
  src: url("./fonts/vag-bold.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* Color Variables */
.whiteClr {
  color: #fff !important;
}

.greenClr {
  color: #B4BD48 !important;
}

.brownClr {
  color: #771701 !important;
}

p {
  margin-bottom: 10px;
}

.pr {
  position: relative;
}

.pd10 {
  padding-top: 100px;
}

/* Font Variables */
body.active section {
  filter: blur(10px);
}

section {
  padding: 60px 0px;
}

.scndFnt {
  font-family: "black", sans-serif;
}

.row09 {
  display: flex;
}
@media (max-width: 768px) {
  .row09 {
    flex-direction: column;
  }
}
.row09 .lft_cntnt {
  margin-top: auto;
  margin-bottom: auto;
}
@media (max-width: 768px) {
  .row09 .lft_cntnt {
    width: 100%;
  }
}
.row09 .rgt_cntnt {
  margin-top: auto;
  margin-bottom: auto;
}
@media (max-width: 768px) {
  .row09 .rgt_cntnt {
    width: 100%;
  }
}

.kn-btn {
  margin-top: 30px;
}
.kn-btn a {
  margin-top: 30px;
  background-color: #fff;
  color: #F2252C;
  padding: 10px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  border: 1px solid #fff;
}
.kn-btn a:hover {
  color: #fff;
  background: transparent;
}

/* Global Styles */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
}

/* Container */
.container {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
}

/* Font Sizes */
/* Header */
header {
  padding: 10px 0;
  background-color: #fff6d8;
  transition: 0.3s ease-in-out;
  position: relative;
  z-index: 999;
}
header.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 5px 0px;
  z-index: 999;
}
header .nav {
  display: flex;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
}
header .nav .logo {
  width: 180px;
}
header .nav .logo img {
  width: 100%;
  height: auto;
}
header .nav .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
header .nav .nav-links .nav-items {
  display: flex;
  margin: 0 20px;
  gap: 30px;
}
header .nav .nav-links .nav-items a {
  color: #771701;
  font-weight: 500;
  position: relative;
}
header .nav .nav-links .nav-items a::before {
  position: absolute;
  content: "";
  background-color: #F2252C;
  width: 7px;
  height: 7px;
  top: 6px;
  left: -12px;
  border-radius: 50%;
  display: none;
}
header .nav .nav-links .nav-items a.active {
  color: #FFC000;
}
header .nav .nav-links .nav-items a.active::before {
  display: block;
}
header .nav .nv-btn {
  display: flex;
  align-items: center;
  padding: 3px 3px 4px 20px;
  border-radius: 50px;
  background-color: #F2252C;
}
header .nav .nv-btn a {
  gap: 13px;
  display: flex;
  align-items: center;
  color: #fff;
}
header .nav .nv-btn img {
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  cursor: pointer;
}
header .nav .nv-btn:hover img {
  transform: rotate(45deg);
}
header .insdk {
  display: none;
}
header .hamburger {
  display: none;
}

.lef_ml {
  position: absolute;
  top: 33%;
  z-index: 99;
  transform: rotate(271deg);
  left: -31px;
}
.lef_ml a {
  color: #771701;
  font-size: 13px;
  letter-spacing: 1px;
  font-family: "black", sans-serif;
  font-weight: 600;
  transition: 0.3s all;
}
.lef_ml a:hover {
  color: #F2252C;
}

.srcldn {
  position: absolute;
  bottom: 210px;
  left: 0px;
  z-index: 2;
  transform: rotate(271deg);
}
.srcldn button {
  all: unset;
  color: #771701;
  font-size: 11px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
}
.srcldn button::after {
  pointer-events: none;
  position: absolute;
  content: "";
  background: #771701;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  left: -20px;
  top: 2px;
  animation: slide 3s ease-in-out infinite;
}
.srcldn button::before {
  pointer-events: none;
  position: absolute;
  content: "";
  width: 2px;
  height: 55px;
  left: -40px;
  background-color: #771701;
  transform: rotate(90deg);
  top: -18px;
}

@keyframes slide {
  0% {
    left: -20px;
  }
  50% {
    left: -70px;
  }
  100% {
    left: -20px;
  }
}
/* Header */
/* Footer */
footer {
  background-color: #F2252C;
  padding: 60px 0 30px;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  /* Footer Column 1 */
  /* Footer Column 2 */
  /* Footer Column 3 */
}
footer h3 {
  font-weight: 500;
}
footer a {
  color: #fff;
  font-size: 12px;
}
footer a:hover {
  color: #F49E2D;
}
footer .ftr-col1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #fff;
  padding: 30px 0;
}
footer .ftr-col1 .ftr-h1 {
  font-size: 50px;
  color: #fff;
  font-weight: 500;
}
footer .ftr-col1 .ftr-ml {
  width: 50%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 0;
}
footer .ftr-col1 .ftr-ml input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 10px;
  color: #fff;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}
footer .ftr-col1 .ftr-ml input:focus {
  outline: none;
}
footer .ftr-col1 .ftr-ml input::placeholder {
  color: #fff;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}
footer .ftr-col1 .ftr-ml button {
  all: unset;
  cursor: pointer;
}
footer .ftr-col1 .ftr-ml button img {
  width: 50px;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
footer .ftr-col1 .ftr-ml button:hover img {
  transform: rotate(45deg);
}
footer .ftr-col2 {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2078431373);
  display: flex;
  justify-content: space-between;
}
footer .ftr-col2 h3 {
  color: #fff;
}
footer .ftr-col2 .qck-lnks li {
  padding-top: 10px;
}
footer .ftr-col2 .md-lnks h3 {
  padding-bottom: 10px;
}
footer .ftr-col2 .md-lnks .clt {
  padding-bottom: 20px;
}
footer .ftr-col2 .soclink {
  margin-top: 20px;
}
footer .ftr-col2 .soclink ul {
  display: flex;
  gap: 10px;
}
footer .ftr-col2 .soclink ul img {
  width: 100%;
  transition: 0.3s ease-in-out;
}
footer .ftr-col2 .soclink ul img:hover {
  width: 90%;
}
footer .ftr-col3 {
  border-top: 1px solid rgba(255, 255, 255, 0.2078431373);
  padding: 30px 0 0;
  display: flex;
  justify-content: space-between;
}
footer .ftr-col3 p {
  font-size: 12px;
  color: #fff;
}
footer .ftr-col3 .prv {
  display: flex;
  gap: 30px;
}

/*---Footer---*/
/*---Homepage---*/
.dts-bg {
  position: relative;
  padding-bottom: 0px;
}
.dts-bg::before {
  position: absolute;
  content: "";
  background: #FA512A;
  width: 93%;
  height: 100%;
  border-radius: 80px 0 0;
  top: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .dts-bg::before {
    width: 100%;
  }
}
.dts-bg .row09 {
  display: flex;
}
.dts-bg .row09 .lft_cntnt {
  margin: auto;
}
.dts-bg .row09 .lft_cntnt .mn-hd {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 3vw;
}
.dts-bg .row09 .lft_cntnt .mustardClr {
  font-size: 6vw;
  font-family: "black", sans-serif;
  color: #FFC000;
}
.dts-bg .row09 .lft_cntnt .whiteClr {
  font-size: 2vw;
  font-family: "black", sans-serif;
}
.dts-bg .row09 .rgt_cntnt {
  width: 50%;
  margin-left: auto;
  line-height: 0;
}
@media (max-width: 768px) {
  .dts-bg .row09 .rgt_cntnt {
    width: 100%;
  }
}
.dts-bg .row09 .rgt_cntnt img {
  width: 90%;
  height: auto;
}
@media (max-width: 768px) {
  .dts-bg .row09 .rgt_cntnt img {
    width: 100%;
  }
}

/*---Sec-2---*/
.sec-2 {
  padding: 50px 0px 30px;
  position: relative;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
}
.sec-2::before {
  position: absolute;
  content: "";
  background: #F8DC4A;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
}
.sec-2 .animate-l {
  transform: scale(0);
  transition: 0.5s ease-in-out;
}
.sec-2 .animate-r {
  transition: 0.5s ease-in-out;
  transform: translateX(100%);
  opacity: 0;
}
.sec-2.show-animation .animate-r {
  transform: translateX(0);
  opacity: 1;
}
.sec-2.show-animation .animate-l {
  transform: scale(1);
}
.sec-2 .up-txt {
  display: flex;
  flex-direction: column;
  margin-bottom: -60px;
  overflow: hidden;
}
.sec-2 .up-txt span {
  text-transform: uppercase;
  color: #fff;
  font-size: 2.3em;
  font-weight: 600;
  line-height: 1;
}
.sec-2 .up-txt span:nth-child(1) {
  opacity: 1;
}
.sec-2 .up-txt span:nth-child(2) {
  opacity: 1;
}
.sec-2 .up-txt span:nth-child(3) {
  opacity: 0.7;
}
.sec-2 .up-txt span:nth-child(4) {
  opacity: 0.5;
}
.sec-2 .up-txt span:nth-child(5) {
  opacity: 0.3;
}
.sec-2 .lft_cntnt {
  margin: auto;
}
.sec-2 .lft_cntnt img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
.sec-2 .rgt_cntnt {
  margin: auto;
  width: 40%;
}
@media (max-width: 768px) {
  .sec-2 .rgt_cntnt {
    width: 100%;
  }
}
.sec-2 .rgt_cntnt h2 {
  color: #771701;
  font-size: 45px;
}
.sec-2 .rgt_cntnt h3 {
  color: #fff;
  font-size: 35px;
  font-family: "black", sans-serif;
}
.sec-2 .rgt_cntnt p {
  color: #000;
}

/*---Sec-2---*/
/*---Sec-3---*/
.sec-3 {
  position: relative;
  overflow: hidden;
}
.sec-3::before {
  position: absolute;
  content: "";
  background: #F49E2D;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.sec-3 .animate-l {
  transform: translateY(100%);
  transition: 1s ease-in-out;
  opacity: 0;
}
.sec-3 .animate-r {
  transition: 1s ease-in-out;
  transform: translateX(100%);
  opacity: 0;
}
.sec-3.show-animation .animate-r {
  transform: translateX(0);
  opacity: 1;
}
.sec-3.show-animation .animate-l {
  opacity: 1;
  transform: translateY(0%);
}
.sec-3 .lft_cntnt {
  margin: auto;
  width: 50%;
}
.sec-3 .lft_cntnt h3 {
  font-size: 35px;
  color: #771701;
  font-family: "Montserrat", sans-serif;
}
.sec-3 .lft_cntnt span {
  font-size: 35px;
  font-family: "black", sans-serif;
  color: #fff;
}
.sec-3 .lft_cntnt h4 {
  color: #fff;
  font-family: "black", sans-serif;
  font-size: 25px;
  margin: 6px 0px;
}
.sec-3 .lft_cntnt p {
  font-size: 14px;
  margin-bottom: 6px;
}
.sec-3 .rgt_cntnt {
  width: 49%;
}
.sec-3 .rgt_cntnt img {
  width: 100%;
  height: auto;
}

/*---Sec-3---*/
/*---Sec-4---*/
.sec-4 {
  position: relative;
  z-index: 1;
  padding: 60px 0px;
  overflow: hidden;
}
.sec-4::before {
  position: absolute;
  content: "";
  background: #B4BD48;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}
.sec-4 .anim-up {
  transform: translateX(-100%);
  transition-delay: calc(0.2s * var(--i));
  transition: 1s;
  opacity: 0;
}
.sec-4.show-animation .anim-up {
  opacity: 1;
  transform: translateX(0);
}
.sec-4 .ltsupd {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .sec-4 .ltsupd {
    flex-direction: column;
    align-items: start;
  }
}
.sec-4 .ltsupd h3 {
  font-size: 35px;
  margin-bottom: 6px;
}
.sec-4 .ltsupd a {
  background-color: #fff;
  color: #F2252C;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.sec-4 .ltsupd a:hover {
  background-color: #F49E2D;
  color: #fff;
}
.sec-4 .crds {
  padding: 30px 0px 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.sec-4 .crds .mn-crds {
  flex: 30%;
  position: relative;
  border-radius: 20px;
  padding: 10px 10px 30px 10px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .sec-4 .crds .mn-crds {
    flex: 100%;
    margin-top: 15px;
  }
}
.sec-4 .crds .mn-crds .crd-img img {
  width: 100%;
  height: 100%;
}
.sec-4 .crds .mn-crds .tags {
  position: absolute;
  background-color: #F2252C;
  padding: 3px 10px;
  color: #fff;
  font-size: 10px;
  top: 20px;
  left: 20px;
  text-transform: capitalize;
  border-radius: 50px;
}
.sec-4 .crds .mn-crds .crd-dtls {
  padding: 0px 20px;
}
.sec-4 .crds .mn-crds .crd-dtls h3 {
  color: #F2252C;
  font-size: 25px;
  font-weight: 500;
  margin-top: 10px;
}
.sec-4 .crds .mn-crds .crd-dtls p {
  font-size: 13px;
  margin: 6px 0px;
}

/*---Sec-4---*/
/*---Sec-5---*/
.sec-5 {
  position: relative;
  z-index: 1;
  padding: 100px 0px;
  display: flex;
  overflow: hidden;
}
.sec-5::after {
  position: fixed;
  content: "";
  background: url("../img/bg.webp") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.sec-5 .row09 {
  justify-content: space-between;
  align-items: center;
}
.sec-5 .row09 .lft_cntnt h3 {
  font-size: 60px;
  color: #771701;
}
.sec-5 .row09 .lft_cntnt {
  width: 70%;
}
@media (max-width: 768px) {
  .sec-5 .row09 .lft_cntnt {
    width: 100%;
  }
}
.sec-5 .row09 .rgt_cntnt {
  width: 15%;
}
@media (max-width: 768px) {
  .sec-5 .row09 .rgt_cntnt {
    width: 100%;
  }
}
.sec-5 .row09 .rgt_cntnt .snd-msg a {
  color: #F2252C;
  border: 1px solid #F2252C;
  padding: 10px 20px;
  box-shadow: 0px 5px 1px #FFC000;
  background-color: #F2252C;
  color: #fff;
  transition: 0.3s all;
  border-radius: 20px;
}
.sec-5 .row09 .rgt_cntnt .snd-msg a:hover {
  box-shadow: none;
}
@media (max-width: 768px) {
  .sec-5 .row09 .rgt_cntnt .snd-msg {
    margin-top: 20px;
  }
}
.sec-5 span:nth-child(1) {
  position: absolute;
  left: -40px;
  top: 30%;
  z-index: -1;
}
@media (max-width: 768px) {
  .sec-5 span:nth-child(1) {
    left: -85px;
  }
}
.sec-5 span:nth-child(2) {
  position: absolute;
  top: -10%;
  left: 30%;
}
.sec-5 span:nth-child(3) {
  position: absolute;
  bottom: 0;
  left: 30%;
  line-height: 0;
}
@media (max-width: 768px) {
  .sec-5 span:nth-child(3) {
    display: none;
  }
}
.sec-5 span:nth-child(4) {
  position: absolute;
  top: 10%;
  left: 50%;
}
@media (max-width: 768px) {
  .sec-5 span:nth-child(4) {
    display: none;
  }
}
.sec-5 span:nth-child(5) {
  position: absolute;
  bottom: 0;
  right: 30%;
  line-height: 0;
}
@media (max-width: 768px) {
  .sec-5 span:nth-child(5) {
    bottom: -30px;
  }
}
.sec-5 span:nth-child(6) {
  position: absolute;
  bottom: 10%;
  right: 10%;
  line-height: 0;
  width: 70px;
}
@media (max-width: 768px) {
  .sec-5 span:nth-child(6) {
    right: -10px;
    bottom: 100px;
  }
}
.sec-5 span img {
  width: 100%;
  height: auto;
}

/*---Sec-5---*/
/*---Homepage---*/
/*---Benefits---*/
.bene_sec1 {
  position: relative;
}
.bene_sec1::before {
  position: absolute;
  content: "";
  background: #F49E2D;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.bene_sec1 h1 {
  font-size: 50px;
  letter-spacing: 1px;
  color: #fff;
  font-family: "black", sans-serif;
}
.bene_sec1 h3 {
  font-size: 35px;
  margin: 5px 0px;
  font-family: "black", sans-serif;
  letter-spacing: 1px;
  color: #771701;
}
.bene_sec1 .lft_cntnt {
  width: 50%;
}
.bene_sec1 .rgt_cntnt {
  margin-left: auto;
  width: 49%;
}
.bene_sec1 .rgt_cntnt img {
  width: 100%;
  height: auto;
}

.bene_sec2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.bene_sec2::before {
  position: absolute;
  content: "";
  background: #B4BD48;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
}
.bene_sec2.show-animation .animate-l {
  transform: rotate(0);
  opacity: 1;
}
.bene_sec2.show-animation .animate-pop {
  opacity: 1;
  transform: translateY(0);
}
.bene_sec2 .animate-l {
  transition-delay: calc(1s * var(--i));
  transition: 1s ease-in-out;
  transform: rotate(45deg);
  opacity: 0;
}
.bene_sec2 .animate-pop {
  transition-delay: calc(0.3s * var(--i));
  transition: 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(100%);
}
.bene_sec2 .benef_crd .row09 {
  align-items: center;
  background-color: #fff;
  margin: 15px 0px;
  padding: 25px 30px;
  border-radius: 20px;
  box-shadow: 12px 14px 20px 0px rgba(0, 0, 0, 0.1607843137);
}
.bene_sec2 .benef_crd .row09.pdtb {
  padding: 50px 30px;
}
.bene_sec2 .benef_crd .row09 .crd-nmber h3 {
  font-size: 100px;
  color: #F8DC4A;
  font-family: "black", sans-serif;
}
.bene_sec2 .benef_crd .row09 .crd-dtls {
  width: 84%;
  margin-left: auto;
}
.bene_sec2 .benef_crd .row09 .crd-dtls h3 {
  font-size: 40px;
  font-family: "black", sans-serif;
  color: #B02D1B;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.bene_sec2 .benef_crd .row09 .crd-dtls p {
  width: 100%;
}
.bene_sec2 .benef_crd .animate-pop {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.bene_sec2 .benef_crd .animate-pop.show {
  opacity: 1;
  transform: translateY(0);
}

/*---Benefits---*/
/*---About---*/
.abt_sec {
  position: relative;
}
.abt_sec::before {
  position: absolute;
  content: "";
  background: #F8DC4A;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.abt_sec .dtln {
  position: relative;
  border: 7px dotted #771701;
  border-bottom: 0px;
  top: -16px;
}
.abt_sec .swt-jrny {
  text-align: center;
}
.abt_sec .swt-jrny h1 {
  font-size: 60px;
  font-family: "black", sans-serif;
  color: #771701;
}
.abt_sec .swt-jrny h3 {
  font-size: 30px;
  font-family: "black", sans-serif;
  color: #F2252C;
}
.abt_sec .swt-jrny p {
  width: 80%;
  margin: 6px auto;
}
.abt_sec .milestone button {
  background: url("../img/icons/slick-btn.svg") no-repeat;
  background-size: cover;
  font-size: 0;
  width: 40px;
  height: 40px;
  box-shadow: none;
  border: none;
  position: absolute;
  cursor: pointer;
}
.abt_sec .milestone button.slick-prev {
  transform: rotate(180deg);
  top: 70%;
  left: 30%;
  z-index: 1;
}
.abt_sec .milestone button.slick-next {
  top: 70%;
  right: 60%;
}
.abt_sec .timeline {
  margin-top: 40px;
}
.abt_sec .timeline .timeline__nav {
  position: relative;
}
.abt_sec .timeline .timeline__nav ul {
  display: flex;
  justify-content: space-between;
  margin: auto;
  position: relative;
  align-items: center;
  z-index: 2;
}
.abt_sec .timeline .timeline__nav ul li {
  position: relative;
}
.abt_sec .timeline .timeline__nav ul li a {
  position: relative;
  background: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: block;
}
.abt_sec .timeline .timeline__nav ul li a::before {
  position: absolute;
  content: "";
  background: #F2252C;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  inset: 0;
  margin: auto;
  transform: scale(0);
  transition: 0.3s all;
}
.abt_sec .timeline .timeline__nav ul li a.active::before {
  transform: scale(1);
}
.abt_sec .timeline .main-content {
  display: flex;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}
.abt_sec .timeline .main-content .content-txt {
  width: 40%;
  text-align: right;
  margin: auto;
}
.abt_sec .timeline .main-content .content-txt h3 {
  color: #771701;
  font-size: 30px;
}
@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}
.abt_sec .timeline .main-content .zoomInImage {
  animation-name: zoomInImage;
}
.abt_sec .timeline .main-content .content-img {
  width: 49%;
  background: #fff;
  padding: 10px;
  border-radius: 25px;
}
.abt_sec .timeline .main-content img {
  padding: 0;
  border-radius: 20px;
  width: 100%;
  height: auto;
}

.our_story {
  position: relative;
  overflow: hidden;
}
.our_story::before {
  position: absolute;
  content: "";
  background: #F49E2D;
  background-size: cover;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.our_story .animate-r {
  transform: scale(0);
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.our_story.show-animation .animate-r {
  transform: scale(1);
  opacity: 1;
}
.our_story.show-animation .animate-l {
  transform: translateX(0);
  opacity: 1;
}
.our_story .animate-l {
  opacity: 0;
  transition: 0.5s ease-in-out;
  transition-delay: calc(0.3s * var(--i));
  transform: translateX(200%);
}
.our_story .stry_img {
  background: #fff;
  border-radius: 20px;
  padding: 10px;
}
.our_story .stry_img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.our_story .lft_cntnt {
  width: 40%;
  margin: auto;
}
.our_story .rgt_cntn {
  width: 40%;
  margin: 0 auto;
}
.our_story .rgt_cntn h2 {
  color: #771701;
  font-family: "black", sans-serif;
  font-size: 40px;
}
.our_story .rgt_cntn h3 {
  color: #fff;
  font-family: "black", sans-serif;
  font-size: 30px;
  margin: 5px 0px;
}

.agrocel_sec {
  text-align: center;
  position: relative;
  padding: 50px 0px;
  overflow: hidden;
}
.agrocel_sec::before {
  position: absolute;
  content: "";
  background: #B4BD48;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  left: 0;
  top: 0;
}
.agrocel_sec.show-animation .animate-top {
  transform: translateY(0);
  opacity: 1;
}
.agrocel_sec.show-animation .anim-dwn {
  transform: translateY(0);
  opacity: 1;
}
.agrocel_sec .animate-top {
  transition: 0.5s ease-in-out;
  transform: translateY(-100%);
  opacity: 0;
}
.agrocel_sec .anim-dwn {
  transition-delay: calc(0.8s * var(--i));
  transition: 0.8s ease-in-out;
  transform: translateY(-100%);
  opacity: 0;
}
.agrocel_sec .mn-hdng h3 {
  color: #fff;
  font-family: "black", sans-serif;
  font-size: 40px;
  letter-spacing: 1px;
}
.agrocel_sec .mn-hdng h4 {
  font-family: "black", sans-serif;
  font-size: 30px;
  color: #F2252C;
  letter-spacing: 1px;
}
.agrocel_sec .wbg-cnt {
  background-color: #fff;
  padding: 50px 20px;
  border-radius: 20px;
  margin-top: 30px;
}
.agrocel_sec .wbg-cnt .wb-txt {
  width: 70%;
  margin: 30px auto;
}

/*---About---*/
/*---Privacy---*/
.privacy .prhd {
  position: relative;
  text-align: center;
  font-family: "black", sans-serif;
  font-size: 5em;
  color: #771701;
  margin-bottom: 50px;
  z-index: 1;
}
.privacy .prhd::before {
  z-index: none;
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  bottom: 0;
  right: 0;
  background: #FA512A;
}
.privacy a {
  color: #F2252C;
  font-weight: 600;
}
.privacy h2 {
  font-family: "black", sans-serif;
  font-size: 1.3em;
  margin-bottom: 10px;
}
.privacy ul {
  padding: 0px 10px;
}
.privacy ul li {
  padding-bottom: 8px;
}

/*---Privacy---*/
/*---404---*/
.ntfnd {
  background: #fff6d8;
  height: 100vh;
  position: relative;
}
@media (max-width: 768px) {
  .ntfnd {
    height: auto;
  }
}
.ntfnd .name-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ntfnd .name-container h1 {
  font-size: 250px;
  color: #F2252C;
  font-family: "black", sans-serif;
}
@media (max-width: 768px) {
  .ntfnd .name-container h1 {
    font-size: 150px;
  }
}
.ntfnd .name-container span {
  margin: 0 20px;
  transform: rotate(360deg);
}
.ntfnd .name-container span img {
  width: 100%;
}
@media (max-width: 768px) {
  .ntfnd .name-container span {
    width: 100px;
  }
}
.ntfnd .hme {
  text-align: center;
}
.ntfnd .hme p {
  font-size: 30px;
  font-family: "black", sans-serif;
  margin-bottom: 25px;
  color: #771701;
}
.ntfnd .hme a {
  margin-top: 40px;
  padding: 10px 20px;
  background-color: #F2252C;
  color: #fff;
  border-radius: 20px;
}
.ntfnd .hme a:hover {
  background: none;
  border: 1px solid #F2252C;
  color: #F2252C;
}

/*---404---*/
/*---Responsive---*/
@media (max-width: 768px) {
  header .nav .logo {
    width: 150px;
  }
  header .nav .nav-links {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    width: 100%;
  }
  header .nav .nav-links .nav-items a::before {
    content: none;
  }
  .nav-list a.active {
    color: #FFC000;
    border-bottom: 1px solid;
  }
  .nav-list a.active::before {
    display: block;
  }
  header .nav .nav-links .nav-items {
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    overflow: auto;
    text-align: center;
    top: -100px;
    position: absolute;
    opacity: 0;
    transition: 0.6s ease-in-out;
    border-radius: 8px;
    gap: 10px;
    padding: 10px 0px;
  }
  header .nav .nav-links .nav-items .nav-list {
    margin: 5px 0px;
  }
  header .nav .nv-btn {
    border-radius: 0px;
    display: block;
    margin: auto 0;
    padding: 10px;
    background: none;
    position: absolute;
    right: 23%;
    bottom: -8px;
    line-height: 0;
  }
  header .nav .nv-btn a {
    font-size: 0;
  }
  header .nav .nv-btn img {
    display: none;
  }
  header .nav .nv-btn .insdk {
    display: block;
  }
  .row09 .lft_cntnt {
    width: 100%;
  }
  .row09 .rgt_cntnt {
    width: 100%;
  }
  header .hamburger {
    display: block;
    position: relative;
    height: 40px;
    cursor: pointer;
    right: 10px;
    top: 5px;
    width: 9%;
  }
  header .hamburger span {
    width: 100%;
    height: 2px;
    display: block;
    background-color: #F2252C;
    margin: 8px 10px;
  }
  header .hamburger span,
  header .hamburger span::before,
  header .hamburger span::after {
    background: #FFC000;
    content: "";
    position: absolute;
    width: 33px;
    height: 3px;
    margin-top: 13px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(deg);
    transform: rotate(180deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  header .hamburger span::before {
    margin-top: -10px;
    background-color: #F2252C;
  }
  header .hamburger span::after {
    margin-top: 10px;
    background-color: #B4BD48;
  }
  header .hamburger.active span {
    background: transparent;
  }
  header .hamburger.active span::before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header .hamburger.active span::after {
    transform: rotate(-45deg);
    margin-top: 0;
  }
  header .nav-links .nav-items.active {
    opacity: 1;
    top: 60px;
  }
  .lef_ml {
    display: none;
  }
  .srcldn {
    display: none;
  }
  .ftr-col1 {
    flex-direction: column;
  }
  footer .ftr-col1 .ftr-ml {
    width: 100%;
  }
  footer .ftr-col1 .ftr-h1 {
    font-size: 30px;
  }
  footer .ftr-col1 .ftr-ml button img {
    width: 35px;
  }
  footer .ftr-col2 {
    flex-direction: column;
  }
  footer .ftr-col2 .qck-lnks {
    margin: 20px 0px;
  }
  footer .ftr-col2 .md-lnks .clt {
    padding-bottom: 10px;
  }
  footer .ftr-col3 {
    flex-direction: column;
    align-items: center;
  }
  footer .ftr-col3 .prv {
    margin: 7px 0px;
  }
  footer .som {
    margin-top: 20px;
  }
  footer .som li {
    width: 30px;
  }
  .dts-bg .row09 .lft_cntnt .mn-hd {
    font-size: 20px;
  }
  .dts-bg .row09 .lft_cntnt p {
    margin: 0;
    font-size: 30px !important;
  }
  .sec-2 .up-txt span {
    font-size: 1.5em;
  }
  .sec-2 .rgt_cntnt h2 {
    font-size: 30px;
  }
  .sec-2 .rgt_cntnt h3 {
    font-size: 20px;
  }
  .bene_sec1 {
    padding-top: 100px;
  }
  .bene_sec1 h1 {
    font-size: 30px;
  }
  .bene_sec2 .benef_crd .row09 {
    padding: 10px;
  }
  .bene_sec2 .benef_crd .row09 .crd-dtls {
    margin: 0;
  }
  .milestone.slick-slider {
    margin-bottom: 50px;
  }
  .abt_sec {
    padding-top: 100px;
  }
  .abt_sec .dtln {
    top: -10px;
    border: 5px dotted #771701;
    border-bottom: 0px;
  }
  .abt_sec .swt-jrny h1 {
    font-size: 30px;
  }
  .abt_sec .swt-jrny p {
    width: 100%;
  }
  .abt_sec .timeline .main-content {
    flex-direction: column-reverse;
  }
  .abt_sec .timeline .main-content .content-img {
    width: 100%;
  }
  .abt_sec .timeline .main-content .content-txt {
    width: 100%;
  }
  .abt_sec .timeline .timeline__nav ul li a {
    width: 15px;
    height: 15px;
  }
  .abt_sec .timeline .timeline__nav ul li a::before {
    width: 9px;
    height: 9px;
  }
  .abt_sec .dtln::before {
    height: 5px;
    top: -10px;
  }
  .abt_sec .milestone button.slick-next {
    right: 30%;
    top: 100%;
  }
  .abt_sec .milestone button.slick-prev {
    top: 100%;
    left: 30%;
  }
  .our_story .rgt_cntn {
    width: 100%;
    margin-top: 20px;
  }
  .agrocel_sec .mn-hdng h3 {
    font-size: 30px;
  }
  .agrocel_sec .mn-hdng h4 {
    font-size: 20px;
  }
  .agrocel_sec .wbg-cnt img {
    width: 100%;
    height: auto;
  }
  .agrocel_sec .wbg-cnt .wb-txt {
    width: 100%;
    text-align: left;
  }
}
/*---Responsive---*/

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