* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html,
body {
    width: 100%;
    height: 100%;
}


h2 {
    font-family: "Work Sans", sans-serif;
}

p {
    font-family: "Inder", sans-serif;
}


.aboutContainer {
    width: 100%;
}

.aboutHomeOuter {
    width: 100%;
    height: 500px;
    background-image: url('../assets/aboutUs.JPG');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    object-fit: cover;
    position: relative;
}

.aboutHomeBackdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.267);
}

.aboutHomeInner {
    font-family: "Work Sans", sans-serif;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    margin: auto;
    color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.aboutHomeInner h1 {
    font-size: 45px;
    font-weight: 600;
}

.aboutHomeInner p {
    font-size: 28px;
    margin-top: 10px;
}


.aboutInner {
    width: 1300px;
    margin: auto;
}

.aboutInfo {
    width: 50%;
    margin: 50px auto;
    text-align: center;
}


.aboutInfo h2 {
    font-size: 35px;
    margin-bottom: 20px;
}

.aboutInfo p {
    font-size: 15px;
    color: gray;
}

.aboutShortHistory {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin: 10px 20px;
}

.aboutHistory {
    width: 24%;
    padding: 20px;
    height: 200px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.aboutHistory img {
    width: 50px;
    height: 50px;
    margin: 10px 0px
}

.aboutHistory h3 {
    font-size: 25px;
    font-family: "Work Sans", sans-serif;
    color: blue;
}

.aboutHistory p {
    margin-top: 10px;
    width: 50%;
    height: 20px;
}

.teamBtn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0px;
}

.teamBtn button {
    padding: 18px 25px;
    border: none;
    outline: none;
    border-radius: 5px;
    background-color: green;
    color: white;
    margin-bottom: 30px;
}

/* our mission open */

.ourMission {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
}

.ourMissionHeading {
    font-size: 25px;
    padding: 20px;
    text-align: center;
    margin: 0px 30px
}

.ourMissionPara {
    padding: 20px;
}

.ourMissionPara h3 {
    font-family: "Work Sans", sans-serif;
    margin-bottom: 15px;
}

.ourMissionPara p {
    margin-bottom: 10px;
    font-size: 14px;
    color: gray;
}

/* our mission close */


/* leadership open */


.LeadershipTeam {
    width: 100%;
    margin: 50px 0px;
}

.LeadershipTeamHeading {
    font-family: "Work Sans", sans-serif;
    width: 100%;
    text-align: center;
    letter-spacing: -1px;
    font-size: 20px;
    margin-bottom: 20px;
}

.LeadershipContent {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.leadership {
    width: 23%;
    margin: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    justify-content: center;
    border-radius: 10px;
    flex-wrap: wrap;
}

.leadership img {
    width: 70px;
    height: 70px;
    margin: 10px 0px;
    border-radius: 50%;
    background-color: red;
}

.leadership h3 {
    font-size: 20px;
    font-family: "Work Sans", sans-serif;
    margin-bottom: 20px;
}

.leadership p {
    font-size: 15px;
    color: gray;
    margin-bottom: 20px;
}

.leadership a {
    font-family: "Inder", sans-serif;
    margin-bottom: 15px;
}

.leadership i {
    font-size: 40px;
    border-radius: 25%;

}

.LeadershipSocial a {
    color: blue;
    text-decoration: none;
}

/* leadership close */



@media screen and (max-width:425px) {



    .aboutHistory {
        width: 100%;
        height: 250px;
        margin: 10px 0px;
    }


}

@media screen and (max-width:768px) {
    .aboutHistory {
        width: 45%;
        margin: 10px 0px;
    }

    .aboutHomeInner h1 {
        text-align: center;
    }
}



@media screen and (max-width:1024px) {
    .aboutInner {
        width: 100%;

    }

    .aboutInfo {
        width: 100%;
    }


    .aboutInfo h2 {
        font-size: 25px;

    }

    .aboutShortHistory {
        margin: 0;
        flex-wrap: wrap;
    }

    .aboutHistory {
        width: 90%;
        margin: 10px auto;
        height: 200px;
    }

    .aboutHistory img {
        width: 40px;
        height: 40px;
        margin: 10px 0px
    }



    .teamBtn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 50px 0px;
    }

    .teamBtn button {
        padding: 20px 25px;
        border: none;
        outline: none;
        border-radius: 10px;
        background-color: green;
        color: white;
        margin-bottom: 30px;
    }




    /* our mission open */

    .ourMission {
        flex-wrap: wrap;
        padding: 0px 10px;
    }

    .ourMissionHeading {
        width: 100%;
    }



    .ourMissionPara {
        padding: 20px;
    }

    /* our mission close */


    /* leadership open */


    .LeadershipContent {

        height: 500px;
        overflow-y: scroll;
    }

    .LeadershipTeamHeading {
        font-size: 17px;
    }

    .leadership {
        width: 40%;
        margin: 10px;
    }

    .leadership img {
        width: 60px;
        height: 60px;

    }

    .leadership h3 {
        font-size: 18px;
    }

    .leadership p {
        font-size: 14px;

    }

    .leadership a {
        text-decoration: none;
        font-size: 14px;
    }

    .leadership i {
        font-size: 30px;
    }

    .LeadershipSocial a {
        color: blue;
    }

    /* leadership close */



}