/* ========================================
   FOOTER
======================================== */

.site-footer {
    background: #000030;
    color: #ffffff;

    padding: 70px 60px 50px;
}

/* MAIN FOOTER LAYOUT */

.footer-container {
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 80px;
}

/* ========================================
   LEFT SIDE MENUS
======================================== */

.footer-menus {
    display: flex;
    gap: 100px;
}

/* FOOTER COLUMNS */

.footer-column h4 {
    font-size: 22px;
    margin-bottom: 22px;

    font-family:'Jawbreak',sans-serif;
	text-transform: uppercase;
    letter-spacing: 1px;

    color: #ffffff;
}

/* MENU LIST */

.footer-column ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

/* MENU ITEMS */

.footer-column ul li {
    margin-bottom: 14px;
}

/* LINKS */

.footer-column ul li a {
    color: #ffffff;
	font-family:'Barlow',sans-serif;
    text-decoration: none;

    font-size: 16px;
    font-weight: 500;

    transition: opacity 0.2s ease;
}

/* HOVER */

.footer-column ul li a:hover {
    opacity: 0.7;
}

/* ========================================
   RIGHT SIDE
======================================== */

.footer-right {
    margin-left: auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

/* FOLLOW TITLE */

.footer-right h4 {
    font-size: 22px;
    margin-bottom: 24px;

    font-family:'Jawbreak',sans-serif;
	text-transform: uppercase;
    letter-spacing: 1px;
}

/* SOCIALS */

.social-icons {
    display: flex;
    align-items: center;
    gap: 22px;

    margin-bottom: 35px;
}

/* SOCIAL LINKS */

.social-icons a {
    color: #ffffff;

    font-size: 28px;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

/* HOVER */

.social-icons a:hover {
    transform: translateY(-3px);
    opacity: 0.75;
}

/* ========================================
   FOOTER LOGO
======================================== */

.footer-logo img {
    width: 140px;
    height: auto;

    display: block;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1000px) {

    .footer-container {
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .footer-menus {
        gap: 60px;
    }

    .footer-right {
        margin-left: 0;
    }
}

@media (max-width: 768px) {

    .site-footer {
        padding: 50px 25px 40px;
    }

    .footer-menus {
        flex-direction: column;
        gap: 40px;
    }

    .social-icons {
        gap: 18px;
    }

    .social-icons a {
        font-size: 24px;
    }

    .footer-logo img {
        width: 110px;
    }
}