.footer-section {
    background-color: var(--color-secondary);
    border-radius: inherit;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.footer-container {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /*gap: 192px;*/
    width: 100%;
    position: relative;
    padding: 16px 64px;
}

.net-zero {
    width: 167px;
    height: 58px;
}

.net-zero iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.footer-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-nav p {
    color: var(--color-text-muted);
}

.footer-nav p a {
    text-decoration: none;
    color: var(--color-text-muted);
}

.footer-nav.social {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 1024px) {
    .footer-container {
        padding: 16px 32px;
        font-size: var(--font-size-sm);
    }
    /* .net-zero {
        height: 47.8012px;
        width: 122px;
    } */
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 28px;
        font-size: var(--font-size-sm);
    }
}