.footer {
    margin-top: 20px;
    width: 100vw;
    background: var(--secondary-text);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    width: 100%;
    max-width: 1460px;
    padding: 20px 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    gap: 40px 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    max-width: 245px;
}

.footer-column h2 {
    font-family: "Mariupol-Bold", sans-serif;
    font-size: 0.9rem;
    color: var(--button-text);
    margin-top: .5rem;
}

.footer-column p, .footer-column a {
    font-family: "Mariupol-Regular", sans-serif;
    margin-bottom: 0;
    font-size: 0.8rem;
    color: var(--button-text);
}

.footer-column a {
    text-decoration: underline;
}

.bottom-block {
    width: 100vw;
    background: var(--button-text);
    color: var(--secondary-text);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
}

.bottom-block p {
    margin: 0;
}

.footer-column .socials {
    width: 50%;
}

.footer-column .socials .footer-column {
    width: 100%;
    text-align: end;
}

.footer-column .socials .social-buttons {
    justify-content: end;
}

.footer-column .social-buttons a {
    background: var(--button-text);
}

@media (max-width: 750px) {
    .footer-column {
        width: 100%;
    }
    
    .footer-column h2 {
        font-size: 1.2rem;
    }
    
    .footer-column a, .footer-column p {
        font-size: 0.9rem;
        margin: 10px 0;
    }
    
    .bottom-block .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .socials {
        width: 100%;
    }
    
    .socials .footer-column {
        text-align: start;
    }
    
    .socials .social-buttons {
        justify-content: start;
    }
}