.footer {
    background: #141D40;
    color: #fff;
}

.footer-container {
    flex-direction: column;
    gap: 52px;

    padding: 115px 80px 90px;
}

.footer__navbar-container {
    display: flex;
    justify-content: space-between;
}

.footer__navbar {
    display: flex;
    gap: 76px;
    align-items: center;

    height: 48px;
}

.footer__navbar-item {
    font-family: inherit;
    font-size: 20px;
    font-weight: 500;
    line-height: 38px;

}

.footer__navbar-item::after {
    display: block;
    content: "";

    width: 0px;
    height: 0;

    opacity: 100%;

    border-bottom: 2px solid #E1662B
}

.footer__navbar-item--active::after {
    width: 40px;
}

.footer__navbar-item:hover::after {
    width: 40px;

    opacity: 50%;
    transition: width 0.5s;
}

.footer__navbar-item--active:hover::after {
    opacity: 1;
}

.footer__navbar-button {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 165px;
    height: 48px;


    font-weight: 600;
    color: #fff;

    border-radius: 30px;

    background: linear-gradient(225deg, #2E4AAF 0%, #27397F 100%);

    box-shadow: 0px 1px 3px 0px #8282821A;
}

.footer__navbar-button::after {
    display: none;
}

.footer__navbar-button:hover {
    opacity: 0.8;
}

.footer__logo {
    width: 72px;
    height: 42px;
}

.footer__logo-img {
    width: auto;

}

.footer__img-wrapper {
    width: 265px;
    height: 265px;
}

.footer__qr-img {
    width: 100%;
}

.footer__contacts-text {
    font-family: inherit;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;

}

.footer__contacts {
    display: flex;

    gap: 35px;
}

.footer__content-wrapper {
    display: flex;

    justify-content: space-between;
    align-items: center;
}

.footer__contacts-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;

}

.footer__social {
    display: flex;
    flex-direction: column;

    gap: 85px;
}

.footer__social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
}

.footer__social-payment {
    display: flex;

    border-radius: 16px;
}

.footer__social-paylink {
    display: inline-block;

    width: 85px;
    height: 58px;
    margin: -1px;
}

.footer__social-paylink:first-child>img {
    border-radius: 16px 0 0 16px;
}

.footer__social-paylink:last-child>img{
    border-radius: 0 16px 16px 0;
}



.terms_docs a{
    margin-right: 20px;
}