/*     HEADER     */
header{
    width: 100%;
    height: 101px;
    flex-shrink: 0;
    position: fixed;
    z-index: 10;
	transition: background-color 0.3s ease; 
}

header > div {
    width: 90%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

#logo-medtech {
    left: 0;
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
}

#logo-medtech img{
	width: 300px;
	height: auto;
}

nav{
	right: 0;
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
}

#close-primary-menu{
	position: absolute;
	width: 40px;
	height: 40px;
	background-color: #9747ff;
	border-radius: 40px;
	color: white;
	font-weight: bold;
	text-align: center;
	line-height: 37px;
	font-size: 20px;
	display: none;
	right: 20px;
	top: 20px;
	cursor: pointer;
}

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

nav > ul > li {
    float: left;
    position: relative;
    z-index: 5;
    margin: 0 20px 0 0;
    line-height: 25px;
    font-size: 13px;
    color: #847868;
    cursor: pointer;
    font-weight: 600;
    transition: .2s all;
    text-transform: uppercase;
}

/*nav > ul > li:after{
	content: "";
	display: block;
	border-bottom: 2px solid #F66B0E;
	width: 20%;
	transition: .2s all;
}*/

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

nav > ul > li:hover{
    color: white;
}

/*#show-menu{
    display: none;
}*/

#show-primary-menu{
	position: absolute;
	width: 40px;
	height: 40px;
	/*background-color: #12054e;*/
	border-radius: 40px;
	text-align: center;
	line-height: 43px;
	top: 25px;
	right: 0px;
	display: none;
	cursor: pointer;
}

#show-primary-menu img{
	filter: brightness(0) saturate(100%) invert(29%) sepia(80%) saturate(2284%) hue-rotate(250deg) brightness(100%) contrast(103%);
	width: 100%;
}

#menu-language-spa{
    margin-left: 40px;
    margin-right: 5px;
}

#menu-language-en{
    margin-left: 5px;
    margin-right: 5px;
}
/*     END HEADER     */

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

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

    #menu-medtech{
        position: fixed;
		background-color: rgba(0, 0, 0, 0.9);
		width: 100%;
		height: 100%;
		top: 0;
		left: -100%;
		overflow: auto;
		z-index: 10;
        display: block;
    }

    #close-primary-menu{
		position: absolute !important;
		width: 40px !important;
		height: 40px !important;
		margin-top: 0px !important;
		margin-left: initial !important;
		right: 20px;
		z-index: 10;
        display: block;
	}
		
	nav > ul{
		display: block;
		height: auto;
        margin-top: 20px;
	}
	
	nav > ul > li{
		display: block;
        cursor: pointer;
        position: relative;
        padding: 10px 30px;
        font-size: 16px;
        width: calc(100% - 40px);
	}

    #menu-language-spa, #menu-language-en {
        margin-left: initial;
        margin-right: initial;
    }

    /*#logo-medtech{
		left: calc(50% - 100px);
	}*/
	
	#logo-medtech img{
		width: 60%;
		height: auto;
	}
}
