.nav{
    position: fixed;
    width: 72px;
    height: 100vh;
    background-color:#1F2B37;
    /* background-image:linear-gradient(to right,#0B00CF,#300A6E,#FF2D2B,#C10A28); */
    margin: 0;
    box-shadow: 5px 1px 15px rgba(112, 156, 214, 0.2);
    overflow: hidden;
    transition: 0.5s;
    z-index: 1;
}
.nav:hover {
    width: 18em;
    
}


.navIcon{
    display: flex;
    padding: 10px;
    box-shadow: 5px 1px 15px rgba(112, 156, 214, 0.2);
    border-bottom: 1px black solid;
    
}

.nav h1{
    height: 50px;
    line-height: 50px;
    vertical-align: top;
    color: #4f76f6;
    font-weight: bold;
    font-size: 28px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-left: 20px;
    letter-spacing: 2px;
    
}

.nav .icon_img{
    display: block;
    background-image:radial-gradient(circle,#f9f9f979,#4f76f6,#1F2B37);
    border-radius: 50%;
    min-width: 50px;
    width: 50px;
    height: 50px;
    

}
.nav img{
    margin: 5px;
    filter: invert(94%) sepia(95%) saturate(591%) hue-rotate(62deg) brightness(100%) contrast(90%);
}

.nav a{
    
    padding: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #4f76f6;
    transition: 0.5s;
}
.nav a:hover{
    background-color:rgb(	119,	242,	161, 0.75);
    
    transition: 0.5s;

}
.nav a .img{
    display: flex;
    width: 50px;
    min-width: 50px;
    height: 50px;
    align-items: center;
    filter: invert(52%) sepia(91%) saturate(3764%) hue-rotate(211deg) brightness(95%) contrast(103%);

}
.nav a .img img{
    width: 25px;
    height: 25px;
    margin-left: auto;
    margin-right: auto;
}

.nav a h2{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    margin-left: 20px;
    height: 50px;
    line-height: 50px;
}