@charset "UTF-8";
:root {
  --black-color: #000;
  --white-color: #fff;
  --primary-font: "Sora", serif;
  --heading-font: "Big Shoulders Display", serif;
}
@media only screen and (min-width: 992px) {
  :root {
    --container-x: 100%;
  }
}
@media only screen and (min-width: 1251px) {
  :root {
    --container-x: 1180px;
  }
}
@media only screen and (min-width: 1341px) {
  :root {
    --container-x: 1280px;
  }
}
@media only screen and (min-width: 1451px) {
  :root {
    --container-x: 1380px;
  }
}
@media only screen and (min-width: 1561px) {
  :root {
    --container-x: 1480px;
  }
}
@media only screen and (min-width: 1671px) {
  :root {
    --container-x: 1580px;
  }
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-x) !important;
  padding: 0px clamp(0.63rem, 0.71vw + 0.36rem, 0.94rem);
  margin: 0 auto;
}

/* Header Section */
.header {
  background: #ffefea;
  padding: clamp(1.88rem, 4.29vw + 0.27rem, 3.75rem) 0 clamp(1.88rem, 7.14vw + -0.8rem, 5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none !important;
}

section {
  width: 100%;
}

.logo {
  display: inline-block;
  margin-bottom: 40px;
}

.hero-title {
  font-size: clamp(2.5rem, 13.71vw + -2.64rem, 8.5rem);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #6558e9;
  position: relative;
  font-family: var(--heading-font);
  text-align: center;
  line-height: clamp(2.88rem, 12.86vw + -1.95rem, 8.5rem);
}
.hero-title .imagine {
  color: #0d173f;
  position: absolute;
  display: inline-block;
  background: #ffdd00;
  padding: 5px clamp(0.63rem, 3.57vw + -0.71rem, 2.19rem);
  border-radius: 100px;
  font-size: clamp(0.75rem, 4vw + -0.75rem, 2.5rem);
  font-weight: 600;
  text-transform: none;
  font-family: var(--primary-font);
  left: clamp(5rem, 20vw + -2.5rem, 13.75rem);
  top: 80px;
  transform: rotate(-12deg);
  line-height: normal;
}
.hero-title .create {
  color: #0d173f;
  position: absolute;
  display: inline-block;
  background: #00ff1e;
  padding: 5px clamp(0.63rem, 3.57vw + -0.71rem, 2.19rem);
  border-radius: 100px;
  font-size: clamp(0.75rem, 4vw + -0.75rem, 2.5rem);
  font-weight: 600;
  text-transform: none;
  font-family: var(--primary-font);
  right: clamp(5rem, 20vw + -2.5rem, 13.75rem);
  top: 60px;
  transform: rotate(12deg);
  line-height: normal;
}
.hero-title .explore {
  color: #0d173f;
  position: absolute;
  display: inline-block;
  background: #ff8c00;
  padding: 5px clamp(0.63rem, 3.57vw + -0.71rem, 2.19rem);
  border-radius: 100px;
  font-size: clamp(0.75rem, 4vw + -0.75rem, 2.5rem);
  font-weight: 600;
  text-transform: none;
  font-family: var(--primary-font);
  left: calc(50% - 100px);
  bottom: 80px;
  transform: rotate(-12deg);
  line-height: normal;
}

.sub-title {
  font-size: clamp(1.88rem, 1.43vw + 1.34rem, 2.5rem);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black-color);
  position: relative;
  font-family: var(--heading-font);
  text-align: center;
}

/* Character */
.character-container {
  margin: 40px 0;
  display: flex;
  justify-content: center;
}
.character-container .character {
  animation: bounce 2s ease-in-out infinite;
}
.character-container .character img {
  max-width: 100%;
}
@media (width <= 800px) {
  .character-container .character img {
    max-width: 200px;
  }
}
@media (width <= 500px) {
  .character-container .character img {
    max-width: 100px;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}
.hero-description {
  font-size: clamp(1.13rem, 2.29vw + 0.27rem, 2.13rem);
  color: #000;
  margin: 40px auto;
  max-width: 800px;
  font-weight: 500;
}
@media (width <= 500px) {
  .hero-description br {
    display: none;
  }
}

.cta-btn {
  background: #ef52bf;
  color: white;
  padding: 15px 35px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

/* Who We Are Section */
.who-we-are {
  color: white;
  background: #ffefea;
}
.who-we-are .section-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 40px;
  line-height: 1.1;
}
@media (width <= 900px) {
  .who-we-are .section-title {
    margin-bottom: 0px;
  }
}
.who-we-are .who-we-are-content {
  display: flex;
  gap: clamp(1.25rem, 5.71vw + -0.89rem, 3.75rem);
  align-items: start;
  background: #8579ff;
  padding: clamp(1.25rem, 4.29vw + -0.36rem, 3.13rem);
  border-radius: 8px;
}
@media (width <= 900px) {
  .who-we-are .who-we-are-content {
    flex-direction: column;
  }
}
.who-we-are .who-we-are-content .who-we-are-left {
  width: 30%;
}
@media (width <= 900px) {
  .who-we-are .who-we-are-content .who-we-are-left {
    width: 100%;
  }
}
.who-we-are .who-we-are-content .who-we-are-left h2 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(2.5rem, 8.57vw + -0.71rem, 6.25rem);
  line-height: clamp(2.5rem, 8.57vw + -0.71rem, 6.25rem);
}
@media (width <= 900px) {
  .who-we-are .who-we-are-content .who-we-are-left h2 br {
    display: none;
  }
}
.who-we-are .who-we-are-content .who-we-are-right {
  padding-top: 20px;
  width: 70%;
}
@media (width <= 900px) {
  .who-we-are .who-we-are-content .who-we-are-right {
    padding-top: 0px;
    width: 100%;
  }
}
.who-we-are .who-we-are-content .who-we-are-right .mission-text {
  font-size: clamp(1rem, 0.57vw + 0.79rem, 1.25rem);
  line-height: clamp(1.5rem, 0.86vw + 1.18rem, 1.88rem);
  margin-bottom: 30px;
  font-family: var(--primary-font);
}
@media (width <= 900px) {
  .who-we-are .who-we-are-content .who-we-are-right .mission-text br {
    display: none;
  }
}
.who-we-are .who-we-are-content .who-we-are-right .mission-statement {
  font-size: clamp(1rem, 0.57vw + 0.79rem, 1.25rem);
  line-height: clamp(1.5rem, 0.86vw + 1.18rem, 1.88rem);
  margin-bottom: 10px;
  font-family: var(--primary-font);
}
.who-we-are .who-we-are-content .who-we-are-right .mission-statement strong {
  font-weight: bold;
  display: block;
  margin-top: 10px;
  font-size: clamp(1.25rem, 1.43vw + 0.71rem, 1.88rem);
  line-height: clamp(1.88rem, 1.43vw + 1.34rem, 2.5rem);
}
@media (width <= 900px) {
  .who-we-are .who-we-are-content .who-we-are-right .mission-statement strong br {
    display: none;
  }
}

/* What We Do Section */
.what-we-do {
  padding: clamp(1.25rem, 4.29vw + -0.36rem, 3.13rem) 0;
  background: #ffefea;
}
.what-we-do .what-we-do-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 50px;
}
@media (width <= 900px) {
  .what-we-do .what-we-do-grid {
    flex-direction: column;
  }
}
.what-we-do .what-we-do-grid .what-we-do-content {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  color: white;
  width: 40%;
  justify-content: space-between;
  background: #8579ff;
}
@media (width <= 900px) {
  .what-we-do .what-we-do-grid .what-we-do-content {
    width: 100%;
  }
}
.what-we-do .what-we-do-grid .what-we-do-content .top {
  padding: clamp(1.25rem, 4.29vw + -0.36rem, 3.13rem);
  background: #8579ff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.what-we-do .what-we-do-grid .what-we-do-content .top .section-title {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(2.5rem, 8.57vw + -0.71rem, 6.25rem);
  line-height: clamp(2.5rem, 8.57vw + -0.71rem, 6.25rem);
}
@media (width <= 900px) {
  .what-we-do .what-we-do-grid .what-we-do-content .top .section-title br {
    display: none;
  }
}
.what-we-do .what-we-do-grid .what-we-do-content .top .program-subtitle {
  font-size: clamp(1rem, 0.57vw + 0.79rem, 1.25rem);
  line-height: clamp(1.5rem, 0.86vw + 1.18rem, 1.88rem);
  font-family: var(--primary-font);
  font-weight: 500;
  margin-bottom: 10px;
}
.what-we-do .what-we-do-grid .what-we-do-content .top .program-features {
  list-style: none;
  margin: 20px 0 0px 0;
}
.what-we-do .what-we-do-grid .what-we-do-content .top .program-features li {
  padding: 8px 0;
  position: relative;
  padding-left: 18px;
  font-size: clamp(0.88rem, 0.29vw + 0.77rem, 1rem);
}
.what-we-do .what-we-do-grid .what-we-do-content .top .program-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--white-color);
  font-weight: bold;
  font-size: clamp(0.88rem, 0.29vw + 0.77rem, 1rem);
}
.what-we-do .what-we-do-grid .what-we-do-content .learning-philosophy {
  background: #4800ff;
  padding: clamp(0.94rem, 5vw + -0.94rem, 3.13rem);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.what-we-do .what-we-do-grid .what-we-do-content .learning-philosophy h4 {
  font-size: clamp(1rem, 0.57vw + 0.79rem, 1.25rem);
  margin-bottom: 15px;
  font-weight: 500;
  font-family: var(--primary-font);
}
.what-we-do .what-we-do-grid .what-we-do-content .learning-philosophy p {
  font-size: clamp(1.13rem, 0.86vw + 0.8rem, 1.5rem);
  font-weight: 500;
  color: #ef52bf;
  font-family: var(--primary-font);
}
.what-we-do .what-we-do-grid .featured-program {
  width: 60%;
  background: #ffeb2c;
  padding: 30px 30px 0 30px;
  border-radius: 5px;
  align-items: end;
  justify-content: center;
  display: flex;
}
@media (width <= 900px) {
  .what-we-do .what-we-do-grid .featured-program {
    width: 100%;
  }
}
.what-we-do .what-we-do-grid .featured-program img {
  display: block;
}

/* How It Works Section */
.how-it-works {
  padding: 0 0;
  background: #ffefea;
}
.how-it-works .how-it-works-sec {
  background: var(--white-color);
  border-radius: 8px;
  padding: clamp(1.88rem, 2.86vw + 0.8rem, 3.13rem);
}
.how-it-works .how-it-works-sec .section-title {
  text-align: center;
  color: #2d3436;
  margin-bottom: clamp(1.25rem, 5.71vw + -0.89rem, 3.75rem);
  font-family: var(--heading-font);
  text-align: center;
  font-size: clamp(2.5rem, 1.14vw + 2.07rem, 3rem);
  font-weight: 500;
}
.how-it-works .how-it-works-sec .steps-container {
  display: flex;
  gap: clamp(0.94rem, 3.57vw + -0.4rem, 2.5rem);
  margin-bottom: 60px;
  background: var(--white-color);
  border-radius: 8px;
  justify-content: space-between;
}
@media (width <= 900px) {
  .how-it-works .how-it-works-sec .steps-container {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.how-it-works .how-it-works-sec .steps-container .step {
  text-align: center;
  padding: 0;
  border-radius: 20px;
  transition: transform 0.3s ease;
  width: 30%;
}
@media (width <= 900px) {
  .how-it-works .how-it-works-sec .steps-container .step {
    width: 100%;
  }
}
.how-it-works .how-it-works-sec .steps-container .step:hover {
  transform: translateY(-5px);
}
.how-it-works .how-it-works-sec .steps-container .step .step-number {
  font-family: var(--heading-font);
  font-size: clamp(3.13rem, 6.57vw + 0.66rem, 6rem);
  font-weight: 500;
  color: #8579ff;
  margin-bottom: 20px;
}
.how-it-works .how-it-works-sec .steps-container .step .step-title {
  font-size: clamp(1.13rem, 0.86vw + 0.8rem, 1.5rem);
  font-weight: bold;
  color: var(--black-color);
  margin-bottom: 15px;
}
.how-it-works .how-it-works-sec .tools-provided {
  background: #8579ff;
  color: var(--white-color);
  padding: 10px 10px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  font-size: clamp(1.5rem, 2vw + 0.75rem, 2.38rem);
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/* Need Help Section */
.need-help {
  padding: clamp(1.88rem, 10vw + -1.88rem, 6.25rem) 0 clamp(3.13rem, 7.14vw + 0.45rem, 6.25rem) 0;
  color: white;
  text-align: center;
  background: #ffefea;
}
.need-help .section-title {
  margin-bottom: 40px;
  color: #8579FF;
  font-family: var(--heading-font);
  font-size: clamp(2.5rem, 8.57vw + -0.71rem, 6.25rem);
  line-height: clamp(2.88rem, 7.71vw + -0.02rem, 6.25rem);
  text-transform: uppercase;
  font-weight: 500;
}
.need-help .contact-btn {
  background: #EF52BF;
  color: var(--white-color);
  padding: 15px 35px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}
.need-help .contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

/* Footer */
.footer {
  background: #0D173F;
  color: white;
  padding: clamp(1.25rem, 8.57vw + -1.96rem, 5rem) 0 clamp(1.25rem, 4.29vw + -0.36rem, 3.13rem) 0;
  text-align: center;
}
.footer .footer-sec {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
}
.footer .footer-sec .footer-logo {
  width: -moz-fit-content;
  width: fit-content;
}
.footer .footer-sec .footer-tagline {
  color: #EF52BF;
  font-size: clamp(1.13rem, 0.86vw + 0.8rem, 1.5rem);
}
.footer .footer-sec .social-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.footer .footer-sec .social-dots li {
  list-style: none;
}
.footer .footer-sec .social-dots li a {
  text-decoration: none;
}
.footer .footer-sec .social-dots li:hover {
  transform: scale(1.3);
  background: #ff6b9d;
}
.footer .footer-sec .ftbtm {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.94rem, 5vw + -0.94rem, 3.13rem);
}
@media (width <= 600px) {
  .footer .footer-sec .ftbtm {
    flex-wrap: wrap;
  }
}
.footer .footer-sec .ftbtm li {
  list-style: none;
  font-size: 12px;
  color: #A0A0A0;
}
.footer .footer-sec .ftbtm li a {
  font-size: 12px;
  color: #A0A0A0;
  text-decoration: none;
  white-space: nowrap;
}
.footer .footer-sec .ftbtm li a:hover {
  color: #EF52BF;
}

.terms-cont {
  width: 100%;
  background: #ffefea;
  padding: 0 0 clamp(1.88rem, 10vw + -1.88rem, 6.25rem) 0;
}
.terms-cont .terms-row {
  width: 900px;
  margin: 0 auto;
}
@media (width <= 1000px) {
  .terms-cont .terms-row {
    width: 100%;
    padding: 0 10px;
  }
}
.terms-cont .terms-row .terms-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid #828080;
  padding-bottom: 30px;
}
.terms-cont .terms-row .terms-head h4 {
  font-family: var(--primary-font);
  color: var(--black-color);
  font-size: 16px;
  font-weight: 600;
}
.terms-cont .terms-row .terms-head p {
  font-family: var(--primary-font);
  color: var(--black-color);
  font-size: clamp(0.81rem, 0.43vw + 0.65rem, 1rem);
  font-weight: 400;
  line-height: 1.7;
}
.terms-cont .terms-row .accordion {
  background: transparent;
}
.terms-cont .terms-row .accordion-item {
  border-bottom: 1px solid #828080;
  background: transparent;
}
.terms-cont .terms-row .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(1.13rem, 1.71vw + 0.48rem, 1.88rem) 0;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--black-color);
  transition: all 0.2s ease;
}
.terms-cont .terms-row .accordion-header:hover {
  color: #666;
}
.terms-cont .terms-row .accordion-icon {
  font-size: 50px;
  font-weight: 100;
  color: var(--black-color);
  transition: transform 0.3s ease;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width <= 500px) {
  .terms-cont .terms-row .accordion-icon {
    font-size: 30px;
  }
}
.terms-cont .terms-row .accordion-header.active .accordion-icon {
  transform: rotate(0deg);
}
.terms-cont .terms-row .accordion-content {
  display: none;
  padding: 0 0 25px 0;
  font-size: clamp(0.81rem, 0.43vw + 0.65rem, 1rem);
  color: var(--black-color);
  line-height: 1.7;
}
.terms-cont .terms-row .accordion-content p {
  font-size: clamp(0.81rem, 0.43vw + 0.65rem, 1rem);
}
.terms-cont .terms-row .expanded {
  background: transparent;
  border-bottom: 1px solid #828080;
}
.terms-cont .terms-row .expanded .accordion-content {
  display: block;
  padding: 0 0 25px 0;
}

/* CONTACT PAGE */
.contact-section {
  width: 100%;
  padding: clamp(2.5rem, 5.71vw + 0.36rem, 5rem) 0;
}
.contact-section .contact-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-section .contact-row .contact-header {
  margin-bottom: 30px;
}
.contact-section .contact-row .contact-label {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 2.13rem);
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 10px;
  font-family: var(--heading-font);
  text-transform: uppercase;
}
.contact-section .contact-row .contact-email {
  font-size: clamp(3.13rem, 5.29vw + 1.14rem, 5.44rem);
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 10px;
  font-family: var(--heading-font);
  text-decoration: underline !important;
  display: block;
}
.contact-section .contact-row .contact-email:hover {
  color: #EF52BF;
}
.contact-section .contact-row .contact-phone {
  font-size: clamp(3.13rem, 5.29vw + 1.14rem, 5.44rem);
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 10px;
  font-family: var(--heading-font);
}
.contact-section .contact-row .info-section {
  margin-bottom: 40px;
}
.contact-section .contact-row .info-title {
  font-size: clamp(0.88rem, 0.29vw + 0.77rem, 1rem);
  font-family: var(--primary-font);
  font-weight: 800;
  color: var(--black-color);
  margin-bottom: 10px;
}
.contact-section .contact-row .info-content {
  font-size: clamp(0.88rem, 0.29vw + 0.77rem, 1rem);
  font-family: var(--primary-font);
  color: var(--black-color);
}
.contact-section .contact-row .contact-form {
  display: flex;
  gap: 20px;
  width: 800px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (width <= 820px) {
  .contact-section .contact-row .contact-form {
    width: 100%;
  }
}
.contact-section .contact-row .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
}
.contact-section .contact-row .form-group {
  display: flex;
  flex-direction: column;
}
.contact-section .contact-row .form-group.full-width {
  grid-column: 1/-1;
}
.contact-section .contact-row .form-group input,
.contact-section .contact-row .form-group textarea {
  border: none;
  border-bottom: 1px solid #333;
  background: transparent;
  padding: 10px 0;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease;
  font-family: var(--primary-font);
}
.contact-section .contact-row .form-group input::-moz-placeholder, .contact-section .contact-row .form-group textarea::-moz-placeholder {
  color: #999;
  font-size: 14px;
  font-family: var(--primary-font);
}
.contact-section .contact-row .form-group input::placeholder,
.contact-section .contact-row .form-group textarea::placeholder {
  color: #999;
  font-size: 14px;
  font-family: var(--primary-font);
}
.contact-section .contact-row .form-group input:focus,
.contact-section .contact-row .form-group textarea:focus {
  border-bottom-color: #EF52BF;
}
.contact-section .contact-row .form-group textarea {
  resize: vertical;
  font-family: var(--primary-font);
}
.contact-section .contact-row .submit-btn {
  background: #EF52BF;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: var(--primary-font);
  width: -moz-fit-content;
  width: fit-content;
}
.contact-section .contact-row .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}
.contact-section .contact-row .submit-btn:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .contact-section .contact-row .contact-email {
    font-size: 28px;
  }
  .contact-section .contact-row .contact-phone {
    font-size: 24px;
  }
  .contact-section .contact-row .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-section .contact-row .container {
    padding: 20px;
  }
  .contact-section .contact-row .submit-btn {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */