@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');
* {
    font-family: 'Inter', sans-serif;
}

:root {
    --main-color: #1F5EAB;
}

.header-section {
    height: 50vh;
    width: 100%;
    background: linear-gradient(to top, rgb(255, 255, 255), rgba(210, 210, 210, 0.464)), url("../media/about-us.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-section .header-section-main {
    width: 100%;
    height: 42%;
    /* background: red; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header-section .header-section-main h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 4vw;
}

.header-section .header-section-main p {
    font-family: 'Inter', sans-serif;
    font-size: 1vw;
}

.missions {
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
}


/* .missions .mission img{ 
    width: 100%;
    height: 100%;
} */

.about-us {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about-us .heading {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about-us .heading p {
    font-size: 2.5vw;
    font-weight: 700;
    font-family: 'Dosis', sans-serif;
    margin: 0;
    color: var(--main-color);
    margin-top: 4vh;
}

.about-us .heading .underline {
    width: 5%;
    height: 3px;
    background: #EC5101;
}

.about-us .content {
    width: 80%;
    margin-top: 3%;

}

.about-us .content p,
li {
    font-size: 1vw;
    line-height: 37px;
    letter-spacing: .5px;
}

@media only screen and (max-width: 1080px) {
    .header-section {
        height: 20vh;
    }
    .header-section .header-section-main h1 {
        font-size: 5vw;
    }
    .header-section .header-section-main p {
        font-size: 2vw;
    }

    .about-us .heading p {
        font-size: 3vw;
    }
    .about-us .content p, li {
        font-size: 1.6vw;
        line-height: 25px;
        letter-spacing: .5px;
    }
}



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

    
    .header-section .header-section-main h1{
        font-size: 4vw;
    }


    .about-us {
        width: 90%;
    }

    .about-us .heading .underline{
        width: 20%;
    }

    .about-us .heading p{
        font-size: 6vw;
    }

    .about-us .content{
        width: 90%;
        margin-top: 5%;
    }

    .about-us .content p, li{
        line-height: 18px;
        font-size: 3.4vw;
        width: 110%;
        text-align: left;
    }
    
    .about-us .content ul li {
        margin-left: 10px !important;
    }
}

.mission-banner {
    width: 94%;
    margin: 0vh 3%;
    margin-top: 7vh;
}

@media(max-width: 600px) {
    .mission-banner {
        content: url("../media/about_vertical.jpg");
        width: 70%;
        margin: 0vh 15%;
        margin-top: 7vh;
    }
}