/** Footer **/
#footer {
    position: relative;
    color: white;
    margin-top: clamp(140px, 11vw, 175px);
    padding-block: clamp(32px, 3vw, 48px);
    background: var(--color1);
    background-image: url(../../img/Footer-pattern.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    ul {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2vw, 32px);
        li a {
            font-size: 16px;
            color: white;
            position: relative;
            transition: 0.8s;
            &:hover {
                color: var(--color2);
            }
        }
    }
    .footer-wrapper {
        display: flex;
        justify-content: center;
        gap: 24px;
        .wrap-ft-menu.footer-submenu {
            background: rgb(255 255 255 / 20%);
            border-radius: 12px;
            padding: 16px;
            position: relative;
            ul {
                padding-top: 18px;
                border-top: 1px solid var(--white);
                margin-top: 18px;
            }
        }
    }
}
.copyright-wrap {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    padding-block: 16px;
    gap: 16px;
    text-align: center;
    .copy-right p {
        font-size: 14px;
        font-family: var(--Regular);
        span {
            color: var(--color2);
        }
    }
}
.social-footer {
    display: flex;
    gap: 14px;
    a {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: var(--black);
        position: relative;
        transition: 0.8s;
        z-index: 1;
        &:before {
            content: "";
            width: 0;
            height: 0;
            background: transparent;
            position: absolute;
            top: 50%;
            right: 50%;
            transform: translate(50%, -50%);
            z-index: -1;
            border-radius: 50%;
            transition: 0.8s;
            z-index: -1;
        }
        &:hover {
            color: var(--white);
            &:before {
                width: 32px;
                height: 32px;
                background: var(--color2);
            }
        }
    }
}
@media only screen and (min-width: 768px) {
    #footer {
        ul {
            flex-direction: row;
        }
        .footer-title.accordion-title {
            display: none;
        }
        .footer-wrapper {
            flex-direction: row;
            justify-content: space-between;
            .wrap-ft-menu.footer-submenu {
                background: transparent;
                border-radius: 0;
                padding: 0;
                ul {
                    padding-top: 0;
                    border-top: 0;
                    margin-top: 0;
                }
            }
        }
    }
    .copyright-wrap {
        flex-direction: row;
    }
    .accordion-container {
        display: flex !important;
        transition: 0.8s;
    }
}
@media only screen and (max-width: 768px) {
    .footer-wrapper .footer-title:before {
        content: "\e922";
        font-family: 'icomoon';
        position: absolute;
        left: 16px;
        font-size: 15px;
        transition: 0.8s;
    }
    .footer-wrapper .footer-title.active:before {
        content: "\e921";
    }
    #footer {
        padding-top: 76px;
    }
}
.footer-logo {
    position: absolute;
    top: -48px;
    right: 50%;
    transform: translateX(50%);
    img {
        width: 72px;
        height: auto;
    }
    &:before {
        content: "\e917";
        font-family: 'icomoon';
        position: absolute;
        bottom: -36px;
        font-size: 80px;
        line-height: 1;
        right: 50%;
        transform: translateX(50%);
        z-index: -1;
        color: white;
        width: 230px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
}