.header--clone {
  /* Required styles */
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  /* Additional styles */
  /* background: #2979ff; */
  /* box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3); */
  /* Translate -100% to move off screen */
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  /* Animations */
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  /* padding: 10px 0; */
margin-bottom: 0px;
}
.header--clone .navbar-brand img {
  /* height: 90px; */
  /* top: -21px !important; */
}
.header--stick {
  /* Translate back to 0%; */
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3) !important;
}

.header--unstick {
  /* Not required to use, but could be useful to have */
}

.header--stick .menu ul li a {
  color: #000;
}

.header--stick .menu ul li a:hover {
  background: #438afe;
  color: #fff;
}

.header--stick .menu .active {
  color: #fff;
  background: #438afe;
}
