
  
  .nav-bar{
    background: #fff;
    width: 100%;
    height: 4.5rem;
    position: absolute;
    left: 0;
    bottom: 0;
    filter: url("#fancy-goo");
    box-shadow: 0px -11px 6px 0px rgb(0 0 0 / 16%);
  }
  
  .nav-bar svg{
    height: 2.3rem;
    margin-bottom: 4px;
    position: relative;
    z-index: 10;
    transition: all .4s;
    display: inline-block;
  }
  
  .nav-bar ul{
    display: flex;
    height: 100%;
    padding-left: 0;
  }
  
  .nav-bar ul li{
    height: 100%;
    text-align: center;
    list-style: none;
    align-items: center;
    display: flex;
    cursor: pointer;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    flex: 1;
    line-height: 1rem;
  }
  
  .nav-bar ul li span{
    font-weight: 400;
    width: 100%;
    display: block;
    text-align: center;
    transition: all .22s;
    color:#174996;
  }
  
  .nav-bar ul li:after{
    width: 65%;
    height: 50%;
    border-radius: 100%;
    content: '';
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
    z-index: 0;
    position: absolute;
    background: #fff;
    transition: all .4s;
  }
  
  .nav-bar ul li:hover:after{
    transform: translate3d(0, -15%, 0);
  }
  
  .nav-bar ul li.active:after{
    transform: translate3d(0, -40%, 0);
  }
  
  .nav-bar ul li.active span,
  .nav-bar ul li:hover span{
    color: #f79622;
  }
  
  .nav-bar ul li.active svg{
    transform: scale(1.12) translate3d(0, -1px, 0);
  }
  
  .nav-bar ul li:not(.active):hover svg{
    transform: scale(1.049) translate3d(0, -4px, 0);
  }
  
  .nav-bar ul li svg path{
    transition: all .4s;
  }
  
  .nav-bar ul li:hover svg path,
  .nav-bar ul li.active svg path{
    fill: #f79622;
  }

  .nav-bar ul li{
    fill: #174996;
  }
  
  @media screen and (max-width: 400px){
    .nav-bar svg{
      height: 1.5rem;
    }
    
    .nav-bar ul li span{
      font-size: .75rem;
      font-weight: 400;
      color:#174996;
    }  
    
    .nav-bar ul li.active:after{
      transform: translate3d(0, -25%, 0);
    }
  }
  
  .mobile-menu-tiw{
    position:fixed;
    bottom:0px;
    width:100%;
    z-index: 99;
    height: 50px;
}