.logos-marquee {
    .marquee {
        overflow: hidden;
        width: 100%;
        background: transparent;

        .marquee-scroll-wrapper {
            @media screen and (max-width: 576px) {
                gap: 5rem !important;
            }
        }
        .logos {
            display: flex;
            gap: 8rem;
            align-items: center;

            @media screen and (max-width: 576px) {
                gap: 5rem !important;
            }
            .logo {
                max-width: 120px;

                @media screen and (max-width: 576px) {
                    max-width: 80px;
                }
                img {
                    position: relative;
                    top: 0;
                    opacity: .75;
                    transition: .2s ease-in-out;

                    &:hover {
                        opacity: 1;
                    }
                }
            }
        }
    }
}