* {
  box-sizing: border-box;
  margin: 0;
}

ol,
ul,
li,
summary {
  list-style: none;
  padding: 0;
}

body {
  font-family: Work Sans;
}

a {
  color: black;
}

.title {
  font-size: 32px;
}

.description {
  font-size: 20px;
}

.heading {
  font-weight: 600;
  font-size: 52px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 80px;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.header__logo {
  margin-right: 50px;
}

.header__burgerMenu,
.header__closeBurgerMenu,
.overlay {
  display: none;
}

.menu__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.menu__dropdown {
  position: relative;
  display: inline-block;
}

.dropdown__content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.dropdown__content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
}
.dropdown__content a:hover {
  cursor: pointer;
  color: #4c11b2;
  font-weight: 600;
}

.menu__dropdown:hover .dropdown__content {
  display: block;
}

.dropdown__link::after {
  position: absolute;
  margin-top: 2px;
  margin-left: 6px;
  display: inline-block;
  content: url(./img/down-arrow.svg);
  width: 16px;
}

.menu__link {
  font-size: 18px;
  margin: 0 60px 10px 0;
  text-decoration: none;
  text-transform: uppercase;
}
.menu__link:hover {
  cursor: pointer;
  text-decoration: underline;
}

.header__donateBtn {
  font-size: 18px;
  padding: 15px 40px;
  border-radius: 5px;
  margin-right: 20px;
  background-color: #f9523b;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
}
.header__donateBtn:hover {
  cursor: pointer;
  background-color: #ff7300;
}

.intro {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.intro__logo {
  width: 70vw;
  max-width: 1200px;
  margin-bottom: 30px;
}

.intro__slogan {
  font-size: 24px;
  margin: 10px 10px 60px 10px;
  text-align: center;
}

.roles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 74px;
}

.roles__card {
  border: 1px solid #777777;
  border-radius: 20px;
  max-width: 330px;
  min-width: 250px;
  width: 20vw;
  padding: 36px;
  margin: 10px 40px 20px 10px;
}
.roles__card:hover {
  background-color: #6a19f5;
  color: white;
  cursor: pointer;
}

.features {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url(./img/background1.svg);
}

.features__heading {
  margin: 120px 0 60px 15px;
  text-align: center;
  color: white;
}

.features__subheading {
  font-size: 24px;
  margin: 0 150px 70px 150px;
  text-align: center;
  color: white;
}

.cards__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 120px;
}

.features__card {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  max-width: 400px;
  padding: 20px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 20px;
  text-align: center;
  margin: 0 10px 30px 15px;
}

.features__icon1 {
  width: 174px;
  height: 174px;
  background-image: url(./img/home-encouraging-play.png);
}

.features__icon2 {
  width: 178px;
  height: 178px;
  background-image: url(./img/home-building-confidence.png);
}

.features__icon3 {
  margin-top: 18px;
  width: 200px;
  height: 150px;
  background-image: url(./img/home-including-everyone.png);
  background-repeat: no-repeat;
}

.features__title {
  margin-bottom: 30px;
}

.categories__title {
  width: 460px;
  margin-bottom: 5px;
}

.categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 80px 0px;
  background-image: url(./img/background2.svg);
  background-color: #2580c1;
}

.categories__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 788px;
  min-width: 650px;
  width: 60vw;
  border-radius: 20px;
  background-color: white;
  padding: 42px 0;
  margin: 0 10px 20px 10px;
}
.categories__card:hover {
  cursor: pointer;
  color: #4c11b2;
}

.categories__image {
  height: 340px;
  margin-left: 50px;
}

.categories__icon1 {
  width: 85px;
  height: 90px;
  margin-left: 40px;
  background-image: url(./img/triangle-icon.svg);
  background-repeat: no-repeat;
}

.categories__icon2 {
  width: 85px;
  height: 75px;
  margin-left: 40px;
  background-image: url(./img/octa-icon.svg);
  background-repeat: no-repeat;
}

.categories__icon3 {
  width: 90px;
  height: 90px;
  margin-left: 40px;
  background-image: url(./img/cross-icon.svg);
  background-repeat: no-repeat;
}

.categories__arrow {
  width: 30px;
  height: 60px;
  padding-right: 60px;
  background-image: url(./img/arrow-right.svg);
  background-repeat: no-repeat;
}

.testimonials {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 100px 0;
  background-image: url(./img/background3.svg);
  background-color: #5fc8d7;
  min-height: 779px;
}

.carousel {
  display: flex;
}

.carousel__slide {
  display: none;
}

.carousel__slide[data-active] {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.carousel__button {
  margin-top: 50px;
  z-index: 3;
}
.carousel__button:hover {
  cursor: pointer;
}

.testimonials__review {
  font-size: 24px;
  max-width: 980px;
  line-height: 150%;
  text-align: center;
  color: #2a2a2a;
  margin: 0 15px 60px 15px;
}

.testimonials__parentpic {
  margin-bottom: 10px;
  width: 100px;
}

.testimonials__name {
  font-size: 20px;
}

.testimonials__role {
  margin-top: 5px;
  font-size: 20px;
  opacity: 0.7;
}

.testimonials__arrowLeft {
  width: 50px;
  height: 50px;
  padding-right: 40px;
  background-image: url(./img/arrow-left1.svg);
  background-repeat: no-repeat;
}

.testimonials__arrowRight {
  padding-left: 40px;
  width: 50px;
  height: 50px;
  background-image: url(./img/arrow-right1.svg);
  background-repeat: no-repeat;
}

.faq__heading {
  margin: 0 15px 80px 15px;
  text-align: center;
}

.faq {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 200px;
}

.faq__number {
  width: 52px;
  height: 52px;
  padding-right: 60px;
  background-repeat: no-repeat;
}

.one {
  background-image: url(./img/01.svg);
}

.two {
  background-image: url(./img/02.svg);
}

.three {
  background-image: url(./img/03.svg);
}

.four {
  background-image: url(./img/04.svg);
}

.five {
  background-image: url(./img/05.svg);
}

.six {
  background-image: url(./img/06.svg);
}

.faq__cityimg {
  width: 100%;
}

details {
  cursor: pointer;
  list-style: none;
}

.spoilerarrow {
  min-width: 38px;
  width: 38px;
  height: 22px;
  background-image: url(./img/arrowfaq.svg);
  background-repeat: no-repeat;
  margin: 5px;
}

.faq__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-bottom: 80px;
}

.faq__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 540px;
  min-width: 400px;
  width: 38vw;
  padding: 20px;
  border: 2px solid #dac9a6;
  border-radius: 20px;
  margin: 0 30px 20px 0;
}

.faq__question {
  max-width: 350px;
  font-size: 24px;
}
.faq__question:hover {
  color: #4c11b2;
  cursor: pointer;
}

.faq__answer {
  margin-top: 16px;
}

details[open] {
  width: 350px;
}

.news {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 120px 0;
  background-image: url(./img/background4.svg);
  background-color: rgba(90, 200, 215, 0.2);
}

.news__wrapper {
  margin-bottom: 70px;
  margin-right: 40px;
}

.news__heading {
  color: white;
}

.news__card {
  display: flex;
  align-items: center;
  width: 788px;
  padding: 36px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background-color: white;
  margin: 0 20px;
}

.news__pic {
  width: 300px;
  margin-right: 40px;
}

.news__headline {
  margin: 16px 0;
}

.news__learnMore {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: underline;
}
.news__learnMore:hover {
  cursor: pointer;
  color: #4c11b2;
}

.news__linkbtn {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 20px 36px;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  background-color: #f6c55a;
}
.news__linkbtn:hover {
  cursor: pointer;
  background-color: #ffb81e;
}

.news__date {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.4;
}

.news__description {
  margin-bottom: 26px;
}

.button {
  font-size: 18px;
  font-weight: 600;
  padding: 20px 54px;
  line-height: 21px;
  background-color: #6a19f5;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
}
.button:hover {
  cursor: pointer;
  background-color: #5002ce;
}

.subscribe {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 50px 0;
}

.subscribe__container {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.subscribe__description {
  max-width: 590px;
  text-align: center;
  margin-bottom: 70px;
}

.subscribe__heading {
  text-align: center;
}

.subscribe__input {
  max-width: 460px;
  min-width: 270px;
  width: 32vw;
  height: 60px;
  border: 1px solid #2a2a2a;
  border-radius: 5px;
  margin: 0 22px 20px 0;
}

.subscribe__image1 {
  max-height: 350px;
  min-height: 200px;
  height: 33vh;
  margin-bottom: 30px;
}

.subscribe__image2 {
  max-height: 350px;
  min-height: 200px;
  height: 33vh;
}

.footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 50px 30px;
  background-color: #fff2d6;
  -moz-column-gap: 140px;
       column-gap: 140px;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__follow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 20px;
  margin-top: 30px;
}

.footer__contact {
  display: flex;
  justify-content: space-evenly;
  margin: 22px 0 60px 0;
}

.footer__listContainer {
  display: flex;
  -moz-column-gap: 100px;
       column-gap: 100px;
}

.footer__list > li {
  margin-bottom: 30px;
  font-size: 20px;
  text-transform: uppercase;
}
.footer__list > li:hover {
  cursor: pointer;
  text-decoration: underline;
}

.copyright {
  font-size: 20px;
  opacity: 0.3;
  margin-top: 70px;
}

.footer__icon {
  width: 40px;
  height: 40px;
  margin: 10px 20px 0 0;
  background-repeat: no-repeat;
}
.footer__icon:hover {
  cursor: pointer;
}

.twitter {
  background-image: url(./img/twitter-ico.svg);
}

.linkedin {
  background-image: url(./img/linkedin-ico.svg);
}

.instagram {
  background-image: url(./img/instagram-ico.svg);
}

.facebook {
  background-image: url(./img/fb-ico.svg);
}

.youtube {
  background-image: url(./img/youtube-ico.svg);
}

@media (max-width: 1176px) {
  .header__sideContainer {
    display: flex;
    align-items: center;
  }
  .header {
    justify-content: space-between;
  }
  .menu,
  .dropdown__content > a,
  .dropdown__link::after {
    display: none;
  }
  .menu.active {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 5;
    top: 0;
    right: 0;
    background-color: rgb(209, 240, 250);
    overflow-x: hidden;
    padding-left: 20px;
    transition: 0.5s;
  }
  .header__burgerMenu {
    display: block;
    height: 30px;
    width: 46px;
    margin: 0 20px;
    background-image: url(img/burger-menu-ico.svg);
    background-repeat: no-repeat;
  }
  .header__burgerMenu:hover {
    cursor: pointer;
  }
  .header__closeBurgerMenu.active {
    position: absolute;
    right: 0;
    display: block;
    height: 50px;
    width: 46px;
    background-image: url(img/cross-ico.svg);
    background-repeat: no-repeat;
  }
  .header__closeBurgerMenu.active:hover {
    cursor: pointer;
  }
  .menu__list {
    display: flex;
    flex-direction: column;
    margin-top: 80px;
  }
  .menu__link {
    margin: 0;
    font-size: 20px;
    color: #4c11b2;
  }
  .menu__item {
    margin-bottom: 20px;
  }
  .header__wrapper-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 670px) {
  .header__logo {
    margin-right: 40px;
  }
  .header__burgerMenu {
    margin-right: 10px;
  }
  .categories__icon1,
  .categories__icon2,
  .categories__icon3 {
    display: none;
  }
  .categories__card {
    min-width: 530px;
    padding-left: 20px;
  }
  .news {
    display: flex;
    padding: 30px 0;
  }
  .news__wrapper {
    margin: 0;
  }
  .news__card {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 345px;
    margin-bottom: 30px;
  }
  .news__heading {
    margin-bottom: 40px;
  }
  .news__linkbtn {
    display: block;
    width: 345px;
    text-align: center;
    margin-bottom: 40px;
  }
  .news__pic {
    width: 200px;
    margin: 0;
    margin-bottom: 20px;
  }
  .categories {
    padding: 40px 0;
  }
  .categories__card {
    width: 410px;
    padding-left: 30px;
  }
  .categories__heading {
    margin: 30px 0 50px 0;
  }
  .categories__title {
    width: auto;
    text-transform: uppercase;
  }
  .categories__arrow {
    margin-right: 15px;
  }
  .header__donateBtn {
    display: none;
  }
}
@media (max-width: 776px) {
  .footer__container {
    order: 3;
  }
}
@media (max-width: 480px) {
  .title {
    font-size: 28px;
  }
  .heading {
    font-size: 30px;
    margin: 40px 15px 20px 15px;
  }
  .header__burgerMenu {
    margin: 0;
  }
  .description {
    font-size: 14px;
    line-height: 21px;
  }
  .header__logo {
    margin-right: 70px;
  }
  .menu.active {
    background-color: white;
    width: 100vw;
    right: auto;
  }
  .header__sideContainer.active {
    display: none;
  }
  .menu__list {
    align-items: center;
  }
  .menu__link {
    margin: 0;
  }
  .menu__item {
    margin-bottom: 20px;
  }
  .header__donateBtn.active {
    display: block;
    margin: 20px 0 0 0;
  }
  .intro__slogan {
    font-size: 16px;
    margin: 10px;
  }
  .roles {
    margin-bottom: 40px;
  }
  .roles__card {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100px;
    margin: 8px 16px;
    width: 345px;
    max-width: none;
  }
  .roles__title {
    text-align: center;
    margin-bottom: 10px;
  }
  .roles__description {
    text-align: center;
    font-size: 14px;
  }
  .features {
    padding-top: 50px;
  }
  .features__subheading {
    font-size: 16px;
    line-height: 21px;
    margin: 0 15px 40px 15px;
  }
  .features__card {
    width: 345px;
    margin: 10px 10px;
  }
  .cards__container {
    margin-bottom: 60px;
  }
  .categories__card {
    min-width: 345px;
    width: auto;
    padding-left: 30px;
  }
  .categories__image {
    display: none;
  }
  .faq {
    padding-top: 30px;
  }
  .faq__list {
    margin-bottom: 20px;
  }
  .faq__card {
    min-width: 345px;
    margin-left: 20px;
  }
  .faq__heading {
    margin-bottom: 50px;
  }
  .faq__question {
    font-size: 20px;
    max-width: 200px;
  }
  details[open] {
    max-width: 200px;
  }
  .testimonials {
    padding: 40px 0 30px 0;
    min-height: auto;
  }
  .testimonials__review {
    font-size: 16px;
    line-height: 21px;
    margin: 50px 30px 40px 30px;
  }
  .testimonials__name,
  .testimonials__role {
    font-size: 14px;
  }
  .subscribe__input {
    width: 345px;
    margin-right: 0;
  }
  .button {
    width: 345px;
    text-align: center;
  }
  .subscribe__description {
    margin: 20px 20px;
  }
  .subscribe__form {
    width: -moz-min-content;
    width: min-content;
  }
  .footer {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer__follow {
    margin-top: 0;
  }
  .footer__listContainer {
    order: 2;
    -moz-column-gap: 40px;
         column-gap: 40px;
    margin-top: 40px;
  }
  .footer__list {
    margin: 0 25px;
  }
  .footer__logo {
    width: 345px;
  }
  .copyright {
    margin-top: 20px;
    font-size: 14px;
  }
  .footer__container {
    margin: 0;
  }
}/*# sourceMappingURL=style.css.map */