header {
    	border-bottom: 1px solid #E3E3E3;
	position: fixed;
	z-index: 10;
	background-color: #F5F5F5;
	width: 100%;
}

header .header--contain {
    height: 9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .header--contain h2 {
    width: 250px;
}

@media screen and (max-width: 992px) {
    header .header--contain h2 {
        width: 190px;
    }
}

@media screen and (max-width: 350px) {
    header .header--contain h2 {
        width: 160px;
    }
}

.menu-close {
    color: #000000;
    font-size: 3rem;
}

.menu-close {
    display: none;
}

#menu-trigger {
    display: none;
}

.navigation ul {
    display: flex;
    width: 500px;
    justify-content: space-around;
    padding-left: 0;
    margin-top: 0;
}

.navigation ul li {
    list-style-type: none;
}

#actif a {
    color: #B99D52;
}

.navigation ul li a {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    color: #000000;
}

@media screen and (max-width: 768px) {
    header {
        justify-content: space-around;
    }

    .header--fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 20;
        height: 90px;
        background: #FFA500;
    }

    #menu-trigger, .menu-close {
        font-family: 'Poppins', sans-serif;
        text-transform: uppercase;
    }

    #menu-trigger {
        display: block;
        color: black;
        padding-right: 20px;
        font-size: 2rem;
    }

    .menu-close {
        display: flex;
        justify-content: flex-end;
        padding: 20px 40px 0 0;
    }

    #menu-trigger:hover {
        cursor: pointer;
    }

    .menu-close:hover {
        cursor: pointer;
    }

    .navigation {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        width: 100%;
        max-width: 100%;
        overflow-y: auto;
        z-index: 10;
        background: #F5F5F5;
    }

    .off-canvas--show {
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    .navigation ul {
        display: block;
        width: 100%;
    }

    .navigation ul li a {
        display: block;
        text-align: center;
        padding: 10px 20px;
    }
}
