/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header .btn {
    margin: 0;
}

/* .logo {
    display: block;
    padding: .75rem 0;
} */

/* .logo img {
    height: 50px;
    width: 100%;
} */

.main-nav>ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
    /* font-weight: var(--font-semibold); */
}

/* .main-nav>ul a {
    color: var(--dark-font-color);
} */

.nav-link {
    padding: 29px .5rem;
    border-top: 2px solid white;
    transition: all .3s ease-in-out;
}

/* .nav-link.active,
.nav-link:hover,
.nav-link:focus {
    border-color: var(--pink);
    font-weight: var(--font-bold);
}

.nav-link.active a,
.nav-link:hover a,
.nav-link:focus a {
    filter: none;
    color: var(--pink);
} */

/* Home - General */
.home h2 {
    color: #4F2E5F;
    line-height: 1.2;
}

@media (min-width: 75em) {
    .home h2 {
        font-size: 2.5rem;
    }
}

/* Footer */
footer {
    margin-top: 50px;
}

.footer-logo img {
    width: 50%;
    max-width: 100px;
    display: block;
    margin-bottom: 3rem;
}

.footer-links p {
    font-weight: var(--font-medium);
    margin-bottom: .5rem;
}

footer a {
    color: var(--dark-font-color);
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links:last-of-type {
    margin-bottom: 0;
}

.footer-links ul {
    margin-bottom: 0;
}

.footer-links li {
    padding: .5rem 0;
}

.footer-credit {
    margin-bottom: 1rem;
}

.policy {
    margin-bottom: 2rem;
}

@media (min-width: 62em) {
    .policy {
        text-align: right;
    }

    .policy a:first-of-type {
        margin-right: 1rem;
    }
}

@media (min-width: 99em) {
    footer .row {
        flex-wrap: nowrap;
    }
}

/* Home - Banner */
/* .banner {
    margin-top: 0;
}

.banner-title {
    color: #4F2E5F;
    line-height: 1.1;
    font-weight: var(--font-bold);
}

.banner-images-wrapper {
    background-image: url("/images/banner-bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner-images {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.banner-image {
    display: block;
    width: calc(25% - .5rem);
    border-radius: 140px;
    margin-top: 2rem;
    aspect-ratio: 1/1.4;
} */

/* @media all and (min-width: 75rem) {
    .banner-title {
        max-width: 780px;
        font-size: 4rem;
    }

    .banner-text {
        max-width: 500px;
        margin: 1.5rem auto;
    }

    .banner-images-wrapper {
        margin: 0 2rem;
    }

    .banner-image:first-of-type,
    .banner-image:last-of-type {
        margin-top: 0;
        height: calc(100% - 2rem);
    }

    .banner-image {
        margin-top: 4rem;
    }
} */

/* Home - Spotlight */
.spotlight-text {
    background: var(--purple);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-img {
    position: relative;
    width: 40%;
    max-width: 500px;
    margin-left: auto;
    margin-right: 10%;
    aspect-ratio: 1/1;
    border-radius: 20px;
}

.spotlight-text {
    width: 100%;
    padding: 2rem;
    border-radius: 25px;
    margin-top: -10%;
    padding-top: 12%;
}

.home .spotlight-title {
    color: white;
}

.spotlight-slide {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.swiper-pagination-bullet {
    border-radius: 100px;
    width: 30px;
    height: 5px;
    background: var(--pink);
    opacity: 0.4;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin-right: 8px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    left: 36%;
    text-align: left;
    bottom: 10%;
}

@media only screen and (min-width: 62em) {
    .spotlight.container {
        width: 95%;
    }

    .spotlight-slide {
        flex-wrap: nowrap;
    }

    .spotlight {
        padding-right: 0;
        margin-right: 0;
    }

    .spotlight-img {
        width: 30%;
        aspect-ratio: 1/1;
        border-radius: 20px;
        max-width: unset;
        margin: 0;
    }

    .spotlight-text {
        width: calc(70% + 10%);
        padding: 2rem 2rem 5rem 16%;
        margin-top: unset;
        margin-left: -10%;
        aspect-ratio: 2.2/1;
        border-radius: 25px 0 0 25px;
    }
}

@media only screen and (min-width: 75em) {

    .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: 20%;
    }
}

/* Home - Testimonial */
.icon-name-row {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-school-logo {
    width: 50px;
    background: white;
    border-radius: 50%;
    display: block;
    position: absolute;
    z-index: 10;
    top: -.25rem;
    padding: .5rem;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.profile-img {
    border-radius: 50%;
    width: 125px;
    display: block;
    position: relative;
    padding: 1rem;
}

.testimonial-name {
    font-weight: var(--font-medium);
    color: #4F2E5F;
    font-size: 1.1rem;
}

.testimonial-position {
    font-weight: var(--font-medium);
    font-size: 1.1rem;
}

.testimonial-slide {
    background: #F2F2F2;
    border-radius: 20px;
    padding: 2rem;
}

.testimonial-prev,
.testimonial-next {
    position: static;
    opacity: 1;
    padding: .5rem;
    border: 3px solid var(--blue);
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

.testimonial-prev.swiper-button-disabled,
.testimonial-next.swiper-button-disabled {
    opacity: 1;
}

.button-group {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    gap: .75rem;
}

.testimonial-prev i {
    font-size: 1.5rem;
    color: var(--blue);
}

.testimonial-next i {
    font-size: 1.5rem;
    color: white;
}

.testimonial-next {
    background: var(--blue);
}

@media (min-width: 75em) {
    .testimonial {
        padding-right: 0;
        margin-right: 0;
    }

    .testimonial.container {
        width: 95%;
    }

    .testimonial .row {
        margin-right: 0;
    }

}

/* CTA 1*/
.cta1-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.cta1-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--secondary-brand);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    width: 100%;
    margin-bottom: 1rem;
}

.home .cta1-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta1-img img {
    border-radius: 20px;
    aspect-ratio: 1.5/1;
}

@media only screen and (min-width: 62em) {
    .cta1.container {
        width: 95%;
        padding-left: 0;
        margin-left: 0;
    }

    .cta1-text {
        width: calc(50% + 25%);
        border-radius: 0 20px 20px 0;
        margin-bottom: 0;
        aspect-ratio: 1.9/1;
    }

    .home .cta1-text h2 {
        margin-bottom: 1.5rem;
        font-size: 2.5rem;
    }

    .cta1-text p {
        margin-bottom: 1.5rem;
    }

    .cta1-text-inner {
        padding: 0 5% 0 8%;
        width: 65%;
    }

    .cta1-img {
        width: 50%;
        margin-left: -25%;
    }
}

/* Home - FAQ */
.faq-wrapper {
    padding: 1rem 0;
}

.faq-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #F2F2F2;
    border-radius: 25px;
    padding: 2rem 2.75rem;
    aspect-ratio: 2/1;
}

.faq-wrapper a {
    display: flex;
}

.faq-wrapper a:hover,
.faq-wrapper a:focus {
    filter: none;
}

.faq-title {
    color: var(--purple);
}

.faq-content {
    margin: 1rem auto 0;
}

.swiper-slide-active .faq-title {
    font-weight: var(--font-medium);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: "";
}

.faq .swiper-button-next i,
.faq .swiper-button-prev i {
    color: var(--pink);
    font-size: 1.5rem;
}

@media all and (min-width: 62em) {
    .faq .swiper-button-prev {
        left: calc(30% + 2.5rem);
    }

    .faq .swiper-button-next {
        right: calc(30% + 2.5rem);
    }

    .faq-slide {
        opacity: 0.6;
    }

    .swiper-slide-active .faq-slide {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Home - CTA 2 */
.cta2 {
    background: var(--purple);
    color: white;
    padding: 3rem 0;
}

.home .cta2 h2 {
    color: white;
}

.cta2-content {
    margin: 1.5rem auto;
}

@media all and (min-width: 62em) {
    .cta2 {
        padding: 5% 0;
    }

    .cta2-text {
        width: 50%;
    }
}


