.sub-brand-box-section {
    aspect-ratio: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 90%;
}

.brand-section {
    position: relative;
    background-color: #f5f5f5;
    overflow: hidden;
}

.brand-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width:50%;
    height: 100%;
    background: linear-gradient(to right, rgb(255, 255, 255), transparent);
    pointer-events: none;
}

/* Right fade */
.brand-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, white, transparent);
    pointer-events: none;
}