header{
    display: none;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    width: 100px;
}
.nav-links{
    display: flex;
    justify-content: space-around;
    width: 30%;
}
.nav-links li {
    list-style: none;
    width: 100%;
    padding: 20px 20px;
    border-bottom: 1px solid #ffffff05;
}
.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-links a img {
    max-width: 22px;
    max-height : 20px;
    object-fit: contain;
}
.burger {
    display: none;
}
.burger div {
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px){
    body{
        overflow-x: hidden;
    }
    .nav-links {
        position: fixed;
        right: 0px;
        height: 100vh;
        top: 0;
        background: linear-gradient(164.99deg, #2a2e36 10.15%, #353a43 44.7%, #3e444f 73.61%);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform -0.5s ease-in;
        z-index: 999;
        justify-content: normal;
        padding: 50px 0px;
    }
    .nav-links li {
        opacity: 0;
    }
    .burger {
        display: block;
        cursor: pointer;
        z-index: 999;
    }
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line-1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line-2 {
    opacity: 0;
}
.toggle .line-3 {
    transform: rotate(45deg) translate(-3px, -5px);
}
.moblogo .logo02 {
    width: 55px;
}
.sidebar li a:hover .links_name{
	color:#FF7600;
}
.sidebar li a:hover img{
	filter:unset;
}