footer {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 0 20px 0;
}
footer .footer-container,
footer .copyright {
    position: relative;
    width: 100%;
    margin: 0 auto;
}
footer .footer-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0;
}
footer .copyright {
    text-align: center;
    border-top: 1px solid var(--ap-base-light-gray);
    padding: 30px 0 10px;
    color: var(--ap-strong-blue-variation);
    font-weight: 200;
}
footer .footer-container .column {
    padding: 0 30px 30px 30px;
    text-align: center;
    width: 66%;
}
footer .footer-container .column h5 {
    color: var(--ap-strong-blue-variation);
    font-size: 16px;
    font-weight: 500;
}
footer .footer-container .column h3 {
    color: var(--ap-medium-blue-variation);
    padding: 23px 0;
    font-size: 23px;
}
footer .footer-container .column ul {
    list-style: none;
    padding: 14px 0;
}
footer .footer-container .column ul a {
    text-decoration: none;
    color: var(--ap-strong-blue-variation);
}
li.border_top {
    border: 1px solid var(--ap-base-medium-gray);
    border-width: 1px 0 0 0;
    margin: 16px 15% 0 15%;
    padding-top: 12px;
}
footer .footer-container .rrss_footer {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 14px 0 0 0;
    margin: 14px 20% 0 20%;
    border: 1px solid var(--ap-base-medium-gray);
    border-width: 1px 0 0 0;
}
footer .footer-container .rrss_footer img {
    width: 40px;
    padding: 0 20px 0 20px;
}

/** Media query para únicamente móvil */
@media only screen and (max-width: 767px) {
    footer .footer-container .column:last-child {
        padding: 0 30px;
    }
}

/* Media query para tablets */
@media only screen and (min-width: 768px) {
    /* Estilos específicos para tablets */
    footer .footer-container,
    footer .copyright {
        width: calc(100% - 40px);
    }
    footer .footer-container {
        padding: 40px 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
    footer .footer-container .column {
        padding: 0 30px;
        width: 20%;
    }
    footer .footer-container .column.col_center {
        width: 30%;
    }
    footer .footer-container .column.col_left {
        text-align: left;
    }
    footer .footer-container .column.col_right {
        text-align: right;
    }
    footer .footer-container .column h5 {
        font-size: 20px;
    }
    footer .footer-container .column h3 {
        font-size: 38px;
    }
    footer .copyright {
        padding: 30px 0;
    }
    li.border_top {
        margin: 12px 0 0 40%;
        padding-top: 6px;
    }
    footer .footer-container .rrss_footer {
        justify-content: space-around;
        margin: 14px 40% 0 0;
    }
    footer .footer-container .rrss_footer img {
        padding: 0 20px 0 0;
    }
}

/* Media query para desktops pequeños */
@media only screen and (min-width: 992px) {
    /* Estilos específicos para desktops pequeños */
    footer .footer-container,
    footer .copyright {
        max-width: 1330px;
    }
    footer .footer-container {
        padding: 100px 0;
    }
    footer .copyright {
        padding: 60px 0;
    }
}

/* Media query para desktops grandes */
@media only screen and (min-width: 1200px) {
    /* Estilos específicos para desktops grandes */
}