/* ******************************************** */
/** COMPONENT: FOOTER
/* ******************************************** */
/* FOOTER */

.c-footer {
    background-color: var(--color-primary);
}
.c-footer__content {
    display: flex;
    gap: 4rem;
    flex-direction: column;
    align-items: center;
    padding-top: var(--space-y);
    padding-bottom: var(--space-y);
}
.c-footer__brand {
    max-width: 14rem;
}
.c-footer__item {
    position: relative;
    padding-left: 3.8rem;
    padding-top: 1.4em;
    padding-bottom: 1.4em;
    font-size: clamp(1.4rem, 4vw, 1.6rem);
    font-weight: 600;
}
.c-footer__link {
    color: var(--color-secondary);
    display: inline-block;
}

.c-footer__link:not(:first-of-type) {
    margin-top: 0.5em;
}

.c-footer__item span[class*="icon-"] {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 1.8em;
    margin-bottom: .2em;
    color: var(--color-secondary);
}

.c-footer__item:first-child span[class*="icon-"] {
    font-size: 2.1em;
    margin-left: -.1em;
}



/* .c-footer__item:not(:first-child) span {
    font-size: 2em;
} */
.c-footer__bottom {
    text-align: center;
    background: var(--color-grey-700);;
    padding: 2.8rem 0;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}
.c-footer__holder {
    color: var(--color-grey-100);
}
.c-footer__solcre {
    color: var(--color-grey-100);
}

/* ********************** SHORT MOBILE ********************** */
@media (max-width: 47.9rem) { /* 767px */
    .c-footer__solcre {
        display: inline-block;
        margin-top: 1em;
    }
}

/* ********************** de Mobile a TABLET ********************** */

@media (min-width: 48rem) { /* 768px */
    .c-footer__list {
        max-width: 70%;
    }
    .c-footer__holder {
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .c-footer__bottom {
        padding: 1.8rem 0;
    }
}

@media (max-width: 1003px) and (min-width: 768px) {
    .c-social__item:not(:first-child) {
        margin-left: 1rem;
    }
}

/* ********************** HOVERS ********************** */
@media (hover: hover) {
    .c-footer__brand .c-logo__svg g{
        transition: fill 200ms ease-out;
    }
    .c-brand__logo:is(:hover, :focus) .c-logo__svg g{
        fill: var(--color-hover);
        transition: fill 200ms ease-out;
    }
    .c-footer__link:is(:hover, :focus) {
        color: var(--color-hover);
    }
    .c-footer__solcre:is(:hover, :focus) {
        opacity: .6;
    }
}

/* ********************** de Tablet a DESKTOP ********************** */
@media (min-width: 61.25rem) { /* 980px */
    .c-footer__content {
        display: flex;
        gap: 20px;
        justify-content: space-between;
        flex-direction: initial;
    }
}