/* ==========================
   FOOTER
========================== */

.footer {

    max-width: 1200px;

    margin: 0 auto;

    padding: 60px 20px 30px;

    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    flex-wrap: wrap;

    margin-bottom: 40px;
}

/* Brand */

.footer-brand img {

    height: 50px;

    width: auto;

    margin-bottom: 15px;
}

.footer-brand p {

    color: rgba(255,255,255,.7);

    max-width: 260px;

    line-height: 1.6;
}

/* Links */

.footer-links {

    display: flex;

    gap: 24px;

    flex-wrap: wrap;
}

.footer-links a {

    text-decoration: none;

    color: rgba(255,255,255,.75);

    transition: .3s ease;
}

.footer-links a:hover {

    color: var(--orange);
}

/* Social */

.footer-socials {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;
}

.footer-socials a {

    text-decoration: none;

    color: rgba(255,255,255,.75);

    transition: .3s ease;
}

.footer-socials a:hover {

    color: var(--orange);
}

/* Bottom */

.footer-bottom {

    text-align: center;

    padding-top: 30px;

    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom p {

    color: rgba(255,255,255,.5);

    font-size: .9rem;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {

    .footer-content {

        flex-direction: column;

        text-align: center;
    }

    .footer-links {

        justify-content: center;
    }

    .footer-socials {

        justify-content: center;
    }

    .footer-brand p {

        max-width: 100%;
    }
}