/*************************** Navigation ***************************/



#navi{

  position: fixed;
  top: 0px;
  width: 100%;
  height: 53px;
  background: red;
  z-index: 20;
  -webkit-box-shadow: 0px 10px 17px -9px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 10px 17px -9px rgba(0,0,0,0.1);
  box-shadow: 0px 10px 17px -9px rgba(0,0,0,0.1);
}

#navigation{
  position: fixed;;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 99999;
}

#navigation a{
  text-decoration: none;
}

#navigation ul{
  position: relative;
  list-style-type: none;
  margin: 0;
  padding: 0;
  float: right;
  width: auto;
}

#navigation ul li{
  position: relative;
  float: left;
  padding: 17px 30px;
  cursor: pointer;
  box-sizing: border-box;
}

#navigation ul li:hover{
  text-decoration: underline;
}

.open_navigation{
  position: relative;
  width: 100%;
  padding: 17px 30px;
  float: left;
  background: black;
  color: #fff;
  box-sizing: border-box;
  cursor: pointer;
}


.burger_icon{
  position: absolute;
  top: 50%;
  margin-top: -15px;
  right: 20px;
  width: 30px;
}

.burger_icon img{
  width: 100%;
  position: absolute;
}


.navigation_logo_wrapper{
  position: relative;
  float: left;
  width: auto;
  height: 100%;
  margin-left: 80px;
}

.navigation_company_name{
  position: relative;
  float: left;
  width: 150px;
  height: 100%;
  margin-left: 20px;
  padding-top: 16px;
  box-sizing: border-box;
}

.navigation_logo{
  position: relative;
  float: left;
  width: 20px;
  height: 100%;
}

.navigation_logo img{
  position: relative;
  width: 100%;
  margin-top: 10px;
}

