.footer {
    position: relative;
    padding: 40px 0;
}

.footer__wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer__logo {
    cursor: pointer;
    max-width: 100%;
}

.footer-nav__list {
    list-style: none;
    display: flex;
    align-items: center;
}

.footer-nav__item {
    position: relative;
    cursor: pointer;
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
    margin-left: 40px;
}

.footer-nav__item::after {
    content: "";
    opacity: 0;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    transition: all 0.3s ease-in-out;
}

.footer-nav__item:hover.footer-nav__item::after {
    opacity: 1;
}

.footer-nav__item:first-child {
    margin-left: 0;
}

.footer__bg {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__bg-image {
    width: 2560px;
    height: unset;
    position: absolute;
    top: -250px;
}

.footer__data {
    position: relative;
    z-index: 2;
}

.footer__data-item {
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin-top: 10px;
}

.footer__data-item:first-child {
    margin-top: 0;
}


@media (max-width: 920px) {
    .footer-nav {
        display: none;
    }

    .footer__data {
        max-width: 500px;
    }
}

@media (max-width: 460px) {
    .footer__wrapper {
        justify-content: center;
    }

    .footer__bg-image {
        top: -265px;
    }
}