/* =========================================================
   FIT50PLUS FOOTER
   ========================================================= */

.site-footer {
    margin-top: 80px;
    background: #173c2b;
    color: #dfeae2;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding: 70px 0 55px;
}


/* Brand */

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.6px;
    text-decoration: none;
}

.footer-logo span {
    color: #9bc19f;
}

.footer-brand p {
    max-width: 290px;
    margin: 0 0 18px;
    color: #b9cbbd;
    line-height: 1.7;
}

.footer-care {
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}


/* Footer Columns */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3,
.footer-note h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 750;
}

.footer-column a {
    margin-bottom: 11px;
    color: #b9cbbd;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}


/* Footer Note */

.footer-note {
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
}

.footer-note-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 9px;
    background: #ffffff;
    color: #173c2b;
    font-size: 20px;
    font-weight: 800;
}

.footer-note p {
    margin: 0;
    color: #b9cbbd;
    font-size: 14px;
    line-height: 1.7;
}


/* Footer Bottom */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-bottom p {
    margin: 0;
    color: #9fb4a5;
    font-size: 12px;
}


/* =========================================================
   FOOTER RESPONSIVE
   ========================================================= */

@media (max-width: 850px) {

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

}


@media (max-width: 560px) {

    .footer-main {
        grid-template-columns: 1fr;
        padding: 50px 0 35px;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

}