#footer {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    align-items: center;
    justify-content: center;
    padding: 2em;
    background-color: var(--secondary-background-color);
}

#footer::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100vw;
    right: -100vw;
    z-index: -1;
    background: var(--secondary-background-color);
}

.footer-logo {
    width: fit-content;
    font-size: 2em;
    font-weight: 300;
    color: var(--company-color3);
}

.footer-logo::before {
    content: "";
    background-image: url(/res/media/icons/yenova-icono.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 0.25em;
}

.footer-logo>.colored {
    font-weight: bold;
    color: var(--company-color1);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 1em;
}

.social-icon {
    width: 1.5em;
    height: 1.5em;
    opacity: 1;
    transition: opacity 0.1s ease-in;
}

.social-icon>img {
    width: 100%;
    height: 100%;
}

.social-icon:is(:hover, :focus) {
    opacity: 0.5;
}

.email {
    font-size: 1em;
}

@media (width>=768px) {
    .footer-logo {
        font-size: 3em;
    }

    .social-icon {
        width: 2em;
        height: 2em;
    }

    .email {
        font-size: 1.25em;
    }
}

@media (width>=1024px) {}

@media (width>=1440px) {}