@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html,
body {
  max-width: 100vw;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: hidden;
  background-color: #181A20;
  font-family: "Roboto", sans-serif;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

.btn-theme {
  display: flex;
  height: 2.5rem;
  padding: 0.625rem 1.25rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 6.875rem;
  background: #9BEC74;
  box-shadow: 0px 0px 5px 0px rgba(155, 236, 116, 0.4);
  color: #103000;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.btn-theme:active, .btn-theme:focus, .btn-theme:hover {
  outline: none !important;
  box-shadow: none !important;
}

.btn-outline-theme {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0.75rem 2rem;
  background-color: transparent;
  border: 0.063rem solid #9BEC74;
  border-radius: 3.125rem;
  color: #9BEC74;
}
.btn-outline-theme:active, .btn-outline-theme:focus, .btn-outline-theme:hover {
  outline: none !important;
  box-shadow: none !important;
}

.btn:focus {
  outline: none;
}

@media screen and (max-width: 7066px) {
  html {
    font-size: 80px !important;
  }
}
@media screen and (max-width: 6066px) {
  html {
    font-size: 52px !important;
  }
}
@media screen and (max-width: 5066px) {
  html {
    font-size: 50px !important;
  }
}
@media screen and (max-width: 4066px) {
  html {
    font-size: 48px !important;
  }
}
@media screen and (max-width: 3566px) {
  html {
    font-size: 30px !important;
  }
}
@media screen and (max-width: 3300px) {
  html {
    font-size: 26px !important;
  }
}
@media screen and (max-width: 2140px) {
  html {
    font-size: 24px !important;
  }
}
@media screen and (max-width: 1920px) {
  html {
    font-size: 18px !important;
  }
}
@media screen and (max-width: 1600px) {
  html {
    font-size: 16px !important;
  }
}
header {
  position: absolute;
  top: 4rem;
  left: 0;
  right: 0;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  header {
    top: 3rem;
  }
}
header .gap-6 {
  gap: 1.5rem;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 60rem;
  margin: 0 auto;
  border-radius: 3.125rem;
  border: 0.063rem solid #FFF;
  background: #FFF;
  min-height: 3.125rem;
  padding: 0rem 0.375rem;
}
@media screen and (max-width: 768px) {
  header nav {
    padding: 0 1rem;
  }
}
header nav .logo-wrapper img {
  width: auto;
  height: 2.07525rem;
  -o-object-fit: contain;
     object-fit: contain;
}
header nav .menu-wrapper {
  display: none;
}
@media screen and (min-width: 992px) {
  header nav .menu-wrapper {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
}
header nav .menu-wrapper .menu-nav-link {
  color: #103000;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
header nav .end-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}
header nav .end-wrapper .bar-icon {
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  header nav .end-wrapper .bar-icon {
    display: none;
  }
}
header nav .end-wrapper .bar-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.mobile-menu-wrapper {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  background: #181A20;
  height: 100vh;
}
@media screen and (max-width: 992px) {
  .mobile-menu-wrapper {
    display: block;
    transform: translate(100%);
    transition: transform 0.4s ease-in-out;
  }
}
@media screen and (max-width: 992px) {
  .mobile-menu-wrapper.is_open {
    display: block;
    transform: translate(0%) !important;
    transition: transform 0.4s ease-in-out;
  }
}
.mobile-menu-wrapper .mobile-menu-container {
  background: #181A20;
  height: 100%;
}
.mobile-menu-wrapper .mobile-menu-container .mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.0784313725);
}
.mobile-menu-wrapper .mobile-menu-container .mobile-menu-header .mobile-menu-logo {
  display: block;
}
.mobile-menu-wrapper .mobile-menu-container .mobile-menu-header .mobile-menu-logo .header-logo {
  width: 6.5rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 360px) {
  .mobile-menu-wrapper .mobile-menu-container .mobile-menu-header .mobile-menu-logo .header-logo {
    width: 8rem;
  }
}
.mobile-menu-wrapper .mobile-menu-container .mobile-menu-header .close-icon {
  color: #fff;
  padding: 0.5rem 0.5rem;
  cursor: pointer;
}
.mobile-menu-wrapper .mobile-menu-container .mobile-menu-header .close-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}
.mobile-menu-wrapper .mobile-menu-container .mobile-nav-wrapper {
  height: calc(100vh - 68px);
  overflow-y: auto;
}
.mobile-menu-wrapper .mobile-menu-container .mobile-nav-wrapper::-webkit-scrollbar {
  display: none;
}
.mobile-menu-wrapper .mobile-menu-container .mobile-nav-wrapper .mobile-menu-items .nav-item {
  padding: 0.75rem 1rem !important;
}
.mobile-menu-wrapper .mobile-menu-container .mobile-nav-wrapper .mobile-menu-items .nav-item a {
  font-size: 1rem;
  font-weight: 400 !important;
  letter-spacing: 0.01rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6980392157);
}
.mobile-menu-wrapper .mobile-menu-container .mobile-nav-wrapper .mobile-menu-items .nav-item a.active {
  color: #FFFFFF !important;
  font-weight: 700 !important;
  position: relative;
}
.mobile-menu-wrapper .mobile-menu-container .mobile-nav-wrapper .mobile-menu-items .nav-item a.active::before {
  position: absolute;
  content: "";
  display: block;
  width: 1.563rem;
  height: 0.25rem;
  border-radius: 0.25rem;
  background: #9BEC74;
  bottom: -0.5rem;
}
.mobile-menu-wrapper .mobile-menu-container .mobile-nav-wrapper .btn-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.mobile-menu-wrapper .mobile-menu-container .mobile-nav-wrapper .btn-wrapper a {
  display: block;
  width: 100%;
}

footer {
  padding: 3rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid #9BEC74;
}
footer .footer-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
footer .footer-container .logo-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  footer .footer-container .logo-wrapper {
    gap: 2rem;
    flex-direction: column;
  }
}
footer .footer-container .logo-wrapper .logo img {
  width: 8.875rem;
  height: auto;
}
footer .footer-container .logo-wrapper .social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  footer .footer-container .logo-wrapper .social-links {
    justify-content: center;
  }
}
footer .footer-container .logo-wrapper .social-links .icon img {
  width: 2rem;
  height: 2rem;
  aspect-ratio: 1/1;
}
footer .footer-container .grid-layout {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
@media screen and (max-width: 991px) {
  footer .footer-container .grid-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 568px) {
  footer .footer-container .grid-layout {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
footer .footer-container .grid-layout .layout-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
footer .footer-container .grid-layout .title-wrapper h2 {
  margin: 0;
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
}
footer .footer-container .grid-layout p {
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 0.93125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
footer .info {
  display: flex;
  padding: 0.625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  background: #204F09;
}
footer .info p {
  margin: 0;
  color: #9BEC74;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3; /* 115.556% */
  max-width: 80rem;
  margin: 0 auto;
}
footer .info p span {
  color: #fff;
}
footer .copyright-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: 80rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  footer .copyright-wrapper {
    flex-direction: column;
    justify-content: flex-start;
  }
}
footer .copyright-wrapper p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
footer .copyright-wrapper .terms-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
footer .copyright-wrapper .terms-wrapper a {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.banner-section {
  padding-top: 10rem;
}
.banner-section .banner-container {
  background: url("../../../assets/images/banner-line.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 33rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.banner-section .banner-container::before {
  position: absolute;
  content: "";
  top: 18rem;
  width: 13rem;
  height: 18rem;
  transform: rotate(-30.345deg);
  border-radius: 19.26725rem;
  background: #9bec74;
  filter: blur(230px);
  z-index: -1;
  left: -10rem;
}
@media screen and (max-width: 768px) {
  .banner-section .banner-container::before {
    display: none;
  }
}
.banner-section .banner-container::after {
  position: absolute;
  content: "";
  top: -3rem;
  width: 13rem;
  height: 18rem;
  transform: rotate(-30.345deg);
  border-radius: 19.26725rem;
  background: #9bec74;
  filter: blur(230px);
  z-index: -1;
  right: -10rem;
}
@media screen and (max-width: 768px) {
  .banner-section .banner-container::after {
    display: none;
  }
}
.banner-section .banner-container .content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.banner-section .banner-container .content h2 {
  margin: 0;
  color: #FFF;
  font-size: 3.125rem;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
}
.banner-section .banner-container .content p {
  margin: 0;
  color: #FFF;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  max-width: 30rem;
  margin: 0 auto;
}
.banner-section .banner-container .content a {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.news-partners-section {
  padding: 5rem 0;
}
@media screen and (max-width: 991px) {
  .news-partners-section {
    padding: 4rem 0;
  }
}
.news-partners-section .news-partners-container {
  max-width: 80rem;
  margin: 0 auto;
}
.news-partners-section .news-partners-container .title-wrapper h2 {
  margin: 0;
  color: #FFF;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
.news-partners-section .trust-title {
  margin: 0;
  color: #FFF;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: normal;
}
.news-partners-section .trust-partner-wrapper .trust-partner-image {
  max-width: 20rem;
  display: block;
  margin: 0 auto;
}
.news-partners-section .news-partner-list {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}
.news-partners-section .news-partner-list .marquee-container {
  display: flex;
  animation: marquee 20s linear infinite;
  gap: 3.75rem;
}
.news-partners-section .news-partner-list .marquee-container:hover {
  animation-play-state: paused;
}
.news-partners-section .news-partner-list .icon img {
  min-width: 12.375rem;
  height: 3.1875rem;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.mission-vision-section {
  padding: 5rem 0;
}
@media screen and (max-width: 991px) {
  .mission-vision-section {
    padding: 4rem 0;
  }
}
.mission-vision-section .mission-vision-container {
  max-width: 80rem;
  margin: 0 auto;
}
.mission-vision-section .mission-vision-container .card-wrapper {
  max-width: 65rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
@media screen and (max-width: 991px) {
  .mission-vision-section .mission-vision-container .card-wrapper {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .mission-vision-section .mission-vision-container .card-wrapper {
    gap: 4rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.mission-vision-section .mission-vision-container .m-card {
  display: flex;
  padding: 3rem 2rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-radius: 1.76906rem;
  border: 1.415px solid #204F09;
  background: url("../../../assets/images/card-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
@media screen and (max-width: 768px) {
  .mission-vision-section .mission-vision-container .m-card {
    padding: 1rem;
  }
}
.mission-vision-section .mission-vision-container .m-card .icon {
  width: 4.5rem;
  margin: 0 auto;
  margin-top: -5.25rem !important;
}
@media screen and (max-width: 768px) {
  .mission-vision-section .mission-vision-container .m-card .icon {
    margin-top: -3.25rem !important;
  }
}
.mission-vision-section .mission-vision-container .m-card h2 {
  margin: 0;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: normal;
  background: linear-gradient(90deg, #1A5000 0%, #9BEC74 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mission-vision-section .mission-vision-container .m-card p {
  margin: 0;
  color: #FFF;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
.mission-vision-section .mission-vision-container .why-coin-card {
  display: flex;
  padding: 3rem 2rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-radius: 1.76906rem;
  border: 1.415px solid #204F09;
  background: url("../../../assets/images/card-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  max-width: 65rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .mission-vision-section .mission-vision-container .why-coin-card {
    padding: 1rem;
  }
}
.mission-vision-section .mission-vision-container .why-coin-card .content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mission-vision-section .mission-vision-container .why-coin-card .content h2 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: normal;
  background: linear-gradient(90deg, #1A5000 0%, #9BEC74 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mission-vision-section .mission-vision-container .why-coin-card .content p {
  margin: 0;
  color: #FFF;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
.mission-vision-section .mission-vision-container .why-coin-card .coin-image {
  max-width: 30rem;
}
@media screen and (max-width: 991px) {
  .mission-vision-section .mission-vision-container .why-coin-card .coin-image {
    max-width: 15em;
    display: block;
    margin: 0 auto;
  }
}

.what-we-do-section {
  padding: 5rem 0;
}
@media screen and (max-width: 991px) {
  .what-we-do-section {
    padding: 4rem 0;
  }
}
.what-we-do-section .what-we-do-container {
  max-width: 80rem;
  margin: 0 auto;
}
.what-we-do-section .what-we-do-container .title-wrapper {
  max-width: 65rem;
  margin: 0 auto;
}
.what-we-do-section .what-we-do-container .title-wrapper h6 {
  margin: 0;
  color: #FFF;
  font-size: 3.125rem;
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .what-we-do-section .what-we-do-container .title-wrapper h6 {
    font-size: 2.75rem;
  }
}
@media screen and (max-width: 568px) {
  .what-we-do-section .what-we-do-container .title-wrapper h6 {
    font-size: 2rem;
  }
}
.what-we-do-section .what-we-do-container .what-we-do-wrapper {
  display: grid;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 65rem;
}
@media screen and (max-width: 991px) {
  .what-we-do-section .what-we-do-container .what-we-do-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card {
  border-radius: 1.5rem;
  background: url(../../../assets/images/card-bg.webp);
  border: 1.5px solid #204F09;
  border: linear-gradient(99.54deg, #204F09 1.82%, #030303 21.05%, #030303 78.74%, #204F09 97.97%);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card .card-number {
  color: #8ADE54;
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card .card-text {
  color: #FFF;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  font-family: "Inter", sans-serif;
}
.what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card .card-img-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card .card-img-wrap img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card.large-card {
  grid-row: span 2;
  min-height: 573px;
}
.what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card.large-card .card-img-wrap {
  margin: 1rem 0;
  flex: 1;
}
.what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card.large-card .card-img-wrap img {
  width: 90%;
}
@media screen and (max-width: 991px) {
  .what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card.large-card {
    grid-row: auto;
  }
}
.what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card.small-card .card-text {
  margin-top: auto;
  font-family: "Inter", sans-serif;
}
.what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card.small-card .card-img-wrap {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 55%;
  margin: 0;
  justify-content: flex-end;
}
.what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card.small-card .card-img-wrap img {
  max-height: 80%;
}
.what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card.small-card .card-img-wrap:not(:last-of-type) {
  right: 30%;
  /* Move bank notes further to the left */
  width: auto;
  z-index: 1;
  padding-right: 0;
  margin-top: -38px;
}
.what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card.small-card .card-img-wrap:not(:last-of-type) img {
  max-height: 32%;
}
.what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card.small-card .card-img-wrap + .card-img-wrap {
  right: 5%;
  /* Coins sit on the right */
  width: auto;
  z-index: 2;
  padding-right: 0;
}
.what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card.small-card .card-img-wrap + .card-img-wrap img {
  max-height: 32%;
}
@media screen and (max-width: 575px) {
  .what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card.small-card {
    padding: 2rem 1.5rem;
  }
  .what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card.small-card .card-number {
    font-size: 4rem;
    margin-bottom: 1rem;
  }
  .what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card.small-card .card-img-wrap {
    width: 50%;
    padding-right: 1rem;
  }
  .what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card.small-card .card-img-wrap img {
    max-height: 50%;
  }
  .what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card.small-card .card-img-wrap:not(:last-of-type) {
    right: 30%;
    width: auto;
  }
  .what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card.small-card .card-img-wrap:not(:last-of-type) img {
    max-height: 40%;
    margin-top: -1.5rem;
  }
  .what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card.small-card .card-img-wrap + .card-img-wrap {
    right: 0%;
    width: auto;
  }
  .what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card.small-card .card-img-wrap + .card-img-wrap img {
    max-height: 45%;
    margin-top: 1.5rem;
  }
  .what-we-do-section .what-we-do-container .what-we-do-wrapper .what-we-do-card.small-card .card-text {
    max-width: 100%;
    font-size: 1rem;
  }
}

.tokenmonics-section {
  padding: 5rem 0;
  position: relative;
}
@media screen and (max-width: 991px) {
  .tokenmonics-section {
    padding: 4rem 0;
  }
}
.tokenmonics-section::before {
  position: absolute;
  content: "";
  top: 18rem;
  width: 13rem;
  height: 18rem;
  transform: rotate(-30.345deg);
  border-radius: 19.26725rem;
  background: #9bec74;
  filter: blur(230px);
  z-index: -1;
  left: -10rem;
}
@media screen and (max-width: 768px) {
  .tokenmonics-section::before {
    display: none;
  }
}
.tokenmonics-section::after {
  position: absolute;
  content: "";
  top: 5rem;
  width: 13rem;
  height: 18rem;
  transform: rotate(-30.345deg);
  border-radius: 19.26725rem;
  background: #9bec74;
  filter: blur(230px);
  z-index: -1;
  right: -10rem;
}
@media screen and (max-width: 768px) {
  .tokenmonics-section::after {
    display: none;
  }
}
.tokenmonics-section .tokenmonics-container {
  max-width: 80rem;
  margin: 0 auto;
}
.tokenmonics-section .tokenmonics-container .title-wrapper h2 {
  margin: 0;
  color: #FFF;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
.tokenmonics-section .tokenmonics-container .tokenomics-graph {
  max-width: 60rem;
  margin: 0 auto;
  position: relative;
}
.tokenmonics-section .tokenmonics-container .token-details-card {
  display: flex;
  padding: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 1.76906rem;
  border: 1.415px solid #204F09;
  background: rgba(155, 236, 116, 0);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .tokenmonics-section .tokenmonics-container .token-details-card {
    padding: 3rem 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .tokenmonics-section .tokenmonics-container .token-details-card {
    position: absolute;
    right: -6rem;
    top: 16rem;
  }
}
@media screen and (min-width: 1400px) {
  .tokenmonics-section .tokenmonics-container .token-details-card {
    right: -13rem;
  }
}
.tokenmonics-section .tokenmonics-container .token-details-card h2 {
  margin: 0;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background: linear-gradient(90deg, #1A5000 0%, #9BEC74 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tokenmonics-section .tokenmonics-container .token-details-card ul {
  list-style: none;
}
.tokenmonics-section .tokenmonics-container .token-details-card ul li {
  color: #FFF;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem; /* 150% */
}
.tokenmonics-section .tokenmonics-container .token-details-card ul li span {
  font-weight: 400;
}
.tokenmonics-section .tokenmonics-container .tokenomics-details-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  max-width: 70rem;
  margin: 0 auto;
}
.tokenmonics-section .tokenmonics-container .tokenomics-details-wrapper .tokenmonics-details-card {
  display: flex;
  width: calc(20% - 1.25rem);
  padding: 1.25rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(155, 236, 116, 0.1);
}
@media screen and (max-width: 1200px) {
  .tokenmonics-section .tokenmonics-container .tokenomics-details-wrapper .tokenmonics-details-card {
    width: calc(25% - 1.25rem);
  }
}
@media screen and (max-width: 991px) {
  .tokenmonics-section .tokenmonics-container .tokenomics-details-wrapper .tokenmonics-details-card {
    width: calc(33.33% - 1.25rem);
  }
}
@media screen and (max-width: 768px) {
  .tokenmonics-section .tokenmonics-container .tokenomics-details-wrapper .tokenmonics-details-card {
    width: calc(50% - 1.25rem);
  }
}
@media screen and (max-width: 568px) {
  .tokenmonics-section .tokenmonics-container .tokenomics-details-wrapper .tokenmonics-details-card {
    width: 100%;
  }
}
.tokenmonics-section .tokenmonics-container .tokenomics-details-wrapper .tokenmonics-details-card h6 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  background: linear-gradient(90deg, #4B9C24 0%, #9BEC74 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tokenmonics-section .tokenmonics-container .tokenomics-details-wrapper .tokenmonics-details-card p {
  margin: 0;
  color: #FFF;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.roadmap-section {
  padding: 5rem 0;
}
@media screen and (max-width: 991px) {
  .roadmap-section {
    padding: 4rem 0;
  }
}
.roadmap-section .roadmap-container .title-wrapper h2 {
  margin: 0;
  color: #FFF;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .roadmap-section .owl-stage {
    min-height: 44rem;
    display: flex;
    align-items: center;
  }
}
.roadmap-section .roadmap-box-wrapper {
  padding: 0 1rem;
  position: relative;
}
.roadmap-section .roadmap-box-wrapper .owl-stage {
  margin: 0 auto !important;
}
.roadmap-section .roadmap-box-wrapper .line-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.roadmap-section .roadmap-box-wrapper .reverse-roadmap-card {
  flex-direction: column-reverse !important;
}
@media screen and (min-width: 768px) {
  .roadmap-section .roadmap-box-wrapper .reverse-roadmap-card {
    position: relative;
    top: -8.25rem !important;
  }
}
@media screen and (min-width: 1200px) {
  .roadmap-section .roadmap-box-wrapper .reverse-roadmap-card {
    top: -9.75rem !important;
  }
}
.roadmap-section .roadmap-box-wrapper .roadmap-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .roadmap-section .roadmap-box-wrapper .roadmap-card {
    position: relative;
    top: 11.25rem;
    min-height: 22rem;
  }
}
@media screen and (min-width: 1200px) {
  .roadmap-section .roadmap-box-wrapper .roadmap-card {
    top: 9.75rem;
  }
}
.roadmap-section .roadmap-box-wrapper .roadmap-card .phare-wrapper {
  display: flex;
  padding: 0.625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.75rem;
  background: #FFF;
}
.roadmap-section .roadmap-box-wrapper .roadmap-card .phare-wrapper p {
  margin: 0;
  color: #000;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: normal;
}
.roadmap-section .roadmap-box-wrapper .roadmap-card .line {
  height: 4.375rem;
  width: 0.313rem;
  background: #9BEC74;
}
.roadmap-section .roadmap-box-wrapper .roadmap-card .box {
  display: flex;
  padding: 1.6875rem 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 1.25rem;
  border: 1px solid #204F09;
  background: rgba(155, 236, 116, 0.1);
}
.roadmap-section .roadmap-box-wrapper .roadmap-card .box ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.roadmap-section .roadmap-box-wrapper .roadmap-card .box ul li {
  color: #FFF;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.team-section {
  padding: 5rem 0;
}
@media screen and (max-width: 991px) {
  .team-section {
    padding: 4rem 0;
  }
}
.team-section .team-container {
  max-width: 80rem;
  margin: 0 auto;
}
.team-section .team-container .title-wrapper h2 {
  margin: 0;
  color: #FFF;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
.team-section .team-container .team-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.team-section .team-container .team-wrapper .team-card {
  width: calc(25% - 1.25rem);
}
@media screen and (max-width: 991px) {
  .team-section .team-container .team-wrapper .team-card {
    width: calc(33% - 1.25rem);
  }
}
@media screen and (max-width: 768px) {
  .team-section .team-container .team-wrapper .team-card {
    width: calc(50% - 1.25rem);
  }
}
@media screen and (max-width: 568px) {
  .team-section .team-container .team-wrapper .team-card {
    width: 100%;
  }
}
.team-section .team-container .team-wrapper .team-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem;
}
.team-section .team-container .team-wrapper .team-card .content {
  width: 100%;
  border-radius: 1.25rem;
  border: 1px solid #204F09;
  background: rgba(155, 236, 116, 0.1);
  display: flex;
  padding: 1.25rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2.9375rem;
  min-height: 13rem;
}
.team-section .team-container .team-wrapper .team-card .content .user-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.team-section .team-container .team-wrapper .team-card .content .user-info h6 {
  margin: 0;
  color: #FFF;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.team-section .team-container .team-wrapper .team-card .content .user-info p {
  margin: 0;
  color: #FFF;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.team-section .team-container .team-wrapper .team-card .content .social-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.team-section .team-container .team-wrapper .team-card .content .social-wrapper .icon img {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1/1;
}

.faqs-section {
  padding: 5rem 0;
}
@media screen and (max-width: 991px) {
  .faqs-section {
    padding: 4rem 0;
  }
}
.faqs-section .faqs-container {
  max-width: 80rem;
  margin: 0 auto;
}
.faqs-section .faqs-container .title-wrapper h2 {
  margin: 0;
  color: #FFF;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
.faqs-section .faqs-container .cus-accordion-wrapper {
  max-width: 55rem;
  margin: 0 auto;
  margin-top: 5rem !important;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.faqs-section .faqs-container .cus-accordion-wrapper .cus-accordion-card .cus-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.75rem;
  cursor: pointer;
  border-top: 2px solid rgba(155, 236, 116, 0.1);
}
.faqs-section .faqs-container .cus-accordion-wrapper .cus-accordion-card .cus-accordion-header .title-wrapper {
  width: calc(100% - 4rem);
}
.faqs-section .faqs-container .cus-accordion-wrapper .cus-accordion-card .cus-accordion-header .title-wrapper h1 {
  margin: 0;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #FFFFFF;
}
@media screen and (max-width: 420px) {
  .faqs-section .faqs-container .cus-accordion-wrapper .cus-accordion-card .cus-accordion-header .title-wrapper h1 {
    font-size: 1rem;
  }
}
.faqs-section .faqs-container .cus-accordion-wrapper .cus-accordion-card .cus-accordion-header .icon {
  width: 3.75rem;
  height: 2rem;
  border-radius: 1rem;
  background: rgba(255, 249, 249, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.faqs-section .faqs-container .cus-accordion-wrapper .cus-accordion-card .cus-accordion-header .icon svg {
  width: 1rem;
  height: 1rem;
}
.faqs-section .faqs-container .cus-accordion-wrapper .cus-accordion-card .cus-accordion-body {
  display: none;
  padding: 1rem;
}
.faqs-section .faqs-container .cus-accordion-wrapper .cus-accordion-card .cus-accordion-body p {
  margin: 0;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #FFFFFF;
}

.join-revolution-section {
  padding: 5rem 0;
}
@media screen and (max-width: 991px) {
  .join-revolution-section {
    padding: 4rem 0;
  }
}
.join-revolution-section .join-revolution-container {
  max-width: 80rem;
  margin: 0 auto;
}
.join-revolution-section .join-revolution-container .join-revolution-card {
  padding: 1rem 3rem;
  border-radius: 1.25rem;
  border-top: 1px solid #204F09;
  border-left: 1px solid #204F09;
  background: rgba(155, 236, 116, 0.1019607843);
  position: relative;
  min-height: 28.75rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .join-revolution-section .join-revolution-container .join-revolution-card {
    padding: 1rem;
  }
}
.join-revolution-section .join-revolution-container .join-revolution-card::before {
  position: absolute;
  content: "";
  inset: 0;
  width: 29.73538rem;
  height: 19.26725rem;
  transform: rotate(-30.345deg);
  border-radius: 29.73538rem;
  background: #9BEC74;
  filter: blur(230px);
  margin: auto;
  opacity: 0.8;
}
@-moz-document url-prefix() {
  .join-revolution-section .join-revolution-container .join-revolution-card::before {
    opacity: 0.3 !important;
  }
}
.join-revolution-section .join-revolution-container .join-revolution-card .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}
.join-revolution-section .join-revolution-container .join-revolution-card .content h2 {
  margin: 0;
  text-align: center;
  font-size: 5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background: linear-gradient(90deg, #4B9C24 0%, #9BEC74 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 991px) {
  .join-revolution-section .join-revolution-container .join-revolution-card .content h2 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .join-revolution-section .join-revolution-container .join-revolution-card .content h2 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 568px) {
  .join-revolution-section .join-revolution-container .join-revolution-card .content h2 {
    font-size: 2.5rem;
  }
}
.join-revolution-section .join-revolution-container .join-revolution-card .content p {
  margin: 0;
  color: #FFF;
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6; /* 2rem */
}

.timer-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 568px) {
  .timer-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.timer-section .timer-container {
  max-width: 80rem;
  margin: 0 auto;
}
.timer-section .timer-container h2 {
  margin: 0;
  font-size: 2.80675rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem !important;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 768px) {
  .timer-section .timer-container h2 {
    font-size: 1.5rem;
  }
}
.timer-section .countdown {
  margin: 3rem auto;
  width: 70%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: sans-serif;
  justify-content: center;
}
.timer-section .countdown .colon {
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 768px) {
  .timer-section .countdown .colon svg {
    width: 1rem;
    height: 1rem;
  }
}
.timer-section .time-section {
  text-align: center;
  font-size: 30px;
}
.timer-section .time-section p {
  margin-top: 0.5rem !important;
  margin: 0;
  color: #FFF;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 1.26306rem;
  font-weight: 400;
  line-height: normal;
}
.timer-section .time-group {
  display: flex;
  gap: 10px;
}
.timer-section .time-segment {
  display: block;
  font-size: 100px;
  font-weight: 900;
  width: 100px;
}
.timer-section .segment-display {
  position: relative;
  height: 100%;
  font-family: "Roboto", sans-serif;
}
.timer-section .segment-display__top,
.timer-section .segment-display__bottom {
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 50%;
  position: relative;
}
.timer-section .segment-display__top {
  line-height: 1.5;
  color: #9BEC74;
  background-color: #282828;
  border-radius: 8px 8px 0 0;
}
.timer-section .segment-display__bottom {
  line-height: 0;
  color: #9BEC74;
  background-color: #282828;
  border-radius: 0 0 8px 8px;
}
.timer-section .segment-overlay {
  position: absolute;
  top: 0;
  perspective: 400px;
  height: 100%;
  width: 100px;
  font-family: "Roboto", sans-serif;
}
.timer-section .segment-overlay__top,
.timer-section .segment-overlay__bottom {
  position: absolute;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 50%;
}
.timer-section .segment-overlay__top {
  top: 0;
  line-height: 1.5;
  color: #9BEC74;
  background-color: #282828;
  transform-origin: bottom;
  border-radius: 8px 8px 0 0;
}
.timer-section .segment-overlay__bottom {
  bottom: 0;
  line-height: 0;
  color: #9BEC74;
  background-color: #282828;
  border-top: 4px solid #181A20;
  transform-origin: top;
  border-radius: 0 0 8px 8px;
}
.timer-section .segment-overlay.flip .segment-overlay__top {
  animation: flip-top 0.8s linear;
}
.timer-section .segment-overlay.flip .segment-overlay__bottom {
  animation: flip-bottom 0.8s linear;
}
@keyframes flip-top {
  0% {
    transform: rotateX(0deg);
  }
  50%, 100% {
    transform: rotateX(-90deg);
  }
}
@keyframes flip-bottom {
  0%, 50% {
    transform: rotateX(90deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
@media (max-width: 1024px) {
  .timer-section .countdown {
    width: 80%;
  }
  .timer-section .time-segment {
    font-size: 80px;
    width: 80px;
  }
  .timer-section .segment-overlay {
    width: 80px;
  }
  .timer-section .time-section {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .timer-section .countdown {
    width: 95%;
    margin: 40px auto;
  }
  .timer-section .time-segment {
    font-size: 60px;
    width: 60px;
  }
  .timer-section .segment-overlay {
    width: 60px;
  }
  .timer-section .time-section {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .timer-section .countdown {
    width: 100%;
    gap: 2px;
  }
  .timer-section .time-segment {
    font-size: 45px;
    width: 45px;
  }
  .timer-section .segment-overlay {
    width: 45px;
  }
  .timer-section .time-section {
    font-size: 16px;
  }
  .timer-section .time-group {
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .timer-section .countdown {
    width: 100%;
  }
  .timer-section .time-segment {
    font-size: 32px;
    width: 32px;
  }
  .timer-section .segment-overlay {
    width: 32px;
  }
  .timer-section .time-section {
    font-size: 12px;
  }
  .timer-section .time-group {
    gap: 5px;
  }
}

.why-green-coin-section {
  padding: 5rem 0;
}
@media screen and (max-width: 991px) {
  .why-green-coin-section {
    padding: 4rem 0;
  }
}
.why-green-coin-section .why-green-coin-container {
  max-width: 80rem;
  margin: 0 auto;
}
.why-green-coin-section .why-green-coin-container .title-wrapper {
  max-width: 65rem;
  margin: 0 auto;
}
.why-green-coin-section .why-green-coin-container .title-wrapper h6 {
  margin: 0;
  color: #FFF;
  font-size: 3.125rem;
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .why-green-coin-section .why-green-coin-container .title-wrapper h6 {
    font-size: 2.75rem;
  }
}
@media screen and (max-width: 568px) {
  .why-green-coin-section .why-green-coin-container .title-wrapper h6 {
    font-size: 2rem;
  }
}
.why-green-coin-section .why-green-coin-container .why-green-wrapper {
  max-width: 65rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media screen and (max-width: 991px) {
  .why-green-coin-section .why-green-coin-container .why-green-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media screen and (max-width: 568px) {
  .why-green-coin-section .why-green-coin-container .why-green-wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.why-green-coin-section .why-green-coin-container .why-green-wrapper .why-coin-card {
  display: flex;
  padding: 3rem 2rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-radius: 1.5rem;
  border: 1.415px solid #204F09;
  background: url("../../../assets/images/card-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
@media screen and (max-width: 768px) {
  .why-green-coin-section .why-green-coin-container .why-green-wrapper .why-coin-card {
    padding: 1rem;
  }
}
.why-green-coin-section .why-green-coin-container .why-green-wrapper .why-coin-card h6 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  background: linear-gradient(90deg, #4B9C24 0%, #9BEC74 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why-green-coin-section .why-green-coin-container .why-green-wrapper .why-coin-card p {
  margin: 0;
  color: #FFF;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  font-family: "Inter", sans-serif;
}

.contactus-section {
  padding: 5rem 0;
}
@media screen and (max-width: 991px) {
  .contactus-section {
    padding: 4rem 0;
  }
}
.contactus-section .contactus-container {
  max-width: 80rem;
  margin: 0 auto;
}
.contactus-section .contactus-container .Green1Dollar {
  width: auto !important;
  height: 11.969rem;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .contactus-section .contactus-container .Green1Dollar {
    width: 20rem !important;
    height: auto !important;
  }
}
.contactus-section .contactus-container .contactus-form {
  background: rgba(155, 236, 116, 0.1);
  border: 0.063rem solid #204F09;
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 25rem;
  margin: 0 auto;
}
.contactus-section .contactus-container .contactus-form h6 {
  margin: 0;
  color: #FFF;
  font-family: "Inter", sans-serif;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: normal;
}
.contactus-section .contactus-container .contactus-form form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.4375rem;
}
.contactus-section .contactus-container .contactus-form form .form-group {
  width: 100%;
}
.contactus-section .contactus-container .contactus-form form .form-group label {
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: normal;
}
.contactus-section .contactus-container .contactus-form form .form-group input {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-bottom: 0.063rem solid #8D8D8D;
  background-color: transparent;
  padding: 0.75rem 0rem;
  border-radius: 0 !important;
  width: 100%;
  color: #8D8D8D;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
}
.contactus-section .contactus-container .contactus-form form .form-group input::-moz-placeholder {
  color: #8D8D8D;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
}
.contactus-section .contactus-container .contactus-form form .form-group input::placeholder {
  color: #8D8D8D;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
}

main {
  overflow-x: hidden;
}

#exampleModal .modal-dialog {
  max-width: 25rem;
}
#exampleModal .modal-dialog .modal-content {
  background: #172812;
  border-radius: 1rem;
  position: relative;
}
#exampleModal .modal-dialog .modal-content .modal-header {
  border: none !important;
}
#exampleModal .modal-dialog .modal-content .modal-header .btn-close {
  width: 1rem;
  height: 1rem;
  padding: 0.25em 0.25em;
  margin: 0;
  margin-left: auto !important;
  color: #000;
  background: none !important;
  border: 0;
  border-radius: 0.25rem;
  opacity: 1;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
}
#exampleModal .modal-dialog .modal-content .modal-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 2rem 1.5rem 2rem;
}
#exampleModal .modal-dialog .modal-content .modal-body form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#exampleModal .modal-dialog .modal-content .modal-body .sucess-message-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#exampleModal .modal-dialog .modal-content .modal-body .sucess-message-wrapper .success-image {
  width: 6.875rem;
  margin: 0 auto;
}
#exampleModal .modal-dialog .modal-content .modal-body .sucess-message-wrapper .success-image img {
  margin-top: -1rem;
}
#exampleModal .modal-dialog .modal-content .modal-body .sucess-message-wrapper button {
  margin-top: -1rem;
}
#exampleModal .modal-dialog .modal-content .modal-body h6 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: center;
}
#exampleModal .modal-dialog .modal-content .modal-body .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#exampleModal .modal-dialog .modal-content .modal-body .form-group label {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #FFFFFF;
}
#exampleModal .modal-dialog .modal-content .modal-body .form-group input {
  border: 0.063rem solid #797979;
  outline: none !important;
  box-shadow: none !important;
  color: #8D8D8D;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  padding: 0.75rem 0.5rem;
  min-height: 2.5rem;
  border-radius: 0.5rem;
  background-color: transparent !important;
}
#exampleModal .modal-dialog .modal-content .modal-body .form-group input::-moz-placeholder {
  color: #8D8D8D;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
}
#exampleModal .modal-dialog .modal-content .modal-body .form-group input::placeholder {
  color: #8D8D8D;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
}
#exampleModal .modal-dialog .modal-content .modal-body button {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.common-page-section {
  padding-top: 12rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.common-page-section .common-page-container {
  max-width: 80rem;
  margin: 0 auto;
}
.common-page-section .common-page-container p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: justify;
}
.common-page-section .common-page-container p span {
  font-weight: 700;
}
.common-page-section .common-page-container a {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #9BEC74;
  text-align: justify;
}
.common-page-section .common-page-container a span {
  font-weight: 700;
}
.common-page-section .common-page-container .page-title h1 {
  margin: 0;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  text-align: center;
  color: #9BEC74;
}
@media screen and (max-width: 567px) {
  .common-page-section .common-page-container .page-title h1 {
    font-size: 2rem;
  }
}
.common-page-section .common-page-container .sections-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
}
.common-page-section .common-page-container .sections-wrapper .section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.common-page-section .common-page-container .sections-wrapper h2, .common-page-section .common-page-container .sections-wrapper h3, .common-page-section .common-page-container .sections-wrapper h4, .common-page-section .common-page-container .sections-wrapper h5, .common-page-section .common-page-container .sections-wrapper h6 {
  margin: 0;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: #9BEC74;
  margin: 1rem 0 !important;
}
@media screen and (min-width: 992px) {
  .common-page-section .common-page-container .sections-wrapper h2 span, .common-page-section .common-page-container .sections-wrapper h3 span, .common-page-section .common-page-container .sections-wrapper h4 span, .common-page-section .common-page-container .sections-wrapper h5 span, .common-page-section .common-page-container .sections-wrapper h6 span {
    margin-left: 7.6rem;
  }
}
.common-page-section .common-page-container .sections-wrapper a {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #9BEC74;
  text-align: justify;
}
.common-page-section .common-page-container .sections-wrapper a span {
  font-weight: 700;
}
.common-page-section .common-page-container .sections-wrapper p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: justify;
}
.common-page-section .common-page-container .sections-wrapper p span {
  font-weight: 700;
}
.common-page-section .common-page-container .sections-wrapper ul, .common-page-section .common-page-container .sections-wrapper ol {
  padding: 0;
  padding-left: 3rem;
}
.common-page-section .common-page-container .sections-wrapper ul li, .common-page-section .common-page-container .sections-wrapper ol li {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #FFFFFF;
}
.common-page-section .common-page-container .sections-wrapper ul li span, .common-page-section .common-page-container .sections-wrapper ol li span {
  font-weight: 700;
}
.common-page-section .common-page-container .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
}
.common-page-section .common-page-container .content-wrapper .content-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.common-page-section .common-page-container .content-wrapper .content-card .content-card-title h6 {
  margin: 0;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: #9BEC74;
}
@media screen and (min-width: 992px) {
  .common-page-section .common-page-container .content-wrapper .content-card .content-card-title h6 span {
    margin-left: 7.6rem;
  }
}
.common-page-section .common-page-container .content-wrapper .content-card .content-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.common-page-section .common-page-container .content-wrapper .content-card .content-body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: justify;
}
.common-page-section .common-page-container .content-wrapper .content-card .content-body p span {
  font-weight: 700;
}
.common-page-section .common-page-container .content-wrapper .content-card .content-body ul {
  padding: 0;
  padding-left: 3rem;
}
.common-page-section .common-page-container .content-wrapper .content-card .content-body ul li {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #FFFFFF;
}
.common-page-section .common-page-container .content-wrapper .content-card .content-body ul li span {
  font-weight: 700;
}/*# sourceMappingURL=style.css.map */