.footer {
    background-color: rgba(0, 19, 67, 1);
}

.footer_container {
    padding: 66px 16px;
}

.footer__top_content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.footer__menu__ul {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    gap: 26px;
    list-style-type: none
}

.footer__menu__ul li a{
    text-decoration: none;
    text-wrap: nowrap;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;

    color: rgba(251, 251, 251, 1);
}

@media (hover: hover) {
    .footer__menu__ul li a:hover {
        text-decoration: underline;
    }
}

.footer__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
}


.footer__border {
    width: 100%;
    border-bottom: 1px solid rgba(251, 251, 251, 0.2);
    margin-top: 51px;
    margin-bottom: 48px;
}
.footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.footer__company {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
}
.footer__logo {
    height: 42px;
    width: 127px;
}

.footer__address {
    font-size: 12px;
    font-weight: 400;
    line-height: 14.4px;
    color: rgba(244, 244, 244, 0.5);
}

.footer__NexLink {
    font-size: 18px;
    font-weight: 400;
    line-height: 21.6px;
    color: rgba(251, 251, 251, 0.6);
}
@media screen and (max-width: 800px) {
    .footer__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
    }
    .footer__NexLink {
        margin-top: 16px;
    }
}
@media screen and (max-width: 430px) {
    
    .footer__menu__ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 18px;
    }

    .footer__logo {
        height: 35px;
        width: 110px;

    }

    .footer__NexLink {
        font-size: 14px;
        font-weight: 400;
        line-height: 16.8px;
        text-align: left;

    }
}