.marketplaces-block {
    position: relative;
    max-width: 1920px;
    width: 100%;
    height: 100%;
    background: var(--background-thirdly);
    border-bottom: 1px solid var(--stroke);
    margin: 0 auto;
    overflow: hidden;
}

.marketplaces-block.block-90 {
    margin-bottom: clamp(2.5rem, 1.875rem + 3.13vw, 5.625rem);
    border: none;
}

.marketplaces-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #F6F4EF 70.65%, rgba(246, 244, 239, 0) 82.6%);
    z-index: 1;
}

.marketplaces-block .marketplaces-block__decor {
    position: absolute;
}

.marketplaces-block .marketplaces-block__decor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.marketplaces-block .marketplaces-block__decor-left {
    bottom: 0;
    /* left: -80px; */
    width: 250px;
    height: 386px;
    /* transform: rotate(160deg); */
    z-index: 2;
}

.marketplaces-block .marketplaces-block__decor-right {
    top: 0;
    right: 0;
    width: 373px;
    height: 308px;
    /* transform: rotate(-30deg); */
    z-index: 3;
}

.marketplaces-block .marketplaces-block__img {
    position: absolute;
    top: 0;
    height: 100%;
}

.marketplaces-block .marketplaces-block__img-left {
    left: 0;
    width: 28.646vw;
    object-position: right;
    z-index: 2;
}

.marketplaces-block .marketplaces-block__img-right {
    right: 0;
    width: 30.729vw;
    object-position: left;
}

.marketplaces-block .marketplaces-block__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.marketplaces-block .marketplaces-block__img.marketplaces-block__img-left img {
    object-position: right;
}
.marketplaces-block .marketplaces-block__img.marketplaces-block__img-right img {
    /* object-position: left; */
}

.marketplaces-block .marketplaces-block__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-self: center;
    gap: 50px;
    max-width: 880px;
    width: 100%;
    padding: 100px 15px 115px;
    z-index: 4;
}

.marketplaces-block .marketplaces-block__title {
    text-align: center;
}

.marketplaces-block .marketplaces-block__items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.marketplaces-block .marketplaces-block__item {
    max-width: 390px;
    width: calc((100% - 15px) / 2);
    max-height: 150px;
    height: auto;
}

.marketplaces-block .marketplaces-block__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (min-width: 1921px) {
    .marketplaces-block .marketplaces-block__img-left {
        max-width: 550px;
    }
    
    .marketplaces-block .marketplaces-block__img-right {
        max-width: 590px;
    }
}

@media (max-width: 1450px) {
    .marketplaces-block .marketplaces-block__content {
        padding: 50px 15px;
    }
    .marketplaces-block .marketplaces-block__img-left {
        width: 24vw;
    }
    .marketplaces-block .marketplaces-block__item {
        max-width: 290px;
    }
}
@media (max-width: 992px) {
    .marketplaces-block .marketplaces-block__content {
        padding: 30px 15px;
        gap: 20px;
    }
    .marketplaces-block .marketplaces-block__items {
        flex-direction: column;
        gap: 10px;
    }
    .marketplaces-block .marketplaces-block__img-left {
        width: 30vw;
    }
    .marketplaces-block .marketplaces-block__item {
        width: 100%;
    }
    .marketplaces-block .marketplaces-block__decor-right,
    .marketplaces-block .marketplaces-block__decor-left {
        display: none;
    }
}
@media (max-width: 650px) {
    .marketplaces-block .marketplaces-block__img-left,
    .marketplaces-block .marketplaces-block__img-right {
        display: none;
    }
    .marketplaces-block .marketplaces-block__content {
        padding: 20px 15px;
    }
    .marketplaces-block .marketplaces-block__items {
        flex-direction: row;
    }
    .marketplaces-block .marketplaces-block__item {
        max-width: 190px;
    }
}