/* FOOTER */
footer *,
footer p {
    font-size: 14px;
    line-height: 1.2;
}

footer a {
    text-decoration: var(--primary-text-color);
}

footer {
    background: var(--bg-color-dark);
    width: 100%;
    display: flex;
    place-content: center;
    padding: 16px;
    margin-bottom: 160px;
}

footer .container {
    gap: 24px;
    display: flex;
    flex-direction: column;
}

footer .section-footer {
    max-width: 1280px;
    width: 100%;
    display: flex;
    gap: 16px;
    margin: auto;
}

footer .section-footer-logos {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

footer .logo-appost img {
    height: 40px;
    width: auto;
}

footer .logos-18 {
    display: flex;
    gap: 16px;
    place-content: center;
    align-items: center;
    flex-wrap: wrap;
}

footer .logos-18 a {
    display: flex;
    align-items: center;
}

footer .logos-18 img {
    width: 100%;
    max-width: 110px;
}

footer .section-footer-text {
    justify-content: space-between;
}

footer .section-footer-text .footer-col2 {
    flex-basis: 400px;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    /* max-width: 1280px; */
    width: 100%;
    padding: 16px 0;
}

.container.container-center {
    justify-content: center;
    height: 100vh;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.legales-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.legales-links a {
    font-size: 12px;
    text-decoration: underline;
    color: white;
    text-decoration: none;
}

/* RESPONSIVE MAX WIDTH 768PX  */
@media (max-width: 768px) {
    .container.container-center {
        padding-top: 50px;
        flex-direction: column;
        justify-content: flex-start;
        gap: 40px;
    }

    footer .section-footer-logos,
    footer .section-footer-text {
        flex-direction: column;
    }

    footer .section-footer-text .footer-col1,
    footer .section-footer-text .footer-col2 {
        text-align: center;
        flex-basis: auto;
        text-decoration: none;
        color: white;
    }
}

/* RESPONSIVE MIN WIDTH 768PX  */
@media screen and (min-width: 769px) {
    footer .section-footer-text {
        align-items: end;
    }

    footer {
        padding: 16px;
        margin-bottom: 0;
    }
}
