
/* ===== FOOTER ===== */
.site-footer {
    background: #0a0a0a;
    color: #fff;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #fff;
}

.footer-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #93B0C8;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #4178F2;
}

.footer-info {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #fff;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    color: #fff;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #4178F2;
}

.footer-bottom {
    padding: 0px 0;
    background: #445168;
    color: #93B0C8;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    width: 80%;
    gap: 25px;
    text-align: center;
}

.footer-bottom-links a {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: #93B0C8;
    transition: color 0.3s ease;
    padding: 4px;
    width: 25%;
}

.footer-bottom-links-border-right {
    border-right: 1px solid #93B0C8;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-copyright {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: #93B0C8;
}

.footer-credit {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: #93B0C8;
}
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}