/* CSS Document */
*{
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}           
body{
  font-family: montserrat;
}
header{
  height:40px;
}
nav{
  /*background: #0082e6; 
  height: 80px;           */
  /*border-bottom: 3px solid black;   */
  background-image: linear-gradient(to top, transparent, white 35%, #00bfff);
  height: 100px;                        
  width: 100%;
  position: fixed;
  top: 0;
  z-index:1;  
}
label.logo{
  color: black;
  font-size:  45px;
  line-height: 80px;
  padding: 0 100px;
  font-weight: bold;
  font-family: 'Dancing Script', cursive;
}
nav ul{
  float: right;
  margin-right: 20px;
}
nav ul li{
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
}
nav ul li a{
  color: black;
  font-size: 17px;
  padding: 7px 13px;
  border-radius: 3px;
  text-transform: uppercase;
  text-decoration: none;
}    
a.active,a:hover{
  background: #1b9bff;  
  transition: .5s;      
}
.checkbtn{
  font-size: 30px;
  color: black;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}
#check{
  display: none;
}
@media (max-width: 952px){
  label.logo{
    font-size: 30px;
    padding-left: 50px;
  }
  nav ul li a{
    font-size: 16px;                  
  }
}
@media (max-width: 1350px){
  .checkbtn{
    display: block;
  }
  ul{
    position: fixed;
    width: 80%;
    height: 100%;
    /*background: #00bfff;*/
    background-image: linear-gradient(to top, #00bfff 50%, white) ;
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all .5s;
  }
  nav ul li{
    display: block;
    margin: 30px 0;
    line-height: 30px;
  }
  nav ul li a{
    font-size: 20px;
  }
  a:hover,a.active{
    background: none;
    color: blue;
  }
  #check:checked ~ ul{
    left: 0;
  }
}


     /*
section{
  background: url(bg1.jpg) no-repeat;
  background-size: cover;
  height: calc(100vh - 80px);
}         
 /*
i{
  position: fixed;
  bottom: 40px;
  right: 40px;
  font-size: 35px;
  background: #0f55bd;
  padding: 7px 10px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  border: 1px solid black;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease-in-out;
}
i:hover{
  transition: .5s;
  background: #0d4aa5;
}                */
.top-href:hover{
  background: none;  
}

#down-page{
  background-color:white;
  border-top: 3px solid black;
  width:100%;
  position: fixed;
  bottom: 0px;
  font-size:14px;
  height: 40px;
  font-family: Verdana, sans-serif;
  z-index:0;
}
#down-page p{
  margin-top:10px;
  text-align:center;
}