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

* {
  margin: 0;
  padding: 0;
  font: inherit;
}
:root {
  --clr-primary: #01a7f7;
  --clr-primary-2: #41dbff;
  --clr-primary-3: #005dbc;
  --clr-primary-3-2: #00b2ff;
  --clr-primary-3-3: #0068b5;
  --clr-secondary: #ff9103;
  --clr-secondary-2: #fff600;
  --clr-secondary-3: #ff6500;
  --clr-secondary-3-2: #ff8000;
  --clr-secondary-3-3: #ffab07;
  --clr-neutral: #607580;
  --clr-background: #ffffff;
  --clr-btn-text: #ffffff;
  --clr-nav-text: var(--clr-primary);
  --clr-img-border: #fff600;
  --hover-color: var(--clr-neutral);
  --hero-gradient: linear-gradient(
      45deg,
      #2ECFFD,
      #0CB9FF
    ),
    radial-gradient(circle, #41ccff 0%, #00b2ff 100%);
}
html {
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  overflow-x: hidden !important;
}
body {
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--clr-background);
  /* background-color: red; */
  /* background-color: red; */
  overflow-x: hidden !important;
}
.poppins {
  font-family: "Poppins", sans-serif;
  font-style: normal;
}
/* Media responsive */
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}
a {
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: var(--clr-secondary);
}
p {
  /* max-width: 75ch; */
  text-wrap: pretty; /* Prevents orphans on lines */
}
.section-spacing {
  margin-top: 65px;
  margin-bottom: 65px;
}
.section-header {
  text-align: center;
  font-size: 3.125rem;
  font-weight: 600;
  margin-bottom: 75px;
}
/* Navbar */
.nav-wrap {
  overflow: hidden;
  padding-bottom: 10px;
}
.nav-outer {
  background-image: url("/static/images/nav-wavy-1440.svg");

  background-repeat: repeat-x;

  filter: drop-shadow(0 0px 5px rgba(0, 0, 0, 0.15));
}
/* .nav-outer::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  height: 100px;
  z-index: -1;
  background-color: red;
} */

.nav-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.navbar-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav {
  /* background-color: var(--clr-background); */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}
nav .home-li {
  margin-right: auto;
}
nav li {
  display: flex;
  justify-content: center;
  align-items: center;
}
nav a {
  display: flex;

  text-decoration: none;
  color: var(--clr-nav-text);
  padding-block: 1em;
  font-size: 20px;
  font-weight: 600;
  transition: all 150ms ease;
}
nav a:hover {
  color: var(--clr-secondary);
}
nav a.active-link {
  /* border-bottom: 2px solid var(--clr-nav-text); */
  color: var(--clr-secondary);
}
.nav-mobile-head {
  display: none;
}
#open-sidebar-button {
  display: none;
  background: none;
  border: none;
  padding: 1em;
  margin-left: auto;
  cursor: pointer;
}
#close-sidebar-button {
  display: none;
  background: none;
  border: none;
  padding: 1em;
  cursor: pointer;
}
#overlay {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  z-index: 9;
  display: none;
}
/* .skip-link {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  outline: 3px solid #ffffff;
} */
@media screen and (max-width: 700px) {
  .nav-wrap {
    /* overflow: initial; */
    padding-bottom: 10px;
  }
  .nav-outer {
    background-image: url("./images/nav-wavy-1440.svg");

    background-repeat: repeat-x;

    filter: none;
  }
  .nav-menu {
    background-color: var(--clr-background);
  }
  #open-sidebar-button,
  #close-sidebar-button {
    display: block;
  }
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(15em, 100%);
    z-index: 20000;
    border-left: 1px solid var(--hover-color);
    transition: right 300ms ease-in-out;
  }
  nav.show {
    right: 0;
  }
  nav.show ~ #overlay {
    display: block;
  }
  nav ul {
    width: 100%;
    flex-direction: column;
    padding-left: 20px;
    gap: 0px;
    align-items: center;
  }
  nav a {
    width: 100%;
  }
  nav a.active-link {
    border-bottom: none;
  }
  nav .home-li {
    margin-right: unset;
  }
  .nav-mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-mobile-head h2 {
    color: var(--clr-secondary-3);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
  }
}
/* Buttons start */
.btn-main {
  background-color: var(--clr-secondary);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 8px 15px !important;
  border-radius: 20px;
  color: var(--clr-btn-text);
  transition: all 0.3s ease-in-out;
}
.btn-main:hover {
  background-color: var(--hover-color);
  color: var(--clr-btn-text);
}
.btn-outline-white {
  background-color: transparent;
  border: 3px solid var(--clr-btn-text);
  color: var(--clr-btn-text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  padding: 12px 35px;
  font-weight: 600;
  font-size: 1.5625rem;
  transition: all 0.3s ease-in-out;
}
.btn-outline-white:hover {
  background-color: var(--clr-secondary);
  color: var(--clr-btn-text);
}
.btn-solid-white {
  background-color: #ffffff;
  /* border: 3px solid var(--clr-btn-text); */
  color: var(--clr-secondary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  padding: 12px 35px;
  font-weight: 600;
  font-size: 1.5625rem;
  transition: all 0.3s ease-in-out;
}
.btn-solid-white:hover {
  background-color: var(--clr-secondary);
  color: var(--clr-btn-text);
}
.btn-sec-cta {
  background-color: var(--clr-secondary-3-3);
  color: var(--clr-btn-text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  padding: 10px 30px;
  font-weight: 600;
  overflow: visible;
  white-space: nowrap;
  min-width: fit-content;
  font-size: 1.25rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.15),
    inset -2px -3px 0px 0px rgba(0, 0, 0, 0.1);
}

.btn-sec-cta:hover {
  background-color: var(--clr-secondary);
  color: var(--clr-btn-text);
}
.btn-try-cta {
  background-color: #ffe607;
  color: #005dbc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 30px;
  padding: 10px 30px;
  font-weight: 600;
  overflow: visible;
  white-space: nowrap;
  /* min-width: fit-content; */
  max-width: 390px;
  width: 100%;
  font-size: 1.25rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.15),
    inset -2px -3px 0px 0px rgba(0, 0, 0, 0.1);
}
.btn-try-cta svg {
  color: rgba(0, 179, 255, 0.5);
}
.btn-try-cta:hover {
  background-color: var(--clr-primary-3-3);
  color: var(--clr-btn-text);
}
.btn-google-signup {
  font-size: 1.0625rem;
  font-weight: 500;
  background-color: hsla(34, 100%, 51%, 0.1);
  color: #607580;
  display: inline-flex;
  justify-content: center;
  gap: 25px;
  align-items: center;
  border-radius: 8px;
  padding: 12px 35px;
  width: 100%;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.btn-google-signup:hover {
  background-color: #01b3ff;
  color: #ffffff;
}
.btn-form-submit {
  font-size: 1.0625rem;
  font-weight: 600;
  background-color: var(--clr-primary);
  color: #ffffff;
  display: inline-flex;
  justify-content: center;
  gap: 25px;
  align-items: center;
  border-radius: 8px;
  padding: 8px 30px;
  width: 100%;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.btn-form-submit:hover {
  background-color: #01b3ff;
  color: #ffffff;
}
/* Buttons end */
/* hero section start */
.hero-section {
  min-height: 600px;
  background: var(--hero-gradient);
  padding-top: 40px;
  padding-bottom: 70px;
  position: relative;
}
.hero-traingle-wrap {
  position: absolute;
  bottom: -94px;
  left: 30px;
  pointer-events: none;
}
.hero-semi-circle-wrap {
  position: absolute;
  bottom: -20px;
  right: 0;
  pointer-events: none;
}
.hero-text {
  color: #ffffff;
  max-width: 500px;
}
.hero-section > div {
  padding-top: 100px;
}
.hero-section h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 3.75rem;
}
.hero-section h2 span {
  color: var(--clr-secondary-2);
  font-size: 4.375rem;
}
.hero-text-desc {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.hero-text-lead {
  font-size: 1.5625rem;
  font-weight: 600;
}

.hero-btn-wrap {
  display: flex;
  gap: 10px;
  row-gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.rating-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.teacher-approve {
  font-weight: 600;
  font-size: 1.375rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}
.bar {
  width: 3px;
  /* border-right: 2px solid #ffffff; */
  background-color: #ffffff;
  display: inline-block;
  height: 20px;
  border-radius: 3px;
}
.hero-star-wrap {
  display: flex;
  gap: 10px;
  font-weight: 500;
  font-size: 0.9375rem;
}
/* hero section end */
/* trust section start */
.trust-card-wrap {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 175px));
  justify-content: space-between;
  position: relative;
}
.trust-bg-icon-wrap {
  position: absolute;
  bottom: -65px;
  right: -65px;
  pointer-events: none;
}
.trust-card-wrap img {
  margin-inline: auto;
}
.trust-card {
  text-align: center;
}
.trust-card p {
  font-weight: 600;
  font-size: 1.25rem;
  margin-top: 20px;
  color: var(--clr-primary-3);
}
/* trust section end */
/* testimonial section start */
.testimonial-section h2 {
  color: var(--clr-secondary-3);
}
.testimonial-cards-wrap {
  overflow: hidden;
  /* width: 100%; */
}
.slick-initialized {
  overflow: hidden !important;
  /* removes overflow of slider in horizontal direction */
}

.slick-track {
  display: flex;
  gap: 40px;
  /* width: auto !important; */
}
.slick-list {
  overflow: hidden;
}

/* .slick-slide {
  flex-shrink: 0;
  width: auto;
} */
/* .slick-list {
  overflow: hidden;
  padding: 0;
  margin: 0;
} */
.custom-slider-dots .slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 1rem 0;
  list-style-type: none;
  bottom: 0;
  gap: 1px;
}

.custom-slider-dots .slick-dots li {
  margin: 0 0;
}

.custom-slider-dots .slick-dots button {
  display: block;
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background-color: rgba(1, 165, 247, 0.3);
  background-color: rgb(from var(--clr-primary) r g b / 0.3);
  text-indent: -9999px;
  transition: width 0.3s ease-in-out;
}
.custom-slider-dots .slick-dots li.slick-active button {
  width: 30px;
  height: 9px;
  padding-right: 20px;
  background-color: var(--clr-primary);
  transition: width 0.3s ease-in-out;
}
.custom-slider-dots .slick-dots li.slick-active {
  margin-right: 20px;
  /* margin-left: 14px; */
}
.testimonial-card {
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 22px 0 rgba(0, 0, 0, 0.1);
  max-width: 650px;
  display: flex;
  gap: 40px;
  margin-block: 75px;
  min-height: 475px;
}

.test-img-wrap {
  border-radius: 25px;
  overflow: hidden;
  outline: 3px solid var(--clr-img-border); /* Inside border */
  outline-offset: -3px;
  aspect-ratio: 270/325;
  object-fit: cover;
  object-position: center;
  flex-basis: 50%;
  flex-grow: 1;
}
.test-img-wrap img {
  /* max-width: unset; */
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.test-content-wrap {
  flex-basis: 50%;
}
.test-name-wrap {
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
}
.test-name-img-wrap {
  height: 53px;
  width: 53px;
  overflow: hidden;
  border-radius: 100%;
}
.test-name {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.test-subject {
  font-size: 0.9375rem;
}
.test-quote {
  font-size: 1.125rem;
}
/* testimonial section end */
/* simple process section start */
.simple-process-section header {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 115px;
}
.simple-process-section header .section-header {
  color: var(--clr-primary);
  margin-bottom: 35px;
}
.simple-process-section p {
  color: var(--clr-primary-3);
  font-weight: 500;
  font-size: 1.375rem;
}
.simple-process-icon-wrap {
  position: absolute;
  top: -70px;
  left: 60px;
  pointer-events: none;
}
.simple-process-card {
  padding: 60px 75px;
  background-color: #fff9f0;
  border-radius: 70px;
  text-align: center;
  position: relative;
}
.simple-process-card-multiplicaiton-wrap {
  position: absolute;
  top: -35px;
  left: 90px;
  pointer-events: none;
}
.simple-process-card-protractor-wrap {
  position: absolute;
  bottom: 45px;
  right: -45px;
  pointer-events: none;
}
.simple-process-card h3 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--clr-secondary-3);
}
.process-step {
  max-width: 175px;
  position: relative;
}
.process-step-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.process-step-wrap > :not(:last-child)::before {
  content: url("/static/images/process-step-dash.svg");
  position: absolute;
  z-index: 1;
  right: -140px;
  top: 30px;
  /* width: 130px;
  height: 18px; */
  pointer-events: none;
}
.step-width {
  max-width: 115px;
  margin-inline: auto;
}
.process-step img {
  margin-inline: auto;
  margin-bottom: 25px;
}
.process-step h4 {
  color: var(--clr-secondary-3);
  font-weight: 600;
  font-size: 1.5625rem;
  margin-bottom: 10px;
}
.process-step p {
  color: var(--clr-primary-3);
  font-weight: 400;
  font-size: 1.125rem;
}
/* simple process section end */
/* why parents choose section start */
.why-parents-choose-section {
  /*max-width: 970px;*/
  margin-inline: auto;
}
.why-parents-choose-header {
  text-align: center;
  color: var(--clr-primary);
  font-size: 2.5rem;
  font-weight: 600;
}
.why-parents-choose-header span {
  color: var(--clr-secondary-3-2);
  font-size: 2.8125rem;
  font-weight: 600;
}
.why-parents-choose-content-wrap p {
  color: var(--clr-primary-3);
  font-size: 1.125rem;
}
/* .why-parents-choose-content-blue h3 {
  color: var(--clr-primary);
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.why-parents-choose-content-orange h3 {
  color: var(--clr-secondary-3-2);
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 20px;
} */
.custom-spacing {
  /* --bs-gutter-x: 2.5rem; */
}
.why-column-text {
  padding: 20px 40px;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
}
/* .why-parents-choose-content-wrap > div {
  display: flex;
  align-items: center;
  justify-content: center;
} */
.why-parents-choose-content-wrap > .row:not(:last-child) {
  margin-bottom: 40px;
}
.why-parents-choose-content-wrap > div:nth-child(2n + 1) {
  /* background-color: red; */
}
.why-parents-choose-content-wrap > div:nth-child(2n + 1) h3 {
  color: var(--clr-primary);
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.why-parents-choose-content-wrap > div:nth-child(2n) {
  /* background-color: yellow; */
  flex-direction: row-reverse;
}
.why-parents-choose-content-wrap > div:nth-child(2n) h3 {
  color: var(--clr-secondary-3-2);
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 20px;
}
/* why parents choose section end */
/* cheap unlimited section start */
.cheap-unlimited-card {
  padding: 45px 75px;
  background-color: var(--clr-primary-3-2);
  border-radius: 50px;
  position: relative;
}
.cta-traingle {
  position: absolute;
  left: -60px;
  bottom: -15px;
}
.cta-cubes {
  position: absolute;
  top: 50px;
  right: -50px;
}
.cheap-unlimited-text h3 {
  max-width: 450px;
  color: #ffffff;
  font-size: 35px;
  font-weight: 600;
  margin-top: 40px;
}
.cta-form-wrap p {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 36px;
  margin-bottom: 15px;
}
.pill-input {
  border-radius: 44px;
  padding: 12px 30px;
}
.pill-input::placeholder {
  font-size: 1.375rem;
  font-weight: 500;
  color: rgba(0, 103, 181, 0.5);
}
.cta-form input {
  max-width: 390px;
}
/* cheap unlimited section end */

/* listen customer section start */
.listen-customer-section h2 {
  color: var(--clr-primary);
}
.listen-customer-slide-card {
  padding: 25px 40px;
  max-width: 600px;
  border-radius: 30px;
  position: relative;
  margin-top: 25px;
}
.listen-customer-slider-wrap .listen-customer-slide-card:nth-child(3n + 1) {
  background-color: rgba(255, 145, 0, 0.1);
}
.listen-customer-slider-wrap .listen-customer-slide-card:nth-child(3n + 2) {
  background-color: rgba(0, 179, 255, 0.08);
}
.listen-customer-slider-wrap
  .listen-customer-slide-card:nth-child(3n + 2)::before {
  content: url("/static/images/listen-customer-pencil.svg");
  width: 127px;
  height: 68px;
  position: absolute;
  top: -25px;
  right: -30px;
}

.listen-customer-slider-wrap .listen-customer-slide-card:nth-child(3n) {
  background-color: rgba(251, 0, 255, 0.06);
}
.listen-img-wrap {
  width: 41px;
  height: 41px;
  overflow: hidden;
  border-radius: 100%;
  display: grid;
  place-items: center;
  background-color: #d9d9d9;
}
.listen-customer-info-wrap {
  display: flex;
  gap: 24px;
}
.listen-name {
  color: var(--clr-primary-3-3);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.listen-info {
  color: var(--clr-primary-3-2);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.custom-arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--clr-primary-3-2);
}
.custom-arrow-wrap svg {
  transition: color 0.3s ease-in-out;
}
.custom-arrow-wrap > div {
  padding: 5px;
  cursor: pointer;
}
.custom-prev-arrow:hover,
.custom-next-arrow:hover {
  color: rgba(0, 179, 255, 0.3);
}

/* listen customer section end */
/* Try now section start */
.try-now-section {
  /* background: radial-gradient(
    circle 400px at 35% 80%,
    #d7fdff 0%,
    #00b2ff 100%
  ); */
  margin-top: 180px;
}
.try-now-section-wave {
  mask-image: url("/static/images/path.svg");
  /* mask-repeat: no-repeat; */
  mask-position: top;
  mask-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  background: radial-gradient(
    circle 400px at 35% 80%,
    #d7fdff 0%,
    #00b2ff 100%
  );

  width: 100%;

  z-index: -1;
}
.try-now-wrap .container {
  /* position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; */
}
.try-now-img-wrap {
  overflow: hidden;
  height: 600px;
}
.try-now-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.try-now-content {
  position: absolute;
  top: -80px;
  left: -60px;
  padding: 50px 55px;
  background-color: var(--clr-secondary-3-3);
  border-radius: 30px;
  color: #ffffff;
}
.try-now-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
}
.try-now-content h4 {
  font-size: 2.1875rem;
  font-weight: 600;
}
.try-now-content header {
  position: relative;
  margin-bottom: 45px;
}
.try-now-content header::before {
  position: absolute;
  bottom: -16px;
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
}
.try-now-content p {
  font-weight: 500;
  font-size: 1.375rem;
}
.try-now-content .try-lead {
  font-size: 1.125rem;
}
.child-grade-input {
  max-width: 290px !important;
}
.cta-form .input-wrap > *:not(:last-child) {
  margin-bottom: 15px;
}
/* Try now section end */
/* footer section start */
.upper-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1142px;
  margin-inline: auto;
}
.footer-logo-section {
  flex-basis: 40%;
}
.footer-links-section {
  flex-basis: 60%;
}
.footer-logo-section {
  max-width: 340px;
}
.footer-desc {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-primary-3-3);
  margin-block: 40px;
  padding-block: 40px;
  border-top: 1px solid #01b3ff;
  border-bottom: 1px solid #01b3ff;
}
.footer-socials-wrap h4 {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--clr-primary);
  margin-bottom: 15px;
}
.footer-socials {
  display: flex;
  gap: 30px;
}
.footer-socials a {
  color: var(--clr-primary-3-3);
  transition: color 0.3s ease-in-out;
}
.footer-socials a:hover {
  color: var(--clr-secondary);
}
.footer-links-section {
  display: flex;
  justify-content: space-around;
}
.footer-links-section h3 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--clr-secondary-3-3);
  position: relative;
  margin-bottom: 55px;
}
.footer-links-section h3::before {
  position: absolute;
  content: "";
  bottom: -15px;
  background-color: #01b3ff;
  width: 87px;
  height: 3px;
}
.quick-links a {
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--clr-primary-3-3);
}
.quick-links a:hover {
  color: var(--clr-secondary);
}
.quick-links ul li {
  margin-bottom: 25px;
}
.get-in-touch-info > div:not(:last-child) {
  margin-bottom: 40px;
  position: relative;
}
.get-in-touch-info > div:not(:last-child)::before {
  position: absolute;
  bottom: -20px;
  content: "";
  background-color: hsla(198, 100%, 50%, 0.3);
  height: 2px;
  width: 85px;
}
.get-in-touch-info {
  max-width: 155px;
}
.get-in-touch a {
  text-decoration: none;
  font-size: 0.9375rem;
  color: var(--clr-primary-3-3);
  font-weight: 500;
  display: flex;
  gap: 15px;
}
.get-in-touch svg {
  flex-shrink: 0;
  color: #01b3ff;
  transition: color 0.3s ease-in-out;
}
.get-in-touch a:hover {
  color: var(--clr-secondary);
}
.get-in-touch a:hover svg {
  color: var(--clr-secondary);
}
.copyright-footer {
  display: flex;
  align-items: baseline;
  gap: 20px;
  justify-content: space-between;
  max-width: 1280px;
  margin-inline: auto;
  margin-bottom: 20px;
  color: hsla(200, 99%, 49%, 0.75);
}
.btn-to-top {
  background-color: var(--clr-secondary);
  padding: 6px 24px;
  border-radius: 46px;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  color: #ffffff;
}
.btn-to-top:hover {
  background-color: var(--clr-primary-3-3);
  color: #ffffff;
}
.btn-to-top:focus {
  box-shadow: inset 0px 0px 0 2px var(--clr-secondary);
}
.footer-privacy,
.footer-privacy a {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsla(200, 99%, 49%, 0.75);
}
.footer-privacy a:hover {
  color: var(--clr-secondary);
}
.footer-design-by {
  font-size: 0.75rem;
  font-weight: 400;
  margin-block: 15px;
}
.footer-design-by span {
  font-weight: 500;
}
/* footer section end */

/* inner page css start */
.inner-page-body {
  height: 100vh;
  height: 100dvh;
}

.inner-page {
  height: 100vh;
  height: 100dvh;
  position: relative;
  display: flex;
}
.left-image-wrap {
  height: 100vh;
  flex-shrink: 0;
  position: fixed;
  z-index: -1;
}
.left-image-wrap img {
  height: 100%; /* Full height */
  width: auto; /* Maintain aspect ratio */
}
.left-placeholder {
  flex-basis: 35%;
  /* display: none; */
}
.right-content-wrap {
  flex: 1; /* Take the remaining space */
  margin-top: 120px;
  flex-basis: 75%;
}
.right-content {
  max-width: 400px;
  margin-inline: auto;
}
.right-content h2 {
  color: var(--clr-primary);
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

.horizontal-divider {
  background-color: hsla(201, 14%, 44%, 0.1);
  height: 1px;
  width: 100%;
  margin-block: 25px;
}

.form-page-input {
  background-color: hsla(200, 99%, 49%, 0.05);
  border: 1px solid hsla(200, 99%, 49%, 0.5);
  padding: 5px 25px;
}
.form-page-input:focus {
  outline: none;
  border-color: inherit;
  box-shadow: inset 0px 0px 0 1px var(--clr-secondary);
  background-color: hsla(200, 99%, 49%, 0.05);
}
.form-page-input::placeholder {
  color: hsla(201, 14%, 44%, 0.4);
}
.input-form-wrap input {
  margin-bottom: 15px;
}
.form-page label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--clr-neutral);
}
.already-account,
.form-link {
  font-weight: 500;
  font-size: 0.875rem;
  color: #607580;
}
.form-link {
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--clr-primary);
}
.already-account a {
  color: var(--clr-primary);
}
.already-account a:hover {
  color: var(--clr-secondary);
}
.try-enter-card {
  background-color: hsla(200, 99%, 49%, 0.1);
  padding: 20px;
  border-radius: 8px;
  height: 120px;
}
.try-enter-btn-wrap h4 {
  color: var(--clr-secondary);
  font-size: 1.125rem;
  font-weight: 600;
}
.try-enter-img {
  transform: scale(1.15) translateY(-25px);
}
.btn-play {
  background-color: var(--clr-secondary);
  border-radius: 25px;
  color: #ffffff;
  font-size: 0.9375rem;
  white-space: nowrap;
  font-weight: 600;
  padding-inline: 15px;
  transition: all 0.3s ease-in-out;
}
.btn-play:hover {
  background-color: var(--clr-primary-3-3);
  border-radius: 25px;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  padding-inline: 15px;
}
.btn-download {
  background-color: var(--clr-primary);
  border-radius: 25px;
  white-space: nowrap;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  padding-inline: 15px;
  transition: all 0.3s ease-in-out;
}
.btn-download:hover {
  background-color: var(--clr-primary-3-3);
  border-radius: 25px;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  padding-inline: 15px;
}
.footer-inner {
  max-width: 720px;
  margin-top: 60px;
  margin-inline: auto;
  width: 100%;
  border-top: 1px solid hsla(201, 14%, 44%, 0.5);
}
.footer-inner-links {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px 10px;
  max-width: 470px;
  margin-inline: auto;
}
.footer-inner-links a {
  text-decoration: none;
  color: hsla(201, 14%, 44%, 0.5);
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.footer-inner-links a:hover {
  text-decoration: none;
  color: var(--clr-secondary);
}
.modal-content {
  padding: 25px;
  border-radius: 20px;
}
#resetPasswordModal .modal-content p {
  color: var(--clr-primary);
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0;
}
.download-btn-wrap {
  max-width: 600px;
  margin-inline: auto;
}
.modal-dialog h2 {
  color: var(--clr-secondary-3);
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
}
.google-download-btn:hover,
.apple-download-btn:hover {
  box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}
/* .try-enter-card {
  flex-wrap: wrap;
} */
/* inner page css end */
/* Responsive css start */
@media screen and (max-width: 692px) {
  .hero-video {
    margin-left: -12px;
  }
  .hero-robo {
    margin-top: 7em !important;
    margin-left: -1.5em !important;
    width: 28% !important;
  }
  .hero-img-wrap {
    margin-top: -20px;
  }
  .section-header {
    font-size: 1.875rem;

    margin-bottom: 35px;
  }
  .section-spacing {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .logo {
    width: 150px;
  }
  .nav-outer {
    background-image: url("/static/images/nav-wavy-mobile.svg");
    padding-bottom: 15px;
  }
  /* Buttons start */
  .btn-main {
    background-color: var(--clr-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 15px !important;
    border-radius: 20px;
    color: var(--clr-btn-text);
    transition: all 0.3s ease-in-out;
  }
  .btn-main:hover {
    background-color: var(--hover-color);
    color: var(--clr-btn-text);
  }
  .btn-outline-white {
    background-color: transparent;
    border: 3px solid var(--clr-btn-text);
    color: var(--clr-btn-text);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    padding: 12px 35px;
    font-weight: 600;
    font-size: 1.5625rem;
    transition: all 0.3s ease-in-out;
  }
  .btn-outline-white:hover {
    background-color: var(--clr-secondary);
    color: var(--clr-btn-text);
  }
  .btn-solid-white {
    background-color: #ffffff;
    /* border: 3px solid var(--clr-btn-text); */
    color: var(--clr-secondary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    padding: 6px 30px;
    font-weight: 600;
    font-size: 1.3rem;
    transition: all 0.3s ease-in-out;
  }
  .btn-solid-white:hover {
    background-color: var(--clr-secondary);
    color: var(--clr-btn-text);
  }
  .btn-sec-cta {
    background-color: var(--clr-secondary-3-3);
    color: var(--clr-btn-text);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    padding: 6px 30px;
    font-weight: 600;
    overflow: visible;
    white-space: nowrap;
    min-width: fit-content;
    font-size: 1.1rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.15),
      inset -2px -3px 0px 0px rgba(0, 0, 0, 0.1);
  }

  .btn-sec-cta:hover {
    background-color: var(--clr-secondary);
    color: var(--clr-btn-text);
  }
  .btn-try-cta {
    background-color: #ffe607;
    color: #005dbc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 30px;
    padding: 7px 25px;
    font-weight: 600;
    overflow: visible;
    white-space: nowrap;
    /* min-width: fit-content; */
    max-width: 390px;
    width: 100%;
    font-size: 0.9rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.15),
      inset -2px -3px 0px 0px rgba(0, 0, 0, 0.1);
  }
  .btn-try-cta svg {
    color: rgba(0, 179, 255, 0.5);
  }
  .btn-try-cta:hover {
    background-color: var(--clr-primary-3-3);
    color: var(--clr-btn-text);
  }
  .btn-google-signup {
    font-size: 1.0625rem;
    font-weight: 500;
    background-color: hsla(34, 100%, 51%, 0.1);
    color: #607580;
    display: inline-flex;
    justify-content: center;
    gap: 25px;
    align-items: center;
    border-radius: 8px;
    padding: 12px 35px;
    width: 100%;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
  }
  .btn-google-signup:hover {
    background-color: #01b3ff;
    color: #ffffff;
  }
  .btn-form-submit {
    font-size: 1.0625rem;
    font-weight: 600;
    background-color: var(--clr-primary);
    color: #ffffff;
    display: inline-flex;
    justify-content: center;
    gap: 25px;
    align-items: center;
    border-radius: 8px;
    padding: 8px 30px;
    width: 100%;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
  }
  .btn-form-submit:hover {
    background-color: #01b3ff;
    color: #ffffff;
  }
  /* Buttons end */
  /* hero section start */
  .hero-section {
    min-height: 850px;
    background: var(--hero-gradient);
    padding-top: 40px;
    padding-bottom: 70px;
    position: relative;
  }
  .hero-traingle-wrap {
    position: absolute;
    transform: scale(0.5);
    bottom: -94px;
    left: -30px;
    pointer-events: none;
  }
  .hero-semi-circle-wrap {
    position: absolute;
    transform: scale(0.5);

    bottom: -50px;
    right: -30px;
    pointer-events: none;
  }
  .hero-text {
    color: #ffffff;
    max-width: 500px;
  }
  .hero-section > div {
    padding-top: 60px;
  }
  .hero-section h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 2.8125rem;
  }
  .hero-section h2 span {
    color: var(--clr-secondary-2);
    font-size: 3.125rem;
  }
  .hero-text-desc {
    font-size: 1.0625rem;
    margin-bottom: 10px;
  }
  .hero-text-lead {
    font-size: 1.25rem;
    font-weight: 600;
  }

  .hero-btn-wrap {
    display: flex;
    gap: 10px;
    row-gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
  }
  .rating-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
  }
  .teacher-approve {
    font-weight: 600;
    font-size: 1.375rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
  }
  .bar {
    width: 3px;
    /* border-right: 2px solid #ffffff; */
    background-color: #ffffff;
    display: inline-block;
    height: 20px;
    border-radius: 3px;
  }
  .hero-star-wrap {
    display: flex;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9375rem;
  }
  /* hero section end */
  /* trust section start */
  .trust-card-wrap {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 175px));
    justify-content: space-between;
    position: relative;
  }
  .trust-bg-icon-wrap {
    position: absolute;
    transform: scale(0.5);
    bottom: -45px;
    right: -45px;
    pointer-events: none;
  }
  .trust-card-wrap img {
    width: 60px;
    margin-inline: auto;
  }
  .trust-card {
    text-align: center;
    max-width: 135px;
    margin-inline: auto;
  }
  .trust-card p {
    font-weight: 600;
    font-size: 0.9375rem;
    margin-top: 15px;
    color: var(--clr-primary-3);
  }
  /* trust section end */
  /* testimonial section start */
  .testimonial-section h2 {
    color: var(--clr-secondary-3);
  }
  .testimonial-cards-wrap {
    overflow: hidden;
    width: 100%;
  }
  .slick-initialized {
    overflow: hidden;
    /* removes overflow of slider in horizontal direction */
  }
  .slick-track {
    display: flex;
    gap: 20px;
    /* width: auto !important; */
  }
  /* .slick-list {
  overflow: hidden;
  padding: 0;
  margin: 0;
} */
  .custom-slider-dots .slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1rem 0;
    list-style-type: none;
    bottom: 0;
    gap: 1px;
  }

  .custom-slider-dots .slick-dots li {
    margin: 0 0;
  }

  .custom-slider-dots .slick-dots button {
    display: block;
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background-color: rgba(1, 165, 247, 0.3);
    background-color: rgb(from var(--clr-primary) r g b / 0.3);
    text-indent: -9999px;
    transition: width 0.3s ease-in-out;
  }
  .custom-slider-dots .slick-dots li.slick-active button {
    width: 30px;
    height: 9px;
    padding-right: 20px;
    background-color: var(--clr-primary);
    transition: width 0.3s ease-in-out;
  }
  .custom-slider-dots .slick-dots li.slick-active {
    margin-right: 20px;
    /* margin-left: 14px; */
  }
   .testimonial-card {
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 4px 22px 0 rgba(0, 0, 0, 0.1);
    max-width: 370px;
    display: flex;
    align-items: stretch;
    gap: 15px;
    margin-block: 75px;
  }

  .test-img-wrap {
    border-radius: 25px;
    overflow: hidden;
    outline: 3px solid var(--clr-img-border);
    outline-offset: -3px;
    object-fit: none;
    object-position: unset;
    height: auto;
    flex-basis: 100%;
    width: unset;
    min-width: 20em;
    flex-grow: 0;
  }
  .test-img-wrap img {
    /* max-width: unset; */
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .test-content-wrap {
    /*flex-basis: 55%;*/
    display: none;
  }
  .test-name-wrap {
    display: flex;
    gap: 10px;
    margin-bottom: 0px;
  }
  .test-name-img-wrap {
    height: 34px;
    width: 34px;
    overflow: hidden;
    border-radius: 100%;
  }
  .test-name {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 5px;
  }
  .test-subject {
    font-size: 0.8125rem;
  }
  .test-quote {
    font-size: 0.9375rem;
  }
  /* testimonial section end */
  /* simple process section start */
  .simple-process-section header {
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: 80px;
  }
  .simple-process-section header .section-header {
    color: var(--clr-primary);
    margin-bottom: 35px;
  }
  .simple-process-section p {
    color: var(--clr-primary-3);
    font-weight: 500;
    font-size: 1.0625rem;
  }
  .simple-process-icon-wrap {
    position: absolute;
    transform: scale(0.5);
    top: -60px;
    left: -10px;
    pointer-events: none;
  }
  .simple-process-card {
    padding: 25px;
    background-color: #fff9f0;
    border-radius: 22px;
    text-align: center;
    position: relative;
    margin-inline: 20px;
  }
  .simple-process-card-multiplicaiton-wrap {
    position: absolute;
    transform: scale(0.5);
    top: -35px;
    left: 0px;
    pointer-events: none;
  }
  .simple-process-card-protractor-wrap {
    position: absolute;
    transform: scale(0.5);

    bottom: -35px;
    right: -45px;
    pointer-events: none;
  }
  .simple-process-card h3 {
    font-size: 1.5625rem;
    font-weight: 600;
    color: var(--clr-secondary-3);
  }
  .process-step {
    max-width: 130px;
    position: relative;
  }
  .process-step-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .process-step-wrap > :not(:last-child)::before {
    content: url("/static/images/process-step-dash.svg");
    position: absolute;
    z-index: 1;
    right: -140px;
    top: 30px;
    display: none;
    /* width: 130px;
  height: 18px; */
    pointer-events: none;
  }
  .step-width {
    max-width: 115px;
    margin-inline: auto;
  }
  .process-step img {
    width: 36px;
    margin-inline: auto;
    margin-bottom: 10px;
  }
  .process-step h4 {
    color: var(--clr-secondary-3);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
  .process-step p {
    color: var(--clr-primary-3);
    font-weight: 400;
    font-size: 0.9375rem;
  }
  /* simple process section end */
  /* why parents choose section start */
  .why-parents-choose-section {
    max-width: 970px;
    margin-inline: auto;
    text-align: center;
  }
  .why-parents-choose-header {
    text-align: center;
    color: var(--clr-primary);
    font-size: 1.5625rem;
    font-weight: 600;
  }
  .why-parents-choose-header span {
    color: var(--clr-secondary-3-2);
    font-size: 1.875rem;
    font-weight: 600;
  }
  .why-parents-choose-content-wrap p {
    color: var(--clr-primary-3);
    font-size: 1rem;
  }

  /* .why-parents-choose-content-blue h3 {
  color: var(--clr-primary);
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.why-parents-choose-content-orange h3 {
  color: var(--clr-secondary-3-2);
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 20px;
} */
  .custom-spacing {
    --bs-gutter-x: 0px !important;
  }
  .why-column-text {
    padding: 20px 20px;
    /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
  }
  /* .why-parents-choose-content-wrap > div {
  display: flex;
  align-items: center;
  justify-content: center;
} */
  .why-parents-choose-content-wrap > .row:not(:last-child) {
    margin-bottom: 40px;
  }
  .why-parents-choose-content-wrap > div:nth-child(2n + 1) {
    /* background-color: red; */
  }
  .why-parents-choose-content-wrap > div:nth-child(2n + 1) h3 {
    color: var(--clr-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .why-parents-choose-content-wrap > div:nth-child(2n) {
    /* background-color: yellow; */
    flex-direction: row-reverse;
  }
  .why-parents-choose-content-wrap > div:nth-child(2n) h3 {
    color: var(--clr-secondary-3-2);
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 20px;
  }
  /* why parents choose section end */
  /* cheap unlimited section start */
  .cheap-unlimited-card {
    padding: 15px;
    background-color: var(--clr-primary-3-2);
    border-radius: 16px;
    position: relative;
    text-align: center;
  }
  .cta-traingle {
    position: absolute;
    transform: scale(0.5);

    left: -60px;
    bottom: -40px;
  }
  .cta-cubes {
    position: absolute;
    transform: scale(0.4);
    top: -50px;
    right: -70px;
  }
  .cheap-unlimited-text h3 {
    max-width: 450px;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 40px;
  }
  .cta-form-wrap p {
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .pill-input {
    border-radius: 44px;
    padding: 6px 15px;
  }
  .pill-input::placeholder {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(0, 103, 181, 0.5);
  }
  .cta-form .input-wrap {
    flex-direction: column;
    gap: 6px !important;
  }
  .cta-form input {
    max-width: 390px;
  }
  .cta-form {
    margin-bottom: 20px;
  }
  /* cheap unlimited section end */

  /* listen customer section start */
  .listen-customer-section h2 {
    color: var(--clr-primary);
  }
  .listen-customer-slide-card {
    padding: 20px 20px;
    max-width: 290px;
    border-radius: 30px;
    position: relative;
    margin-top: 25px;
  }
  .listen-customer-slider-wrap .listen-customer-slide-card:nth-child(3n + 1) {
    background-color: rgba(255, 145, 0, 0.1);
  }
  .listen-customer-slider-wrap .listen-customer-slide-card:nth-child(3n + 2) {
    background-color: rgba(0, 179, 255, 0.08);
  }
  .listen-customer-slider-wrap
    .listen-customer-slide-card:nth-child(3n + 2)::before {
    content: url("/static/images/listen-customer-pencil.svg");
    width: 127px;
    height: 68px;
    transform: scale(0.6);
    position: absolute;
    top: -20px;
    right: -45px;
  }

  .listen-customer-slider-wrap .listen-customer-slide-card:nth-child(3n) {
    background-color: rgba(251, 0, 255, 0.06);
  }
  .listen-img-wrap {
    width: 41px;
    height: 41px;
    overflow: hidden;
    border-radius: 100%;
    display: grid;
    place-items: center;
    background-color: #d9d9d9;
  }
  .listen-customer-info-wrap {
    display: flex;
    gap: 24px;
  }
  .listen-name {
    color: var(--clr-primary-3-3);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 5px;
  }
  .listen-info {
    color: var(--clr-primary-3-2);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
  }

  .custom-arrow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--clr-primary-3-2);
  }
  .custom-arrow-wrap svg {
    transition: color 0.3s ease-in-out;
  }
  .custom-arrow-wrap > div {
    padding: 5px;
    cursor: pointer;
  }
  .custom-prev-arrow:hover,
  .custom-next-arrow:hover {
    color: rgba(0, 179, 255, 0.3);
  }

  /* listen customer section end */
  /* Try now section start */
  .try-now-section {
    /* background: radial-gradient(
      circle 400px at 35% 80%,
      #d7fdff 0%,
      #00b2ff 100%
    ); */
    margin-top: 150px;
  }

  .try-now-img-wrap {
    overflow: hidden;
    height: 480px;
  }
  .try-now-img-wrap img {
    display: none;

    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  .try-now-content-position {
    position: initial !important;
  }
  .try-now-content {
    position: absolute;
    left: 15px;
    right: 15px;
    margin-inline: 15px;
    top: -100px;

    padding: 30px 25px;
    background-color: var(--clr-secondary-3-3);
    border-radius: 30px;
    color: #ffffff;
  }
  .try-now-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
  }
  .try-now-content h4 {
    font-size: 1.5625rem;
    font-weight: 600;
  }
  .try-now-content header {
    position: relative;
    margin-bottom: 45px;
  }
  .try-now-content header::before {
    position: absolute;

    bottom: -16px;
    content: "";
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
  }
  .try-now-content p {
    font-weight: 500;
    font-size: 1rem;
  }
  .try-now-content .try-lead {
    font-size: 14px;
  }

  .child-grade-input {
    max-width: 200px !important;
  }
  .cta-form .input-wrap > *:not(:last-child) {
    margin-bottom: 15px;
  }
  /* Try now section end */
  /* footer section start */
  .upper-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1142px;
    margin-inline: auto;
  }
  .footer-logo-section {
    flex-basis: 40%;
  }
  .footer-links-section {
    flex-basis: 60%;
  }
  .footer-logo-section {
    max-width: 340px;
  }
  .footer-desc {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--clr-primary-3-3);
    margin-block: 40px;
    padding-block: 40px;
    border-top: 1px solid #01b3ff;
    border-bottom: 1px solid #01b3ff;
  }
  .footer-socials-wrap h4 {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--clr-primary);
    margin-bottom: 15px;
  }
  .footer-socials {
    display: flex;
    gap: 30px;
  }
  .footer-socials a {
    color: var(--clr-primary-3-3);
    transition: color 0.3s ease-in-out;
  }
  .footer-socials a:hover {
    color: var(--clr-secondary);
  }
  .footer-links-section {
    display: flex;
    justify-content: space-around;
  }
  .footer-links-section h3 {
    font-size: 1.5625rem;
    font-weight: 600;
    color: var(--clr-secondary-3-3);
    position: relative;
    margin-bottom: 55px;
  }
  .footer-links-section h3::before {
    position: absolute;
    content: "";
    bottom: -15px;
    background-color: #01b3ff;
    width: 87px;
    height: 3px;
  }
  .quick-links a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--clr-primary-3-3);
  }
  .quick-links a:hover {
    color: var(--clr-secondary);
  }
  .quick-links ul li {
    margin-bottom: 25px;
  }
  .get-in-touch-info > div:not(:last-child) {
    margin-bottom: 40px;
    position: relative;
  }
  .get-in-touch-info > div:not(:last-child)::before {
    position: absolute;
    bottom: -20px;
    content: "";
    background-color: hsla(198, 100%, 50%, 0.3);
    height: 2px;
    width: 85px;
  }
  .get-in-touch-info {
    max-width: 155px;
  }
  .get-in-touch a {
    text-decoration: none;
    font-size: 0.9375rem;
    color: var(--clr-primary-3-3);
    font-weight: 500;
    display: flex;
    gap: 15px;
  }
  .get-in-touch svg {
    flex-shrink: 0;
    color: #01b3ff;
    transition: color 0.3s ease-in-out;
  }
  .get-in-touch a:hover {
    color: var(--clr-secondary);
  }
  .get-in-touch a:hover svg {
    color: var(--clr-secondary);
  }
  .copyright-footer {
    display: flex;
    align-items: baseline;
    gap: 20px;
    justify-content: space-between;
    max-width: 1280px;
    margin-inline: auto;
    margin-bottom: 20px;
    color: hsla(200, 99%, 49%, 0.75);
  }
  .btn-to-top {
    background-color: var(--clr-secondary);
    padding: 6px 24px;
    border-radius: 46px;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    color: #ffffff;
  }
  .btn-to-top:hover {
    background-color: var(--clr-primary-3-3);
    color: #ffffff;
  }
  .btn-to-top:focus {
    box-shadow: inset 0px 0px 0 2px var(--clr-secondary);
  }
  .copyright-footer p {
    font-size: 0.8125rem;
    text-wrap: balance;
  }
  .footer-privacy,
  .footer-privacy a {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: hsla(200, 99%, 49%, 0.75);
  }
  .footer-privacy a:hover {
    color: var(--clr-secondary);
  }
  .footer-design-by {
    font-size: 0.75rem;
    font-weight: 400;
    margin-block: 15px;
  }
  .footer-design-by span {
    font-weight: 500;
  }
  /* footer section end */

  /* inner page css start */
  .inner-page-body {
    height: 100vh;
    height: 100dvh;
  }

  .inner-page {
    height: 100vh;
    height: 100dvh;
    position: relative;
    display: flex;
  }
  .left-image-wrap {
    height: 100vh;
    flex-shrink: 0;
    position: fixed;
    z-index: -1;
  }
  .left-image-wrap img {
    height: 100%; /* Full height */
    width: auto; /* Maintain aspect ratio */
  }
  .left-placeholder {
    flex-basis: 35%;
    /* display: none; */
  }
  .right-content-wrap {
    flex: 1; /* Take the remaining space */
    margin-top: 120px;
    flex-basis: 75%;
  }
  .right-content {
    max-width: 400px;
    margin-inline: auto;
  }
  .right-content h2 {
    color: var(--clr-primary);
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
  }

  .horizontal-divider {
    background-color: hsla(201, 14%, 44%, 0.1);
    height: 1px;
    width: 100%;
    margin-block: 25px;
  }

  .form-page-input {
    background-color: hsla(200, 99%, 49%, 0.05);
    border: 1px solid hsla(200, 99%, 49%, 0.5);
    padding: 5px 25px;
  }
  .form-page-input:focus {
    outline: none;
    border-color: inherit;
    box-shadow: inset 0px 0px 0 1px var(--clr-secondary);
    background-color: hsla(200, 99%, 49%, 0.05);
  }
  .form-page-input::placeholder {
    color: hsla(201, 14%, 44%, 0.4);
  }
  .input-form-wrap input {
    margin-bottom: 15px;
  }
  .form-page label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--clr-neutral);
  }
  .already-account,
  .form-link {
    font-weight: 500;
    font-size: 0.875rem;
    color: #607580;
  }
  .form-link {
    font-weight: 500;
    font-size: 0.8125rem;
    color: var(--clr-primary);
  }
  .already-account a {
    color: var(--clr-primary);
  }
  .already-account a:hover {
    color: var(--clr-secondary);
  }
  .try-enter-card {
    background-color: hsla(200, 99%, 49%, 0.1);
    padding: 20px;
    border-radius: 8px;
    height: 120px;
  }
  .try-enter-btn-wrap h4 {
    color: var(--clr-secondary);
    font-size: 1.125rem;
    font-weight: 600;
  }
  .try-enter-img {
    transform: scale(1.15) translateY(-25px);
  }
  .btn-play {
    background-color: var(--clr-secondary);
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9375rem;
    white-space: nowrap;
    font-weight: 600;
    padding-inline: 15px;
    transition: all 0.3s ease-in-out;
  }
  .btn-play:hover {
    background-color: var(--clr-primary-3-3);
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    padding-inline: 15px;
  }
  .btn-download {
    background-color: var(--clr-primary);
    border-radius: 25px;
    white-space: nowrap;
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    padding-inline: 15px;
    transition: all 0.3s ease-in-out;
  }
  .btn-download:hover {
    background-color: var(--clr-primary-3-3);
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    padding-inline: 15px;
  }
  .footer-inner {
    max-width: 720px;
    margin-top: 60px;
    margin-inline: auto;
    width: 100%;
    border-top: 1px solid hsla(201, 14%, 44%, 0.5);
  }
  .footer-inner-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 16px 10px;
    max-width: 470px;
    margin-inline: auto;
  }
  .footer-inner-links a {
    text-decoration: none;
    color: hsla(201, 14%, 44%, 0.5);
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
  }
  .footer-inner-links a:hover {
    text-decoration: none;
    color: var(--clr-secondary);
  }
  .modal-content {
    padding: 25px;
    border-radius: 20px;
  }
  #resetPasswordModal .modal-content p {
    color: var(--clr-primary);
    font-size: 1.0625rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
  }
  .download-btn-wrap {
    max-width: 600px;
    margin-inline: auto;
  }
  .modal-dialog h2 {
    color: var(--clr-secondary-3);
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
  }
  .google-download-btn:hover,
  .apple-download-btn:hover {
    box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
  }
  .right-content-wrap {
    margin-inline: 15px;
  }
}

@media screen and (max-width: 370px) {
  .hero-section {
    min-height: 900px;
  }
}

@media screen and (max-width: 492px) {
  .hero-text {
    text-align: center;
  }
  .hero-btn-wrap {
    justify-content: center;
  }
  .rating-wrap {
    justify-content: center;
  }
  .trust-card-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-trial .btn {
      padding: 6px 30px !important;
      font-weight: 600;
      font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .hero-section {
    min-height: 1050px;
  }
  .hero-img-wrap{
    margin-left: 65px;
  }
  .hero-boy{
    display: none;
  }
  .hero-text {
    /*margin-left: 90px;*/
    text-align: center;
  }
  .upper-footer {
    flex-direction: column;
  }
  .footer-links-section {
    margin-top: 40px;
    justify-content: space-between;
    gap: 40px;
  }
  .cta-trial {
    padding: 9px !important;
    border-radius: 30px !important;
  }
  .cta-trial h1 {
    font-size: 23px !important;
    font-weight: 700;
    line-height: 56px;
  }
  .cta-trial p {
    font-size: 15px !important;
    line-height: 0px !important;
    padding-bottom: 0px !important;
  }
}
@media screen and (max-width: 1000px) {
  .left-image-wrap {
    display: none;
  }
  .left-placeholder {
    display: none;
  }
  .hero-text {
    text-align: center;
    margin-inline: auto;
  }
  .footer-logo-section {
    margin-inline: auto;
  }
  .footer-links-section {
    justify-content: space-evenly;
  }
  .footer-logo-wrap img {
    margin-inline: auto;
  }

}
@media screen and (min-width: 560px) {
  .navbar-main > div > .btn-main {
    display: none !important;
  }
}

@media screen and (min-width: 1150px) and (max-width: 1180px) {
  .hero-boy {
    margin-left: 26em !important;
  }
}

@media screen and (min-width: 576px) and (max-width: 768px) {
  .try-now-img-wrap img {
    display: none !important;
  }
  .try-now-content-position {
    position: initial !important;
  }
  .try-now-content {
    position: absolute;
    left: 15px;
    right: 15px;
    margin-inline: 15px;
    top: -100px;
    padding: 30px 25px;
    background-color: var(--clr-secondary-3-3);
    border-radius: 30px;
    color: #ffffff;
  }
}
@media screen and (max-width: 1150px) {
  .process-step-wrap > :not(:last-child)::before {
    display: none !important;
  }
}
/* Responsive css end */

.alert-error {
    --bs-alert-color: var(--bs-danger-text-emphasis);
    --bs-alert-bg: var(--bs-danger-bg-subtle);
    --bs-alert-border-color: var(--bs-danger-border-subtle);
    --bs-alert-link-color: var(--bs-danger-text-emphasis);
}

.cta-trial {
  background: #01A7F7;
  border-radius: 50px;
  padding: 45px;
}

.cta-trial h1 {
  color: #FFF600;
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}

.cta-trial p {
  color: #FFFFFF;
  font-size: 25px;
  font-weight: 500;
  line-height: 35px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding-bottom: 25px;
}

.cta-trial .btn {
      padding: 6px 35px;
      font-weight: 600;
      font-size: 1.4rem;
}

.title-text {
  color: var(--clr-secondary);
}

.subtitle-text {
  color: var(--clr-primary);
}

.btn-primary-main {
  background: var(--clr-primary);
  color: #fff;
  font-weight: 600;
}

.btn-primary-main:hover {
  background: var(--clr-secondary);
  color: #fff;
  font-weight: 600;
}

.lazyframe {
  position: absolute;
}

.hero-boy {
  position: absolute;
  margin-left: 31.5em;
  margin-top: -16em;
}

.hero-video {
  /*position: absolute;*/
  /*margin-top: 34px;*/
  /*margin-left: 51px;*/
}

.hero-robo {
  position: absolute;
  margin-top: 10em;
  margin-left: -1em;
}
