/* http://mcg.mbitson.com/#!?palette=%23e51a51 */
/*Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

:root {
    /*// http://mcg.mbitson.com/#!?tundora=%23414141*/
    /*Navbar Colors*/
    --ob-nav-text-color: #222;
    --ob-nav-bg-color: #fff;
    /*Colores primary*/
    --theme-primary-50: #F0E7F0;
    --theme-primary-100: #DBC3DB;
    --theme-primary-200: #C498C5;
    --theme-primary-300: #AC6CAF;
    --theme-primary-400: #9A4C9F;
    --theme-primary-500: #642365;
    --theme-primary-600: #5B1F5B;
    --theme-primary-700: #4E1A4E;
    --theme-primary-800: #421641;
    --theme-primary-900: #2F0E2F;
    --theme-primary-A100: #F9B3FF;
    --theme-primary-A200: #F580FF;
    --theme-primary-A400: #EF2CFF;
    --theme-primary-A700: #DC00F0;

    --theme-primary-contrast-50: #212121;
    --theme-primary-contrast-100: #212121;
    --theme-primary-contrast-200: #212121;
    --theme-primary-contrast-300: #FFFFFF;
    --theme-primary-contrast-400: #FFFFFF;
    --theme-primary-contrast-500: #FFFFFF;
    --theme-primary-contrast-600: #FFFFFF;
    --theme-primary-contrast-700: #FFFFFF;
    --theme-primary-contrast-800: #FFFFFF;
    --theme-primary-contrast-900: #FFFFFF;
    --theme-primary-contrast-A100: #212121;
    --theme-primary-contrast-A200: #212121;
    --theme-primary-contrast-A400: #FFFFFF;
    --theme-primary-contrast-A700: #FFFFFF;

    /*Fuente cliente*/
    --theme-font-family: 'Poppins', sans-serif;
    /*Force font weight*/
    --theme-headline-5-font-weight: 300;
    --theme-headline-6-font-weight: 300;
    --theme-subtitle-1-font-weight: 300;
    --theme-body-1-font-weight: 300;
    --theme-body-2-font-weight: 300;
    --theme-caption-font-weight: 300;
    --theme-headline-1-font-weight: 600;
    --theme-headline-2-font-weight: 600;
    --theme-headline-3-font-weight: 600;
    --theme-headline-4-font-weight: 600;
    --theme-button-font-weight: 600;
}

/* footer */
.channel-footer {
    background-image: url("https://client-dists-resources.s3.amazonaws.com/channels-client/canetrock/assets/footer/bg-footer.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 3rem;
    background-color: #e02a89;
}

.footer-socials {
    width: 400px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-socials a img {
    height: 34px;
    width: auto;
}

.footer-socials a img:hover {
    opacity: 0.3;
}

.footer-title p {
    color: #fff;
    text-align: center;
    padding: 0 0 2rem 0;
}

.channel-footer-content {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
}

/*Mobile*/
@media only screen and (max-width: 40.063em) {
    .channel-footer {
        display: none;
    }
}