@charset "UTF-8";

.how-it-works-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-it-works-col img {
    width: 70%;
}

.page-section-how-it-works {
    margin-top: 6rem;
    min-height: 10vh;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.static-hero {
    width: 100%;
    margin: 0 auto;
    margin-top: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.first-section-text-header {
    color: #0E79B3;
    font-size: 3rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 2rem;
    line-height: 3.5rem;
}

.first-section-text {
    text-align: left;
    font-size: 1.75rem;
    line-height: 2.5rem;
    margin-bottom: 2rem;
}

.first-section-text.firstp {
    margin-top: 2rem;
}

.first-section-school-name {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 3.5rem;
    color: #0E79B3;
}

.school-name-row {
    margin-top: 3rem;
}

.first-section-school-section {
    border-top: 2px solid #0E79B3;
}

.first-section-school-gap {
    padding-top: 3rem;
}

.first-section-btn-container {
    width: 80%;
    margin: 0 auto;
}

.hero-quote-img-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-quote-img-col img{
    width: 60%;
}

.how-it-works-text {
    text-align: left;
    color: #222B45;
    font-size: 2rem;
    line-height: 3rem;
    width: 100%;
}

.how-it-works-text.header {
    color: #0E79B3;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* .how-it-works-text-first-section {
    margin-left: 25%;
} */

.how-it-works-text.header.first {
    margin-bottom: 0rem;
}

/* .video-container {
    width: 100%;
} */

/* .video-container.testimonial {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container.testimonial iframe {
    border-radius: 2.5rem;
} */

.video-container {
    overflow: hidden;
    position: relative;
    width:100%;
}

.video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2.5rem;
}

.last-section {
    margin-top: 4rem;
}

#testimonial {
    width: 100%;
    margin: 0 auto;
    margin-top: 6rem;
    min-height: 60vh;
    margin-bottom: 5rem;
}

.testimonial-row {
    position: relative;
}

.testimonial-background {
    position: absolute;
    background: #28ADE5;
    border-radius: 2.5rem;
    min-height: 150%;
    width: 90%;
    left: 8%;
    top: -25%;
}

.testimonial-text {
    color: #ffffff;
    text-align: left;
    width: 90%;
    font-size: 1.5rem;
    line-height: 2.25rem;
}

.testimonial-text.statement {
    margin-bottom: 1.25rem;
    font-weight: 500;
    font-style: italic;
}

.testimonial-school-name {
    padding-top: 1.25rem;
    border-top: 1px solid #FAFCFE;
    width: 90%;
}

#outrageous {
    margin-top: 5rem;
}

/* Closed Overlay */
.closed-overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */   
    height: 100%;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
	display:none;
}
.closed-overlay-content {
	border-radius: 12px;
    position: relative;
    top: 15%; /* 25% from the top */
	left: 36%;
    width: 350px; 
    text-align: center; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
	background: #fff;
}

/* mobile responsive */
@media only screen and (max-width: 767px) {
    .hero-quote-img-col img {
        width: 10%;
    }

    .first-section-text {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .first-section-text-header {
        margin-bottom: 0.5rem;
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .first-section-school-name {
        font-size: 2rem;
        line-height: 2.75rem;
        text-align: center;
    }

    .how-it-works-text {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .how-it-works-text.header {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .everything-you-need-to-know {
        margin-top: 2rem;
    }

    .video-container iframe {
        border-radius: 1rem;
    }

    .testimonial-background {
        min-height: 125%;
        top: -14%;
        width: 100%;
        left: 0%;
    }

    .testimonial-text {
        width: 100%;
    }

    .testimonial-text.statement {
        font-size: 1.25rem;
        line-height: 2rem;
        margin-top: 1.5rem;
    }

    .testimonial-school-name {
        width: 100%;
        margin-left: 0rem;
        margin-right: 0rem;
    }

    .static-hero {
        margin-top: 6.5rem;
    }

}