@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap");
html, body, div, span, iframe,
h1, h2, h3, h4, h5, h6, p,
a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*Colors*/
/*Sizing*/
/*Spacing*/
/*Borders*/
/*Box Shadows*/
html {
  scroll-behavior: smooth;
}

/*Navbar Animation*/
.navbar__link {
  display: inline-block;
  list-style: outside none none;
  position: relative;
}
.navbar__link:hover {
  color: #cfcfcf;
  transition: 0.5s;
}

/*Footer*/
.footer__link:hover {
  color: #cfcfcf;
  transition: 0.5s;
}

/*Button Animation*/
.button--filled:hover {
  background-color: #3d8a87;
  color: #fff;
  transition: 0.5s;
}
.button--outlined:hover {
  background-color: #3d8a87;
  border-color: #3d8a87;
  color: #fff;
  transition: 0.5s;
}

/*Icons*/
.icon:hover {
  scale: 1.1;
  transition: 0.5s;
}

* {
  font-family: "Montserrat", sans-serif;
}

html {
  letter-spacing: 0.05rem;
  line-height: 1.5rem;
  font-weight: 500;
}

a {
  line-height: 1.5rem;
}

input, textarea {
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  line-height: 1.5rem;
}

.emphasis {
  width: 60%;
  font-weight: 700;
}

/*Headings*/
.description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  width: 60%;
}
.description__heading {
  font-family: "Fredoka";
  font-size: 3rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  gap: 1rem;
}
.description__underline {
  overflow: hidden;
  display: flex;
  justify-content: center;
  width: 18rem;
}
.description__paragraph {
  width: 60%;
  line-height: 1.5rem;
}
.description--full-width {
  width: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 1300px) {
  .description {
    width: 100%;
  }
  .description__paragraph {
    width: 80%;
    line-height: 1.5rem;
  }
}
@media only screen and (max-width: 800px) {
  h3 {
    font-size: 0.75rem;
  }
  a {
    font-size: 0.75rem;
  }
  p {
    font-size: 0.75rem;
  }
  .description {
    width: 25rem;
    gap: 0.75rem;
  }
  .description__heading {
    font-size: 2rem;
  }
  .description__underline {
    width: 12rem;
  }
  .description__paragraph {
    font-size: 0.75rem;
    width: 90%;
  }
}
@media only screen and (max-width: 650px) {
  h3 {
    font-size: 0.75rem;
  }
  a {
    font-size: 0.75rem;
  }
  p {
    font-size: 0.75rem;
  }
  .description {
    width: 20rem;
    gap: 0.75rem;
  }
  .description__heading {
    font-size: 1.5rem;
  }
  .description__underline {
    width: 10rem;
  }
  .description__paragraph {
    font-size: 0.75rem;
    width: 90%;
  }
}
@media only screen and (max-width: 350px) {
  .description {
    width: 15rem;
  }
  .description__heading {
    font-size: 1.25rem;
  }
  .description__paragraph {
    width: 80%;
  }
}
.navbar {
  position: fixed;
  width: 100%;
  background-color: #72cac7;
  display: flex;
  justify-content: space-between;
  z-index: 2;
  padding: 0.75rem 0;
}
.navbar__logo {
  margin-left: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.navbar__logo-link {
  width: 8rem;
}
.navbar__list {
  margin-right: 4rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  gap: 0;
  justify-self: right;
  list-style-type: none;
}
.navbar__item {
  margin: 0.25rem;
}
.navbar__link {
  color: #fff;
  padding: 0.5rem;
}

@media only screen and (max-width: 1000px) {
  .navbar__logo {
    margin-left: 1.25rem;
  }
  .navbar__list {
    margin-right: 1.25rem;
  }
}
@media only screen and (max-width: 800px) {
  .navbar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
    gap: 0;
  }
  .navbar__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding-left: 1rem;
    display: none;
    margin-right: 0;
    gap: 0;
  }
}
.grid {
  display: grid;
  gap: 2rem;
}

@media only screen and (max-width: 800px) {
  .grid {
    margin: 0 auto;
    gap: 0.75rem;
  }
}
@media only screen and (max-width: 650px) {
  .grid {
    gap: 2rem;
  }
}
.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  margin: 0 8rem;
  overflow: hidden;
  height: 100vh;
  overflow-y: auto;
}

@media only screen and (max-width: 1200px) {
  .section {
    margin: 0 0.75rem;
  }
}
@media only screen and (max-width: 650px) {
  .section {
    height: 125vh;
    margin: 0 1.25rem;
  }
}
.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  background-image: url("../images/footer-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.footer-grid {
  height: 50vh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: none;
  color: #fff;
}
.footer__nav {
  display: flex;
  flex-direction: column;
}
.footer__link {
  text-decoration: none;
  color: #fff;
}

@media only screen and (max-width: 650px) {
  .footer {
    display: none;
  }
}
.button-group {
  margin: 1rem 0;
}

.button {
  cursor: pointer;
  padding: 1rem 2rem;
  margin: 1rem 0;
  border-radius: 2rem;
}
.button--filled {
  color: #fff;
  background-color: #72cac7;
  border: none;
}
.button--outlined {
  color: #72cac7;
  border: 0.15rem solid #72cac7;
}

@media only screen and (max-width: 350px) {
  .button-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
    gap: 0;
    margin: 0;
  }
  .button {
    padding: 0.75rem 2rem;
  }
}
.image {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.image__item {
  width: 25rem;
  border-radius: 2rem;
}

@media only screen and (max-width: 800px) {
  .image__item {
    width: 15rem;
    border-radius: 2rem;
  }
}
@media only screen and (max-width: 350px) {
  .image__item {
    width: 10rem;
    border-radius: 2rem;
  }
}
.slider {
  width: 85vw;
  max-width: 1400px;
  position: relative;
  overflow: hidden;
  font-family: sans-serif;
}
.slider__navigation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  padding: 0.5rem;
  position: absolute;
  top: calc(100% - 200px);
  background-color: #cfcfcf;
  border-radius: 2rem;
  height: 1rem;
  width: 1rem;
  z-index: 1;
}
.slider__navigation--right {
  right: 0.25rem;
}
.slider__navigation--left {
  left: 0.25rem;
}
.slider__strip {
  display: flex;
  width: 1000%;
  height: 20rem;
  transition: all 0.5s;
}
.slider__image {
  width: 10rem;
}
.slider__text {
  font-size: 1.5rem;
  line-height: 2rem;
  width: 80%;
}
.slider__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  margin: auto 0.5rem;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.25rem;
}

@media only screen and (min-width: 1100px) {
  .slider__item {
    width: calc(2.5% - 20px);
  }
}
@media only screen and (max-width: 1100px) {
  .slider__item {
    width: calc(3.3333333% - 20px);
  }
}
@media only screen and (max-width: 900px) {
  .slider__item {
    width: calc(5% - 20px);
  }
}
@media only screen and (max-width: 550px) {
  .slider .slider__strip .slider__item {
    width: calc(10% - 20px);
  }
}
.form {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  gap: 0;
  width: 20rem;
  box-shadow: 0 0.3rem 1rem 0 #cfcfcf;
  border: 0.15rem solid #72cac7;
  border-radius: 2rem;
  padding: 2rem;
}
.form__heading {
  font-weight: 600;
  font-size: 1rem;
}
.form__group {
  margin: 1rem 0;
}
.form__input {
  width: 15rem;
  max-width: 15rem;
  min-width: 15rem;
  border: 0.15rem solid #72cac7;
  border-color: #cfcfcf;
  border-radius: 1.5rem;
  padding: 1rem;
}
.form__button {
  margin: 0;
}

@media only screen and (max-width: 1000px) {
  .form {
    width: 17rem;
  }
  .form__group {
    margin: 0.75rem;
  }
  .form__input {
    width: 14rem;
    max-width: 14rem;
    min-width: 14rem;
    padding: 0.75rem;
  }
}
@media only screen and (max-width: 800px) {
  .form {
    width: 13rem;
  }
  .form__group {
    margin: 0.5rem;
  }
  .form__input {
    width: 10rem;
    max-width: 10rem;
    min-width: 10rem;
    padding: 0.5rem;
  }
}
@media only screen and (max-width: 350px) {
  .form {
    box-shadow: none;
    border-radius: none;
  }
}
.social-media__icon {
  color: #fff;
  padding: 0.25rem;
}

@media only screen and (max-width: 800px) {
  .social-media__icon {
    font-size: 1rem;
  }
}
.hero {
  min-height: 100vh;
  background-image: url("../images/banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  align-items: start;
  max-width: 200rem;
  grid-template-columns: 1fr 1fr;
  padding: 24rem 4rem 8rem 4rem;
}
.hero__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  align-items: start;
  text-align: left;
}
.hero__heading {
  font-size: 4.5rem;
  color: #fff;
  text-align: left;
}
.hero__description {
  align-items: start;
  text-align: left;
  width: 100%;
  color: #fff;
}

@media only screen and (max-width: 1000px) {
  .hero {
    grid-template-columns: 2fr 1fr;
  }
}
@media only screen and (max-width: 800px) {
  .hero {
    padding: 24rem 1.25rem 24rem 1.25rem;
    display: block;
  }
  .hero__heading {
    text-align: center;
  }
  .hero__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }
  .hero__description {
    align-items: center;
    text-align: center;
  }
}
@media only screen and (max-width: 650px) {
  .hero__heading {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 350px) {
  .hero__heading {
    font-size: 2rem;
  }
}
.about {
  height: 160vh;
}
.about__grid {
  width: 60rem;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.about__card {
  display: grid;
  grid-template-areas: "icon title" "icon text";
  justify-content: center;
  align-items: center;
  text-align: left;
}
.about__card--afterschool {
  grid-area: 1/1/2/3;
}
.about__card--pno {
  grid-area: 1/3/2/5;
}
.about__card--badges {
  grid-area: 1/5/2/7;
}
.about__card--camps {
  grid-area: 2/2/3/4;
}
.about__card--parties {
  grid-area: 2/4/3/6;
}
.about__link {
  grid-area: icon;
}
.about__icon {
  width: 3rem;
  margin: 1rem 0.75rem 1rem 1rem;
}
.about__title {
  grid-area: title;
}
.about__text {
  color: #6A6A6A;
  grid-area: text;
  width: 100%;
}
.about__video {
  width: 800px;
  height: 600px;
}

@media only screen and (max-width: 1000px) {
  .about__grid {
    width: 45rem;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .about__card--afterschool {
    grid-area: 1/1/2/3;
  }
  .about__card--pno {
    grid-area: 1/3/2/5;
  }
  .about__card--badges {
    grid-area: 2/1/3/3;
  }
  .about__card--camps {
    grid-area: 2/3/3/5;
  }
  .about__card--parties {
    grid-area: 3/2/4/4;
  }
  .about__text {
    width: 90%;
  }
  .about__video {
    width: 600px;
    height: 400px;
  }
}
@media only screen and (max-width: 800px) {
  .about__grid {
    width: 40rem;
  }
}
@media only screen and (max-width: 650px) {
  .about {
    height: 100%;
    margin-top: 5rem;
  }
  .about__grid {
    width: 20rem;
    padding-left: 2rem;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
  .about__card--afterschool {
    grid-area: 1/1/2/2;
  }
  .about__card--pno {
    grid-area: 2/1/3/2;
  }
  .about__card--badges {
    grid-area: 3/1/4/2;
  }
  .about__card--camps {
    grid-area: 4/1/5/2;
  }
  .about__card--parties {
    grid-area: 5/1/6/2;
  }
  .about__text {
    width: 70%;
  }
  .about__video {
    width: 300px;
    height: 200px;
  }
}
@media only screen and (max-width: 350px) {
  .about__icon {
    width: 2rem;
    margin: 0;
  }
  .about__grid {
    width: 25rem;
  }
  .about__text {
    width: 60%;
  }
  .about__video {
    width: 250px;
    height: 150px;
  }
}
.sponsors {
  margin: 0;
  margin-top: -20rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  color: white;
}
.sponsors__description__heading--sponsors {
  display: none;
}

.sponsors-mobile {
  height: 250vh;
}
.sponsors-mobile__grid {
  width: 40rem;
  grid-template-columns: repeat(2, 1fr);
}
.sponsors-mobile__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.sponsors-mobile__icon {
  width: 5rem;
  color: #72cac7;
}
.sponsors-mobile__text {
  padding: 2rem;
  color: #6A6A6A;
}

@media only screen and (min-width: 800px) {
  .sponsors-mobile {
    display: none;
  }
}
@media only screen and (max-width: 800px) {
  .sponsors {
    display: none;
  }
  .sponsors-mobile {
    height: 200vh;
  }
  .sponsors-mobile__card {
    margin: 2rem;
  }
  .sponsors-mobile__text {
    padding: 0.25rem;
  }
}
@media only screen and (max-width: 650px) {
  .sponsors-mobile {
    height: 325vh;
  }
  .sponsors-mobile__card {
    margin: 0rem;
  }
  .sponsors-mobile__text {
    padding: 1.5rem;
    font-size: 0.75rem;
  }
  .sponsors-mobile__grid {
    grid-template-columns: repeat(1, 1fr);
    width: 10rem;
  }
  .sponsors-mobile__card {
    gap: 0.25rem;
  }
  .sponsors-mobile__icon {
    width: 1rem;
  }
}
.testimonials__grid {
  grid-template-columns: repeat(3, 1fr);
}
.testimonials__card {
  width: 13rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  box-shadow: 0 0.3rem 1rem 0 #cfcfcf;
  border: 0.15rem solid #72cac7;
  border-radius: 2rem;
  padding: 2rem;
}
.testimonials__number {
  font-size: 3rem;
  padding: 0 1rem;
  font-weight: 800;
  color: #72cac7;
  display: block;
  font-family: "Times New Roman", Times, serif;
}
.testimonials__author {
  color: #6A6A6A;
  font-style: italic;
}

@media only screen and (max-width: 1000px) {
  .testimonials {
    height: 180vh;
  }
  .testimonials__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 350px) {
  .testimonials__card {
    width: 8rem;
  }
}
.reasons__grid {
  width: 40rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.reasons__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.reasons__icon {
  width: 5rem;
}
.reasons__text {
  color: #6A6A6A;
}

@media only screen and (max-width: 650px) {
  .reasons__grid {
    grid-template-columns: repeat(1, 1fr);
    width: 10rem;
  }
  .reasons__card {
    gap: 0.25rem;
  }
  .reasons__icon {
    width: 3rem;
  }
  .reasons__text {
    color: #6A6A6A;
  }
}
.process__text {
  color: #6A6A6A;
}
.process__grid {
  width: 50rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
}
.process__card {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
}
.process__number {
  font-size: 3rem;
  padding: 1rem;
  font-weight: 800;
  color: #72cac7;
}

@media only screen and (max-width: 800px) {
  .process__grid {
    margin: 0 auto;
    justify-content: center;
    width: 40rem;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 650px) {
  .process__grid {
    margin: 0 auto;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, 1fr);
    align-items: center;
  }
  .process__number {
    font-size: 3rem;
    padding: 0.5rem;
  }
}
@media only screen and (max-width: 650px) {
  .process__grid {
    margin: 0 auto;
    width: 15rem;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
  .process__number {
    font-size: 2rem;
    padding: 0.5rem;
  }
}
.requirements-grid {
  grid-template-columns: repeat(2, 1fr);
}
.requirements .description {
  width: 100%;
}

@media only screen and (max-width: 800px) {
  .requirements-grid {
    margin: 0 auto;
    justify-content: center;
    width: 35rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
}
@media only screen and (max-width: 650px) {
  .requirements-grid {
    margin: 0 auto;
    justify-content: center;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
}
.pricing__grid {
  grid-template-columns: repeat(3, 1fr);
}
.pricing__card {
  width: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  box-shadow: 0 0.3rem 1rem 0 #cfcfcf;
  border: 0.15rem solid #72cac7;
  border-radius: 2rem;
  padding: 2rem;
}
.pricing__number {
  font-size: 3rem;
  padding: 0 1rem;
  font-weight: 800;
  color: #72cac7;
}

@media only screen and (max-width: 800px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing__card {
    width: 8rem;
    padding: 1.25rem;
    gap: 1rem;
  }
  .pricing__number {
    font-size: 2rem;
    padding: 0 1rem;
    color: #72cac7;
  }
}
@media only screen and (max-width: 650px) {
  .pricing__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 350px) {
  .pricing__card {
    width: 8rem;
  }
}
.community-grid {
  grid-template-columns: repeat(2, 1fr);
}
.community .description {
  width: 100%;
}

@media only screen and (max-width: 800px) {
  .community-grid {
    width: 35rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
}
@media only screen and (max-width: 650px) {
  .community-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact-grid {
  grid-template-columns: repeat(2, 1fr);
}
.contact .description {
  width: 100%;
}

@media only screen and (max-width: 800px) {
  .contact-grid {
    width: 35rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
}
@media only screen and (max-width: 650px) {
  .contact-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
}/*# sourceMappingURL=main.css.map */