/* 
El root está definido en el archivo global styles.css, esto es solo para referencia.

:root {
    --dark-color: #333333;
    --dark-gray-color: #555555;
    --gray-color: #aaaaaa;
    --light-gray-color: #e7e7e7;
    --light-color: #ffffff;
    --primary-color: #0a212e;
    --secondary-color: #e4e47f;
    --terciary-color: #6f6f4b;
    --light-shadow: #00000038;
    --transition: 250ms;
    --bold-font: 800;
    --thin-font: 300;
    --font-family-primary: 'Montserrat';
    --font-family-secondary: 'Oswald';
}

*/

#sponsors {
    width: 100%;
    padding: 3rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    .sponsors__content {
        width: 100%;
        max-width: 1400px;
    }
    .sponsors__cat {
        width: 95%;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
        margin: 1rem;
        .sponsors__title {
            width: 20%;
            box-shadow: 3px 3px 5px var(--light-shadow);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 15rem;
            border-radius: 0 15px 0 15px;
            background-color: var(--primary-color);
            .sponsors__title-text {
                text-transform: uppercase;
                font-weight: var(--bold-font);
                text-align: center;
            }
        }
        .sponsors__primary-bg-color {
            background-color: var(--primary-color);
        }
        .sponsors__secondary-bg-color {
            background-color: var(--secondary-color);
        }
        .sponsors__terciary-bg-color {
            background-color: var(--terciary-color);
        }
        .sponsors__slider {
            width: 79%;
            box-shadow: 3px 3px 5px var(--light-shadow);
            height: 15rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 15px 0 15px 0;
            background-color: var(--light-color);
            border: 1px solid var(--light-gray-color);
        }
    }
}

@media (width <= 1024px) {
    #sponsors {
        .sponsors__cat {
            .sponsors__title,
            .sponsors__slider {
                width: 100%;
                margin: 0.5rem;
            }
            .sponsors__title {
                height: auto;
                padding: 1rem;
                border-radius: 15px 15px 0 0;
            }
            .sponsors__slider {
                border-radius: 0 0 15px 15px;
            }
        }
    }
}