#hero{
    width: 100%;
    height: 400px;
    background: url(images/banner.jpg);
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 80px;
    margin-top: 65px;
    color: #000;
}
#hero h2{
    font-size: 45px;
    font-weight: bolder;
    margin-bottom: 18px;
    color: #000;
}



.mission{
    width: 100%;
    padding: 30px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mission .left{
    width: 40%;
    height: 250px;
}
.mission .left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mission .right{
    width: 50%;
}
.mission .right h3{
    font-size: 40px;
    margin-bottom: 16px;
}
.mission .right p{
    font-size: 18px;
    line-height: 25px;
}

.vision{
    width: 100%;
    padding: 30px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(136, 155, 190, 0.253);
}
.vision .left{
    width: 40%;
    height: 250px;
}
.vision .left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vision .right{
    width: 50%;
}
.vision .right h3{
    font-size: 40px;
    margin-bottom: 16px;
}
.vision .right p{
    font-size: 18px;
    line-height: 25px;
}

.we-are{
    width: 100%;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.we-are h2{
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
}
.we-are p{
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    margin: 16px 0px;
}



@media (max-width:799px){
    .mission{
        flex-direction: column;
        padding: 30px 20px;
    }
    .mission .left{
        width: 100%;
    }
    .mission .right{
        width: 100%;
        margin-top: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .mission .right p{
        text-align: center;
    }
    .vision{
        flex-direction: column;
        padding: 30px 20px;
    }
    .vision .left{
        width: 100%;
        margin-top: 30px;
    }
    .vision .right{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .vision .right p{
        text-align: center;
    }
    .we-are{
        padding: 80px 20px;
    }
    .we-are p{
        text-align: left;
    }
}