Отступ между блоками

На странице https://zigzag.kg/otzyvy/ отступы между отзывами велики. Как их сократить? Вот css:

 .otzyvy {
    display:flex;
    flex-direction:row; 
    justify-content:space-between;
    align-content:center;


}

.item_otz {
    padding:0;

}



.item_otz_text {
    margin-left:10px;
    padding:0;
    left:0;
    top:0;
    width:200px;
    font-size: 18px;
    color:#949494;
}

.item_otz_img {
    margin:0;
    padding:0;
    left:0;
    top:0;
    height:100%;
    max-height:320px;
}

Между отзывами отступ должен быть 30 px.


Ответы (1 шт):

Автор решения: vantal
.otzyvy {
display:flex;
flex-direction:row; 
justify-content:space-between;
align-content:center;
}

.item_otz {
    padding:0;
}

.item_otz_text {
    margin-left:10px;
    padding:0;
    left:0;
    top:0;
    width:200px;
    font-size: 18px;
    color:#949494;
}
.item_otz_img {
    margin:0;
    padding:0;
    left:0;
    top:0;
    height:auto;
}
→ Ссылка