.marketplaces__list {
    display: flex;
    column-gap: 50px;
    margin-top: 70px;
    flex-wrap: wrap;
    row-gap: 30px;
}
.marketplaces-block {
    border-bottom: 1px solid #ececec;
    border-color: var(--stroke_black);
    padding-bottom: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.marketplaces-block h2 {
    margin-bottom: 16px;
}
.marketplaces__item {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.marketplaces__item img {
    width: 140px;
    height: auto;
}
.marketplaces__img {
    height: 57px;
    align-content: center;
}
@media (max-width: 780px) {
    .marketplaces__list {
        justify-content: center;
    }
    .marketplaces-block {
        margin-bottom: 30px;
    }
}
@media (max-width: 600px) {
    .marketplaces-block {
        margin-top: 20px;
    }
    .marketplaces__list {
        margin-top: 30px;
    }
}