.review-section{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: stretch;
    margin-top: 100px;
}
.reviews-rows{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.review-container{
    width: 25%;
    background: #0186d3;
    padding: 30px;
}
.review-name {
    text-align: left;
    font-size: 25px;
    color: white;
    padding-left: 10px;
    font-weight: 700;
}

.review-avatar-container {
    width: 30%;
}

.review-upper {
    margin: 15px 0px -2px 0px;
    background: white;
    padding: 15px 15px;
    white-space: pre-line;
    font-size: 15px;
}
.review-avatar{
    width: 100%;
}

@media only screen and (max-width: 500px) {
    .review-section {
        flex-direction: column;
        align-items: center;
    }
    .review-container {
        width: 80%;
        padding: 20px;
        margin-bottom: 20px;
    }
}
