.footer {
    background-color: #610404;
    color: white;
    padding: 2vh 0;
    margin-top: 20vh;
}

.footer__container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.footer__logo {
    width: 11vw;
    height: auto;
    margin: 0 auto;
}

.footer__logo-image {
    width: 100%;
    height: auto;
}

.footer__column {
    display: flex;
    flex-direction: column;
    gap: 1vh;
}

.footer__title {
    font-size: 1.6vw;
    line-height: 2vw;
    margin-bottom: 10px;
}

.footer__link {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
    font-size: 1.6vw;
    line-height: 2vw;
}

.footer__link:hover {
    font-weight: 800;
}

.footer__contact {
    font-size: 1.6vw;
    line-height: 2vw;
    width: 100%;
}

.footer__socials {
    display: flex;
    gap: 1vw;
    margin-top: 2vh;
}

.footer__social-link {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer__social-link:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.footer__social-link img {
    width: 2.3vw;
    height: auto;
    transition: all 0.2s ease;
}

.footer__social-link img {
    width: 2.3vw;
    height: auto;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1vh;
    margin-top: 1vh;
}

.footer__separator {
    border: none;
    border-top: 1px solid white;
    width: 100%;
}

.footer__copyright {
    font-size: 1.4vw;
    line-height: 1.6vw;
}

.footer__contact {
    font-size: 1.6vw;
    line-height: 2vw;
    width: 100%;
    transition: all 0.1s ease;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
}

.footer__contact:hover {
    opacity: 0.8;
}

.footer__contact i {
    text-align: center;
}



@media (max-width: 500px) {
    .footer {
        padding: 4vw 0 2vw 0;
        margin-top: 10vw;
    }

    .footer__container {
        padding: 0 4vw;
    }

    .footer__row {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .footer__logo {
        width: 38vw;
        margin: 0 0 4vw 0;
        display: block;
    }

    .footer__logo-image {
        width: 100%;
        height: auto;
        display: block;
    }

    .footer__columns-row {
        display: flex;
        flex-direction: row;
        gap: 8vw;
        margin-bottom: 4vw;
    }

    .footer__column {
        gap: 1vw;
        font-size: 4vw;
        line-height: 5vw;
    }

    .footer__title,
    .footer__link,
    .footer__contact {
        font-size: 4vw;
        line-height: 5vw;
    }

    .footer__contacts-row {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        gap: 4vw;
        margin-bottom: 4vw;
    }

    .footer__socials {
        margin-top: 2vh;
        margin-bottom: 2vh;
        gap: 3vw;
    }

    .footer__social-link img {
        height: auto;
        width: 5vw;
    }

    .footer__bottom {
        margin-top: 0;
        align-items: flex-start;
    }

    .footer__separator {
        display: none;
    }

    .footer__copyright {
        font-size: 3vw;
        line-height: 4vw;
        margin: 0;
        padding: 0;
        text-align: left;
    }

    .footer__contact {
        font-size: 4vw;
        line-height: 5vw;
    }
}