/* REVIEW: header */
header{
  display: none;
}
header#mobile{
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  padding-top: 0.5%;
  padding-bottom: 0.5%;
  box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12);
  align-items: center;
  z-index: 10;
  -webkit-transition: all ease-out .5s;
  -moz-transition: all ease-out .5s;
  -o-transition: all ease-out .5s;
  transition: all ease-out .5s;
  height: 100px;
}
header div#title{
  display: flex;
  flex-direction: row;
  width: 75%;
  justify-content: space-between;
  align-items: center;
}
header#mobile div#title a h1{
  color: #3867d6;
  text-decoration: none;
  display: inline-block;
  position: relative;
  font-size: 20px;
}
header#mobile div#title a h1:hover{
  text-decoration: none;
}
header#mobile div#title a h1:after{
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  color: white;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #3867d6;
  transition: width 0.2s ease 0s, left 0.2s ease 0s;
  width: 0;
}
header#mobile div#title a h1:hover:after{
  width: 100%;
  left: 0;
  color:#e55039;
}
header#mobile div#title a h1{
  color:#3867d6;
  text-decoration: none;
}
header#mobile div#title img{
  max-height: 60px;
}
header#mobile nav{
  position: absolute;
  width: 100%;
  height: calc(100vh - 100px);
  background: #333;
  top: 100px;
  left: -100%;
  transition: 0.5s;
}
header#mobile nav.active{
  left:0;
  z-index: 10;
}
header#mobile nav ul{
  display: block;
  text-align: center;
}
header#mobile nav ul li{
  list-style: none;
  width: 100%;
}
header#mobile nav ul li a{
  text-transform: uppercase;
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.2);
}
header#mobile nav ul li a:hover{
  color:#fff;
  background: #2196f3;
}
.menu-toggle{
  color: black;
  float: right;
  line-height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: block;
}
/* REVIEW: //header  */
