#site-footer {
    position: relative;
    border-top: 1px solid var(--ati-border-color);
    background: var(--ati-pbg);
    min-height: 80px;
}
.footer-scroll-top {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    gap: 10px;
    border: 1px solid var(--ati-border-color);
    padding: 5px 10px;
    cursor: pointer;
}
.footer-scroll-top svg {
    transform: rotate(-90deg);
}
.footer-support {
    display: flex;
    gap: var(--ati-m-gap);
    flex-wrap: wrap;
}
.footer-socials {
    margin: var(--ati-xl-marg);
}
.footer-socials * {
    display: flex;
    align-items: center;
}
.footer-socials-list {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}
.footer-about-wrapper {
    display: flex;
    gap: var(--ati-xl-gap);
    align-items: center;
    border-top: 1px solid var(--ati-border-color);
    border-bottom: 1px solid var(--ati-border-color);
    padding: var(--ati-l-padd);
}
.footer-trusts {
    display: flex;
    gap: var(--ati-m-gap);
}
.footer-trusts > span{
    display: flex;
    width: 110px;
    height: 110px;
    justify-content: center;
    border: 1px solid var(--ati-border-color);
    border-radius: var(--ati-m-rad);
    align-items: center;
}
.footer-trusts img{
    width: 100px;
    height: 100px;
    padding: 8px;
}
.mobile-footer-menu {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--ati-pbg);
    color: var(--ati-color);
    z-index: 999;
    padding-bottom: 0;
}
.mobile-footer-menu-items {
    position: relative;
    width: 100%;
    display: flex;
    gap: var(--ati-xl-marg);
    justify-content: space-between;
    padding: var(--ati-m-padd) var(--ati-m-padd) 25px;
    align-items: center;
}
.mobile-footer-menu-items > * {
    display: flex;
}
.mobile-footer-menu-items .ati-user {
    margin-inline-start: unset;
}
.footer-copyrights {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 0 var(--ati-xl-padd);
}
.footer-copyrights-english {
    direction: ltr;
}
@media screen and (max-width: 1024px) {
    .footer-about-wrapper {
        flex-direction: column;
    }
    .footer-scroll-top {
        position: unset;
    }
}