
.navv {
    z-index: 1000;
 display: flex;
 justify-content: center;
 flex-direction: row;
 width: 100%;
 height: 50px;
 filter: drop-shadow(0 0 5px rgba(31, 31, 31, 0.1));
 position: fixed;
 bottom: 0;
}

.navv-slot {
 flex-basis: 15%;
 text-align: center;
 height: 100%;
 display: flex;
 align-items: center;
 justify-content: center;
}

.navv-link{
 width: 25px;
 height: 25px;
 line-height: 1.5;
 align-items: center;
 color: #aab2bd;
 border-radius: 50rem;
 padding: 0.5rem 0.5rem;
 transition: 0.3s all;
}


.bg-white-navv {
 background: white;
}

.floating-button {
 position: fixed;
 width: 50px;
 height: 50px;
 line-height: 3;
 text-align: center;
 color: #0063a7;
 border-radius: 50%;
 bottom: 35px;
 background-image: linear-gradient(to right, #0063a7 0%, #0063a7 100%);
 box-shadow: 0 10px 6px -6px #777;
 z-index: 1;
 transition: 0.3s all;
}

.floating-button:hover {
 bottom: 40px;
 transition: 0.3s all;
}