/* ========================= */
/* FOOTER */
/* ========================= */

.footer {

    background: var(--primary);

    color: white;

    padding-top: 100px;
}



/* ========================= */
/* CONTAINER */
/* ========================= */

.footer-container {

    display: flex;

    justify-content: space-between;

    gap: 80px;

    padding: 0 8% 80px;
}



/* ========================= */
/* BRAND */
/* ========================= */

.footer-brand {

    max-width: 420px;
}


.footer-brand img {

    width: 180px;

    margin-bottom: 25px;

    filter: brightness(0) invert(1);
}


.footer-brand p {

    color: rgba(255,255,255,0.75);

    line-height: 1.9;
}



/* ========================= */
/* LINKS */
/* ========================= */

.footer-links {

    display: flex;

    gap: 80px;
}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 16px;
}


.footer-column h4 {

    margin-bottom: 12px;

    font-size: 18px;
}


.footer-column a {

    color: rgba(255,255,255,0.72);

    transition: 0.3s ease;
}


.footer-column a:hover {

    color: white;

    transform: translateX(3px);
}



/* ========================= */
/* FOOTER BOTTOM */
/* ========================= */

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,0.08);

    padding: 28px 8%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 16px;
}


.footer-bottom p {

    color: rgba(255,255,255,0.65);

    font-size: 14px;
}