<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Google font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&amp;display=swap');

body {
    font-family: 'Poppins', sans-serif;

}

/* h4 {
    color: #066466;
    font-weight: bold;
}

h5 {
    color: #deb041;
} */


/* -------------------
------BANNER CSS-----
---------------------*/
.carousel-caption {
    position: absolute;
    left: 0;
    width: 30%;
    top: 30%;
    margin-left: 10%;
}

.carousel-caption h1 {
    font-size: calc(1rem + .5vw + 1.75vw);
}


.carousel-caption button {
    position: absolute;
    left: 0;
}

/* -------------------
--BANNER MEDIA QUERY--
---------------------*/

@media screen and (max-width: 575.98px) {

    .carousel-caption {
        position: absolute;
        left: 0;
        width: 80%;
        top: 0;
        margin-left: 2%;
    }

    .carousel-caption h1 {
        font-size: 3vw;
    }

    .carousel-caption p {
        font-size: 2vw;
    }

    .carousel-caption button {
        position: absolute;
        left: 0;
        width: 80px;
        font-size: 2vw;
    }
}

@media screen and (max-width: 991.98px) {

    .carousel-caption {
        position: absolute;
        left: 0;
        width: 40%;
        top: 15%;
        margin-left: 9%;
    }

    .carousel-caption button {
        position: absolute;
        left: 0;
    }
}

/* Explore quickschool section */
.explore-bg {
    background-image: linear-gradient(-225deg, #FFFEFF 0%, #D7FFFE 100%);
}

/* Ready to join section */
.call-to-action-bg {
    width: 100%;
    height: 250px;
    color: aquamarine;
}

.call-to-action-bg button {
    background-color: #ffbb1d;
    color: white;
    border: none;
}

/* --------------
Student feedback
----------------*/

@media screen and (max-width: 567px) {
    .card:not(:first-child) {
        display: none;
    }
}</pre></body></html>