/*.top-contact-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    padding: 5px 20px;
    background-color: rgb(52,90,150);
    width: 100%;
    height: 50px;
}

.top-contact-bar .contact-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 1em;
    text-decoration: none;
    color: white;
    -webkit-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.top-contact-bar .contact-item:hover {
    opacity: 0.8;
}

.top-contact-bar .contact-item svg {
    width: 36px;
    height: 36px;
    fill: white;
}

@media (max-width: 600px) {
    .top-contact-bar {
        padding: 12px 20px;
    }
    .top-contact-bar .contact-item svg {
        width: 25px;
        height: 25px;
    }
    .top-contact-bar .contact-item {
        font-size: 0.9em;
    }
}

@media (max-width: 500px) {
    .top-contact-bar .contact-item svg {
        width: 20px;
        height: 20px;
    }
    .top-contact-bar .contact-item {
        font-size: 12.5px;
    }
}

@media (max-width: 400px) {
    .top-contact-bar .contact-item svg {
        width: 20px;
        height: 20px;
    }
    .top-contact-bar .contact-item {
        font-size: 10px;
    }
}*/

/************************************************************************************************/
/************************************************************************************************/

.fondHautPageSite,.fondHautPageSiteAutrePage,.fondHautPageSiteScroll{
    position: fixed;
    width: 100%;
    top:0px;/**** 50px;****/
    height: 110px;
    z-index: 1000000;
    background: white;
    background-repeat: repeat-x;
    transition: top 0.35s ease, background-color 0.5s ease;
    -moz-transition: top 0.35s ease, background-color 0.5s ease;
    -webkit-transition:top 0.35s ease, background-color 0.5s ease;
    -o-transition:top 0.35s ease, background-color 0.5s ease;
}

.fondHautPageSiteAutrePage{
    background: rgb(252,252,252);
}

.fondHautPageSiteScroll{
    top:0px;
    position: fixed;
    z-index: 1000000;
    background: white;
    -webkit-box-shadow:-2px 13px 29px -8px rgba(0,0,0,0.4);
    box-shadow:-2px 13px 29px -8px rgba(0,0,0,0.4);
}

/***********************************/

.imageLogoLcr{
    position: absolute;
    left:15px;
    top:10px;
    width: 130px;
}

/*********************************************/
@media only screen and (max-width: 1200px){
    .fondHautPageSite,.fondHautPageSiteAutrePage,.fondHautPageSiteScroll{
        position: absolute;
        top: 0px;/*50px;*/
        border:0px solid red;
    }

    .imageLogoLcr{
        top: 10px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 140px;
    }
}