.footer {
    background: #000;
}

.footer__inner {
    padding: 70px 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 25px;
}

.footer__text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    font-feature-settings: 'liga' off;
    color: #A5A5A5;
}

.footer__social {
    width: 100%;
    display: flex;
    align-items: center;
}

.footer__social li:not(:last-child) {
    margin-right: 20px;
}

.footer__social li:last-child {
    margin-left: 35px;
}

.footer__social li,
.footer__social li a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__social li p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 18px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__social li p span {
    color: #00C050;
}

.footer__nav-list {
    display: flex;
    align-items: center;
    gap: 25px
}

.footer__nav-link {
    text-transform: uppercase;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    font-feature-settings: 'liga' off;
    color: #A5A5A5;
}

.footer__nav-link.active {
    color: #00C050;
}

@media screen and (max-width: 1440px){
    .footer__social li p {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {

    .footer__inner {
        flex-direction: column;
        gap: 20px;
    }

    .footer__social {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .footer__nav-list {
        flex-direction: column;
    }

    .footer {
        position: relative;
    }

    .footer__social li:last-child {
        position: absolute;
        bottom: 75px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
    }

    .footer__inner {
        padding-bottom: 145px;
    }

    .footer__text {
        margin-bottom: 50px;
    }
}