footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-left: 10vw;
    padding-right: 10vw;
    gap: 1rem;
    margin-bottom: 4rem;
    margin-top: 8rem;
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
    text-align: center;
}

footer p {
    color: #999999;
}

#footer-logo {
    display: flex;

    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
}

#footer-logo img {
    width: 3rem;
}

footer>div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

@media screen and (min-width: 1050px) {
    footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 2rem;
    }

    #footer-logo {
        margin-top: 0;
    }

    #newsletter-section {
        width: auto;
    }

    footer>div {
        width: auto;
    }
}