/* CSS Document */
.header {
  background: -webkit-gradient(linear, left top, left bottom, from(#131c3b), to(rgba(19, 28, 59, 0)));
  background: -webkit-linear-gradient(top, #131c3b, rgba(19, 28, 59, 0));
  background: -moz-linear-gradient(top, #131c3b, rgba(19, 28, 59, 0));
  background:linear-gradient(180deg,rgba(19,28,59,1),rgba(19,28,59,0));
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}
.header.isActive{
  background:white;
  padding-top:22px;
  position: fixed;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
}
.isActive .header-menu .header-title{
  color:rgba(9,10,12,1);
}
.isActive a {
  color:rgba(9,10,12,1);
}
.header-status a {
  color: black;
}
.header-status .applyBtn {
  color: #fff;
}
