/** Footer **/
#footer {
    position: relative;
    padding-block: clamp(40px, 6vw, 80px);
    color: white;
    background: #f3f3f3;
    margin-top: clamp(48px, 8vw, 103px);
}
.back-footer {
    border-radius: 1rem;
    padding: clamp(9px, 3vw, 46px);
    background-image: url(../../img/footer.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
#footer a {
    color: white;
    position: relative;
}
#footer a:hover {
    color: var(--color1);
}
.footer-title {
    font-size: 16px;
    font-family: var(--title);
    margin-bottom: 24px;
}
#footer ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
#footer .footer-contact {
    display: flex;
    gap: 24px;
    border-radius: 12px;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.footer-contact li {
    display: flex;
    gap: 16px;
    width: 100%;
}
#footer .footer-contact li div {
    display: flex;
    flex-direction: column;
    gap: 12px;
    line-height: 1.4;
}
.footer-contact i {
    width: clamp(32px, 4vw, 48px);
    height: clamp(32px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    flex: 0 0 clamp(32px, 4vw, 48px);
    font-size: clamp(16px, 2vw, 22px);
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid white;
    padding: 12px;
}
ul.footer-contact li span,
ul.footer-contact li a {
    padding-top: 4px;
}
.namad-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}
.namad-footer a {
    display: flex;
    transition: 0.4s;
}
.namad-footer a:hover {
    transform: translateY(-10px);
}
.namad-footer img {
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
}
.copyright-wrap a {
    color: #9A9A9A !important;
}
.copyright-wrap {
    margin-top: clamp(12px, 2vw, 24px);
    padding-top: clamp(12px, 2vw, 24px);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid #9A9A9A;
    color: #9A9A9A;
}
.copyright-wrap .copyright {
    position: relative;
}
#footer_link {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    bottom: -8px;
    color: var(--color1);
    cursor: pointer;
}
#footer_link:before {
    content: "\e92a";
    font-family: 'icomoon';
    color: white;
    z-index: -1;
    position: absolute;
    bottom: -5px;
    font-size: 24px;
}
@media only screen and (max-width: 768px) {
    #footer:before {
        border-radius: 1rem;
    }
    #footer {
        margin: 64px 8px 20px;
    }
    .social-footer {
        justify-content: center;
    }
    .namad-footer {
        width: 90%;
        justify-content: center;
        margin: .5rem auto;
        border-bottom: 1px solid var(--border);
        padding-bottom: 1rem;
    }
    .copyright-wrap {
        justify-content: center;
        text-align: center;
        gap: 1rem;
        font-size: 12px;
        margin-top: 1rem;
    }
    footer .wrap-ft-menu {
        background: rgb(255 255 255 / 10%);
        padding: 8px 12px;
        border-radius: 8px;
        position: relative;
        margin-bottom: 1rem;
    }
    footer .accordion-title {
        position: relative;
        margin: 0;
        text-align: right;
    }
    .footer-title {
        text-align: center;
    }
    footer .accordion-title.active:before {
        content: "-";
    }
    footer .accordion-title:before {
        content: "+";
        width: 12px;
        height: 12px;
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }
    footer .accordion-container {
        padding: 1.5rem 0 1rem;
    }
}
@media only screen and (min-width: 768px) {
    .accordion-container:not(.help-section .accordion-container) {
        display: flex !important;
        transition: 0.4s;
    }
    .footer-contact li {
        width: 30%;
        justify-content: center;
    }
    #footer .footer-contact {
        flex-direction: row;
        border: 1px solid white;
        padding: 1rem;
    }
    #footer .footer-contact li div {
        align-items: center;
    }
}