.landing-page-brands__link {
    text-decoration: none !important;
}



.landing-page-brands__link {
    display: block; 
    text-decoration: none; 
    margin: 0; 
    padding: 0; 
}

.landing-page-brands {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-right: 112px;
    margin-left: 112px;
    overflow: hidden;
}

.landing-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/site_specific_images/logos_gradient.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none; 
    /* z-index: 5; */
}

.landing-page-brands__text {
    color: #8F86FF;
    text-shadow: 0px 450px 126px rgba(0, 0, 0, 0.00), 0px 288px 115px rgba(0, 0, 0, 0.01), 0px 162px 97px rgba(0, 0, 0, 0.05), 0px 72px 72px rgba(0, 0, 0, 0.09), 0px 18px 40px rgba(0, 0, 0, 0.10);
    text-align: center;
    font-family: 'Poppins';
    font-size: max(2.3vw, 22px);
    font-weight: 600;
    padding: 2% 4%;
    margin: 5% 0% 0% !important;
}

.landing-page-brands__image-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin: 2% 0% 3%;
}

.landing-page-brands__image-div {
    text-align: center;
}

.landing-page-brands__image-div img {
    height: 52px;
    display: inline-block;
}

@keyframes landing-page-brands__animation {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

@media (max-width: 768px) {
    .landing-page-brands__image-container{
        margin: 0% 0% 10%;
    }
    .landing-page-brands__text{
        margin: 10% 0% 0% !important;
    } 
    .landing-page-brands__image-div img {
        height: auto;
    }

}
@media (max-width: 580px) {
    .landing-page-overlay {
        background-image: url('/img/site_specific_images/logos_gradient_mobile.png'); 
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .landing-page-brands__text {
        margin: 20% 0% 0% !important;
        padding: 2% 8%;
    }
    .landing-page-brands__image-container {
        margin: 0% 0% 20%;
    }

    .landing-page-brands__image-div img {
        height: auto;
    }

}




