/* ******************************************** */
/** COMPONENTS: FOOTER
/* ******************************************** */

/* FOOTER */

.c-footer{
    padding: var(--section-y) 0;
    background-color: var(--color-primary);
    color: var(--color-lightest);
}

.c-footer__holder > *:not(:first-child){
    margin-top: 50px;
}

.c-footer__contact li:not(:first-child){
    margin-top: 2em;
}

.c-footer__schedule,
.c-footer__contact li a{
    font-size: 1.5rem;
}

.c-footer__contact li a{
    display: grid;
    align-items: start;
    grid-template-columns: auto 1fr;
    gap: 1em;
}

.c-footer__schedule strong{
    display: block;
}

.c-footer__contact li a[data-type="tel"]:before{
    content: "\e908";
    display: inline-block;
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.5em;
    margin-top: -2px;
}

.c-footer__contact li a[data-type="mail"]:before{
    content: "\e907";
    display: inline-block;
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.5em;
}

.c-footer__contact li a[data-type="location"]:before{
    content: "\e905";
    display: inline-block;
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.5em;
    margin-top: -3px;
}

/* ********************** de Mobile a TABLET ********************** */

@media (min-width: 768px) {

    .c-footer__holder{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 4em 10px;
    }
    
    .c-footer__holder > *:not(:first-child){
        margin-top: 0
    }
    
    .c-footer__logo{
        grid-row: span 2;
        margin-top: -10px;
    }
    

}

/* ********************** de Tablet a DESKTOP ********************** */

@media (min-width: 980px) {

    .c-footer__contact li a:is(:hover,:focus){
        color: var(--color-hover);
    }

}


/* ********************** de Desktop a DESKTOP 2 ********************** */

@media (min-width: 1200px) {

    .c-footer__holder{
        display: grid;
        grid-template-columns: auto auto auto;
        justify-content: space-between;
        gap: 0 40px;
        grid-template-rows: 1fr;
    }

}