
/*HEADER-STYLE*/
.header{
    background-color:#fff;
}
.header.sticky{
    padding-bottom: 69.97px;
}
.header .topbar{
    display:flex;
    width:100%;
    height:39px;
    align-items:center;
    font-size:10px;
    font-family:var(--font-3);
    letter-spacing: 1px;
    text-transform:uppercase;
    color:#fff;
    background-color:var(--color-2);
}
.header .topbar .topbar-item:nth-last-child(2){
    padding-left: 31px;
}
.header .topbar .topbar-item:last-child{
    padding-left: 43px;
}
.header .topbar .topbar-contact a{
    color: #fff;
}
.header .site-logo{
    display:flex;
    justify-content:center;
    align-items:center;
    padding-top:39px;
    padding-bottom:0;
    border-bottom: 1px solid #f1ecfd;
}

.header .menu .menu-list{
    display:flex;
    width:1061px;
    margin:0 auto;
    justify-content:center;
    align-items:center;
}
.header .menu-list .list{
    padding-right:85px;
}
.header .menu-list .list:last-child{
    padding-right:0;
}
.header .menu-list a{
    position:relative;
    font-size: 14px;
    font-family: var( --font-1);
    text-transform: uppercase;
    color:var(--color-4);
}
.header .menu-list a:after{
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 20px;
    background-color: var(--color-3);
    transition: width 0.3s;
}
.header .menu-list a:hover:after{
    width:100%;
}
.header .menu-list .active a:after{
    display:block;
    width:100%;
    content: "";
    position: absolute;
    height: 2px;
    top:24px;
    left: 0;
    bottom: -8px;
    background-color:var(--color-3);
}
.header .navigation{
    top: -150px;
    transition: all ease-in-out 300ms;
}
.header .navigation.fixed-top{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0px 0px 5px 0px #959595;
    transition: all ease-in-out 300ms;
}
.header .navigation .menu > .menu-list > li > a {
    padding-top: 28px;
    padding-bottom: 28px;
    display: block;
}
.header .list-item{
    position: relative;
}
.header .menu-list .sub-menu {
    display: none;
    position: absolute;
    z-index: 1;
    background: var(--color-2);
    color: #fff;
    top: 70px;
    width: 280px;
}
.header .list-item:hover .sub-menu{
    display: block;
}
.header .menu-list .sub-menu li {
    padding: 0;
}

.header .menu-list .sub-menu li a {
    color: #fff;
    padding: 10px 15px;
    display: block;
}
.header .menu-list .sub-menu li a:hover{
    background-color: var(--color-1);
}
.header .menu-list .sub-menu li a:hover:after{
    content: none;
}

/*MENU-MOBILE-STYLE*/
.header .menu-mobile .menu-mobile-list{
    border-top:1px solid #ededed;
}
.header .menu-mobile .menu-mobile-top{
    display:none;
    position:relative;
    justify-content:space-between;
    align-items:center;
}
.header .menu-mobile .menu-mobile-list{
    display:none;
}

/*TOGGLE-MENU-STYLE*/
.header .menu-mobile-top .toggle-menu{
    display: none;
    justify-content:center;
    align-items:center;
    position:relative;
    width:35px;
    height:35px;
    cursor:pointer;
    border-radius:3px;
    margin-right: 25px;
    border:1px solid var(--color-1);
    transition: all .5s ease-in-out;
}
.header .toggle-menu .burger{
    position:absolute;
    width:25px;
    height:3px;
    border-radius:3px;
    background-color:var(--color-1);
    transition: all .5s ease-in-out;
}
.header .toggle-menu .burger-menu-1{
    transform:translateY(-8px);
}
.header .toggle-menu .burger-menu-3{
    transform:translateY(8px);
}

/*RESPONSIVE*/
@media screen and (max-width: 1245px){
    .header .menu .menu-list{
        width:992px;
        margin:auto;
    }
    .header .menu-list .list{
        padding-right:65px;
    }
    .header .menu-list .last-item{
        padding-right:0;
    }  
}

@media screen and (max-width: 992px){
    .header .menu .menu-list{
        width:100%;
    }
    .header .site-logo a{
        width:80%;
    }
    .header .site-logo a img{
        margin:auto;
    }
    .header .menu-list .list{
        padding-right:31px;
    }
    .header .menu-list .last-item{
        padding-right:0;
    }  
    .header .menu-mobile .mobile-menu-list{
        display:none;
    }
}
@media screen and (max-width: 991px) {
    .menu-mobile{
        top: -150px;
    }
    .menu-mobile.fixed-top {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 10;
        background: #fff;
        box-shadow: 0 0 5px 0px #a3a3a3;
        transition: top ease-in-out 300ms;
    }
}
@media screen and (max-width: 768px){
    .header .topbar{
        justify-content:center;
        align-items:center;
    }
    .header .site-logo a{
        width:75%;
    }
    .header .navigation{
        display:none;
    } 
    .header .site-logo{
        display:none;
    }
    .header .menu-mobile .menu-mobile-top{
        display:flex;
        justify-content: center;
    }
    .header .menu-mobile .menu-mobile-list{
        display:none;
        font-family: var(--font-1);
        text-transform: uppercase;
        padding:20px 0;
        background-color: var(--color-2);
    }
    .header .menu-mobile-list .list{
        padding-right:0;
    }
    .header .menu-mobile .toggle-menu{
        display: flex;
        position: absolute;
        right: 0;
    }
    .toggle-menu.active .menu-mobile-list{
        display: block;
    }
    .header .menu-mobile-list a{
        position:relative;
        font-size: 15px;
        color: #fff;
        display: block;
        padding: 10px 15px;
    }
    .header .menu-mobile-list .list a:hover{
        background-color:var(--color-1);
    }
    .header .menu-mobile-list .sub-menu {
        padding: 0 15px;
    }
    
    .header .menu-mobile-list .sub-menu a {
        text-transform: none;
    }
}

@media screen and (max-width:576px){
    .header .topbar{
        flex-direction:column;
    }
    .header .topbar .topbar-contact{
        padding-left:0px;
        padding-right:0px;
    }
    .header .topbar .topbar-horaire{
        display:none;
    }
}
/*HEADER-STYLE*/


.page-header {
    text-align: center;
    padding: 35px 15px;
}

.page-header .page-title {
    font-family: var(--font-6);
    font-size: 40px;
    margin-bottom: 15px;
}

.page-header .breadcrumbs {
    font-family: var(--font-4);
    font-size: 20px;
}