nav{
  background-color: #fff;
  /* box-shadow: 3px 3px 5px #000; */
  width: 100%;
  height: 79px;
}
.logo{
  text-align: center;
  margin: auto;
}
.logo img{
  max-height: 79px;
}
nav ul{
  width:100%;
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
}
nav li{
  height:100%;

}
nav a{
  height: 100%;
  padding: 0 10px;
  text-decoration: none;
  align-items: center;
  color:#12246c;;
}
nav a:hover{
  color: #03060f;;
  text-decoration: none;
}
nav li:first-child{
  margin-right: 10%;
}
nav .v_hr{
   border: solid 1px #3656a2;
   height: 25px;
}
nav .sidebar{
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  background: #fff;
  backdrop-filter: blur(9px);
  list-style: none;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 999;
}

nav .sidebar li{
  width: 100%;
}
nav .sidebar a{
  width: 100%;
}
nav .menu-button{
  display: none;
}

.primary-button {
    padding: 5px 15px;
    background: #12246c;
    border: 0;
    border-radius: 2px;
    color: #fff;
    min-width: 200px;
    text-align: center;
    font-weight: 700;
    font-size: 120%;
}

.bi{
  padding-right: 4px;
}

@media(max-width: 650px)
{
      nav .hideOnMobile{
        display: none;
      }
      nav .menu-button{
        display: block;
      }
      nav .logo{
        order: 3;
      }
      nav li:first-child
      {
        margin-right: 0;
      }

      nav .logo{
        right:0;
        top: 0;
        position:absolute
      }
      nav hr{
        background-color: #3656a2;
        height: 4px; 
        border: 0;
      }

      nav li{
        height: 79px;
      }

      nav li svg{
        color: #3656a2;
        fill:#3656a2;
        background-color: transparent;
        border: 1px solid #3656a2;
        border-radius: 2px;
        margin-top: 20px;
      }

}