.review {
    background: rgba(0,0,0,0.8);
    padding: 40px 30px;
}
.review_first {
    color: #fff;
    text-align: center;
    font-size: 50px;
    margin-bottom: 20px;
}
.review_second {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.review_customer {
    width: 45%;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    margin: 15px auto;
    max-width: 350px;
    overflow: auto;
    height: 400px;
}

.social_media img {
    height: 40px;
}
.social_media {
    text-align: right;
}
.review_flex {
    display: flex;
    max-width: 300px;
}
.review_img {
    width: 25%;
    display: flex;
}
.review_img img {
    width: 100%;
    margin: auto;
}
.name {
    width: 75%;
    padding: 10px;
}
.customer {
    font-size: 20px;
    font-weight: bold;
    color: var(--black-color);
}
.time {
    color: gray;
}
.star {
    margin-top: 15px;
    color: var(--yellow-color);
    font-size: 20px;
}
.review_content {
    margin-top: 10px;
}
@media screen and (min-width: 1200px){
    .review {
        padding: 70px 30px;
    }
}