    

        /* ************ BOTTOM NAV ************ */
    .bottom-nav{
        position:fixed;
        bottom:0;
        width:100%;
        height:65px;
        background: linear-gradient(to bottom right,#dfb4c7 0%,#90404f 100%);
        display:flex;
        justify-content:space-around;
        align-items:center;
        backdrop-filter:blur(8px);
        z-index:15;
    }
    .bottom-nav i{
        font-size:26px;color:white;opacity:0.8;font-weight:100;
        transition:0.3s;cursor:pointer;
    }
    .bottom-nav i:hover{opacity:1;}

    