/** Footer **/
#footer {
    position: relative;
    color: white;
    margin: 102px 20px 40px;
    padding: 40px 0;
}
#footer a {
    color: white;
    position: relative;
}
#footer:before {
    content: "";
    top: 0;
    right: 0;
    border-radius: 2rem;
    background: var(--color1);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.footer-title {
    font-size: 16px;
    font-family: var(--title);
    margin-bottom: 24px;
}
#footer ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer-contact li {
    display: flex;
    gap: 12px;
}
.social-footer a,
.footer-contact i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: black !important;
    transition: 0.4s;
    flex: 0 0 32px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
}
.social-footer a:hover,
.footer-contact li:hover i {
    background: var(--color2);
    color: white !important;
}
.social-footer {
    display: flex;
    gap: 16px;
    margin-block: 24px;
}
#footer ul:not(.footer-contact) a:hover {
    padding-right: 1rem;
}
#footer ul:not(.footer-contact) a:before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    width: 8px;
    height: 1px;
}
.footer-contact .call-item a:nth-last-child(1) {
    padding-right: 1rem;
}
.footer-contact .call-item a:nth-last-child(1):before {
    content: "";
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    width: 8px;
    height: 2px;
}
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 {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.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: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 {
        display: flex !important;
        transition: 0.4s;
    }
}