header{
    width: 100%;
    height: 100px;
    background: #0A0A0A;
    border-bottom: 1px solid #383838;
    position: fixed;
    z-index: 3;
    top: 0;
}

header > div {
    width: 80%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#logo {
    height: 100%;
    display: flex;
    align-items: center;
}

#logo img{
	width: 264px;
	height: 58px;
    filter: brightness(0) saturate(100%) invert(99%) sepia(7%) saturate(514%) hue-rotate(213deg) brightness(117%) contrast(100%);
}

#get-demo{
    height: 100%;
    display: flex;
    align-items: center;
}

nav{
    height: 100%;
    display: flex;
    align-items: center;
}

nav > ul {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
}

nav > ul > li {
    float: left;
    position: relative;
    z-index: 5;
    margin: 0 0 0 82px;
    line-height: 25px;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    /*font-weight: 600;*/
    transition: .2s all;
}

nav > ul > li:after{
	content: "";
	display: block;
	border-bottom: 2px solid white;
	width: 0px;
	transition: .2s all;
}

nav > ul > li:hover:after{
	width: 100%;
}

.menu-active{
    color: #1F49BF;
}

.menu-active:after{
    border-bottom: 2px solid #1F49BF;
    width: 100%;
}

#show-primary-menu{
    position: absolute;
    width: 30px;
    height: 25px;
    border-radius: 40px;
    text-align: center;
    line-height: 43px;
    top: 35px;
    right: 50px;
    display: none;
    cursor: pointer;
}

#show-primary-menu img{
    width: 100%;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(271deg) brightness(108%) contrast(101%);
}

#close-primary-menu{
    position: absolute;
    width: 35px;
    height: 35px;
    margin-top: 0px;
    margin-left: initial;
    right: 50px;
    z-index: 10;
    background-color: white;
    color: black;
    display: none;
    border-radius: 40px;
    font-weight: bold;
    text-align: center;
    line-height: 37px;
    font-size: 20px;
    top: 35px;
    cursor: pointer;
}

@media only screen and (max-width: 991px) {
    header{
        height: 100px;
    }

    #logo img{
        width: 125px;
        height: auto;
    }

    nav{
        position: fixed;
        background-color: #0a0a0a;
        left: 100%;
        width: 100%;
        height: 100%;
    }

    nav > ul{
        margin-top: 200px;
        width: 100%;
    }

    nav > ul > li{
        float: initial;
        margin: 25px 0;
        text-indent: 80px;
        width: max-content;
    }

    nav > ul > li:after{
        margin-left: 80px;
    }

    #get-demo{
        display: none;
    }

    #show-primary-menu{
        display: block;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    header > div{
        width: 90%;
    }
    
    #logo img {
        width: 220px;
        height: auto;
    }

    nav > ul > li{
        margin: 0 0 0 40px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1727px) {
    header > div{
        width: 85%;
    }

    #logo img {
        width: 135px;
        height: auto;
    }

    nav > ul > li{
        margin: 0 0 0 60px;
    }
}
