
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

div.sobre-section:first-child {
    margin-top: 50px;
}

div.sobre-section {
   /* height: 55vh;
    min-height: 400px; */
    margin: 30px 0;
}

div.sobre-inner {
    width: 65%;
    margin: 0 auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

div.sobre-inner > div{
    width: 45%;
    max-width: 500px;

}

div.sobre-text > h2 {
    border-left: 7px solid #b69f2b;
    padding: 0 0 3px 6px;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
}

div.sobre-pic > img {
    width: 100%;
    height: auto;
}

/* responsividade */

@media only screen and (max-width: 760px){
    /*div.sobre-section {
        min-height: 80vh;
    }*/

    div.sobre-inner {
        width: 90%;
    }

    div.sobre-inner > div{
        width: 100%;
    
    }

    div.sobre-pic {
        margin-bottom: 15px;
    }
}