*{
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: sans-serif;
    padding: 80px  0;
}
.header{
    background: linear-gradient(90deg, rgba(20,173,177,1) 0%, rgba(63,9,121,1) 35%, rgba(0,212,255,1) 100%);
    height: 80px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;

}
.nav{
    display: flex;
    justify-content: space-between;
    max-width: 992px;
    margin: 0 auto ;
}
.nav img{
    width: 160px;
    height: 70px;
    padding: 0 5px;
   
}
.nav-link{
    color: white !important;
    text-decoration: none;
}
.nav-menu{
    display: flex;
    margin-right: 40px;
    list-style: none;
}
.nav-menu-item{
    font-size: 18px;
    margin: 0 10px;
    line-height: 60px;
    text-transform: uppercase;
    max-width: max-content;
}
.nav-menu-link{
    padding: 8px 12px;
}
.nav-menu-link:hover{
    background: linear-gradient(90deg, rgba(20,42,177,1) 0%, rgba(0,128,107,1) 44%, rgba(0,212,255,1) 100%) !important;
    transition: 0.5s;
   
}
.nav-toggle{
    color: black;
    background: none;
    border: none;
    font-size: 60px !important;
    padding: 0 20px;
    line-height: 60px;
    display: none;
    cursor: pointer;
}
@media (max-width:768px){
    body{
        padding:45px;
    } 
    .header{
       height: 60px;
    
    }
    
    .nav img{
        width: 130px;
        height: 60px;
        padding: 0 3px;
        margin-left: 40%;
       
    }
    .nav-menu{
        flex-direction: column;
        align-items: center;
        margin-right: 20px;
        background: linear-gradient(90deg, rgba(170,20,177,1) 0%, rgba(0,128,107,1) 44%, rgba(0,212,255,1) 100%);
        position: fixed;
        left: 0;
        top: 60px;
        width: 100%;
        padding: 20px 0;
        height: calc(100% - 60px);
        overflow-y: auto;
        left: 100%;
        transition: left 1s;
    }
    .nav-menu-item{
        line-height: 70px;
    }
    
    .nav-menu-link:hover{
        background-color: none;
        color: chartreuse;
    }  
    .nav-toggle{
        display: block;
    } 
    .nav-menu_visible{
        left: 0;
    }
    .nav-toggle:focus:not(:focus-visible){
        outline: none;
    }
}