.foot-wrapper {
    width: 100%;
    padding: 15px 0px;
    background: var(--bg-dull);
    position: fixed;
    bottom: 0;
    /* box-shadow: 0px 0px 8px var(--shadow); */
    z-index: 100;
}

.foot {
    width: 96%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.foot-tools {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.theme-switch {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    font-size: 13px;
    font-family: var(--text-font);
    font-weight: 600;
    color: var(--text);
}

.theme-switch i {
    font-size: 15px;
}

.theme-toggle i {
    font-size: 24px;
    padding-top: 2px;
    cursor: pointer;
}

.theme-toggle:hover {
    color: var(--primary);
}

.foot-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    font-family: var(--head-font);
}

.foot-menu-item {
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--text);
}

.foot-menu-item i {
    font-size: 16px;
    padding-bottom: 2px;
    font-weight: 500;
}

.foot-menu-item:hover {
    color: var(--primary);
}

.foot-menu-item:hover i {
    color: var(--primary);
}

.foot-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.foot-social a {
    font-size: 19px;
    color: var(--text);
}

.foot-social a:hover {
    color: var(--primary);
}

#nav-down-open,
#nav-down-close {
    display: none;
}

@media (max-width: 950px) {
    .foot-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--bg);
        align-items: flex-start;
        justify-content: flex-start;
        padding: 20px;
        gap: 20px;
        border-radius: 15px 15px 0px 0px;
        box-shadow: 0px 0px 10px var(--shadow);
        border-top: 1px solid var(--text-dull);
        animation: slideUp 0.4s ease-in-out;
    }

    .foot-menu-item {
        justify-content: center;
        width: 100%;
        text-align: left;
        font-size: 17px;
    }

    .foot-menu-item i {
        font-size: 20px;
    }

    @keyframes slideUp {
        0% {
            transform: translateY(400px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    #nav-down-open {
        display: block;
        font-size: 30px;
        color: var(--primary);
        cursor: pointer;
    }

    #nav-down-close {
        display: flex;
        color: var(--primary);
        cursor: pointer;
    }
}
