.global-buyers{
    padding: var(--content-gap) 0;
    background: linear-gradient(0deg, #F2F2F2 0%, #F2F2F2 100%), #141414;
    overflow: hidden;
    position: relative;
}
.global-buyers .bg{
    position: absolute;
    right: 0;
    bottom: 66px;
    aspect-ratio: 643/500;
    object-fit: cover;
}
.global-buyers .global-list{
    display: grid;
    grid-template-columns: repeat(3,auto);
    justify-content: space-between;
    row-gap: 52px;
    margin-top: var(--content-gap-lg);
}
.global-list .global-item{
    display: flex;
    gap: 11px;
}
.global-item .pic{
    width: 98px;
    height: 98px;
    object-fit: cover;
}
.global-item .num{
    font-size: var(--title-size-h2);
}
.global-item .global-text{
    color: #424242;
    font-family: var(--font-family);
    font-size: var(--title-size-h4);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media screen and (max-width: 1500px) {
    .global-item .pic{
        width: 70px;
        height: 70px;
    }
}
@media screen and (max-width: 992px) {
    .global-buyers .global-list{
        grid-template-columns: repeat(2,auto);
    }
}
@media screen and (max-width: 768px) {
    .global-item .pic{
        width: 40px;
        height: 40px;
    }
}