/* Text class */
.landing-text {
  font-family: landing-text !important;
  font-weight: 400;
  font-size: 22px;
}

.landing-title,.landing-text.italic {
  font-style: italic;
}

.landing-text.bold {
  font-weight: 700;
}

.landing-subtitle {
  font-family: landing-subtitle !important;
  font-weight: 700;
  font-size: 42px;
}

.landing-title {
  font-family: landing-title !important;
  font-weight: 800;
  font-size: 80px;
}

@media (max-width: 768px) {
  .landing-title {
    font-size: 56px;
  }
  
}

/* Sections */
.section-kids {
  position: relative;
}

.section-kids .all-free {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  justify-content: space-evenly;
  align-items: center;
  padding: .25rem 1rem;
}

.section-kids .all-free > span {
  text-align: center;
  order: 0;
}

.section-kids .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(140deg, white 0% , var(--site-primary) 40%, var(--site-warning) 100%) !important;
  opacity: 0.2;
}


.section-kids .container .content {
  width: 60%;
  margin: 0 auto;
}

.section-kids .kid-1 {
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 20%;
}

.section-kids .kid-2 {
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 20%;
}

.section-kids .star-semi-filled {
  position: relative;
  width: 42px;
  height: 42px;
  clip-path: inset(0 attr(data-value) 0 0);
}

.section-kids .star {
  position: relative;
  width: 42px;
  height: 42px;
}


.section-kids .star .filled {
  position: absolute;
  top: -2px;
  left: 0;
  z-index: 1;
}

.section-kids .star .semi-filled {
  position: absolute;
  top: -2px;
  left: 0;
  z-index: 1;
  clip-path: inset(0 40% 0 0);
}

.section-kids .star img {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .section-kids .all-free {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 0px 1fr 1fr;
    gap: .5rem;
  }

  .section-kids .all-free > span { 
    order: 1;
  }

  .section-kids .container .content {
    width: 100%;
  }

  .section-kids .kid-1,
  .section-kids .kid-2 {
    display: none;
  }

  .section-kids .star {
    width: 26px;
    height: 26px;
  }

  .section-kids .star img {
    width: 100%;
    height: auto;
    max-height: 300px;
  }
  
}

.learn-win {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--site-primary) 75%, var(--site-warning) 100%) !important;
}

.learn-win .content {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: auto;
  background: transparent;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: 
    "image info"
    "sponsors sponsors";
}

.learn-win .image {
  grid-area: image;
  max-width: 667px;
  width: 100%;
}

.learn-win .image img {
  width: 100%;
  height: auto;
}

.learn-win .info {
  grid-area: info;
  max-width: 380px;
  max-height: 440px;
  width: 100%;
  display: flex;
  margin: auto;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.learn-win .sponsors {
  grid-area: sponsors;
  margin: 0 2rem 2rem 2rem;
}

.learn-win .sponsors img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 48px;
}

@media (max-width: 768px) {
  .learn-win .content{
    text-align: center;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: 
      "info"
      "image"
      "sponsors";
  }

  .learn-win .image {
    width: 100%;
    max-width: 40%;
    margin: 0 auto;
  }

  .learn-win .info {
    width: 80%;
    max-width: 100%;
    margin: 1rem auto;
    display: flex;
    gap: 2rem;
  }

  .learn-win .sponsors {
    margin: 1rem;
  }
}

#learn-rythm {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--site-primary) 65%, white 120%) !important;
}

#learn-rythm .content {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: auto;
  background: transparent;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
}

#learn-rythm .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

#learn-rythm .image {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

#learn-rythm .image img {
  width: 100%;
  height: 100%;
}


#graduates-say .content{
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  max-width: 1440px;
  padding: 2rem 0;
  margin: auto;
  background: transparent;
  grid-template-columns: 1fr 1fr;
}

#graduates-say .image {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  order: 1;
}
#graduates-say .image img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
}

#graduates-say .info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  font-size: 2rem;
  order: 2;
}

@media (max-width: 768px) {

  #graduates-say {
    padding: 2rem;
  }

  #graduates-say .content{
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    max-width: 1440px;
    padding: 0;
    margin: auto;
    background: transparent;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  #graduates-say .image {
    order: 2;
    display: none;
  }

  #graduates-say .image img {
    max-height: 320px;
  }
  
  #graduates-say .info {
    order: 1;
  }
}

#learn-skills {
  background: var(--site-primary);
}

#learn-skills .content{
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: auto;
  background: transparent;
  grid-template-columns: 1fr minmax(250px, 10%);
}

#learn-skills .image {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
#learn-skills .image img {
  position: absolute;
  bottom: 30px;
  right: -50px;
  width: auto;
  height: auto;
  max-height: 340px;
}

#learn-skills .info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  font-size: 2rem;
  margin: 2rem 0;
}

#learn-skills .content .skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

#learn-skills .content .skills span {
  position: relative;
}

#learn-skills .content .skills span:not(:first-child)::before {
  content: '•'; 
  margin: 0 2rem 0 0;
  opacity: 0.8;
}

@media (max-width: 768px) {

  #learn-skills {
    padding: 2rem;
  }

  #learn-skills .content{
    position: relative;
    display: grid;
    width: 100%;
    height: 100%; 
    margin: auto;
    background: transparent;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  #learn-skills .image {
    order: 2;
    display: none;
  }

  #learn-skills .image img {
    max-height: 320px;
  }
  
  #learn-skills .info {
    order: 1;
  }

  #learn-skills .content .skills {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 2rem;
  }

  #learn-skills .content .skills span::before {
    content: '•'; 
    margin: 0 2rem 0 0;
    opacity: 0.8;
  }
}



.countdown {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  background-color: transparent;
  color: var(--site-primary);
  gap: 1rem;
  width: 100%;
  padding: .25rem;
}

.countdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.625rem;
  background: linear-gradient(140deg, white 0% , #F9D9E6 40%, #FCE6CF 100%) !important;
}

.countdown .message { 
  z-index: 2;
  text-align: start;
}



@media (max-width: 768px) {
  .countdown {
    width: 100%;
  }
}

.countdown .time .background {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}


.countdown .timer-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.countdown .timer-wrapper .time {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(27.5px);
  transform-origin: center center;
  text-align: center;
}


.countdown .timer-wrapper .progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.countdown .timer-wrapper .progress-ring circle {
  fill: none;
  stroke-width: 5;
}


.countdown .timer-wrapper .progress-ring>.progress {
  stroke: var(--site-primary); 
  stroke-dasharray: 282.74; 
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
}

#success-register img {
    border-radius: 25px;
    width: 100%;
    height: auto;
    object-fit: cover;
}