.negative-position {
  position: relative;
  top: -195px;
}

.in-page-menu-wrapper {
  display: block;
  width: calc(100vw);
  margin: 0;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  padding: 20px;
}

.in-page-menu-wrapper.fixed {
  box-shadow: 0 2px 9px 0 rgb(0 0 0 / 20%);
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  top: 80px;  
  z-index: 3;
}

a.in-page-menu-link {
  color: #1a60ac;
  margin: 0 10px;
  padding: 5px 0;
  position: relative;
  text-align: center;
}

a.in-page-menu-link:hover,
a.in-page-menu-link:focus,
a.in-page-menu-link:visited {
  text-decoration: none;
}

a.in-page-menu-link:hover {
  color: #f08602;
}

a.in-page-menu-link:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

a.in-page-menu-link:after{
  background: #f08602;
}

a.in-page-menu-link:hover:after {
  width: 100%; 
  left: 0; 
}

.text-white a.in-page-menu-link {
  color: #fff;
}

.text-white a.in-page-menu-link:after{
  background: #fff;
}
