
.header-nav{
    background-color: #3b0e42;
}
nav{
    display: flex;
    padding: 1% 7%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 80px;
    border-radius: 10%;
}
.nav-links-new{
    flex: 1;
    text-align: right;
}
.nav-links-new ul li{
    list-style: none;
    display: inline-block;
    padding: 16px 12px;
    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: #f44336;
    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;
    }

    nav img{
        width: 40px;
        border-radius: 10%;
    }
    
}
