
.navigation nav{
  background: #a70017;
  height: 80px;
  width: 100%;
  padding: 0px !important;
  margin-top: -10px;
}
.navigation label.logo{
  color: white;
  font-size: 35px;
  line-height: 60px;
  padding: 0 0;
  float:left;
  font-weight: bold;
}
.navigation nav ul{
  float: right;
  margin-right: 20px;
}
.navigation nav ul li{
  display: inline-block;
  line-height: 60px;
  margin: 0 0px;
}
.navigation nav ul li a{
  color: white;
  font-size: 17px;
  padding: 7px 13px;
  border-radius: 3px;
  text-transform: uppercase;
}
.navigation nav ul li a.active,nav ul li a:hover{
  background: #ff0b0b;
  transition: .5s;
  color:black;
}
.checkbtn{
  font-size: 30px;
  color: white;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}
#check{
  display: none;
}
@media (max-width: 952px){
  .navigation label.logo{
    font-size: 30px;
    padding-left: 50px;
  }
  .navigation nav ul li a{
    font-size: 16px;
  }
}
@media (max-width: 858px){
  .navigation .checkbtn{
    display: block;
  }
.navigation   nav{
  position: fixed;
  top: 0px;
  width:100%;
  z-index: +10000;
  height: :60px;
  }
  body{
    margin-top:60px;
  }

  .navigation ul{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #2c3e50;
    top: 60px;
    left: -100%;
    text-align: center;
    transition: all .5s;
    z-index: +10000;
  }
.navigation nav ul li{
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }
  .navigation nav ul li a{
    font-size: 20px;
  }
  .navigation nav ul li a:hover,nav ul li a.active{
    background: none;
    color: #0082e6;
  }
  #check:checked ~ ul{
    left: 0;
  }
}
