.navbar {
    background-image: linear-gradient(to right, #18181B, #27272A);
    z-index: 2;
}


.section-nav {}

.single-nav-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: linear-gradient(to right, #18181B, #27272A);
}

.single-nav-card:hover {
    background-color: #2c68e7;
}

.single-nav-icon {}

.single-nav-text {
    color: white;
}

.section-social {
    background-color: #27272A;
}

.single-social-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #27272A;
}

.single-social-card:hover {
    background-color: #2c68e7;
}

.single-social-icon {
    
}

.single-social-text {
    color: white;
}

/* s-screen  */
@media screen and (max-width: 500px) {
    .navbar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        flex-direction: row;
        height: auto;
        width: 100%;
        justify-content: space-between;
    }

    .section-nav,
    .section-social {
        display: flex;
        flex-direction: row;
    }

    .single-nav-card,
    .single-social-card {
        display: flex;
        flex-direction: column;
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
        padding-left: 0.3rem;
        padding-right: 0.5rem;
    }

    .single-nav-text,
    .single-social-text {
        font-size: 0.7rem;
    }
    
    .single-nav-icon,
    .single-social-icon{
        width: 8px;
        height: auto;
    }
}

/* m-screen  */
@media screen and (min-width: 501px) and (max-width: 1023px) {
    .navbar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        flex-direction: row;
        height: auto;
        width: 100%;
        justify-content: space-between;
    }

    .section-nav {
        margin-left: 2rem;
    }

    .section-social {
        margin-right: 2rem;
    }

    .section-nav,
    .section-social {
        display: flex;
        flex-direction: row;
    }

    .single-nav-card,
    .single-social-card {
        display: flex;
        flex-direction: column;
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
        padding-left: 0.3rem;
        padding-right: 0.5rem;
    }

    .single-nav-text,
    .single-social-text {
        font-size: 1rem;
    }
}

/* l-screen  */
@media screen and (min-width: 1024px) {
    .navbar {
        position: fixed;
        top: 0;
        right: 0;
        flex-direction: column;
        display: flex;
        width: 4rem;
        background-image: linear-gradient(to right, #18181B, #27272A);
        margin-top: 1rem;
        margin-right: 1rem;
    }

    .section-nav,
    .section-social {
        display: flex;
        flex-direction: column;
    }

    .single-nav-text,
    .single-social-text {
        display: none;
    }

    .single-nav-card:hover, .single-social-card:hover{
        display: flex;
        flex-direction: column;
    }

    .single-nav-card:hover .single-nav-text,
    .single-social-card:hover .single-social-text {
        display: block;
        font-size: 0.8rem;
    }
}