:root {
  --primary: #29716a;
  --primary-text: #000000;
  --secondary: #525252;
  --secondary-text: #7c7c7c;
  --background: #ffffff;
  --border-color: #ffffff;
}

.background {
  background-color: var(--background) !important;
}
.primary {
  color: var(--primary) !important;
}
.text-primary {
  color: var(--primary-text) !important;
}
.secondary {
  color: var(--secondary) !important;
}
.text-secondary {
  color: var(--secondary-text) !important;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--background);
  color: var(--primary-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

@layer utilities {
  .container {
    margin: 0 auto;
    padding: 0 15px;
  }
}

a {
  display: block;
}
p {
  font-weight: 500;
}
.mt-40 {
  margin-top: 40px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-70 {
  margin-top: 70px;
}
.mt-80 {
  margin-top: 80px;
}
.mb-60 {
  margin-bottom: 60px;
}
.btn,
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  border: none;
}
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  font-size: 20px;
  font-weight: 700;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--background);
  cursor: pointer;
  height: 55px;
  width: 55px;
  padding: 0;
  transition: 0.3s;
  background-image: url("../images/bg-menu-icon.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  animation: bounceTopDown 2s infinite ease-in-out;
}

@keyframes bounceTopDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px !important;
  }
}

/* Header */
.demo-section {
  background-image: url("../images/bg-button.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.demo-btn {
  background-color: transparent;
  color: var(--background);
  padding: 23px 30px;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s ease;
}

header,
header .header-content {
  position: relative;
  background-color: var(--background);
}
.header-content .menu {
  z-index: 1;
  padding: 0;
}
.navbar-nav .nav-item a {
  font-weight: 400 !important;
  font-size: 1.125rem;
  padding: 20px;
  color: var(--secondary);
}
.navbar-nav .nav-item:hover a {
  color: var(--primary) !important;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--primary) !important;
  font-weight: 700 !important;
}
.header-content .navbar-toggler {
  padding: 12px 15px;
  background-image: url("../images/bg-menu-icon.png");
  background-color: transparent !important;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-image: var(--bs-navbar-toggler-icon-bg);
  transition: background-image 0.2s ease-in-out;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 24 24' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
}
.form-control:focus {
  box-shadow: none;
  border-color: #ffffff;
  background-color: #819c7d;
}

/* main banner */
.hero-section .main-banner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hero-section .main-banner-content {
  position: relative;
  padding: 180px 0;
}
.hero-section .main-banner-content .container {
  height: 100%;
  position: relative;
}
.hero-section .banner-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  text-align: left;
}
.hero-section .banner-text {
  width: 35%;
  margin-right: 15%;
}
.hero-section .banner-content h2 {
  font-size: 1.875rem;
  line-height: 1.4;
  color: var(--primary-text);
  text-transform: capitalize;
}
.banner-sub {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--secondary-text);
}
.banner-sub span {
  display: block;
}
.demo-wrapper {
  display: inline-block;
  background: var(--primary-text);
  transform: skewX(-20deg);
  padding: 15px 50px;
}
.demo-wrapper span {
  display: inline-block;
  color: var(--background);
  font-weight: 700;
  font-size: 1.25rem;
  transform: skewX(20deg);
}
.demo-button {
  margin-left: 12px;
}

/* Leader Common */
.leader-img img {
  width: 100%;
}
h4.leader-title {
  font-size: 1.875rem;
  margin-bottom: 5px;
}
h5.leader-sub-title {
  font-size: 1.125rem;
  margin-bottom: 20px;
}

/* page banner */
.page-banner {
  position: relative;
}
.page-banner .banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.page-banner img {
  width: 100%;
}
.page-banner .banner-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0;
  color: var(--background);
}

/* Swiper */
.hero-prev::after,
.hero-next::after {
  content: none !important;
}
.hero-prev i,
.hero-next i {
  font-size: 34px;
  color: var(--background);
  -webkit-text-stroke: 7px currentColor;
}
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 1.125rem;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-button-next,
.swiper-button-prev {
  position: relative !important;
  --swiper-navigation-size: 30px;
  padding: 7px;
  border-radius: 50%;
  margin-top: 0 !important;
  background: var(--secondary);
}
.swiper-button-next {
  right: 0 !important;
}
.swiper-button-prev {
  left: 0 !important;
}
.swiper-navigation-icon {
  color: var(--background);
}
.swiper-group .swiper-next,
.swiper-group .swiper-prev {
  display: block;
  padding: 24px;
  position: absolute;
  top: 0;
  right: -41px;
  bottom: 0;
  left: auto;
  margin: auto;
  height: fit-content;
  border-radius: 20px;
  background: var(--background);
}
.swiper-group .swiper-prev {
  left: -41px;
  right: auto;
}

/* Hero Swiper */
.heroSwiper .swiper-slide {
  display: block;
}
.heroSwiper .swiper-group {
  position: absolute;
  bottom: 0;
  right: 0;
  width: fit-content;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 33px 80px 30px 100px;
  background-color: var(--primary);
  border-top-left-radius: 100px;
}
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
  position: relative !important;
  width: 30px !important;
  height: 30px !important;
  margin: 0 !important;
  background: transparent !important;
  color: var(--background);
  right: auto !important;
  left: auto !important;
}
.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: 900;
}
.heroSwiper .swiper-pagination {
  position: relative !important;
  width: auto !important;
  bottom: auto !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.heroSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--background);
  opacity: 0.5;
  margin: 0 !important;
  transition: 0.3s;
}
.heroSwiper .swiper-pagination-bullet-active {
  width: 35px;
  border-radius: 5px;
  opacity: 1;
}

@media (max-width: 991px) {
  .swiper-group .swiper-next,
  .swiper-group .swiper-prev {
    padding: 5px;
    right: -5px;
    border-radius: 10px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    --swiper-navigation-size: 25px;
  }
  .swiper-group .swiper-prev {
    left: -5px;
    right: auto;
  }
}

/* section title */
.section-title p {
  width: 60%;
  margin: 30px auto 0;
  text-align: center;
  font-weight: 500;
}

/* Trusted Swiper */
.trusted-card {
  position: relative;
  overflow: hidden;
}
.trusted-info {
  padding: 0 4%;
}
.trusted-card img {
  width: auto;
}
/* .trustedSwiper {
  padding-bottom: 50px !important;
} */
.trustedSwiper .trusted-pagination {
  bottom: 0 !important;
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.trustedSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d1;
  opacity: 1;
  transition: 0.3s;
}
.trustedSwiper .swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 6px;
  background-color: var(--primary);
}
.trusted-card {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.trusted-card img {
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.img-default {
  opacity: 1;
}
.img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.trusted-card:hover .img-default {
  opacity: 0;
  transform: scale(1);
}
.trusted-card:hover .img-hover {
  opacity: 1;
  transform: scale(1);
}

/* Waiting For You Section */
.waiting-for-you-section {
  padding: 40px 0 0;
  background-image: url("../images/home/app/bg-app-section.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.app-feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  margin-bottom: 30px;
  max-width: 350px;
}
.app-feature-card:hover {
  transform: translateY(-5px);
}
.app-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.app-feature-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}
.app-feature-card p {
  font-size: 0.9rem;
  color: var(--secondary-text);
  line-height: 1.6;
  margin-bottom: 0;
}
.app-phone-wrapper {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.app-phone-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.arrow-img {
  position: absolute;
  width: 80px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.arrow-top-left {
  top: 10%;
  left: -20px;
}
.arrow-bottom-left {
  bottom: 20%;
  left: -20px;
}
.arrow-top-right {
  top: 10%;
  right: -20px;
}
.arrow-bottom-right {
  bottom: 20%;
  right: -20px;
}

@media (min-width: 992px) {
  .app-feature-card.ms-auto {
    margin-left: auto;
  }
  .app-feature-card.me-auto {
    margin-right: auto;
  }
  .col-arrow-wrapper {
    position: relative;
  }
  .arrow-img {
    width: 117px;
    z-index: 2;
  }
  .arrow-img.arrow-bottom-left,
  .arrow-img.arrow-bottom-right {
    width: 90px;
  }
  .arrow-top-left {
    top: 17%;
    right: -5%;
    left: auto;
  }
  .arrow-bottom-left {
    bottom: 24%;
    right: -15%;
    left: auto;
  }
  .arrow-top-right {
    top: 17%;
    left: -5%;
    right: auto;
    transform: scaleX(-1);
  }
  .arrow-bottom-right {
    bottom: 24%;
    left: -15%;
    right: auto;
    transform: scaleX(-1);
  }
  .wave-shape {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    height: 35px;
    background-image: url("../images/home/app/wave-shape.png");
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .arrow-top-left {
    top: 10%;
    right: -15%;
    left: auto;
  }
  .arrow-top-right {
    top: 10%;
    left: -15%;
    right: auto;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .arrow-top-left {
    top: 5%;
    right: -25%;
    left: auto;
  }
  .arrow-top-right {
    top: 5%;
    left: -25%;
    right: auto;
  }
}

/* privacy policy / terms & conditions / disclaimer */
.legal-section {
  position: relative;
  padding: 40px 20px;
  border: 3px solid var(--primary);
  border-radius: 40px;
}
.legal-section .last-date {
  font-size: 1.25rem;
}
.legal-section-content {
  font-size: 1rem;
  line-height: 1.7;
  padding: 0 30px;
}
.legal-section-content h2 {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-text);
}
.legal-section-content h3 {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-text);
}
.legal-section-content h4 {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-text);
}
.legal-section-content h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-text);
}
.legal-section-content ol > li {
  margin-bottom: 40px;
}
.legal-section-content ul {
  padding-left: 30px;
  list-style-type: disc;
}
.legal-section-content ul li {
  margin-bottom: 6px;
  font-weight: 500;
}
.legal-section-content ol > li::marker {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-text);
}
.legal-section-content ul li::marker {
  color: var(--secondary);
}
.contact-info img {
  width: 30px;
}
.contact-info a {
  text-decoration: none;
  font-weight: 500;
}
.contact-info a:hover {
  text-decoration: underline;
}

/* footer */
.footer-section {
  position: relative;
  overflow: hidden;
}
.footer-cta-section {
  background: url("../images/bg-footer-top.png") no-repeat center center;
  background-size: cover;
  padding: 100px 0 80px;
  position: relative;
  z-index: 2;
}
.footer-cta-content {
  padding-left: 13%;
}
.footer-cta-content h2 {
  font-size: 3rem;
}
.footer-cta-section img {
  width: 75px;
}
.footer-main {
  background: #2d2d2d;
  background-image: url("../images/bg-footer.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  color: var(--background);
}
.footer-logo-section {
  position: relative;
  margin-bottom: 100px;
}
.footer-logo-section .footer-line {
  background-color: var(--background);
  height: 3px;
}
.footer-logo-section .logo-circle {
  width: 140px;
  height: 140px;
  background: var(--background);
  padding: 10px;
}
.footer-content {
  padding: 5% 10%;
}
.contact-box {
  position: relative;
}
.curved-wrapper {
  max-width: 600px;
  position: relative;
}
.curved-wrapper svg {
  width: 100%;
  height: auto;
  display: block;
}
.curved-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.footer-bottom {
  border-top: 1px solid var(--border-color) !important;
}
.footer-bottom ul {
  list-style-type: disc;
}
.footer-bottom ul li::marker {
  color: var(--background);
}
.footer-bottom ul > li + li {
  margin-left: 45px;
}
.footer-nav-links a {
  text-decoration: none;
}
.footer-nav-links a:hover {
  color: var(--primary) !important;
  transition: all 0.3s;
  text-decoration: underline;
}
.social-icon-box:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}
.social-icons img {
  width: 40px;
}

/* Our Growing Impact Section */
.our-growing-impact-section {
  padding: 150px 0;
  background-color: var(--primary);
  position: relative;
  overflow: hidden;
  color: var(--background);
}
.our-growing-impact-section::before,
.our-growing-impact-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 150px;
  background-color: var(--primary);
  z-index: 1;
}
.our-growing-impact-section::before {
  top: 0;
  background-color: var(--background);
  clip-path: ellipse(53% 100% at 50% 0%);
  -webkit-clip-path: ellipse(53% 100% at 50% 0%);
}
.our-growing-impact-section::after {
  bottom: 0;
  background-color: var(--background);
  clip-path: ellipse(53% 100% at 50% 100%);
  -webkit-clip-path: ellipse(53% 100% at 50% 100%);
}
.our-growing-impact-section .container {
  position: relative;
  z-index: 2;
}
.impact-desc {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  align-items: center;
}
.impact-img-box {
  position: relative;
  overflow: hidden;
  width: 236px;
  border: 3px solid var(--background);
  border-radius: 0 220px 528px 528px;
}
.impact-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.impact-img-box:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}
.stat-card {
  background: var(--background);
  color: var(--primary-text);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 170px;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-text);
}
.stat-card-tl {
  border-radius: 528px 528px 0 220px;
}
.stat-card-tr {
  border-radius: 528px 528px 220px 0;
}
.stat-card-bl {
  border-radius: 220px 0 528px 528px;
}
.stat-card-br {
  border-radius: 0 220px 528px 528px;
}

/* How It Works Section */
.how-it-works-section {
  position: relative;
  overflow: hidden;
  padding: 0 0 70px;
  background-image: url(../images/home/bg-work.png);
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
}
.timeline-wrapper {
  position: relative;
  padding: 0 50px;
}
.central-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 20%;
  width: 2px;
  border-left: 2px dotted var(--primary-text);
  transform: translateX(-50%);
  z-index: 0;
}
.timeline-step {
  position: relative;
  z-index: 1;
}
.timeline-step:last-child {
  margin-bottom: 0;
}
.step-image-circle {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto;
  position: relative;
}
.step-image-circle img {
  border-radius: 50%;
}
.step-text h4 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-text);
}
.step-text p {
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 0;
  line-height: 1.5;
}
.step-1-content {
  display: flex;
  align-items: start;
  gap: 30px;
  padding-left: 20px;
}
.step-2-content {
  padding-right: 20px;
}
.step-2-content .step-text {
  margin: 9% auto 0;
  width: 50%;
}
.step-3-content {
  padding-left: 20px;
  margin-top: 30%;
}
.step-3-content .step-text {
  margin: 0 auto 9%;
  width: 50%;
}
.connector-dot {
  width: 16px;
  height: 16px;
  background-color: var(--primary-text);
  border-radius: 50%;
  position: absolute;
  left: -1.7%;
  transform: translateX(-50%);
}
.connector-line {
  position: absolute;
  display: block;
  background-color: var(--primary-text);
}
.step-1-dot {
  top: 0;
}
.step-1-line {
  top: 7px;
  left: -4px;
  width: 50px;
  height: 2px;
}
.step-2-dot {
  top: 36%;
  left: auto;
  right: -4.1%;
}
.step-2-line {
  top: 37%;
  right: -4px;
  width: 100px;
  height: 2px;
}
.step-3-dot {
  top: 59.4%;
}
.step-3-line {
  top: 60.5%;
  left: -4px;
  width: 100px;
  height: 2px;
}
.step-image-circle::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.step-1-content .step-image-circle::after {
  width: 182px;
  height: 88px;
  bottom: -10%;
  left: 4px;
  background-image: url(../images/home/shape/work-1.png);
}
.step-2-content .step-image-circle::after {
  width: 245px;
  height: 269px;
  bottom: -5.9%;
  right: 10.7%;
  background-image: url(../images/home/shape/work-2.png);
}
.step-3-content .step-image-circle::after {
  width: 130px;
  height: 211px;
  bottom: 53%;
  left: 11%;
  background-image: url(../images/home/shape/work-3.png);
}
/* How It Works Section page */
.how-it-works-page .central-line {
  bottom: 11%;
}
.step-4-content {
  padding-right: 20px;
  margin-top: 40%;
}
.step-4-content .step-text {
  margin: 5% auto 0;
  width: 50%;
}
.step-4-dot {
  top: 36%;
  left: auto;
  right: -4.1%;
}
.step-4-line {
  top: 37%;
  right: -4px;
  width: 127px;
  height: 2px;
}
.step-4-content .step-image-circle::after {
  width: 130px;
  height: 211px;
  bottom: 47%;
  right: 15%;
  transform: scaleX(-1);
  background-image: url(../images/home/shape/work-3.png);
}
.step-5-content {
  padding-left: 20px;
  margin-top: 50%;
}
.step-5-content .step-text {
  margin: 0 auto 5%;
  width: 50%;
}
.step-5-dot {
  top: 55%;
}
.step-5-line {
  top: 56.3%;
  left: -4px;
  width: 128px;
  height: 2px;
}
.step-5-content .step-image-circle::after {
  width: 245px;
  height: 269px;
  bottom: -12%;
  left: 15%;
  transform: scaleX(-1);
  background-image: url(../images/home/shape/work-2.png);
}

/* Video */
.video-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  border: 6px solid rgba(41, 113, 106, 0.36);
  border-radius: 100px;
}
.video {
  display: none;
}
#myVideo,
#bannerImage {
  width: 100%;
  height: 100%;
}
.playpause.pause {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-btn {
  border-radius: 50%;
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: transparent;
  border: none;
  z-index: 4;
  position: relative;
}
.video-btn::before,
.video-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  z-index: 0;
  animation: pulse-border 2s linear infinite;
  pointer-events: none;
}
.video-btn::after {
  animation-delay: 1s;
}
@keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.video-btn > button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background);
  background: var(--primary);
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.video-btn > button svg {
  width: 50px;
  height: 50px;
  fill: currentColor;
}
.playpause .second {
  display: none;
}
.playpause.play .first {
  display: none;
}
.playpause.play .second {
  display: flex;
}
.playpause.play .video-btn {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.playpause.play:hover .video-btn {
  visibility: visible;
  opacity: 1;
}

/* Customer Say Section */
.customer-section {
  position: relative;
  overflow: hidden;
}
.customer-card-wrapper {
  padding-bottom: 30px;
  background-image: url(../images/home/bg-customer.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.testimonial-card {
  position: relative;
  background: linear-gradient(to bottom, #edfff2, #ffffff);
  border: 6px solid rgba(41, 113, 106, 0.43);
  border-radius: 1000px;
  padding: 30px 50px;
  max-width: 720px;
  margin: 0 auto 65px;
  text-align: left;
}
img.quote-icon {
  width: 67px;
  height: 63px;
  margin: 0 0 20px 15%;
}
.testimonial-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--primary-text);
  line-height: 1.5;
  margin-bottom: 0;
}
.customer-info-pill {
  background-color: var(--primary);
  color: var(--background);
  padding: 25px 30px 25px 40px;
  border-radius: 100px;
  text-align: left;
  margin: 30px 0 -100px 15%;
}
.customer-info-pill h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--background);
}
.customer-info-pill p {
  font-size: 0.875rem;
  margin-bottom: 0;
  line-height: 1.6;
}
.customerSwiper .swiper-pagination {
  bottom: 0 !important;
}
.customerSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d1;
  opacity: 1;
  transition: 0.3s;
}
.customerSwiper .swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 6px;
  background-color: var(--primary);
}

/* Get Started Section */
.get-started-wrapper {
  margin: 0 7%;
  padding: 20px 50px;
  background-image: url(../images/home/bg-get-started.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.get-started-img {
  padding: 0 0 35%;
}
.get-started-wrapper .section-title p {
  text-align: left !important;
  width: 100%;
}
.get-content p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--background);
  margin: 0 0 3px;
}
.get-content p span {
  font-weight: 400;
}
.get-content p:first-child {
  color: #f2cb04;
}

/* App Screenshots Section */
.app-screenshots-section {
  position: relative;
  overflow: hidden;
}
.app-screenshot-card {
  display: flex;
  align-items: center;
  justify-content: center;
}
.appScreenshotsSwiper .swiper-slide img {
  width: auto !important;
}
.appScreenshotsSwiper .swiper-pagination {
  bottom: 0 !important;
}
.appScreenshotsSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d1;
  opacity: 1;
  transition: 0.3s;
}
.appScreenshotsSwiper .swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 6px;
  background-color: var(--primary);
}

/* Contact Page */
.contact-page-info {
  position: relative;
  display: flex;
  align-items: center;
  padding: 35px;
  width: 100%;
  height: 100%;
  border-radius: 80px;
  background: linear-gradient(to bottom, #edfff2, #ffffff);
  filter: drop-shadow(0 0 14px rgba(41, 113, 106, 0.38));
}
.contact-details {
  display: flex;
  align-items: center;
  background-color: var(--background);
  padding: 20px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 40px;
}
.contact-details-wrapper {
  width: 75%;
}
.contact-img {
  width: 25%;
}
.contact-page-info .contact-icon {
  min-width: 88px;
  min-height: 88px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-details-wrapper img {
  width: 48px;
}
.contact-details a {
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}
.contact-banner-bg img {
  width: 100%;
  border-radius: 80px;
  filter: drop-shadow(0 0 14px rgba(41, 113, 106, 0.38));
}
.google-map-section {
  position: relative;
}
.google-map-section iframe {
  /* clip-path: ellipse(50% 140% at 50% 50%); */
  border-radius: 50px;
}
.pizza-img {
  position: absolute;
  left: 0;
  bottom: -7%;
  width: 150px;
  z-index: -1;
}
.leaf-img {
  position: absolute;
  right: 0;
  top: -15%;
  width: 200px;
  z-index: -1;
}

/* Features Page */
.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--secondary-text);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 7px;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background-color: var(--primary);
  clip-path: polygon(0 0, 100% 50%, 0 100%, 35% 50%);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 992px) {
  .banner-text h2,
  .banner-text p,
  .banner-text .demo-button {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
  }
  .swiper-slide-active .banner-text h2,
  .swiper-slide-active .banner-text p,
  .swiper-slide-active .banner-text .demo-button {
    opacity: 1;
    transform: translateY(0);
  }
  .swiper-slide-active .banner-text h2 {
    transition-delay: 0.2s;
  }
  .swiper-slide-active .banner-text p {
    transition-delay: 0.4s;
  }
  .swiper-slide-active .banner-text .demo-button {
    transition-delay: 0.6s;
  }
}

@media (max-width: 1535px) {
  .timeline-wrapper {
    padding: 0;
  }
  .step-2-line {
    width: 68px;
  }
  .step-2-content .step-image-circle::after {
    right: 6.4%;
    bottom: -7.4%;
  }
  .step-3-line {
    width: 75px;
  }
  .step-3-content .step-image-circle::after {
    left: 8%;
  }
  .step-4-line {
    width: 118px;
  }
  .step-5-line {
    width: 102px;
  }
  .step-5-content .step-image-circle::after {
    left: 12%;
  }
  .page-banner .banner-content h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 1399px) {
  .hero-section .main-banner-content {
    padding: 120px 0;
  }
  .section-title h3 {
    font-size: 3rem;
  }
  .step-1-dot,
  .step-5-dot {
    left: -2.2%;
  }
  .step-2-dot {
    right: -5.1%;
  }
  .step-2-line {
    width: 25px;
  }
  .step-2-content .step-image-circle::after {
    right: -0.6%;
    bottom: -6.8%;
  }
  .step-3-dot {
    top: 61.8%;
    left: -2.2%;
  }
  .step-3-line {
    top: 62.8%;
    width: 26px;
  }
  .step-3-content .step-image-circle::after {
    left: 0%;
  }
  .step-4-dot {
    right: -5.1%;
  }
  .step-4-line {
    width: 63px;
  }
  .step-4-content .step-image-circle::after {
    bottom: 46%;
    right: 7%;
  }
  .step-5-line {
    width: 54px;
  }
  .step-5-content .step-image-circle::after {
    left: 5%;
    bottom: -11%;
  }
  .footer-title {
    font-size: 1.5rem;
  }
  .page-banner .banner-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 1199px) {
  .mb-60 {
    margin-bottom: 40px;
  }
  .navbar-nav .nav-item a {
    font-size: 1rem;
    padding: 20px;
  }
  .hero-section .banner-text {
    width: 50%;
    margin-right: 0;
  }
  .section-title h2 {
    font-size: 1.75rem;
  }
  .section-title p {
    width: 100%;
    margin: 20px 0 0;
    font-size: 0.875rem;
  }
  .step-2-content .step-image-circle::after,
  .step-3-content .step-image-circle::after,
  .step-4-content .step-image-circle::after,
  .step-5-content .step-image-circle::after {
    display: none;
  }
  .step-1-content {
    flex-direction: column;
  }
  .central-line {
    bottom: 17%;
  }
  .step-2-content .step-text,
  .step-3-content .step-text,
  .step-4-content .step-text,
  .step-5-content .step-text {
    width: 100%;
  }
  .step-2-dot {
    right: -6.1%;
  }
  .step-4-dot {
    right: -6.2%;
  }
  .step-4-line {
    width: 50px;
  }
  .step-5-dot {
    left: -2.6%;
  }
  .get-started-wrapper {
    margin: 0;
    padding: 30px 0;
    background-color: var(--primary);
    background-image: none;
    border-radius: 50px;
  }
  .get-started-img {
    padding: 0;
  }
  .get-started-wrapper .section-title p {
    margin: 0;
  }
  .app-screenshots-section {
    margin-top: 30px;
  }
  .footer-cta-section {
    padding: 70px 0 60px;
  }
  .footer-cta-content {
    padding-left: 0;
  }
  .footer-cta-content h2 {
    font-size: 2.5rem;
  }
  .footer-logo-section {
    margin-bottom: 70px;
  }
  .legal-section h2 {
    font-size: 1.75rem;
  }
  .contact-page-info {
    border-radius: 40px;
  }
  .contact-banner-bg img {
    border-radius: 40px;
  }
}

@media (max-width: 991px) {
  .mb-60 {
    margin-bottom: 30px;
  }
  .mt-70 {
    margin-top: 50px;
  }
  .mt-80 {
    margin-top: 60px;
  }
  .top-left .logo img {
    width: 100px;
  }
  #navbarNavDropdown .menu-content {
    padding: 15px 20px 0;
  }
  header .header-content {
    position: static;
  }
  .header-content .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, #edfff2, #ffffff);
    z-index: 1000;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--primary);
    padding-bottom: 20px;
    border-radius: 10px;
  }
  .navbar-nav .nav-item a {
    padding: 10px;
  }
  .nav-img img {
    padding: 12.5px;
    border-radius: 11px 0 11px 0;
    background-color: var(--secondary);
    height: 44px;
    width: 44px;
  }
  .nav-img .top-right-content a,
  .nav-img .top-right-content span {
    color: var(--secondary-text);
  }
  .nav-img {
    width: 80%;
  }
  .nav-img .top-right-content a {
    overflow-wrap: anywhere;
  }
  .header-content .menu.navbar {
    padding: 10px 0;
    position: static;
  }
  .demo-btn {
    padding: 14px 13px;
    font-size: 1rem;
  }
  .hero-section .main-banner-content {
    padding: 70px 0;
  }
  .hero-section .banner-content h2 {
    font-size: 1.5rem;
  }
  .demo-wrapper {
    padding: 10px 40px;
  }
  .demo-wrapper span {
    font-size: 1.125rem;
  }
  .hero-prev i,
  .hero-next i {
    font-size: 20px;
  }
  .heroSwiper .swiper-group {
    padding: 15px 40px 15px 50px;
    border-top-left-radius: 60px;
    gap: 20px;
  }
  .section-title p {
    margin: 10px 0 0;
  }
  .arrow-img {
    display: none;
  }
  .app-feature-card {
    padding: 30px 20px;
    margin: 0 auto 20px;
    text-align: center !important;
  }
  .app-feature-icon {
    margin: 0 auto 15px;
  }
  .app-feature-icon img {
    width: 50px;
  }
  .app-feature-card h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
  .app-feature-card p {
    font-size: 0.875rem;
  }
  .step-1-content .step-image-circle::after,
  .central-line,
  .connector-dot,
  .connector-line,
  .step-1-line,
  .step-2-line,
  .step-3-line {
    display: none;
  }
  .step-1-content {
    flex-direction: column-reverse;
    padding-left: 0;
    text-align: center;
    align-items: center;
  }
  .step-2-content,
  .step-3-content,
  .step-4-content,
  .step-5-content {
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 0;
  }
  .timeline-step {
    margin-bottom: 40px;
  }
  .step-text {
    text-align: center;
  }
  .step-text h4 {
    font-size: 1.25rem;
  }
  .step-text p {
    font-size: 0.875rem;
  }
  .step-3-content .step-text,
  .step-5-content .step-text {
    order: 2;
    margin-top: 10px;
    margin-bottom: 0;
  }
  .step-3-content,
  .step-5-content {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
  }
  .step-1-content {
    gap: 0;
  }
  .step-2-content .step-text,
  .step-4-content .step-text {
    margin: 10px 0 0;
    width: 100%;
  }
  .step-3-content .step-text {
    width: 100%;
  }
  .step-4-content {
    margin-top: 30px;
  }
  .how-it-works-section {
    padding: 0 0 50px;
  }
  .how-it-works-page {
    padding: 0;
  }
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stats-grid {
    gap: 15px;
  }
  .our-growing-impact-section {
    padding: 50px 0;
  }
  .our-growing-impact-section::before,
  .our-growing-impact-section::after {
    height: 50px;
  }
  .customer-card-wrapper {
    background-image: none;
  }
  /* .trustedSwiper {
    padding-bottom: 30px !important;
  } */
  .video-wrapper {
    border-width: 3px;
    border-radius: 20px;
  }
  .video-btn {
    height: 60px;
    width: 60px;
  }
  .video-btn > button svg {
    width: 30px;
    height: 30px;
  }
  .get-started-wrapper {
    border-radius: 20px;
  }
  .footer-logo-section {
    margin-bottom: 20px;
  }
  .page-banner .banner-content h1 {
    font-size: 1.75rem;
  }
  .legal-section {
    border-width: 1px;
    padding: 20px 10px;
    border-radius: 20px;
  }
  .legal-section h2 {
    font-size: 1.5rem;
  }
  .legal-section .last-date {
    font-size: 1rem;
  }
  .legal-section-content {
    line-height: 1.6;
    padding: 0 5px;
  }
  p,
  .feature-list li,
  .legal-section-content ul li,
  .legal-section-content p {
    font-size: 0.875rem;
  }
  .legal-section-content h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  .legal-section-content h5 {
    font-size: 1.125rem;
  }
  .legal-section-content ol > li {
    margin-bottom: 20px;
  }
  .contact-info img {
    width: 20px;
  }
  .feature-text-content h3 {
    font-size: 1.5rem;
  }
  .feature-list li {
    padding-left: 25px;
  }
  .result-content h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .mt-60 {
    margin-top: 40px;
  }
  .mt-70 {
    margin-top: 40px;
  }
  #scrollTopBtn {
    bottom: 15px;
    right: 15px;
  }
  .hero-section .banner-text {
    width: 60%;
  }
  .section-title h2 {
    font-size: 1.5rem;
  }
  img.quote-icon {
    width: 40px;
    height: 37px;
    margin: 0 0 10px 5%;
  }
  .testimonial-text {
    font-size: 0.875rem;
  }
  .testimonial-card {
    border-width: 3px;
    border-radius: 40px;
    padding: 20px 15px;
    margin: 0 auto 81px;
  }
  .customer-info-pill h4 {
    font-size: 1.125rem;
  }
  .customer-info-pill {
    padding: 20px;
    border-radius: 40px;
  }
  .footer-cta-section img {
    width: 50px;
  }
  .footer-cta-content h2 {
    font-size: 1.5rem;
  }
  .footer-cta-section {
    padding: 35px 0 25px;
  }
  .footer-content {
    padding: 30px 0 0;
  }
  .footer-content h4 {
    font-size: 1.25rem;
  }
  .footer-cta-section h2 {
    font-size: 1.25rem;
  }
  .footer-logo-section .logo-circle {
    width: 100px;
    height: 100px;
  }
  .footer-nav-links a {
    display: inline-block;
    margin: 0 5px;
  }
  .contact-box {
    margin: 0 auto 20px;
  }
  .footer-bottom {
    text-align: center !important;
  }
  .footer-bottom .col-md-6 {
    text-align: center !important;
    margin-bottom: 10px;
  }
  .footer-bottom .list-inline {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
  }
  .page-banner .banner-content h1 {
    font-size: 1.5rem;
  }
  .page-banner-bg img {
    height: 140px;
  }
  .legal-section h2 {
    font-size: 1.25rem;
  }
  .contact-page-info .contact-icon {
    min-width: 60px;
    min-height: 60px;
  }
  .contact-details-wrapper img {
    width: 30px;
  }
  .contact-details h5 {
    font-size: 1.125rem;
  }
  .contact-details {
    padding: 15px;
    border-radius: 20px;
  }
  .contact-page-info {
    border-radius: 20px;
    padding: 30px 20px;
  }
  .feature-img-wrapper img {
    width: 65%;
  }
}

@media (max-width: 575px) {
  .hero-section .main-banner {
    position: relative;
  }
  .hero-section .banner-text {
    width: 100%;
  }
  .hero-section .main-banner-content {
    padding: 20px 0 75px;
    background: linear-gradient(to bottom, #edfff2, #ffffff);
  }
  .hero-section .banner-content h2 {
    font-size: 1.25rem;
  }
  .demo-wrapper {
    padding: 5px 30px;
  }
  .demo-wrapper span {
    font-size: 1rem;
  }
  .banner-sub {
    font-size: 0.875rem;
  }
  .impact-img-box {
    width: 150px;
  }
  .stat-card {
    height: 140px;
    padding: 15px;
  }
  .stat-number {
    font-size: 1.75rem;
  }
  .stats-grid {
    gap: 10px;
  }
  .customer-info-pill {
    margin: 20px 0 -100px 5%;
  }
  .social-icons img {
    width: 34px;
  }
  .footer-bottom ul {
    list-style-type: none;
  }
  .footer-bottom ul > li + li {
    margin-left: 0;
  }
  .footer-bottom ul > li {
    margin-bottom: 10px;
  }
  .page-banner-bg img {
    height: 120px;
  }
  .legal-section-content h4,
  .legal-section-content ol > li::marker {
    font-size: 1.125rem;
  }
  .legal-section-content h5 {
    font-size: 1rem;
  }
  .contact-img {
    display: none;
  }
  .contact-details-wrapper {
    width: 100%;
  }
  .feature-text-content h3 {
    font-size: 1.25rem;
  }
  .feature-text-content h5 {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .mb-60 {
    margin-bottom: 20px;
  }
  .mt-60 {
    margin-top: 30px;
  }
  .mt-70 {
    margin-top: 30px;
  }
  .mt-80 {
    margin-top: 30px;
  }
  .section-title h2 {
    font-size: 1.25rem;
  }
  .heroSwiper .swiper-group {
    padding: 10px 30px 10px 40px;
    border-top-left-radius: 40px;
    gap: 15px;
  }
  .heroSwiper .swiper-pagination-bullet-active {
    width: 20px;
  }
  .heroSwiper .swiper-button-next::after,
  .heroSwiper .swiper-button-prev::after {
    font-size: 16px;
  }
  .footer-cta-content h2 {
    font-size: 1rem;
  }
  .page-banner .banner-content h1 {
    font-size: 1.25rem;
  }
}

@media (max-width: 425px) {
  .copyright {
    padding-top: 20px;
  }
  .demo-btn {
    font-size: 0.75rem;
  }
  .header-content .navbar-toggler {
    padding: 9px 13px;
  }
  .step-text h4 {
    font-size: 1.125rem;
  }
  .contact-details {
    flex-direction: column;
    text-align: center;
  }
  .feature-img-wrapper img {
    width: 80%;
  }
}
