@charset "utf-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none; 
    list-style: none; 
    margin-top: auto; 
    margin-bottom: auto; 
}

html {
  scroll-behavior: smooth;
}


body {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif"; 
    background: #f2f2f2;
    position: relative;
    height: auto; 
    weidth: auto; 
}


nav {
    background: #0082e6;
    height: 80px; 
    width: 100%; 
    
}

a.logo {
    color: white;
    font-size: 35px;
    line-height: 80px;  
    padding: 0 5px 0 10px; 
    font-weight: bold; 
    text-decoration: none; 

}

a.logo>img{
    width: 45px;
    padding-top: 15px;  
}

a.logo>span {
    position: relative;
    bottom: 10px; 
}

nav ul {
    float: right;
    margin-right: 20px; 
    padding-top: 30px; 
    }

nav ul li {
    display: inline-block; 
    line-height: 20px; 
    vertical-align: center; 
    margin: 0 5px;  
}

nav ul li a {
    color: white;
    font-size: 17px; 
    text-transform: uppercase; 
    border-radius: 3px;  
}

nav>ul>li>a:hover, nav>ul>li>a:active {
    background: #1b9bff; 
    transition: .35s; 
    text-decoration: none; 
}

.home {
    display: none; 
}

.items {
    opacity: 90%; 
}

.active {
    border-bottom: 3px solid #fdfdfd; 
    border-radius: 3px; 
    opacity: 100%;
}

.checkbtn{
    color: white; 
    float: right;
    line-height: 60px;  
    padding-top: 10px; /* desktop */
    margin-right: 20px; /* desktop */
    cursor: pointer;
    display: none; 
     
}

#check {
    display: none; 
}

.hamburger {
    font-size: 50px; 

}

footer {
    clear: both; 
    width: 100%; 
    height: 50px; 
    text-align: center; 
    vertical-align: center; 
    background: #0082e6
}

footer a {
    text-decoration: none; 
    cursor: pointer; 
}

footer p {
    padding: 16px 0; 
    color: #2B2B2B;     
}

footer a {
    color: #85FF2F; 
}

footer a:hover, footer a:active {
    color: #E1FF85; 
    text-decoration: none; 
}


@media screen and (max-width: 868px) {  
                /* original= 968px */
    nav {
/*        background: green;*/
        background: #0082e6;

    }
    
    .checkbtn{
        line-height: 60px;  
        padding-top: 5px;     /* tablet */
        margin-right: 20px;     /* tablet */
    }
    
    a.logo {
        padding-left: 10px; 
    
    }
 
    a.logo>img{
        width: 40px;
        padding-top: 20px;  
    }

    a.logo>span {
        font-size: 30px; 
    }

    nav ul li a{
        font-size: 16px;   
    }    

}

@media screen and (max-width: 788px) {
                   /* original= 868px */
    nav {
        background: #0082e6;
/*        background: red; */
    }
    
    a.logo>img{
        width: 40px;
        padding-top: 20px;  
    }

    a.logo>span {
        font-size: 30px; 
    }
    
    .home {
        display: block !important; 
    }  
    
    .active {
        border-bottom: none; 
        text-decoration: underline; 

    }    
        
    .checkbtn{
        display: block; 
        line-height: 60px;  
        padding-top: 5px;     /* phone */
        margin-right: 20px;   /* phone */
    }
    

    nav ul {
        position: fixed;
        width: 100%;
        height: 100vh; 
        background: #2c3e50;
        top: 70px; 
        left: -100%;
        text-align: center; 
        transition: all .35s; 
    }
    
    nav ul li {
        display: block; 
        margin: 15px 0;
    }
    
    nav ul li a{
        font-size: 25px;   
    }     
        
   nav>ul>li>a:hover, nav>ul>li>a.active {
    background: none;  
    color: #0082e6; 
    transition: .35s; 
    }
    
    #check:checked ~ ul {
        left: 0; 
        z-index: 1; 
    }
    

}

@media screen and (max-width: 550px) {
                   
    nav {
        background: #0082e6;
/*        background-color: blueviolet; */
    }
    
    .hidden_mobile {
        display: none; 
    }
    
    .home {
        display: block !important; 
    }    
    
    .checkbtn{
        margin-right: 5px; 
    }
    
    .hamburger {
        font-size: 60px; 
    }
    

    
}













