header{
    background-color: #091779;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 1000000;
}
header .responsive__icon{
    display: none !important;
}
header .logo{
    height: 100%;
    width: 50vh;
    clip-path: polygon(0 0, 100% 0, 83% 100%, 0% 100%);
    background-color: #fff;
    display: flex;
    align-items: center;
}
.logo-img{
    height: 90%;
    padding-left: 20px;
}
header nav{
    width: 100vh;
    display: flex;
    padding-right: 3vh;
    justify-content: space-around;
}
header a{
    color: #fff;
    font-size: 18px;
    padding: 2.4vh;
    transition: background-color .3s, color .3s;
    border-radius: 10px;
}
header a:hover{
    color: #fff;
    background-color: #1223a5;

}
header a:hover > .nav__line{
    opacity: 1;
}
.nav__line{
    border: none;
    height: 2px;
    margin: auto;
    width: 90%;
    height: 2px;
    background-color: #091779;
    opacity: 0;
    transition: opacity .3s;
}
/*Responsive Header*/

@media (max-width: 150vh){
    header nav{
        width: auto;
    }
}
@media (max-width: 900px) {
    header {
        z-index: 10000000;
        position: fixed;
        height: 100px;
    }
    .logo-img{
        padding-left: 10px;
    }
    header a {
        color: #000;
        font-weight: bold;
        text-align: center;
    }

    header nav {
        position: relative;
        width: 100%;
        display: grid;
        grid-template-rows: 1fr 1fr 1fr;
        height: 30vh;
        margin-bottom: 100vh;
        transition: margin-bottom .5s;
        background-color: #fff4;
        backdrop-filter: blur(10px);
        z-index: -10000000;
    }

    header .responsive {
        position: fixed;
        z-index: -10000001;
        margin-bottom: calc(-30vh - 100px);
    }

    header .responsive__icon {
        display: inline-block !important;
        height: 4vh;
        right: 5vh;
        position: absolute;
    }

    header .logo {
        width: 30vh;
        position: absolute;

    }

    header .responsive a:hover {
        color: #2c3bbe;
        background-color: transparent;
    }
}
