.fnav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  -webkit-box-shadow: 0px -6px 90px rgba(29, 50, 104, 0.16);
  -moz-box-shadow: 0px -6px 90px rgba(29, 50, 104, 0.16);
  box-shadow: 0px 0px 10px rgba(29, 50, 29, 0.2);
  height: 70px;
  overflow: hidden;
  border-radius: 12px;
  -webkit-border-bottom-left-radius: 0px;
  -moz-border-radius-bottomleft: 0px;
  border-bottom-left-radius: 0px;
  -webkit-border-bottom-right-radius: 0px;
  -moz-border-radius-bottomright: 0px;
  border-bottom-right-radius: 0px;
  background: #fff;
  z-index: 4233;
}
.fnav__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #e6e6e6;
  padding: 10px 10px 7px;
  box-shadow: 38px 8px 30px #34A;
  height:70px;
}
.fnav__item {
  text-align: center;
  font-size: 12px;
  color: #000;
  font-weight: 600;
  transition: 0.2s;
  text-decoration:none;
}
.fnav__item a:visited {
  color: pink;
}
 
.fnav__item:hover {
  color: var(--main-color);
}
.fnav__icon {
  max-height: 20px;
  margin-bottom: 10px;
}
.fnav__icon svg, .fnav__icon img {
  height: 2.5em;
  width: 2.5em;
  display: inline-block;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .fnav {
    display: block;
  }
}