/* footer */
.footer {
    display: flex;
    padding: 32px 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;

    background: var(--Surface-Surface-light, rgba(255, 255, 255, 0.05));
    background-image: url(/local/templates/abit_tpu/img/new_footer_back.svg);
    /* background-size: 40%; */
    background-size: contain;

    background-position: bottom right 0;
    background-repeat: no-repeat;
    backdrop-filter: blur(9px);
}
.footer__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}
.footer__nav__list {
    display: none;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}
.footer__nav__list__elem {
    color: white;
    padding: 10px 16px;
    display: inline-block;
    position: relative;
    z-index: 0;
    width: calc(100% - 32px - 160px);

    border-radius: 100px;
    backdrop-filter: blur(9px);
    font-family: "ALS Sirius";
    font-size: 14px;

    line-height: 10px;
}
.footer__nav__list__elem:before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    padding: 1px;
    border-radius: 100px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.8) 76.5%, rgba(255, 255, 255, 0.1) 100%);
    mask: 
        linear-gradient(rgba(27, 27, 35, 1) 0 0) exclude, 
        linear-gradient(rgba(27, 27, 35, 1) 0 0) content-box;
}
.footer__contact {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
}
#footer_left {
    display: none;
}
.footer__contact__part {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
}
.footer__contact__title {
    color: #FFF;
    font-family: "ALS Sirius";
    font-size: 16px;
    
    font-weight: bold;
    line-height: 24px;
}
.footer__contact__text {
    padding: 0;
    border-top: none;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;

    font-family: "ALS Sirius";
    font-size: 14px;
    line-height: 24px;
}
.footer__contact__text p {
    color: rgba(255, 255, 255, 0.7);
}
.footer__contact__text a {
    text-decoration: none;
    color: rgba(255, 255, 255);
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;

    color: #FFF;
    font-family: "ALS Sirius";
    font-size: 14px;
    
    line-height: 20px;
}
.copyright img {
    border-radius: 40px;
}

@media (max-width: 1024px) {
    .footer {
        margin: 80px 12px 0;
        padding: 32px;
        gap: 32px;
        background-size: contain;
        border-radius: 10px;
    }
    .footer__nav__list {
        display: none;
    }
    .footer__contact {
        flex-direction: column;
        align-items: stretch;
    }
    .footer__contact__title {
        color: #FFF;
        font-family: "ALS Sirius";
        font-size: 14px;
        
        font-weight: bold;
        line-height: 24px;
    }
    .footer__contact__text {
        font-family: "ALS Sirius";
        font-size: 12px;
        
        line-height: 16px;
    }
    .top_bar__left {
        display: none;
    }
    .copyright {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;

        color: #FFF;
        font-family: "ALS Sirius";
        font-size: 14px;
        line-height: 20px;
    }
}
@media ((min-width: 400px) and (max-width: 500px)) {
    #footer_left {
        display: none;
    }
    .footer {
        background-image: url(/local/templates/abit_tpu/img/footer_visual.svg);
        background-size: 145%;
        border-radius: 10px;
    }
}
@media (max-width: 400px) { 
    #footer_left {
        display: none;
    }
    .footer {
        background-image: url(/local/templates/abit_tpu/img/footer_visual.svg);
        background-size: 145%;
    }
}