@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400..800&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@media (min-width: 1300px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1320px;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  --f24: 24px;
  --f22: 22px;
  --f20: 20px;
  --f18: 18px;
  font-family: "Baloo Da 2", sans-serif;
}
body * {
  font-family: "Baloo Da 2", sans-serif;
}
@media screen and (max-width: 991px) {
  body {
    --f18: 16px;
    --f20: 18px;
    --f22: 20px;
    --f24: 22px;
  }
}

img {
  max-width: 100%;
}

ul {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: clamp(30px, 1.05rem + 2.7vw, 54px);
}

h2 {
  font-size: clamp(26px, 3.1vw, 45px);
}

h3 {
  font-size: calc(1.12rem + 0.75vw);
}

h4 {
  font-size: clamp(18px, 2vw, 20px);
}

p {
  font-size: 16px;
  line-height: 1.6;
  color: #7e695c;
}

.section_heading h2 {
  color: #402210;
  font-weight: 700;
}
.section_heading p {
  margin-top: 1.25rem;
  font-size: var(--f22);
  color: #7e695c;
}
@media screen and (max-width: 991px) {
  .section_heading p {
    margin-top: 0.75rem;
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .section_heading p {
    margin-top: 0.5rem;
    font-size: 16px;
  }
}

.container {
  padding: 0 20px;
}

.section {
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
}
@media screen and (max-width: 766px) {
  .section {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.form_control {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(64, 34, 16, 0.12);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 16px;
  color: #402210;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form_control:focus {
  border-color: rgba(39, 151, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(39, 151, 255, 0.15);
}

.input_with_icon {
  position: relative;
}
.input_with_icon .icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.35;
  pointer-events: none;
}
.input_with_icon.textarea .icon {
  top: 14px;
  transform: none;
}

.theme_button {
  border-radius: 5px;
  min-width: 140px;
  line-height: 1;
  padding: 14px 6px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  transition: 0.2s;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: none;
}
.theme_button svg {
  max-width: 0;
  max-height: 0;
}
.theme_button:hover {
  color: #fff;
}
.theme_button:hover svg {
  margin-left: 10px;
  max-width: 16px;
  max-height: 16px;
  fill: currentColor;
}
.theme_button.primaryBtn {
  background-color: #e96d1f;
}
.theme_button.primaryBtn:hover {
  background-color: #2797ff;
}
.theme_button.outlinePrimaryBtn {
  border: 1px solid #e96d1f;
  background-color: transparent;
  color: #e96d1f;
}
.theme_button.outlineSecondaryBtn {
  border: 1px solid #2797ff;
  background-color: transparent;
  color: #2797ff;
}
.theme_button.secondaryBtn {
  background-color: #2797ff;
}
.theme_button.secondaryBtn:hover {
  background-color: #e96d1f;
}

.header {
  padding: 12px 0;
  position: fixed;
  top: 0;
  z-index: 9;
  background: transparent;
  width: 100%;
}
.header .navPill {
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 12px 30px -20px rgba(51, 61, 86, 0.6);
  padding: 8px 12px;
  display: flex;
  align-items: center;
}
.header .navbar {
  width: 100%;
  padding: 0;
}
.header .navbar-brand {
  display: flex;
  align-items: center;
  margin-right: 12px;
  padding: 0;
}
.header .navbar-brand img {
  max-height: 47px;
}
.header .navbar-nav {
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
}
.header .nav-item {
  margin: 0 2px;
}
.header .nav-link {
  color: #7e695c;
  padding: 8px 12px !important;
  border-radius: 24px;
}
.header .nav-link:hover, .header .nav-link.active {
  color: #e96d1f;
  background: rgba(233, 109, 31, 0.08);
}
.header .primaryBtn {
  min-width: 170px;
  padding: 12px 18px;
  border-radius: 24px;
  background-color: rgba(233, 109, 31, 0.9);
  box-shadow: 0px 3px 0px 2px #e96d1f;
}
.header .primaryBtn:hover {
  background-color: rgba(39, 151, 255, 0.9);
  box-shadow: 0px 3px 0px 2px #2797ff;
}
.header .outlinePrimaryBtn {
  padding: 10px;
  border-radius: 50px;
}
.header .outlinePrimaryBtn:hover {
  background-color: rgba(233, 109, 31, 0.08);
  color: #e96d1f;
}
.header .langDropdown .dropdown-menu {
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 990px) {
  .header .navbar-brand img {
    max-height: 37px;
  }
  .header .navPill {
    border-radius: 14px;
    padding: 8px 10px;
  }
  .header .navbar-collapse {
    padding: 10px 4px 6px;
  }
  .header .downloadBtn {
    width: 100%;
  }
}

.bottom_wrapper {
  --mainGradient: linear-gradient(
    135deg,
    #b7d9d1 0%,
    #a4c8ca 16%,
    #ffe3bf 66%,
    #fad4a4 100%
  );
}
@media screen and (min-width: 1200px) {
  .bottom_wrapper.bg_bottom {
    background: var(--mainGradient);
  }
}

.subscribe_stories {
  padding-bottom: 60px;
}
@media screen and (max-width: 1199px) {
  .subscribe_stories {
    background: var(--mainGradient);
  }
}
.subscribe_stories .form_group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  max-width: 767px;
  margin-top: 3rem;
}
.subscribe_stories .form_group .input_wrap {
  flex-grow: 1;
  position: relative;
}
.subscribe_stories .form_group .input_wrap img {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
}
.subscribe_stories .form_group input {
  width: 100%;
  border: none;
  border-radius: 50px;
  padding: 10px;
  padding-left: 60px;
  height: 56px;
  outline: none;
  background: #fff;
}
.subscribe_stories .form_group .primaryBtn {
  font-size: var(--f18);
  min-width: 170px;
  min-height: 50px;
  padding: 14px 18px;
  border-radius: 50px;
  background-color: rgba(233, 109, 31, 0.9);
  box-shadow: 0px 3px 0px 2px #e96d1f;
}
.subscribe_stories .form_group .primaryBtn:hover {
  background-color: rgba(39, 151, 255, 0.9);
  box-shadow: 0px 3px 0px 2px #2797ff;
}
@media screen and (max-width: 767px) {
  .subscribe_stories .form_group {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
  }
  .subscribe_stories .form_group .input_wrap {
    width: 100%;
  }
  .subscribe_stories .form_group input {
    height: 45px;
  }
  .subscribe_stories .form_group .primaryBtn {
    height: 40px;
    min-height: auto;
    padding: 10px 18px;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .subscribe_stories .subscribe_image {
    text-align: right;
    margin-top: 2rem;
  }
  .subscribe_stories .subscribe_image img {
    height: 100px;
    margin-top: -2rem;
  }
}

.join_community {
  --gradient: linear-gradient(175deg, #ffbf22 0%, #ff9d25 30%, #2797ff 100%);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .join_community {
    margin-bottom: -200px;
  }
}
@media screen and (max-width: 1199px) {
  .join_community {
    background: var(--gradient);
  }
}
.join_community .join_community_inner {
  padding: 60px 80px 0;
}
@media screen and (min-width: 1200px) {
  .join_community .join_community_inner {
    border-radius: 1.45rem;
    background: var(--gradient);
  }
}
@media screen and (max-width: 1199px) {
  .join_community .join_community_inner {
    padding: 40px 0 0;
  }
}
.join_community .content {
  padding-bottom: 1rem;
}
.join_community .section_heading {
  max-width: 506px;
}
.join_community .section_heading * {
  color: #fff;
}
.join_community .storeBadges {
  margin-top: 30px;
  background-color: #fff;
  display: inline-flex;
  padding: 10px;
  border-radius: 1rem;
  gap: 10px;
}
.join_community .image {
  text-align: right;
}

.footer {
  padding: clamp(40px, 4.5vw, 60px) 0;
  background-color: #1b0f0a;
  color: #fff;
  position: relative;
  overflow: hidden;
  background-size: cover;
}
@media screen and (min-width: 1200px) {
  .footer {
    padding-top: 20%;
  }
}
.footer .footerTitle {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.footer .footerList {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 18px;
}
.footer .footerBrand {
  padding-right: 3rem;
}
.footer .footerBrand .footerLogo {
  max-height: 60px;
}
.footer .footerBrand p {
  color: #dedede;
  font-size: 1rem;
}
.footer .social_icons {
  display: flex;
  gap: 1.75rem;
}
.footer .social_icons .icon {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: 0.15s linear;
}
.footer .social_icons .icon svg {
  max-height: 20px;
  width: 25px;
  color: #fff;
  margin-right: 0;
  transition: 0.15s linear;
}
.footer .social_icons .icon:hover {
  opacity: 0.85;
}
.footer .storeBadges {
  display: flex;
  justify-content: flex-end;
  margin-right: 7%;
  margin-top: -3.5rem;
  gap: 1.25rem;
}
.footer .storeBadges img {
  border: 1px solid #f7f7f7;
  border-radius: 10px;
  max-height: 55px;
}
@media screen and (max-width: 1199px) {
  .footer .storeBadges {
    margin-right: 0%;
  }
}
@media screen and (max-width: 767px) {
  .footer .storeBadges {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 1199px) {
  .footer .footer_row {
    flex-wrap: wrap;
  }
  .footer .footer_row .footer_col {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 1rem;
  }
  .footer .footer_row .footer_col h5 {
    margin-bottom: 8px;
  }
  .footer .footer_col4 {
    flex-basis: 60%;
    margin-bottom: 1rem;
  }
  .footer .footer_contact ul li {
    padding: 0.7rem 0;
  }
}
.footer .subscribe input {
  border-radius: 4px 0 0 4px;
  border-right: none;
}
.footer .subscribe button {
  border-radius: 0 4px 4px 0;
}

.footerBottom {
  padding: 1.5rem 0;
  background-color: #351f17;
}
.footerBottom .bottom_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footerBottom .bottom_inner p {
  color: #fff;
  font-size: var(--f18);
}

.banner {
  min-height: 80vh;
  background: linear-gradient(135deg, #b7d9d1 0%, #a4c8ca 16%, #ffe3bf 66%, #fad4a4 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}
.banner .banner_content {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
  max-width: 624px;
  margin: auto;
}
.banner .banner_content .teacher1,
.banner .banner_content .teacher2 {
  position: absolute;
  top: 10%;
  --size: 3rem;
}
@media screen and (max-width: 1199px) {
  .banner .banner_content .teacher1,
  .banner .banner_content .teacher2 {
    --size: 0px;
  }
}
@media screen and (max-width: 991px) {
  .banner .banner_content .teacher1,
  .banner .banner_content .teacher2 {
    display: none;
  }
}
.banner .banner_content .teacher1 {
  left: calc(100% + var(--size));
}
.banner .banner_content .teacher2 {
  right: calc(100% + var(--size));
}
.banner .banner_content .banner_title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #402210;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.banner .banner_content .banner_title .highlight {
  color: #ff6b35;
}
.banner .banner_content .banner_subtitle {
  font-size: 22px;
  font-weight: "regular";
  color: #7e695c;
  max-width: 774px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.banner .banner_content .download_buttons {
  flex-wrap: wrap;
  gap: 1rem;
}
.banner .banner_content .download_buttons .store_btn img {
  transition: transform 0.3s ease;
}
.banner .banner_content .download_buttons .store_btn img:hover {
  transform: scale(1.05);
}
.banner .circle {
  position: absolute;
}
.banner .circle.circle_left {
  top: 20%;
  left: 0;
}
.banner .circle.circle_right {
  top: 30%;
  right: 0;
}
.banner .bg_elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.banner .bg_elements .letters {
  z-index: -1;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 100%;
  pointer-events: none;
}
.banner .bg_elements .letters img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .banner {
    padding: 120px 0 40px;
    min-height: auto;
  }
  .banner .banner_content {
    margin-bottom: 40px;
  }
  .banner .bg_elements .circle.circle_left {
    width: 200px;
    height: 200px;
  }
  .banner .bg_elements .circle.circle_right {
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 479px) {
  .banner .download_buttons {
    flex-direction: column;
    align-items: center;
  }
  .banner .download_buttons .store_btn img {
    height: 45px;
  }
}

.terms_content {
  background-color: #ffefcd;
  position: relative;
  overflow: hidden;
}
.terms_content .terms_content_inner {
  position: relative;
}
.terms_content .kite {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.terms_content .kite img {
  width: 60px;
  height: auto;
  opacity: 0.8;
}
.terms_content .kite.kite_left_1 {
  transform: translateX(-100%);
  left: 0;
  top: 10%;
}
@media screen and (max-width: 991px) {
  .terms_content .kite.kite_left_1 {
    display: none;
  }
}
.terms_content .kite.kite_left_2 {
  transform: translateX(-100%);
  left: 0;
  top: 50%;
}
.terms_content .kite.kite_left_2 img {
  width: 40px;
}
@media screen and (max-width: 991px) {
  .terms_content .kite.kite_left_2 {
    display: none;
  }
}
.terms_content .kite.kite_right_1 {
  right: 0;
  transform: translateX(100%);
  top: 35%;
}
@media screen and (max-width: 991px) {
  .terms_content .kite.kite_right_1 {
    display: none;
  }
}
.terms_content .kite.kite_right_2 {
  right: 0;
  transform: translateX(100%);
  top: 70%;
}
.terms_content .kite.kite_right_2 img {
  width: 45px;
}
@media screen and (max-width: 991px) {
  .terms_content .kite.kite_right_2 {
    display: none;
  }
}
.terms_content .terms_content_wrapper {
  position: relative;
  z-index: 2;
}
.terms_content .content_block {
  margin-bottom: clamp(32px, 4vw, 48px);
}
.terms_content .content_block h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #402210;
  margin-bottom: clamp(16px, 1.5vw, 24px);
  line-height: 1.3;
}
.terms_content .content_block p {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  color: #7e695c;
  line-height: 1.6;
  margin-bottom: clamp(12px, 1.5vw, 16px);
}
.terms_content .content_block p:last-child {
  margin-bottom: 0;
}
.terms_content .content_block .text_link {
  color: #e96d1f;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.terms_content .content_block .text_link:hover {
  color: #2797ff;
}
.terms_content .content_list_wrapper {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  margin: clamp(16px, 2vw, 20px) 0;
}
.terms_content .content_list {
  list-style: none;
  padding-left: 0;
}
.terms_content .content_list li {
  position: relative;
  padding-left: clamp(20px, 2.5vw, 28px);
  margin-bottom: 8px;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  color: #7e695c;
  line-height: 1.6;
}
.terms_content .content_list li:last-child {
  margin-bottom: 0;
}
.terms_content .content_list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e96d1f;
  font-size: 1.5em;
  line-height: 1;
}
.terms_content .content_image {
  margin: clamp(40px, 5vw, 60px) 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(64, 34, 16, 0.1);
}
.terms_content .content_image img {
  width: 100%;
  height: auto;
  display: block;
}
.terms_content .content_card {
  background: #fffaf2;
  border-radius: 16px;
  padding: clamp(28px, 3.5vw, 40px);
  margin-top: clamp(32px, 4vw, 48px);
  border: 1px solid rgba(64, 34, 16, 0.08);
}
.terms_content .content_card h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #402210;
  margin-bottom: clamp(12px, 1.5vw, 16px);
  line-height: 1.3;
}
.terms_content .content_card p {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  color: #7e695c;
  line-height: 1.6;
  margin-bottom: clamp(16px, 2vw, 20px);
}
.terms_content .content_card .contact_email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e96d1f;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.terms_content .content_card .contact_email img {
  width: 20px;
  height: 20px;
}
.terms_content .content_card .contact_email span {
  line-height: 1;
}
.terms_content .content_card .contact_email:hover {
  color: #2797ff;
}

.bottom_wrapper {
  background: #ffefcd;
}/*# sourceMappingURL=terms-condition.css.map */