/* REPONSIVE.CSS */
/* This is used for the styles that the HTML will be during responsive */

/* WWelcoming Banner */
@media (max-width:767px) {

    .text.heading,
    .text.subheading {
        font-size: 40px;
    }

    .welcome_banner {
        height: 40vh !important;
    }

    .page_banner_text {
        font-size: 36px;
    }

}

@media (max-width:576px) {
    .welcome_banner {
        height: auto;
    } 

    .text.subheading {
        font-size: 26px;
    }

}


/* Navbar */
@media only screen and (max-width: 950px) {
    .menu {
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.8);
        align-items: start;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        z-index: 999;
        transform: scale(1, 0);
        transform-origin: top;
        transition: transform 0.3s ease-in-out;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }

    .menu a {
        margin-left: 12px;
        color: #ffffff;
    }

    .menu a:hover {
        color: #ffffff;
    }

    .current:hover {
        color: #ffffff !important;
    }


    .menu li {
        margin-bottom: 10px;
    }

    .menu-icon {
        display: block;
        color: rgba(115, 189, 135, 0.75);
        font-size: 28px;
        cursor: pointer;
    }
}