.sobre {
    padding: 100px 10px 160px 10px;
    
}
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    grid-gap: 15px;
    align-items: center
}
.sobre-img {
    position: relative;
    right: 30px;
}
.sobre-title span {
    display: block;
    content: "";
    height: 1px;
    width: 100px;
    background-color: #E3312D;
}
.sobre-title {
    display: flex;
    align-items: center;
    grid-gap: 8px;
}
.sobre-title h6 {
    color: rgb(77, 77, 77);
}

.sobre-about h3 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 10px;
    margin-top: 20px;
}

@media only screen and (min-width:340px) and (max-width:980px) {

    .sobre-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }

    .sobre-title {
        transform: rotate(0deg);
        justify-content: center;
    }

    .sobre-img {
        position: inherit;
        margin-left: auto;
        margin-right: auto;
    }

    .sobre-about {
        display: grid;
        justify-items: start
    }

        
.sobre-about h3 {
    font-size: 1.5rem;
}
    
}
@media only screen and (min-width:0px) and (max-width:339px) {

    .sobre-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }

    .sobre-title {
        transform: rotate(0deg);
        justify-content: center;
    }

    .sobre-title span {
        width: 50px;
    }

    .sobre-img {
        position: inherit;
        margin-left: auto;
        margin-right: auto;
    }

    .sobre-about h4 {
        font-size: 1.2rem;
    }

    .sobre-about h3 {
        font-size: 1.5rem;
    }
    
}