
.footer {
    background: var(--color-background-darkBlue);
    padding-top: 6vh;
    padding-bottom: 6vh;
}
.footer ul {
    padding-left: 0;
}
.footer li {
    margin-bottom: 5px;
}
.footer a {
    text-decoration: none;
}

.footer__socnets_list {
    margin-top: 20px;
}

.footer__nav_title {
    font-size: 18px;
    font-weight: 600;
}

.footer__buttons.mobile {
    display: none;
}

.footer__buttons li{
    display: flex;
    justify-content: end;
}
.footer__buttons button{
    min-width: 120px;
    margin: 2px;
}

@media (max-width: 1199px) {
    .footer a {
        font-size: 14px;
    }
}


@media (max-width: 991px) {
    .footer__buttons ul {
        display: flex;
        justify-content: end;
        padding-top: 10px;
    }

    .footer__nav_title {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .footer__socnets {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        border-bottom: 1px solid rgba(131, 131, 251, 0.4);
    }

    .footer__nav .row > div{
        width: 50% !important;
    }

    .footer__buttons {
        display: none;
    }
    .footer__buttons.mobile {
        display: block;
    }
    .footer__buttons ul {
        flex-direction: column;
    }
}

@media (max-width: 440px) {
    .footer__buttons button{
        min-width: 90px;
    }
}
