/* =========================
   FOOTER
========================= */

.site-footer {
    background: white;
    color: var(--theme-1-maroon);
    margin-top: 50px;
    border-top: 1px solid var(--theme-1-maroon);
    border-top: 1px solid #e4e4e4;
}

.footer-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 30px 20px 0px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-left {
    max-width: 600px;
}

.footer-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.footer-title i {
    margin-right: 8px;
}

.footer-left p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #777;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 25px;
    justify-content: flex-end;
}

.footer-links a {
    color: var(--theme-1-maroon);
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.footer-links a i {
    margin-right: 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    max-width: 1250px;
    margin: 0 auto;
    padding: 14px 20px;

    display: flex;
    justify-content: space-between;
    gap: 20px;

    font-size: 12px;
    color: #333;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
    }

    .footer-links {
        justify-content: flex-start;
        gap: 12px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 5px;
        padding: 12px 20px;
    }
}