.page-footer {
    background: #0A0A0A;
    padding: 50px 0 0;
}

.footer-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    margin: 0 0 22px;
}

.back-to-top a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    background: none;
    padding-right: 22px;
    position: relative;
}

.back-to-top a:after {
    content: '\e915';
    font-family: 'superfab';
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 15px;
    font-weight: normal;
    transform: translate(0, -50%);
    background: linear-gradient(39.12deg, #A70E0E 22.42%, #EA4626 77.58%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-top__info ul {
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.footer-top__info ul li {
    padding: 0 0 0 28px;
    margin: 0;
    position: relative;
    color: #C2C2C2;
    font-size: 16px;
    line-height: 1.3em;
}

.footer-top__info ul li a {
    font-weight: 400;
    background: none;
    color: #C2C2C2;
    font-size: 15px;
    line-height: 1.3em;
    display: inline-block;
}

.footer-top__info ul li i,
.footer-top__info ul li img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    background: linear-gradient(39.12deg, #A70E0E 22.42%, #EA4626 77.58%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
}


.footer-top__info ul li:before {
    display: none;
}

.footer-top__info {
    padding: 20px 0;
    border-bottom: 1px solid #2B2B2B;
}

.footer-top__info:last-child {
    border-bottom: none;
}

.footer-bottom {
    padding: 22px;
    background: #070707;
    border-radius: 25px 25px 0 0;
    margin: 20px 0 0;
}

.footer-bottom ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 17px 62px;
}

.footer-bottom ul li {
    padding: 0;
    margin: 0;
    color: #C2C2C2;
    font-size: 15px;
    font-weight: 400;
    line-height: 1em;
}

.footer-bottom ul li:before {
    display: none;
}

.footer-bottom ul li a {
    color: #C2C2C2;
    font-size: 15px;
    font-weight: 400;
    background: none;
    line-height: 1em;
}

.footer-top__info__logo a {
    display: table;
    margin: 0 auto 10px;
    background: none;
}

.footer-top__info__logo a img {
    max-height: 25px;
}


@media(min-width: 768px) {
    .footer-btns {
        gap: 20px;
        flex-direction: row-reverse;
        margin: 0 0 50px;
    }

    .back-to-top a {
        font-size: 16px;
        padding-right: 27px;
    }

    .back-to-top a:after {
        font-size: 17px;
    }

    .footer-top {
        display: flex;
        align-items: inherit;
        justify-content: center;
        flex-wrap: wrap;
        margin: 0 -20px;
    }



    .footer-top__info {
        margin: 0;
        padding: 20px 20px;
        width: 50%;
    }

    .footer-top__info ul {
        gap: 12px;
        text-align: left;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .footer-top__info__logo a {
        margin: 0 0 10px;
    }

    .footer-top__info ul li a {
        font-size: 16px;
    }

    .footer-top__info__logo a img {
        max-height: 35px;
    }

    .footer-top__info:nth-child(2) {
        border-left: 1px solid #2B2B2B;
    }
}

@media(min-width: 1200px) {
    .footer-top__info__logo a img {
        max-height: unset;
    }

    .back-to-top a:hover,
    .footer-bottom ul li a:hover,
    .footer-top__info ul li a:hover,
    .footer-top__info ul li:hover i {
        color: #ea4626;
    }

    .footer-top__info {
        padding: 0 72px;
        width: 33.333%;
        border-bottom: none;
        border-left: 1px solid #2B2B2B;
    }

    .footer-top__info:first-child {
        border-left: none;
    }

    .footer-top {
        margin: 0 -72px;
    }

    .footer-bottom {
        margin: 75px 0 0;
    }

    .footer-bottom ul {
        gap: 17px 98px;
    }

    .back-to-top a {
        font-size: 18px;
    }

    .footer-btns {
        gap: 25px;
    }

    .page-footer {
        padding: 75px 0 0;
    }

}