.mobile-nav {
  background: #ffffff;
  position: fixed;
  bottom: 0;
  height: 65px;
  width: 90%;
  display: flex;
  justify-content: space-around;
  border-radius: 15px;
  margin-bottom: 30px;
  /* border-top-left-radius: 20px;
    border-top-right-radius: 20px; */
}

.bloc-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 65px;
  color: black;
}

.bloc-icon i {
  width: 20px;
  font-size: 20px;
  color: black;
}

.bloc-icon span {
  font-size: 11px;
  color: black;
  margin-top: 5px;
}

a {
  text-decoration: none;
}

.bloc-icon.active i {
  color: #2576b9;
  font-weight: 600;
}

.bloc-icon.active span {
  color: #2576b9;
  font-weight: 600;
}

.bloc-icon.active {
  /* background: #f3f3f3ff; */
  color: #2576b9;
  /* border-bottom: 2px solid #2576b9; */
  font-weight: 600;
}

.profile-login-mobile {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
}

@keyframes bounce2 {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-18px);
  }
  60% {
    transform: translateY(-15px);
  }
}

@media screen and (min-width: 900px) {
  .mobile-nav {
    display: none;
  }
}


