.about {
    height: 85vh;
    /* background-color: #f4f6f8; */
    background-image: url(./images/about-us.jpg);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 100%;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 80vh;
    color: #f4f6f8;
    padding: 0 7%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
    position: absolute;
    width: 100%;
    /* border: 2px solid; */
    text-align: left;
}

.about-text p, .about-text h1{
    width: 50%;
}


.mission {
    padding: 0 7%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 50px;


}

.mission- {
    width: 95%;
    padding: 0 5%;
    padding-block: 20px;
    background-color: #800020;
    color: #f4f6f8;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
    border-radius: 10px;
}

.mission- h1 {
    font-size: 60px;
}

@media only screen and (max-width: 1200px) {

    .about-text{
      display: none;
    }
    .mission{
        display: block;
        width: 100%;
        margin: 0 auto;
    }
    .mission-{
        margin: 0 auto;
        margin-top: 50px;
    }
}