.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 500;
    transition: all 0.2s ease-in-out;
    height: 90px;
    background-color:transparent;  
    text-align: center;
    line-height: 40px;
}

.header .container-fluid{
    height: 100%;
    padding: 0;
}

.header .navbar-brand {
	line-height: 80px;
	padding-left: 5px;
    height: 100%;
    color :#cea265;
}

.navbar-brand img{
    height: 50px;
    width: auto;
}

.navbar-nav .nav-item {
	margin-left:  45px 2px;
    min-width: 200px;
}

.navbar-nav .nav-link:hover {
	/* box-shadow: 0px 2px 0px #48bbf1; */
    /* background-color: #48bbf1; */
    background: linear-gradient(180deg, rgba(28,47,208,0) 97%, #88c6d3 100%);

}

.navbar-nav .nav-link {
	color: #fff!important;
	font-size: 13px;
	font-weight: 300;
	text-transform: uppercase;
	text-shadow: none;
	line-height: 80px;
	padding: 0px;
	letter-spacing: 0.5px;
}

.btn-nav-home {
    background: rgb(255, 255, 255);
    position: relative;
    text-align: center;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
    box-shadow: 2px 2px 10px 0 rgba(0,0,0,.08),
    -2px -2px 10px 0 rgba(255,255,255,1);
}

.btn-nav-home:active {
    opacity: 1;
    box-shadow: inset 2px 2px 10px 0 rgba(0,0,0,.08),
    inset -2px -2px 10px 0 rgba(255,255,255,1);
}
  

.header.active .navbar-nav .nav-link{
	font-family: 'Open Sans', arial, sans-serif;
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	text-shadow: none;
	color: #121212!important;
}

.header.active {
    background-color: white;
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}
.navbar-brand {
	font-family: 'Open Sans', sans-serif;
	font-size: 25px;
	text-transform: uppercase;
	transition: all 0.5s;
	 
}
.navbar-brand em {
	font-style: normal;
	color: #f7c552;
	font-size: 32px;
}

.header .navbar-brand {
    font-weight: 800;
}

.header .navbar {
    margin: 0;
    border: none;
}

.navbar-toggler {
    height: 60px;
    width: 60px;
    border: 5px solid #808285;
    background-color: #48bbf1;
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 15px!important;
    margin-right: 15px;
    margin-bottom: 8px;
    background-image: none;
    border-radius: 4px;
}

.navbar-toggler-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: unset !important;
}



/* EN DESSOUS DE 1500px */
@media (max-width:1500px) {
    .navbar-nav .nav-item {
        margin-left: 15px;
        padding: 0 13px;
        min-width: unset;
    }
}

/* EN DESSOUS DE 991PX */
@media (max-width:991px) {

    nav{
        background-color: white !important;
    }

    .navbar-collapse{
        background-color: white;
        box-shadow: grey 0px 7px 5px inset, grey 0px -7px 5px inset;;
    }

    .navbar-nav .nav-link {
        color: rgb(0, 0, 0)!important;
    }

    .navbar-nav .nav-item {
        margin: 2px 0;
        padding: 0;
        line-height: 50px;

    }

    nav .fa-bars{
        font-size: large;
        color: white;
    }


}


