body::-webkit-scrollbar{
    display: none;
    align-items: center;
}
nav{
    display: flex;
    padding: 1% 3%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 80px;
    border-radius: 20%;
}
.nav-links-new{
    flex: 1;
    text-align: center;
}
.nav-links-new ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 16px;
    position: relative;
}
.nav-links-new ul li a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}
.nav-links-new ul li::after{
    content: '';
    width: 0;
    height: 2px;
    background: #3b0e42;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links-new ul li:hover::after{
    width: 100%;
}

nav .fa{
    display: none;
}
@media(max-width:750px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links-new ul li{
        display: block;
    }
    .nav-links-new{
        position: fixed;
        background: #3b0e42;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #ffffff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-link-new ul{
        padding: 40px;
    }
}
