@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Quicksand:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
    /* background: #dcf2ff; */
}

:root {
    --main-clr: #0AEDFD;
}

.home {
    padding: 5%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 50px;
}

.home h1 {
    font-size: 4rem;
}

.home p {
    font-size: 2rem;
}

/* mission */

.mission {
    padding: 4% 5%;
    background: url('../images/a2.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(0deg, rgba(3, 89, 115, 0.88), rgba(3, 89, 115, 0.88)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.66)); */
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 10.02%, rgba(10, 237, 253, 0.88) 100%);

}

.mission-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 5%;
}

.mission-content h2 {
    width: 30%;
    font-size: 25px;
    font-weight: 600;
    color: #fff;
}

.mission-content p {
    width: 70%;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

/* vission */

.vission {
   
    padding: 7% 5% 10% 5%;
    background: url('../images/homebg.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.vission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

   background: #000000C9;


}

.vission-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 5%;
}

.vission-content h2 {
    width: 30%;
    font-size: 25px;
    font-weight: 600;
    color: #fff;
}

.vission-content p {
    width: 70%;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

footer{
    margin-top: 0px!important;
}














@media (width <= 768px){
    .mission-content , .vission-content{
        flex-direction: column;
        gap: 20px;
    }
    .mission-content h2 ,.mission-content p , .vission-content h2 ,.vission-content p{
        width: 100%;
        /* text-align: justify; */
    }
}