.footer {
    background: #2f3232;
}

.footer__container {
    position: relative;
    padding-top: 30px;
    padding-bottom: 20px;
    padding-left: 145px;
    padding-right: 0;
    display: flex;
    /* justify-content: center; */
    flex-direction: column;
}

.footer .sticker {
    position: absolute;
    left: -66px;
    top: -50px;
    width: 200px;
    height: 140px;
}

.footer .menu__list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1;
    transition: opacity 0.2s ease;
    opacity: 0;
}

.footer .menu__list > .menu__item {
    color: #cbcbcb;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.38px;
    border-bottom: 1px solid #d9d9d9;
    padding: 0 20px 12px 20px;
}

.footer .menu__item a {
    color: #cbcbcb;
    position: relative;
}

.footer .menu__item a::before, .footer__support::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    width: 6px;
    background: #d9d9d9;
    border-radius: 50%;
}
.footer__support::before {
    left: 4px;
}

.footer__support {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    /* flex-direction: column; */
    gap: 5px;

    font-size: 15px;
    color: #fff;
    color: #cbcbcb;
    font-family: 'Inter', sans-serif;

    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.38px;

    border-bottom: 1px solid #d9d9d9;
    padding: 0 20px 12px 20px;

}
.footer__support a {
    color: #01b988;
    font-size: 15px;
}


@media (min-width: 400px) {
    .footer .menu__list > .menu__item {
        font-size: 20px;
    }

    .footer__support, .footer__support a {
        font-size: 20px;
    }
}
