.about {
    padding-left: 50px;
    background: rgba(0,22,28,1);
    display: flex;
    flex-direction: column;
    color:  #fff;
 }

 .about__title {
    margin-top: 50px;
    width: 280px;
    font-weight: Bold;
    text-align: left;
    font-weight: 600;
    font-size: 1.5rem;
    font-family: var(--montserrat);
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.about__text {
    width: 90%;
    font-size: 16px;
    text-align: left;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 50px;
}

.about__img {
    display: none;
}

@media screen and (min-width: 768px) {

    .about {
        padding-left: 50px;
        background: rgba(0,22,28,1);
        display: grid;
        column-gap: 40px;
        row-gap: 40px;
        grid-template-columns: auto auto;
        color:  #fff;
    }

    .about__title {
        width: 100%;
        text-align: center;
        grid-column: 1 / span 5;
        margin-bottom: 1rem;
    }

    .about__text-first {
        grid-column: 3 / span 3;
    }

    .about__text-second {
        grid-column: 1 / span 5;
    }

    .about__img {
        grid-column: 1 / span 2;
        display: block;
        width: 321px;
        height: 232px;
        border-radius: 45px;
        background-image: url("../images/imagem-sobre.jpg");
        background-size: 321px 232px;
    }
}

@media screen and (min-width: 1024px) {
    .about {
        padding-bottom: 40px;
    }

    .about__text {
        font-size: 19px;
        text-align: left;
        font-style: normal;
        line-height: 26px;
        margin-bottom: 30px;
    }

    .about__img {
        grid-row: 2 / span 2;
        width: 443px;
        height: 280px;
        background-size: 443px;
        border-radius: 40px;
    }

    .about__text-first {
        grid-row: 2;
        margin-bottom: -10px;
    }

    .about__text-second {
        grid-column: 3 / span 3;
        grid-row: 3;
    }
}
