section#reviews h2{
    font-weight: 700;
    color: black;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 45px;
    line-height: 50px;
}

section#reviews .gridwrapper{
    display: grid;
    grid-template-columns: 1fr 500px;
    column-gap: 80px;
}

section#reviews .gridwrapper .foto img{
    height: 100%;
    object-fit: cover;
}

section#reviews{
    padding: 80px 0;
}

@media only screen and (max-width: 1000px) {

    section#reviews h2{
        font-size: 30px;
        line-height: 30px;
    }

    section#reviews{
        padding: 40px 0;
    }

    section#reviews .gridwrapper{
        grid-template-columns: 1fr;
        row-gap: 40px;
    }

    section#reviews .gridwrapper .foto img{
        height: 300px!important;
        width: 100%;
    }
}