header{
  background-color: rgb(255, 189, 89);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  z-index: 6666666;
  width: 100%;
  -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 a#title{
  font-style: normal;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items:center;
  width: 40%;
  height: 100px;
}
header a#title:hover{
  font-style: normal;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items:center;
  width: 40%;
  height: 100px;
  color: rgb(255, 189, 89);
}
header a#title div{
  height:100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header a#title div img{
  height: 90px;
}
header a#title p{
  text-decoration: none;
  display: inline-block;
  position: relative;
  color:rgb(18,63,69);
  font-weight: 50;
  font-size: 40px;
}
header a#title p:hover{
  text-decoration: none;
}
header a#title p:after{
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  color: rgb(18,63,69);
  height: 2px;
  left: 50%;
  position: absolute;
  background: rgb(18,63,69);
  transition: width 0.2s ease 0s, left 0.2s ease 0s;
  width: 0;
}
header a#title p:hover:after{
  width: 100%;
  left: 0;
  color:#e55039;
}
header div#screen{
  width: 50%;
}
header div ul{
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
header div#screen ul li{
}
header div ul li a{
  color:black;
  text-decoration: none;
  font-style: normal;
  font-weight: normal;
}
header div ul li a:hover{
  color:white;
  text-decoration: none;
}
#index.active {
  background-color: rgba(34,34,34,0.8);
}
/* REVIEW: media querries */
header#mobile{
  display: none;
}
/* REVIEW: // media querries */
