.testimonies {
/*    background-color: beige;*/
    display: flex;
    flex-direction: column;
    grid-row-gap: 20px;
    padding: 20px;
}
.testimony {
/*    border: 1px solid black;*/
    text-align: center;
}
.testimony:hover {
    color: #ba1432;
}
.testimony_title {
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 4px;
}
.testimony_name {
    font-family: Roboto;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 10px;
}
.testimony_desc {
    text-align: left;
}
hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #f4a4b2, rgba(0, 0, 0, 0));
    margin-bottom: 30px;
}

@media (min-width: 960px) {
    h1.top {
        align-self: flex-start;
    }
    .testimonies {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        grid-gap: 40px;
    }
    .testimony {
        max-width: 30%
    }
    
/*
    .wrapper-page {
        text-align: center;
        width: 100%;
        background: gray;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
*/
}