.about {
    width: 100%;
    background-color: #002B5B;
    display: flex;
    align-items: center;
}

.about img {
    max-width: 100%;
}

.about .content-about {
    padding: 0 2rem 0 2rem;
}

.about .content-about h1 {
    font-size: 2rem;
    font-family: "Lora", sans-serif;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #F7FDFF;
}

.about .content-about p {
    font-size: 1rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    color: #F7FDFF;
    margin: 0;
}

@media (max-width: 991.98px) {
    .about {
        display: flex;
        flex-wrap: wrap;
    }

    .about img {
        display: none;
        /* width: 100%;
        max-width: 100%;
        height: auto; */
    }

    .about .content-about {
        padding: 2rem;
        text-align: center;
    }
}