

 /* Global Broswer settings*/

*{
    padding: 0;
    margin:auto;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;

}
html {
    scroll-behavior: smooth;
    text-decoration: none;
    list-style: none;
   
 }
 /* Global Broswer settings*/

body{
    font-family: "Helvetica Neue";
}

nav{
    background:black;
    height: 100px;
    width: 100%;
}

label.logo{
    color: white;
    font-size: 35px;
    line-height: 100px;
    padding: 0 100px;
    font-weight: bold;
}

nav ul{
    float: right;
    margin-right: 40px;
}

nav ul li{
    display: inline-block;
    line-height: 100px;
    margin: 0 5px;
}

nav ul li a{
    color: white;
    font-size: 17px;
    text-transform: uppercase;
    text-decoration: none;
    list-style: none;
    padding: 7px 13px;
    border-radius:15px
}


a.active, a.active:hover{

    background:white;    
    color:black;
    transition: 0.5s;
}

a.inactive:hover{
    background:white;    
    color:black;
    transition: 1s;

}

nav img {

    
    background:white;
    width:150px;
    height: 70px;
    background-color: white;
    margin: 17px;
}

.checkbtn{

    font-size: 30px;
    color: white;
    float:right;
    line-height: 80px;
    margin-right: 40px;
    display:inline;
    margin-top: 34px;
    cursor: pointer;


}

#check{
    display:none;
}
.checkbtn{
    display:none;        
 }

 #splash img {
    background:white;
    opacity: 100%;
    background-repeat: repeat-y;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    animation: splash 5s ease-in;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
   
    border-radius:1%;
    padding: 1px;
  
  }

  #splash {

    opacity: 100%;
    background-repeat: repeat-y;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    animation: splash 5s ease-in;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    z-index: 5;
  }


  #loader {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,0);
  }
  
  #loader:after {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -8px;
    bottom: -170px;
    width: 3px;
    background: #fff;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
    height: 200px;
  }
  
  #loader:before {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: 8px;
    bottom: -190px;
    width: 3px;
    background: #000;
    background: linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,0) 100%);
    height: 200px;
  }
  
  #splash .anim {
    height: 100%;
    position: absolute;
    left: 50%;
    width: 100px;
    transform: translate(-50%,100%);
    animation: loader 8s linear;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
  }
  
  @keyframes loader {
    0% {
      transform: translate(-50%,110%);
    }
    30% {
      transform: translate(-50%,50%);
    }
    100% {
      transform: translate(-50%,0%);
    }
  }
  
  @keyframes splash {
    0% {
      transform: translate(0%,0%);
    }
    50% {
      transform: translate(0%,0%);
    }
    100% {
      transform: translate(0%,-100%);
    }
  }

@media (max-width: 952px){
    nav img{
        margin-left:50px;
    }

    nav ul li a{
        font-size: 16px;

    }
}

@media (max-width: 858px){
    .checkbtn{
       display:block;        
    }

   ul{
       position: fixed;
       width: 100%;
       height: 100vh;
       background-color: #2c3e50;
       z-index: 2;
       opacity: 100%;
       top:100px;
       left:-100%;
       text-align: center;
       transition: all 1s;
   }

   nav ul li{

    display: block;
    margin: 50px 0;
    line-height: 30px;
   }

   nav ul li a{
    font-size: 20px;

}

a:hover,a.active{
    background:none;
    color: #e0eaf1;
}

#check:checked ~ ul{
    left: 0;

}

}


