@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@500&family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  color: #333;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;

}

section,
footer {
  padding: 10rem 6rem 0 6rem;
}

footer {
  padding: 2rem 6rem;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 32px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}

header {
  padding: 3rem 6rem;
  padding-bottom: 0rem;
  /* height: 100vh; */
  position: relative;

  background: #ECF7FB;

}

.vector {
  position: absolute;
  left: -5rem;
  top: 0;
  z-index: -200;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  font-style: normal;
  font-weight: 500;
  font-size: 1.4rem;
  font-family: 'DM Sans', sans-serif;
  /* position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 3rem 6rem;
  padding-bottom: 2rem;
  background-color: #00B2FF; */
}

.sticky {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.95);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 3rem 6rem;
}

.nav-list {
  list-style: none;
  display: flex;
}

.nav-items:not(:last-child) {
  margin-right: 3.5rem;
}

.nav-links {
  text-decoration: none;
  color: #313131 !important;
  font-size: 1.5rem;
}

.link {
  text-decoration: none;
  border-radius: 6px;
  padding: 1rem 4rem;
  color: #404C99;
}

.button a:not(:last-child) {
  margin-right: 1.5rem;
}

.active {
  color: #fff !important;
  border-radius: 0.8rem;
  background: #404C99;
  border: none;
  color: #FAFAFA;
  font-weight: 500;
  /* box-shadow: .8rem 1.6rem 2.4rem 0rem rgba(6, 103, 68, 0.30); */
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 8rem;
}

.hero-text {
  width: 48%;
  margin-top: 7rem;
}

h1 {
  color: #404C99;
  font-size: 4.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 6.7406rem;
  /* 140.43% */
}

.hero-text p {
  color: #5A7184;
  font-size: 1.4979rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.9958rem;
  /* 200% */
  margin-top: 1rem;
  margin-bottom: 4rem;
  width: 80%;
}

.hero-text a {
  padding: 1.5rem 3.5rem;
  font-size: 1.6rem;
  color: #fff;
  border-radius: 1.1234rem;
  background: #404C99;
  font-weight: 600;
  text-decoration: none;

}

.hero-rating {
  display: block;
  width: 20rem;
  margin-top: 3.4rem;
}

.hero-img {
  width: 48%;
}


/*HAMBURGER MENU..............*/
.openMenu {
  font-size: 3rem;
  display: none;
  color: #404C99;
}

.closeMenu {
  font-size: 3rem;
  color: #fff;
  position: absolute;
  top: 8%;
  right: 10%;
  display: none;
}

.menu-list {
  list-style: none;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  max-width: 2000px;
  width: 100%;
  color: #fff;
  background: #404C99;
  padding: 5rem;
  padding-top: 15rem;
  height: 100%;
  display: none;
}


.login,
.menu-list li a {
  text-decoration: none;
  font-size: 2.8rem;
  color: #fff;
  display: block;
  margin-bottom: 3.8rem;
  border: none;
  display: none;
}

.login {
  border: 1px solid #fff;
  padding: 2rem;
  width: 50%;
  margin-right: auto;
  margin-left: auto;
  border-radius: 1rem;
}

.act {
  color: #404C99;
  background-color: #fff;
  border: none;
}


/* OUR PARTNERS.............*/

/* #partner {
  margin-top: 5rem;
} */

.trust h2 {
  color: #000;
  text-align: center;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 3rem;
}

.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
}

.slider .slider-track {
  animation: scroll 30s linear infinite;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
}

.slider .slide {
  height: 100px;
  /* width: 250px; */
}

.slider .slider-track:hover {
  animation-play-state: paused;
}

.slide img {
  width: 12rem;
  height: auto;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}



/* WHY CHOOSE US SECTION........*/
#why {
  background-image: url(/img/why-img.png);
  background-repeat: no-repeat;
  /* background-position: center; */
  background-size: cover;
  width: 100%;
  margin-top: 8rem;
  padding-bottom: 8rem;
}

.why-section h2 {
  color: #000;
  font-size: 4.2rem;
  font-style: normal;
  font-weight: 800;
  line-height: 6rem;
  letter-spacing: -0.126rem;
  text-align: center;
  margin-bottom: 3rem;
}

.why-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.why-box {
  width: 24%;
  border-radius: 2rem;
  background: #FFF;
  padding: 4rem 3rem;
  box-shadow: 0px 50px 115px rgba(165, 153, 209, 0.30);
  /* box-shadow: .8rem 1.6rem 2.4rem 0rem rgba(6, 103, 68, 0.30); */
}

.why-box img {
  width: 8rem;
}

.why-box h3 {
  color: #352B53;
  font-size: 2.3rem;
  font-style: normal;
  font-weight: 800;
  line-height: 130%;
  /* 2.34rem */
  margin-bottom: 4rem;
  margin-top: 2rem;
}

.why-box p {
  color: #363049;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140.2%;
  /* 1.9628rem */
  letter-spacing: 0.03rem;
}



/* HOW It works */
#how {
  background: #155066;
  color: #fff;
}

.how-container h2 {
  color: #FFF;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 800;
  line-height: 5rem;
  /* 156.25% */
  letter-spacing: -0.096rem;
}


.how-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8rem;
}

.how-parag {
  width: 47%;
}

.how-step {
  margin-bottom: 3em;
  display: flex;
  align-items: flex-start;
}

.how-step h6 {
  margin-right: 4rem;
  color: #E8F2FF;
  font-family: "DM Sans";
  font-size: 4.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.2408rem;
  /* 70.451% */
  letter-spacing: -0.092rem;
  background-color: rgba(27, 28, 49, 0.209);
  border-radius: 50%;
  padding: 4rem;
  width: 35px;
  height: 35px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step-text h3 {
  color: #E8F2FF;
  font-size: 2.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.2408rem;
  /* 124.645% */
  letter-spacing: -0.052rem;
}

.how-step-text p {
  color: #FFF;
  font-size: 1.8904rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3.2408rem;
  /* 171.429% */
  letter-spacing: -0.0378rem;
}

.how-box img {
  width: 45%;
}


/* MISSION AND VISION........................*/
.history h2 {
  font-size: 3.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 2rem;
}

.history-box {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: 5rem;
  gap: 1.5rem;
}

.history-text {
  flex-basis: 50%;
  width: 50%;
}

.history-text p {
  color: #383A47;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 45px;
}

.history-text a {
  padding: 1.5rem 3.5rem;
  font-size: 1.6rem;
  color: #fff;
  border-radius: 1.1234rem;
  background: #404C99;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 2rem;
}

.history-box img {
  flex-basis: 30%;
}


/* TESTIMONIAL........................*/
.testimony h2 {
  color: #0F172A;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 800;
  line-height: 110%;
  /* 3.52rem */
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.testimony-container {
  display: flex;
  justify-content: space-between;
}

.testimony-box {
  text-align: center;
  padding: 3rem;
  width: 32%;
  border-radius: 2rem;
  background: var(--White, #FFF);

  /* Shadow/Dark/L */
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.07), 0px 10px 15px -3px rgba(0, 0, 0, 0.10);
}

.stars {
  color: #FBB040;
  margin-bottom: 2rem;
}

.testimony-box p {
  color: var(--Black, #000);
  text-align: left;
  /* Body/L */
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 2.88rem */
}

.customer {
  margin-top: 2rem;
  color: #000;
  text-align: left;
}


/* DATA PRICING PLAN........................*/
#price {
  overflow-x: hidden;
}

.data h2 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;

}

.data-box {
  display: flex;
  justify-content: space-between;

}

.data-plan {
  width: 22%;
  /* border: 1.5px solid rgba(51, 51, 51, 0.50); */
  border-radius: 0.7378rem;
  background: #FFF;
  padding: 2.5rem 1.1rem;
  color: #191919;
}

.data-plan img {
  width: 30%;
  margin-right: 35%;
  margin-left: 35%;
  margin-bottom: 1rem;
}

.data-plan h4 {
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.data-plan ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.data-plan ul li {
  font-size: 1.1rem;
}

.data-plan ul li:not(:last-child) {
  flex-basis: 30%;
  margin-bottom: 2rem;
}

.data-plan a {
  text-decoration: none;
  color: #fff;
  padding: 1rem 1.2rem;
  margin-top: 3rem;
  display: block;
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  border-radius: 1.2rem;
  background: #404C99;
  font-family: 'DM Sans';
  font-size: 1.4rem;
  font-weight: 500;
  line-height: normal;
  border-radius: 0.8854rem;
}


/* FREQUENTLY ASKED QUESTION........................*/
#faq {
  margin-top: 5rem;
}

.faq-container {
  position: relative;
}

h2.faq-container-h2 {
  font-size: 2.8rem;
  color: #333333;
  text-align: center;
  margin-bottom: 4rem;
}

.faq-container h2 {
  padding-bottom: 2rem;
}

.accordion-button {
  font-size: 1.8rem !important;
  font-family: 'Manrope' !important;
  font-weight: 600 !important;
  color: #333 !important;
}

.accordion-body {
  font-size: 1.7rem !important;
  font-family: 'Manrope' !important;
  line-height: 3.2rem !important;
  color: #383A47 !;
}

.faq-review {
  color: #000;
  font-size: 1.8rem;
  line-height: 3.2rem;
  margin-top: 3rem;
}

/*..................FOOTER......................*/
footer {
  background: #155066;
  margin-top: 3rem;
  color: #fff;
}

.footer-box {
  padding-top: 8rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-about {
  flex-basis: 40%;
}

.footer-about p {
  font-family: 'DM Sans';
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3.7832rem;
}

.footer-box ul {
  list-style: none;
}

.footer-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1.8rem;
}

.footer-box ul a,
.footer-box ul li {
  text-decoration: none;
  color: #fff;
  font-size: 1.3rem;
}

.footer-box ul li:not(:last-child) {
  margin-bottom: 1.8rem;
}

.footer-email {
  margin-top: 2rem;
}




.footer-email a {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  text-align: right;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.4rem;
  color: #333;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  background: #fff;
}

.copy {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 8rem;
  padding-top: 1.5rem;
  border-top: 1px solid #cdcdcd;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.footer-icon a {
  text-decoration: none !important;
  color: #fff;
  font-size: 1.7rem;
  margin-right: 1.2rem;
}