.section-footer {
    background-color: var(--background-blue);
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-list {
    list-style: none;
    padding: 0px;
}

.footer-list li {
    margin-bottom: 1.5rem;
}

.footer-subsection li{
    transition: .2s ease-in-out;
}

.footer-subsection li:hover {
    color: var(--primary-color);
    transition: .2s ease-in-out;
}

.footer-note {
    font-weight: 100;
    text-align: center;
    padding: 2rem;
}

@media (min-width: 1200px) {
    .footer-wrapper {
        flex-direction: row;
    }
}