footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer>button {
    display: flex;
    flex-direction: column;
}
.footer>button>div {
    margin-top: 8px;
}
footer .subtitle {
    color: rgba(18, 17, 39, 0.56);
    margin-top: 12px;
    text-align: center;
}
footer .subtitle:nth-child(3) {
    word-spacing: 2px;
}

footer nav {
    display: flex;
    flex-direction: row;
}
footer nav a:not(:nth-child(1)) {
    margin-left: 48px;
}
footer nav div:nth-child(2) a:nth-child(1) {
    margin-left: 48px;
}
footer nav a {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: rgba(18, 17, 39, 0.56);
    text-decoration: none;
}
footer nav a:hover {
    color: #410001;
}
.social-media {
    display: flex;
    flex-direction: row;
    margin: 32px 0;
}
.social-media>button:not(:first-child) {
    margin-left: 8px;
}
.social-media>button {
    filter: grayscale(100%);
}
.social-media>button:hover {
    filter: none;
}
.all-rights {
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.4px;
    color: rgba(18, 17, 39, 0.56);
}

.divider {
    margin: 32px 0;
}

@media (max-width: 1250px) {
    .nav-footer {
        display: flex;
        flex-direction: column;
    }
    footer nav div:nth-child(2) {
        display: flex;
        justify-content: center;
        margin-top: 8px;
    }
    footer nav div:nth-child(2) a:nth-child(1) {
        margin-left: 0;
    }
    footer nav div:nth-child(1) {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    footer nav div:nth-child(2) {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 0;
    }
    footer nav a:not(:nth-child(1)) {
        margin-left: 0;
    }
    footer nav div:nth-child(1) {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}