.site-footer {
    margin-top: 60px;

    background: #0d1511;
    border-top: 1px solid rgba(22, 166, 106, .28);

    color: #ffffff;
}

.site-footer-inner {
    width: min(1440px, 100%);
    margin: 0 auto;
    padding: 38px 28px 20px;
}

.site-footer-main {
    display: grid;
    grid-template-columns:
        minmax(280px, 1.6fr)
        repeat(3, minmax(120px, .65fr));

    align-items: start;
    gap: 60px;
}


/* BRAND */

.site-footer-brand a {
    display: inline-block;
}

.site-footer-logo {
    display: block;
    width: 220px;
    height: auto;

    filter: brightness(1.55) contrast(1.05);
}


/* COLUMNS */

.site-footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer-column strong {
    margin-bottom: 5px;

    color: #eef3f0;

    font-size: 12px;
    font-weight: 700;
}

.site-footer-column a {
    color: #8e9c94;

    font-size: 13px;
    line-height: 1.4;

    text-decoration: none;

    transition: color .15s ease;
}

.site-footer-column a:hover {
    color: #20bd78;
}


/* BOTTOM */

.site-footer-bottom {
    margin-top: 32px;
    padding-top: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    border-top: 1px solid rgba(255, 255, 255, .07);

    color: #65736b;

    font-size: 10px;
}

.site-footer-legal {
    display: flex;
    gap: 20px;
}

.site-footer-legal:empty {
    display: none;
}

.site-footer-legal a {
    color: #77857d;
    text-decoration: none;
}

.site-footer-legal a:hover {
    color: #20bd78;
}


/* RESPONSIVE */

@media (max-width: 800px) {

    .site-footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 40px;
    }

    .site-footer-brand {
        grid-column: 1 / -1;
    }

}

@media (max-width: 520px) {

    .site-footer-inner {
        padding: 32px 16px 18px;
    }

    .site-footer-main {
        gap: 28px 22px;
    }

    .site-footer-logo {
        width: 190px;
    }

    .site-footer-bottom {
        margin-top: 28px;
    }

}
