footer {
    background-color: #1C1D1F;
    color: #FFF;
}

.footer-banner {
    position: relative;
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-banner>img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.footer-banner>h2 {
    position: relative;
    color: var(--fg-color);
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 2px;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    padding: 32px 60px;
    grid-gap: 15%;
}

.flex-1 {
    flex: 1;
    align-items: end;
}

.footer-nav-item {
    display: flex;
    flex-direction: column;
    grid-gap: 8px;
    font-size: 14px;
    min-height: 140px;
}

.footer-nav-item>.nav-item {
    cursor: pointer;
    justify-content: flex-start;
}

.footer-nav-item>h2 {
    font-size: 24px;
    flex: 1;
}

@media screen and (max-width: 600px) {
    .footer-banner {
        height: 130px;
        padding: 0 20px;
        text-align: center;
    }

    .footer-banner>h2 {
        font-size: 20px;
    }

    .footer-nav {
        flex-direction: column;
        grid-gap: 24px;
        padding: 20px;
    }

    .footer-nav-item {
        min-height: auto;
    }

    .flex-1 {
        align-items: flex-start;
    }

    .footer-nav-item>.nav-item {
        font-size: 13px;
    }

    .footer-nav-item>h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
}