.nav {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  width: 100%;
  height: 60px;
  filter: drop-shadow(0 0 5px rgba(22, 22, 22, 0.1));
  position: fixed;
  bottom: 0;
  background: white;
  align-items: center;
  font-size: 0.75rem;
}

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

.nav-link {
  height: 50px;
  /* width: 25px;
    height: 25px; */
  /* line-height: 1.5; */
  align-items: center;
  /* color: #001049; */
  color: #004AAD;
  /* border-radius: 50rem; */
  padding: 0.5rem 0.5rem;
  transition: 0.3s all;
  transition: transform 0.2s;
  
}

.active {
  color: #cb9a09;
  text-transform: lowercase;
  transition: transform 0.2s;
}
/* .active:hover {
  transform: scale(1.5);
  color: #cb9a09;
} */
.nav-link:hover {
  transition: 0.3s all;
  transform: scale(1.5);
  /* background: rgba(31, 31, 31, 0.1); */
  color: #001049;
}
.nav-link:hover span{
   font-size: 10px;
}
/* .nav-link:focus, .nav-link:hover{
    color: #001049;
   } */
/* .curve {
    flex-basis: auto !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E%3Cpath d='M99,0A36.33,36.33,0,0,0,70,15,25,25,0,0,1,30,15,36.33,36.33,0,0,0,1,0H0V50H100V0Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: center;
    width: 100px;
   }
   */
.floating-button:hover {
  bottom: 40px;
  transition: 0.3s all;
}

.round-top-left {
  border-top-left-radius: 15px;
}

.round-top-right {
  border-top-right-radius: 15px;
}

svg {
  height: 100%;
}
/* text */
.txt-nav a {
  color: #001049;
}
.text-break {
  /* word-break: break-all; */
}
