/* FOOTER */
footer {
    position: relative;
    z-index: 2;
}

.section-footer {
    background-color: #ba2025;
    padding: 20px 0;
}

.container-footer {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 10px;
}

.row-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.col-footer {
    box-sizing: border-box;
}

.col-footer img {
    display: block;
    width: 100%;
    max-width: 110px;
    margin: 0 auto;
}

.footer-title {
    color: #fff;
    text-transform: uppercase;
    font-size: 1.5rem;
    padding: 5px;
    margin-bottom: 10px;
}

.footer-link {
    display: block;
    color: #fff;
    margin-bottom: 5px;
    text-align: right;
}

/* FOOTER logos */
.logo-container {
    display: flex;
    align-items: flex-start;
}

.logo-container div {
    padding: 10px 20px 10px 0;
}

/* FOOTER ICONS */
.footer-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-icons a {
    width: 50px;
    display: block;
    padding-left: 10px;
}

/* Footer partner links */
.footer-partner-link {
    display: block;
    text-align: center;
}

.footer-partner-link img {
    display: block;
    max-height: 70px;
    margin: 0 auto;
}

/* COLOPHON */
.section-colophon {
    padding: 10px 0;
    background-color: #9a1c1f;
}

.colophon-text {
    color: #fff;
    font-size: 12px;
}

.colophon-text a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.colophon-text img {
    display: block;
    width: 25px;
    height: auto;
}

/* FOOTER LINKS */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* MEDIA QUERIES */
@media (max-width: 640px) {
    .col-footer {
        width: 100%;
        text-align: center;
    }

    .logo-container,
    .footer-icons {
        justify-content: center;
    }

    .logo-container div {
        padding: 20px;
    }

    .colophon-text {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 5px;
    }
}

@media (max-width: 480px) {
    .col-footer img {
        margin-bottom: 20px;
    }

    .colophon-text {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 5px;
    }
}
