.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 4vw, 48px);
    justify-items: center;
}
.brand-item {
    max-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media only screen and (min-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (min-width: 992px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media only screen and (min-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

