#preventivo {
    display: flex;
    justify-content: space-evenly;
    background: #5c7944;
    color: white;
    padding: 50px 0;
}

.first-section-preventivo {
    margin: auto;
}

.title-about-prices {
    font-family: "Caudex", serif;
    font-size: 46px;
    line-height: 1.33em;
    font-weight: 400;
    margin: 10px 0 30px 0;
    color: #7f6459;
}

#preventivo-arrow {
    font-size: 22px;
    padding: 2px;
    margin-left: 10px;
    display: none;
}

#preventivo-button:hover #preventivo-arrow { 
    display: inline;
}

@media screen and (max-width: 700px) {
    .image-about {
        grid-row-start: auto;
    }
    #preventivo {
        display: grid;
        grid-template-columns: 1fr;
        grid-row-gap: 20px;
    }
    .first-section-preventivo {
        margin: auto;
        width: 80%!important;
        text-align: center;
    }
    .title-about-prices {
        font-family: "Caudex", serif;
        font-size: 34px;
        line-height: 1.33em;
        font-weight: 400;
        margin: 10px 0 30px 0;
        color: #7f6459;
    }
}