@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: 100vh;
  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 0;
    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;
  }
}

.blog_listing {
  background: #fde7c5;
  padding-top: clamp(70px, 8vw, 120px);
  padding-bottom: clamp(80px, 9vw, 140px);
}
.blog_listing .blog_listing__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.blog_listing .blog_listing__header h2 {
  color: #402210;
  font-weight: 700;
}
.blog_listing .blog_listing__header .blog_listing__filter {
  position: relative;
  min-width: 220px;
}
.blog_listing .blog_listing__header .blog_listing__filter select {
  width: 100%;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(64, 34, 16, 0.12);
  background: #fff;
  border-radius: 999px;
  padding: 12px 48px 12px 20px;
  font-weight: 600;
  font-size: 16px;
  color: #402210;
  box-shadow: 0 20px 40px -30px rgba(64, 34, 16, 0.45);
  cursor: pointer;
}
.blog_listing .blog_listing__header .blog_listing__filter::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(64, 34, 16, 0.8);
  pointer-events: none;
}
.blog_listing .blog_card {
  display: flex;
  flex-direction: column;
}
.blog_listing .blog_card .image {
  margin: 0;
  line-height: 0;
}
.blog_listing .blog_card .image img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog_listing .blog_card .card_body {
  padding: 1.25rem 4px 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog_listing .blog_card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #7e695c;
}
.blog_listing .blog_card__meta .blog_card__category {
  color: #e96d1f;
}
.blog_listing .blog_card__meta .blog_card__divider {
  width: 6px;
  height: 6px;
  background: rgba(126, 105, 92, 0.4);
  border-radius: 50%;
}
.blog_listing .blog_card__title {
  margin: 10px 0;
  font-weight: 700;
  color: #402210;
  font-size: var(--f24);
  line-height: 1.3;
}
.blog_listing .blog_card__excerpt {
  color: #7e695c;
  font-size: 16px;
  margin-bottom: 1.2rem;
}
.blog_listing .blog_card__link {
  margin-top: auto;
  align-self: flex-start;
  padding: 12px 26px;
  border-radius: 999px;
  background-color: #e96d1f;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.blog_listing .blog_card__link:hover {
  background-color: #2797ff;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .blog_listing .image img {
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .blog_listing {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .blog_listing .blog_listing__header {
    align-items: flex-start;
  }
  .blog_listing .image img {
    height: 190px;
  }
}
@media screen and (max-width: 575px) {
  .blog_listing .blog_listing__header {
    gap: 1rem;
  }
  .blog_listing .blog_listing__filter {
    width: 100%;
  }
  .blog_listing .card_body {
    padding: 24px 22px 28px;
  }
  .blog_listing .blog_card__meta {
    font-size: 0.8rem;
  }
}

.bottom_wrapper {
  background: #fde7c5;
}

.pagination_circle {
  margin-top: clamp(28px, 4vw, 48px);
  display: flex;
  justify-content: center;
}
.pagination_circle .pagination_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2.2vw, 22px);
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination_circle .page_btn {
  --size: 48px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 1px 2px rgba(64, 34, 16, 0.6);
  color: rgba(64, 34, 16, 0.8);
  font-weight: 700;
  font-size: var(--f18);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  background: transparent;
}
.pagination_circle .page_btn:hover {
  transform: translateY(-1px);
  border-color: rgba(64, 34, 16, 0.9);
}
.pagination_circle .page_btn.is-active {
  background: linear-gradient(135deg, #ffbf22 0%, #ff9d25 30%, #2797ff 100%);
  color: #fff;
  box-shadow: none;
}
@media screen and (max-width: 575px) {
  .pagination_circle .page_btn {
    --size: 44px;
    font-weight: 600;
  }
}/*# sourceMappingURL=blog.css.map */