* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 1.4rem;
  font-family: "Mukta", sans-serif;
}

.container {
  max-width: 1280px;
  margin: auto;
  width: 90%;
}

.p1 {
  color: #768194;
  font-size: 22px;
  line-height: 130%;
}

.h1 {
  line-height: 100%;
  font-size: 72px;
}

.h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 130%;
}

.h3 {
  line-height: 130%;
  font-size: 42px;
}

.btns {
  display: flex;
  gap: 1rem;
}
.btns .btn {
  max-width: 14rem;
  display: inline-block;
  cursor: pointer;
}
.btns .btn .img {
  max-width: 100%;
}

.hero-wrapper {
  background: #6EC19A;
  height: 94vh;
  width: 100%;
}
.hero-wrapper .navbar {
  padding: 20px 0;
  position: absolute;
  top: 0;
}
.hero-wrapper .navbar .logo {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
}
.hero-wrapper .navbar .logo .logo-text {
  font-size: 1.5rem;
}
.hero-wrapper .hero-banner {
  display: flex;
  position: relative;
  align-items: center;
  height: 100%;
}
.hero-wrapper .hero-banner .left-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.hero-wrapper .hero-banner .left-content .h1 {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.hero-wrapper .hero-banner .left-content .p1 {
  max-width: 510px;
  color: #fff;
}
.hero-wrapper .hero-banner .hero-img-div {
  margin-left: auto;
}
.hero-wrapper .hero-banner .hero-img-div .mobile-img {
  height: 94vh;
  position: relative;
  top: 6vh;
}
.hero-wrapper .hero-banner .hero-img-div .mobile-img .img {
  max-width: 90%;
  height: 100%;
}

.feature-call-wrapper {
  background-color: #fff;
  padding: 4rem 0;
}
.feature-call-wrapper .button-wrapper {
  padding: 7rem 0;
}
.feature-call-wrapper .button-wrapper .p1 {
  padding: 3rem 0;
}
.feature-call-wrapper .feature-call {
  display: flex;
  gap: 3rem;
}
.feature-call-wrapper .feature-call .left-nav {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
}
.feature-call-wrapper .feature-call .left-nav .a-link {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  padding: 5px;
  margin: 5px;
  color: #000;
  font-weight: 500;
}
.feature-call-wrapper .feature-call .left-nav .a-link.active {
  color: #6EC19A;
}
.feature-call-wrapper .feature-call .right-content .content {
  display: none;
}
.feature-call-wrapper .feature-call .right-content .content.active {
  display: flex;
  gap: 3rem;
}
.feature-call-wrapper .feature-call .right-content .content.active .feature-img {
  width: 20vw;
  margin: auto;
}
.feature-call-wrapper .feature-call .right-content .content.active .feature-img .img {
  max-width: 100%;
}
.feature-call-wrapper .feature-call .right-content .content.active .feature-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
  flex: 1;
}
.feature-call-wrapper .feature-call .right-content .content.active .feature-text .btns {
  margin-top: 3rem;
}
.feature-call-wrapper .feature-call .right-content .content.active .feature-text .h2 {
  color: #000;
}

.testimonial-section {
  background-color: #6EC19A;
  padding: 4rem 0 2rem;
}
.testimonial-section .content {
  margin: auto;
}
.testimonial-section .content .stars {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.testimonial-section .content .stars .star {
  width: 2rem;
}
.testimonial-section .content .stars .star .img {
  max-width: 100%;
}
.testimonial-section .content .h3 {
  color: #fff;
  font-weight: 500;
}
.testimonial-section .content .author {
  text-align: right;
  color: #fff;
  margin-top: 3rem;
  font-size: 38px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .testimonial-section .content .author {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .testimonial-section .content .author {
    font-size: 22px;
  }
}
.testimonial-section .slick-dots {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.testimonial-section .slick-dots li {
  color: #E0E0E0;
  cursor: pointer;
  font-size: 3.5rem;
}
.testimonial-section .slick-dots li.slick-active {
  color: #fff;
}
.testimonial-section .slick-dots button {
  display: none;
}

.faq-section {
  padding: 4rem 0;
}
.faq-section .content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.faq-section .content .question {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  margin: 10px 0;
}
@media screen and (max-width: 1000px) {
  .faq-section .content .question {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .faq-section .content .question {
    font-size: 25px;
  }
}
.faq-section .content .faq-link {
  color: #6EC19A;
}

.footer {
  background: #6EC19A;
  padding: 4rem 0 2rem;
}
.footer .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  gap: 10px;
}
.footer .content .logo-text {
  font-size: 3rem;
  line-height: 130%;
}
@media screen and (max-width: 1024px) {
  .footer .content .logo-text {
    font-size: 2.2rem;
  }
}
.footer .content .logo {
  text-align: center;
  width: 120px;
  line-height: 0;
}
.footer .content .logo .img {
  width: 100%;
}
.footer .content .btns {
  margin: 1rem 0;
}
.footer .content .p1 {
  color: #fff;
  font-weight: 500;
}
.footer .content .terms-conditions {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.footer .content .terms-conditions .policy {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer .content .bottom-right {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
}
.footer .content .copy-right {
  font-size: 1.2rem;
}
.footer .content .right-reserved {
  font-size: 1.2rem;
}/*# sourceMappingURL=style.css.map */