.navbar {
  position: fixed;
  bottom: 0;
  width: 100%;
  border-radius: 32px;
  background-color: #fff;
  box-shadow: 0px -15px 30px 5px rgba(5, 30, 71, 0.0117647059);
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
}
.navbar ul {
  width: 100%;
  padding: 15px 32px 22px;
}
.navbar ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
}
.navbar ul li a.active {
  background-color: rgb(201, 235, 237);
}
.navbar ul li a.active svg path {
  stroke: rgb(123, 169, 190);
}