<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ---------------------------------------------- */
/*                   GÉNÉRALES                    */
/* ---------------------------------------------- */
body, html {
    height: 100%;
    margin: 0;
    color: #444;
}
#logo {
    width: 100%;
    max-width: 200px;
    height: auto;
}


/* ---------------------------------------------- */
/*                    IMAGES                      */
/* ---------------------------------------------- */
.bgimg {
    position: relative;
    opacity: 0.65;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#main_top { min-height: 70%;margin-bottom: 20px; width: calc(100% - 375px); float:right;}
#main_bottom { min-height: 40%; }
.bgimg_section { min-height: 400px; }
#entete_ms{width: 100%;}

/* ---------------------------------------------- */
/*                   SECTIONS                     */
/* ---------------------------------------------- */
.partieSection{max-width: 1600px;}

.sections {
    color: #333;
    background-color:white;
    text-align:center;
    padding:50px 80px;
    text-align: justify;
}
.wrapper_sections {padding-left: 325px;}
.titre_section {
    position: relative;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 5px;
}
.titre_section::after {
    content: "";
    position:absolute;
    left:0; right:0;
    top:100%;
    margin:10px auto;
    width: 75px;
    height:2px;
}
.no_bgimg {padding:20px 80px;}
.no_bgimg hr {
    width: 50%;
    opacity: 0.7;
}


/* ---------------------------------------------- */
/*                     MENU                       */
/* ---------------------------------------------- */
#toggle_menu {
    position: fixed;
    font-size: 24px;
    top: 25px;
    left: -50px;
    z-index: 1000;
    -webkit-transition: .5s all ease-out;
    -moz-transition: .5s all ease-out;
    transition: .5s all ease-out;
}
#toggle_menu a {
    padding: 13px 15px;
    border-radius: 75px;
}
#toggle_menu.menu_active {
    left: unset !important;
    right: 25px !important;
    -webkit-transition: 1s all ease-out;
    -moz-transition: 1s all ease-out;
    transition: 1s all ease-out;
}

.sidebar {
    position: fixed;
    overflow: hidden;
    top: auto;
    left: 0;
    width: 375px;
    height: 100vh;
    background: rgba(32,32,32,1);
    box-shadow: 1px 0px 4px #333333;
    padding: 50px 0 0;
    z-index:999;
    -webkit-transition: .5s all ease-out;
    -moz-transition: .5s all ease-out;
    transition: .5s all ease-out;
}
.sidebar__inner {
    width: 350px;
    height: 100%;
    overflow: hidden;
    top: auto;
    left: auto;

    position: relative;
}
.sidebar.sidebar_active {
    width: 100% !important;
    left: 0 !important;
}
.sidebar.sidebar_active .sidebar__inner {
    width: 100%;
}

#sidemenu {
    list-style: none;
    padding: 15px 20px 10px;
}
#sidemenu li { padding: 7px; }
#sidemenu a { text-decoration: none !important; }
#sidemenu a, #sidemenu a:visited, #sidemenu a:focus {
    font-size: 22px;
    /*color: #fff;*/
    -webkit-transition: .5s all ease-out;
    -moz-transition: .5s all ease-out;
    transition: .5s all ease-out;
}
#sidemenu a:hover, #sidemenu li.active a:focus { color: #0069aa; }
#sidemenu li.active a { color: #0069aa; }

#medias_sociaux {
    position: absolute;
    bottom: 25px;
    text-align: center;
    width: 100%;
}
#medias_sociaux a {
    font-size: 23px;
    margin-left: 3%;
    margin-right: 3%;
}

/* ---------------------------------------------- */
/*                    FOOTER                      */
/* ---------------------------------------------- */
.footer {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    background-color:white;
    text-align:center;
    padding: 20px 80px 10px;
}
#footer_left, #footer_right {
    font-size: 14px;
    padding-top: 15px;
}
#footer_left {
    text-align: left;
}

#footer_right {
    text-align: right;
}


/* ---------------------------------------------- */
/*                   RESPONSIVE                   */
/* ---------------------------------------------- */
@media (max-width: 1200px) {
    .bgimg {
        background-attachment: scroll;
    }
    .sidebar {
        padding-left: 20px;
        width: 300px;
    }
    .wrapper_sections {
        padding-left: 300px;
    }
    #logo {
        max-width: 175px;
    }
    .sidebar__inner {
        width: 270px;
    }
    #main_top {width: calc(100% - 300px); }
}

@media (max-width: 1000px) {
    #main_top {width: 100% ; }
    #toggle_menu {
        left: 15px;
        -webkit-transition: .5s all ease-out;
        -moz-transition: .5s all ease-out;
        transition: .5s all ease-out;
    }
    .sidebar {
        left: -400px;
        -webkit-transition: .5s all ease-out;
        -moz-transition: .5s all ease-out;
        transition: .5s all ease-out;
    }
    .wrapper_sections {
        padding-left: 0px;
    }
    #sidemenu { padding-top: 35px; margin: 0 !important; padding-left: 0 !important; }
    #sidemenu li { text-align: center; }
    #footer_left, #footer_right {
        text-align: center;
    }
    .sections {
        padding: 15px 50px;
    }
}
</pre></body></html>