:root {
  --header-height: 65px;
  --clr-green: #007042;
  --clr-cream: #c9a895;
  --clr-white: #fff;
  --clr-black: #0d0d0d;
  --button-fill: #007042;
  --button-line: #fff;
  --fs128: clamp(42px, 6.67vw, 128px);
  --fs108: clamp(36px, 5.625vw, 108px);
  --fs96: clamp(36px, 5vw, 96px);
  --fs88: clamp(36px, 4.17vw, 88px);
  --fs80: clamp(34px, 4.17vw, 80px);
  --fs72: clamp(32px, 3.75vw, 72px);
  --fs64: clamp(26px, 3.33vw, 64px);
  --fs56: clamp(26px, 3.33vw, 56px);
  --fs48: clamp(24px, 2.5vw, 48px);
  --fs46: clamp(24px, 2.5vw, 46px);
  --fs42: clamp(24px, 2.19vw, 42px);
  --fs40: clamp(22px, 2.08vw, 40px);
  --fs36: clamp(20px, 1.88vw, 36px);
  --fs34: clamp(20px, 1.72vw, 34px);
  --fs32: clamp(20px, 1.67vw, 32px);
  --fs28: clamp(18px, 1.46vw, 28px);
  --fs24: clamp(16px, 1.25vw, 24px);
  --fs22: clamp(16px, 1.15vw, 22px);
  --fs20: clamp(16px, 1.04vw, 20px);
  --fs18: clamp(16px, 0.94vw, 18px);
  --fs16: 16px;
  --fs14: 14px;
  --br24: 24px;
  --br20: 20px;
  --br16: 16px;
  --spc4080: clamp(40px, 4.17vw, 80px);
  --spc4060: clamp(40px, 3.13vw, 60px);
  --spc40120: clamp(40px, 6.25vw, 120px);
}
.bg-green {
  background: var(--clr-green);
}
.sec-hdn {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
}
.sec-hdn p {
  color: #0d0d0d;
  font-size: var(--fs20);
  font-weight: 500;
  line-height: 1.5;
}
.sec-hdn p span {
  color: var(--button-fill);
}
.sec-hdn.center {
  max-width: 940px;
  margin: 0 auto 48px;
  text-align: center;
  align-items: center;
}
.sec-hdn.center.big {
  max-width: 1100px;
}
.sec-hdn.wrap {
  align-items: flex-end;
  flex-direction: row;
  gap: 68px;
  justify-content: space-between;
  max-width: 100%;
}
.sec-hdn.wrap .comm-sec-hdn {
  max-width: 760px;
  width: 100%;
}
.sec-hdn.wrap .comm-para,
.sec-hdn.wrap p {
  max-width: 700px;
  color: var(--clr-black);
  width: 100%;
}
.comm-page-hdn {
  color: var(--clr-green);
  font-size: var(--fs64);
  line-height: 1.1;
  font-family: "Chelsea Market";
  text-align: center;
  padding: var(--spc4060) 0;
}
.comm-sec-hdn {
  color: var(--clr-green);
  font-size: var(--fs48);
  line-height: 1.1;
  font-family: "Chelsea Market";
}
.comm-card-hdn {
  color: var(--clr-green);
  font-size: var(--fs32);
  line-height: 1.1;
  font-family: "Chelsea Market";
}
.comm-para p {
  color: var(--clr-black);
  font-size: var(--fs18);
  line-height: 1.5;
  margin-bottom: 16px;
}
.comm-para p:last-child {
  margin-bottom: 0;
}
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
 
=> Button 
=> Header 
=> Footer
=> Content
=> Animation

-------------------------------------------------------------------*/
/* Common Starts */
a {
  text-decoration: none;
}
/* Common Ends */
/*------------------------------------------------------------------
=> Button 
-------------------------------------------------------------------*/
.button {
  background: var(--button-fill);
  border: none;
  outline: none;
  border: 1px solid transparent;
  color: var(--clr-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  line-height: 46px;
  padding: 0 20px;
  border-radius: 32px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.button:hover {
  background: transparent;
  border: 1px solidvar(--button-fill);
  color: var(--button-fill);
}
.button.line {
  background: transparent;
  border: 1px solid var(--button-line);
  color: var(--button-line);
}
.button.line:hover {
  background: var(--button-line);
  border: 1px solid var(--button-line);
  color: var(--button-fill);
}
/*------------------------------------------------------------------
=> Header 
-------------------------------------------------------------------*/
.header {
  position: fixed;
  top: 10px;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 999;
}
.header .container {
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  overflow: hidden;
  padding: 0 24px;
}
.header-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 5px;
}
.logo img {
  width: 20px;
}
.logo p {
  font-size: 28px;
  color: var(--clr-green);
  font-family: "Chelsea Market";
}
/*------------------------------------------------------------------
=> Footer 
-------------------------------------------------------------------*/
.footer {
  background: var(--clr-green);
  padding: var(--spc4080) 0 0;
  position: relative;
  margin-top: 90px;
}
.footer .container {
  position: relative;
  z-index: 10;
}
.hidden-images {
  display: none;
}
.footer-bg {
  position: absolute;
  inset: 0;
  margin-bottom: 40px;
}
.footer-top-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-top-wrap p {
  font-size: var(--fs28);
  color: var(--clr-white);
  font-weight: 600;
  line-height: 1.5;
}
.social-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.social-wrap a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  overflow: hidden;
  border: 1px solid var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.social-wrap a:hover {
  background: var(--clr-cream);
  border: 1px solid var(--clr-cream);
}
.social-wrap img {
  object-fit: contain;
  width: 22px;
  height: 22px;
}
.foo-logo {
  width: 50px;
}
.foo-logo img {
  object-fit: contain;
}
.footer-link-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.footer-link-wrap a {
  color: var(--clr-white);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: var(--fs18);
}
.footer-link-wrap a:hover {
  color: var(--clr-cream);
}
.footer-btm-box {
  margin-top: 200px;
  background: var(--clr-green);
  z-index: 10;
  position: relative;
}
.footer-btm-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.footer-btm-wrap p {
  font-size: var(--fs16);
  color: var(--clr-white);
  font-weight: 600;
  line-height: 1.5;
}
.footer-btm-wrap a {
  color: var(--clr-cream);
  transition: all 0.3s ease;
  font-weight: 700;
}
.footer-btm-wrap a:hover {
  color: var(--clr-black);
}
/*------------------------------------------------------------------
=> Content 
-------------------------------------------------------------------*/
.content-body {
  color: var(--clr-black);
  margin-bottom: 30px;
}
.content-body img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--br20);
  overflow: hidden;
  margin-bottom: 24px;
}
.content-body h2 {
  font-weight: 700;
  font-size: var(--fs32);
  margin-bottom: 16px;
}
.content-body h3 {
  font-weight: 700;
  font-size: var(--fs28);
  margin-bottom: 16px;
}
.content-body h4 {
  font-weight: 700;
  font-size: var(--fs24);
  margin-bottom: 16px;
}
.content-body h5 {
  font-weight: 700;
  font-size: var(--fs20);
  margin-bottom: 16px;
}
.content-body h6 {
  font-weight: 500;
  font-size: var(--fs20);
  margin-bottom: 16px;
}
.content-body p {
  font-size: var(--fs20);
  line-height: 1.6;
  margin-bottom: 24px;
}
.content-body p a {
  color: var(--clr-green);
}
.content-body p a:hover {
  color: var(--clr-black);
}
.content-body p:last-child {
  margin-bottom: 0;
}
.content-body ul {
  margin-bottom: 26px;
  list-style: none;
}
.content-body ul:last-child {
  margin-bottom: 0;
}
.content-body ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 30px;
  font-size: var(--fs18);
  line-height: 1.6;
}
.content-body ul li p,
.content-body ul li a {
  margin-bottom: 0;
}
.content-body ul li a {
  color: var(--clr-green);
}
.content-body ul li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  display: block;
  top: 12px;
  left: 10px;
  background: var(--clr-green);
  border-radius: 100%;
  overflow: hidden;
}
.content-body ul li:last-child {
  margin-bottom: 0;
}
.content-body ol {
  margin-bottom: 26px;
}
.content-body ol:last-child {
  margin-bottom: 0;
}
.content-body ol li {
  position: relative;
  margin-bottom: 20px;
  margin-left: 30px;
  font-size: var(--fs18);
  line-height: 1.6;
}
.content-body ol li p,
.content-body ol li a {
  margin-bottom: 0;
}
.content-body ol li a {
  color: var(--clr-green);
}
.content-body ol li:last-child {
  margin-bottom: 0;
}
/*------------------------------------------------------------------
=> Animation 
-------------------------------------------------------------------*/
[data-anim] {
  opacity: 0;
  will-change: transform, opacity, filter;
}
[data-anim="blur"] {
  filter: blur(12px);
}
[data-anim="fade-up"] {
  transform: translateY(50px);
}
.text-focus-in {
  animation: text-focus-in 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
.fade-in-bottom {
  animation: fade-in-bottom 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@keyframes text-focus-in {
  to {
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media all and (max-width: 480px) {
  :root {
    --header-height: 60px;
  }
  .button {
    height: 42px;
    line-height: 42px;
  }
  .header {
    top: 0;
  }
  .header .container {
    border-radius: 0;
    padding: 0 15px;
    background: rgba(255, 255, 255, 0.35);
  }
  .foo-logo {
    width: 40px;
  }
  .social-wrap a {
    width: 32px;
    height: 32px;
  }
  .social-wrap img {
    width: 18px;
    height: 18px;
  }
  .footer-top-wrap {
    gap: 12px;
  }
}
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@font-face {
  font-family: 'Chelsea Market';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/chelseamarket/v14/BCawqZsHqfr89WNP_IApC8tzKBhl.ttf) format('truetype');
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v37/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkKEo18E.ttf) format('truetype');
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v37/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o18E.ttf) format('truetype');
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v37/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkM0o18E.ttf) format('truetype');
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v37/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkCEv18E.ttf) format('truetype');
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v37/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkBgv18E.ttf) format('truetype');
}
html,
body {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container {
  max-width: 1790px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.main-container {
  padding-top: var(--header-height);
}
.comm-section-wm {
  margin: var(--spc4080) 0;
  padding: var(--spc40120) 0;
  position: relative;
}
.comm-section {
  padding: var(--spc40120) 0;
  position: relative;
}
.t-cen {
  text-align: center;
}
.pt0 {
  padding-top: 0;
}
.pb0 {
  padding-bottom: 0;
}
.mt0 {
  margin-top: 0;
}
.mb0 {
  margin-bottom: 0;
}
.float-elem {
  position: absolute;
  z-index: 5;
  opacity: 0;
}
.wh {
  color: #fff;
}
.wh p {
  color: #fff;
}
.comm-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  user-select: none;
}
.comm-nav {
  width: 50px;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}
.comm-nav img {
  object-fit: contain;
}
.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
/* Home Page Starts */
.banner-sec {
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
}
.banner-sec .container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  height: 100%;
}
.banner-video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.banner-video::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
.banner-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-hdn {
  font-family: "Chelsea Market";
  font-size: var(--fs96);
  color: var(--clr-white);
  line-height: 1.2;
  text-align: center;
}
.banner-cont {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-direction: column;
}
.banner-cont p {
  font-size: var(--fs32);
  color: var(--clr-white);
  line-height: 1.6;
  text-align: center;
  font-weight: 600;
}
.banner-elem {
  width: 100%;
  height: 10px;
  top: 0;
  left: 0;
}
.hiw-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}
.hiw-left {
  max-width: 450px;
  width: 100%;
}
.hiw-cont-swiper .swiper-wrapper {
  flex-direction: column;
  gap: 20px;
}
.hiw-cont-box {
  border-radius: var(--br16);
  border: 1px dashed var(--clr-cream);
  padding: 14px;
  padding-right: 40px;
  position: relative;
  cursor: pointer;
}
.hiw-cont-box::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/arrow-right.svg) no-repeat center / contain;
  position: absolute;
  top: 16px;
  right: 14px;
  transition: all 0.3s ease;
}
.hiw-cont-box.active::after {
  transform: rotate(90deg);
}
.hiw-cont-box.active .hiw-panel {
  display: block;
}
.hiw-img-box {
  width: 300px;
  padding: 14px;
}
.hiw-img-swiper {
  width: 100%;
  height: 100%;
  border-radius: var(--br16);
  overflow: hidden;
  z-index: 6;
}
.hiw-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 9/16;
}
.hiw-img img {
  object-position: top;
}
.hiw-panel {
  padding-top: 16px;
  display: none;
}
.why-section {
  overflow: hidden;
}
.why-section .container {
  z-index: 6;
  position: relative;
}
.why-swiper {
  overflow: visible;
}
.why-swiper .swiper-wrapper {
  padding-bottom: 30px;
}
.why-swiper .swiper-slide {
  display: flex;
  height: auto;
}
.why-box {
  width: 100%;
  border-radius: var(--br20);
  overflow: hidden;
  background: var(--clr-cream);
}
.why-img {
  width: 100%;
  aspect-ratio: 4/3;
}
.why-img img {
  object-position: top;
}
.why-cont {
  padding: 14px;
}
.why-cont p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-black);
  font-weight: 500;
}
.why-hdn {
  color: var(--clr-green);
  font-size: var(--fs24);
  line-height: 1.1;
  font-family: "Chelsea Market";
  margin-bottom: 14px;
}
.uf-wrap {
  display: flex;
  gap: 100px;
  position: relative;
}
.uf-wrap .sec-hdn {
  position: sticky;
  top: calc(var(--header-height) + 60px);
  max-width: 440px;
  width: 100%;
  height: fit-content;
  flex-shrink: 0;
}
.uf-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.uf-boxes p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-black);
  font-weight: 500;
}
.uf-box {
  width: calc(50% - 15px);
  height: auto;
  border-radius: var(--br16);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 2px dashed var(--clr-cream);
}
.uf-box .comm-card-hdn {
  margin-bottom: 12px;
}
.uf-box p {
  color: var(--clr-black);
  font-size: var(--fs18);
  line-height: 1.5;
}
.uf-img {
  width: 100%;
  height: 400px;
  margin-bottom: 16px;
}
.ufc-elem-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.ufc-elem-wrap span {
  width: 16px;
  height: 16px;
  background: var(--clr-green);
  border-radius: 100%;
  overflow: hidden;
}
.ufc-elem {
  opacity: 0;
}
.uf-cont {
  padding: 0 14px 30px 14px;
}
.faq-wrap {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  padding: 24px;
  border: 1px dashed var(--clr-green);
  border-radius: var(--br16);
  cursor: pointer;
}
.faq-item .comm-card-hdn {
  position: relative;
  padding-right: 30px;
}
.faq-item .comm-card-hdn::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/arrow-right.svg) no-repeat center / contain;
  position: absolute;
  top: 6px;
  right: 0;
  transition: all 0.3s ease;
}
.faq-item.active .faq-panel {
  display: block;
}
.faq-item.active .comm-card-hdn::after {
  transform: rotate(90deg);
}
.faq-panel {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--clr-green);
}
.faq-panel p {
  color: var(--clr-black);
  font-size: var(--fs22);
  line-height: 1.5;
}
.faq-anim {
  width: 60px;
  height: 5px;
  background: transparent;
}
.pre-footer-wrap {
  max-width: 990px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.pre-footer-cont {
  max-width: 60%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Home Page Ends */
@media all and (max-width: 1800px) {
  .container {
    max-width: 1400px;
  }
  .uf-wrap .sec-hdn {
    max-width: 340px;
  }
}
@media all and (max-width: 1440px) {
  .container {
    max-width: 1170px;
  }
  .uf-wrap {
    display: flex;
    gap: 40px;
  }
  .uf-img {
    height: 270px;
  }
}
@media all and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .banner-elem {
    display: none;
  }
  .hiw-img-box {
    background: var(--clr-green);
    border-radius: 16px;
  }
  .why-section {
    background: var(--clr-green);
  }
  .ufc-elem {
    opacity: 1;
  }
  .uf-wrap {
    flex-direction: column;
  }
  .uf-wrap .sec-hdn {
    margin-bottom: 0;
    position: static;
  }
  .faq-anim {
    display: none;
  }
  .hiw-wrap {
    gap: 30px;
    max-width: 800px;
  }
}
@media all and (max-width: 1024px) {
  .faq-item {
    padding: 20px 16px;
  }
  .faq-item .comm-card-hdn::after {
    width: 20px;
    height: 20px;
    top: 0px;
  }
}
@media all and (max-width: 990px) {
  .container {
    max-width: 800px;
  }
  .hiw-wrap {
    flex-direction: column-reverse;
  }
  .hiw-section {
    overflow: hidden;
  }
  .hiw-cont-swiper {
    overflow: visible;
  }
  .hiw-cont-swiper .swiper-wrapper {
    flex-direction: row;
    gap: 0;
  }
  .hiw-panel {
    display: block;
  }
  .hiw-cont-swiper .swiper-slide {
    display: flex;
    height: auto;
  }
}
@media all and (max-width: 768px) {
  .container {
    max-width: 100%;
  }
  .comm-nav {
    width: 40px;
  }
  .comm-nav-wrap {
    gap: 10px;
  }
}
@media all and (max-width: 640px) {
  .uf-box {
    width: 100%;
  }
  .footer-btm-wrap {
    flex-direction: column;
    gap: 12px;
  }
  .footer-btm-box {
    margin-top: 100px;
  }
  .footer-bg {
    margin-bottom: 90px;
  }
  .pre-footer-cont {
    max-width: 100%;
    gap: 12px;
    text-align: center;
  }
  .pre-footer-wrap {
    flex-direction: column;
  }
  .footer {
    margin-top: 50px;
  }
}
@media all and (max-width: 480px) {
  .why-img {
    width: 100%;
    aspect-ratio: 1.35;
  }
  .sec-hdn,
  .sec-hdn.center {
    margin-bottom: 28px;
  }
  .why-swiper .swiper-wrapper {
    padding-bottom: 20px;
  }
  .banner-cont p br {
    display: none;
  }
  .hiw-img-box {
    width: 180px;
    padding: 4px;
  }
  .banner-hdn {
    font-size: 32px;
  }
  .uf-img {
    height: 200px;
  }
  .sec-hdn {
    gap: 10px;
  }
  .ufc-elem-wrap span {
    width: 10px;
    height: 10px;
  }
  .ufc-elem-wrap {
    margin: 0;
  }
  .faq-item {
    padding: 16px;
  }
  .why-hdn {
    margin-bottom: 8px;
  }
}
/*# sourceMappingURL=main.css.map */