/* MAIN FOOTER */
.footer {
    margin: auto;
	background: #0d1719;
    color: #cfd8dc;
}

.footer-container {
    padding: 80px 40px 30px;
    max-width: 1200px;
    margin: auto;
	background: #0d1719;
    color: #cfd8dc;
}

/* TOP AREA */
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

/* LEFT */
.footer-left {
    max-width: 320px;
}

.footer-left h2 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-left p {
    color: #e58f6c;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* SOCIAL ICON */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid #2a3a3d;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfd8dc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.footer-social a:hover {
    background: #1c2c2f;
}

/* MENU AREA */
.footer-menu {
    display: flex;
    gap: 100px;
}

.footer-col h4 {
    font-size: 11px;
    letter-spacing: 2px;
    color: #e58f6c;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 14px;
}

.footer-col a {
    text-decoration: none;
    color: #cfd8dc;
    font-size: 14px;
    transition: 0.2s;
}

.footer-col a:hover {
    color: #ffffff;
}

/* DIVIDER */
.footer-divider {
    margin: 50px 0 20px;
    height: 1px;
    background: #1f2c2f;
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #7f8c8d;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #7f8c8d;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        gap: 50px;
    }

    .footer-menu {
        gap: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}