footer {
    position: absolute;
    display: block;
    min-height: var(--footer-height);
    width: 100vw;
    background-color: var(--canacintra-color1);
    user-select: none;
    bottom: var(--canacintra-color1);
    color: var(--canacintra-color5);
}

#footerWrapper>div {
    margin: 20px 0;
}

#footerWrapper {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    flex-wrap: no-wrap;
}

#footLogo {
    display: flex;
    flex-direction: row;
    max-height: var(--footer-height);
    min-height: 150px;
    width: 400px;
    max-width: 400px;
    background: url("../images/logo_blanco.svg") no-repeat center / 70%;
}

#footData {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: nowrap;
    max-width: 500px;
    height: var(--footer-height);
}

.footDataItem {
    display: flex;
    padding: 0px 50px;
    font-size: .8em;
}

.dataIcon {
    width: 30px;
    aspect-ratio: 1;
    background: no-repeat center / 80%;
    margin-right: 10px;
}

.dataIcon.tel {
    background-image: url("../images/iconTel.svg");
}

.dataIcon.hor {
    background-image: url("../images/iconHor.svg");
}

.dataIcon.ubi {
    background-image: url("../images/iconUbi.svg");
}

.dataInfo span {
    font-size: 1.3em;
}

.footDataItem a:link,
.footDataItem a:visited {
    color: white;
    text-decoration: none;
}

#footSocials {
    display: flex;
    flex-direction: row;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    height: var(--footer-height);
    min-width: 60px;
    width: fit-content;
}

.footSocialIcon {
    width: 30px;
    aspect-ratio: 1;
    background: no-repeat center / 80%;
}

#footSocials a {
    margin: 20px 10px;
}

.footSocialIcon.fb {
    background-image: url("../images/iconFb.svg");
}

.footSocialIcon.tw {
    background-image: url("../images/iconX.svg");
}

.footSocialIcon.yt {
    background-image: url("../images/iconYt.svg");
}

.footSocialIcon.li {
    background-image: url("../images/iconLi.svg");
}

#copyrightFooter {
    width: 100%;
    background-color: black;
    text-align: center;
    font-size: .8em;
    padding: 10px 0px;
}

@media all and (max-width: 1080px) {
    #footerWrapper {
        flex-wrap: wrap;
    }
    #footSocials {
        height: 80%;
    }
}