@charset "UTF-8";
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */button,hr,input{overflow:visible}audio,canvas,progress,video{display:inline-block}progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}*::-moz-selection {background:#fff;color:#687581;text-shadow: rgba(0, 0, 0, 0.2) 0 1px 1px;}
*::-webkit-selection {background:#fff;color:#687581;text-shadow: rgba(0, 0, 0, 0.2) 0 1px 1px;}
*::selection {background:#fff;color:#687581;text-shadow: rgba(0, 0, 0, 0.2) 0 1px 1px;}

/*!----------------------------------------------*\
/* STYLE GENERAL                                 *|
/*-----------------------------------------------*/
html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
*,*::before,*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
strong{
    font-weight: 700;
}
h1,h2,h3,h4,p,figure,figcaption{
    margin: 0;
    padding: 0;
}

.clear{
    clear:both;
}
.cleara:after {
    content:"";
    display:table;
    clear:both;
}

.wrapper {
    margin: 0 auto;
    width:100%;
    max-width: 1200px;
}
.no-display{
    display:none;
}
a {
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}
/*a[itemprop=telephone]{
    text-decoration: none;
}
a[href^="tel"] {
    text-decoration: none;
}
*/
img{
    display:block;
    max-width:100%;
    height:auto;
}

.lazyload {
    -webkit-filter: blur(50px) saturate(5) opacity(0.5);
    filter: blur(50px) saturate(5) opacity(0.5);

    -webkit-transition: blur 400ms ease-out;
    -o-transition: blur 400ms ease-out;
    transition: blur 400ms ease-out;
}
.loaded {
    -webkit-filter: blur(0) saturate(1) opacity(1);
    filter: blur(0) saturate(1) opacity(1);
}
img["data-src"],
img["data-srcset"] {
  display: block;
  min-height: 1px;
}
/*!----------------------------------------------*\
/* ANIMATIONS ET EFFETS CSS                      *|
/*-----------------------------------------------*/
.btn-css-hover,.Rbch{
    -webkit-transition:opacity .25s,-webkit-box-shadow .5s,-webkit-filter .25s ease;
    transition:opacity .25s,-webkit-box-shadow .5s,-webkit-filter .25s ease;
    -o-transition:box-shadow .5s,opacity .25s,filter .25s ease;
    transition:box-shadow .5s,opacity .25s,filter .25s ease;
    transition:box-shadow .5s,opacity .25s,filter .25s ease,-webkit-box-shadow .5s,-webkit-filter .25s ease;
}
.btn-css-hover:hover,.btn-css-hover:focus,
.Rbch:hover,.Rbch:focus{
    -webkit-box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
.btn-css-hover:active,.Rbch:active{
    -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}


/* ANIMATION INTRO IMAGE 1 */
.bkgCycleIntro{
    animation-name: bkgCycleIntro;
    -webkit-animation-name: bkgCycleIntro;

    animation-duration: .8s;
    -webkit-animation-duration: .8s;

    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;

    visibility: visible !important;
}

@keyframes bkgCycleIntro {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0.0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes bkgCycleIntro {
    0% {
        -webkit-transform: scale(0);
        opacity: 0.0;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}
/**
* ----------------------------------------
* animation kenburns-top
* ----------------------------------------
*/
   .kenburns-top {
      -webkit-animation: kenburns-top 7s ease-out forwards;
    animation: kenburns-top 7s ease-out forwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
  }
   @-webkit-keyframes kenburns-top {
    0% {
      -webkit-transform: scale(1) translateY(0);
      transform: scale(1) translateY(0);
      -webkit-transform-origin: 50% 16%;
      transform-origin: 50% 16%;
    }
    100% {
      -webkit-transform: scale(1.25) translateY(-15px);
      transform: scale(1.25) translateY(-15px);
      -webkit-transform-origin: top;
      transform-origin: top;
    }
  }
   @keyframes kenburns-top {
    0% {
      -webkit-transform: scale(1) translateY(0);
      transform: scale(1) translateY(0);
      -webkit-transform-origin: 50% 16%;
      transform-origin: 50% 16%;
    }
    100% {
      -webkit-transform: scale(1.25) translateY(-15px);
      transform: scale(1.25) translateY(-15px);
      -webkit-transform-origin: top;
      transform-origin: top;
    }
  }

/* visible pour les lecteurs d'écran et robots */
.visually-hidden {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding:0 !important;
    border:0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
}
/*!----------------------------------------------*\
/* POLICES et TITRAGES                           *|
/*-----------------------------------------------*/
body {
    display:block;
    margin: 0 auto;
    max-width: 2000px;
    font:16px/26px 'Open Sans', sans-serif;
    color: #fff;
    background-color:#687581;
}
a:link,a:visited {
    color: currentColor;
}

article header h1,.like-h1 {
    font:48px/52px 'Crimson Text', serif;
    text-align: center;
    margin-bottom:52px;
    color: #fff;
}
.content h2,h2 {
    font:33px/52px 'Open Sans', sans-serif;
    color: #fff;
}
.content h3,h3 {
    font:23px/26px 'Open Sans', sans-serif;
    color: #fff;
}
/* Exemples : Titres <h2>, <h3>, ...  dans page accueil */
.like-h1{

}
.content h2,
.content h3{
    margin-top: 26px;
}
.content a{
    text-decoration: underline;
}
/*!----------------------------------------------*\
/* ENTETE                                        *|
/*-----------------------------------------------*/
header[role=banner]{

}
.header-top-container{
    z-index: 3;
    position: fixed;
    top:0;
    left:0;
    right:0;
    margin: 0 auto;
    height: 70px;
    background-color: #2c5476;
}
.header-top-inside{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}



.logo {
    display:block;
    margin-right: 180px;
}
/*!----------------------------------------------*\
/* MENU SITE                                     *|
/*-----------------------------------------------*/
.navDesktop{
    -webkit-box-flex:2;
    -ms-flex:2 1 0%;
    flex:2 1 0%;
}
.navDesktop ul
{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;

}
.navDesktop ul li
{
}
.navDesktop ul li a {
    display:block;
    position: relative;
    font:400 16px/1 'Open Sans', sans-serif;
    text-decoration: none;
    text-align: center;
    min-width: 90px;
    color: #7bb0dc;
    -webkit-transition: color .5s;
            -webkit-transition:color .5s;
            -o-transition: color .5s;
            transition: color .5s;
}

.navDesktop ul li a:after{
    content:'';
    position: absolute;
    bottom:-20px;
    left:0;
    right:0;

    width: 0;
    height: 9px;
    margin: 0 auto;

    opacity: 0;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFoAAAAJCAMAAACFbMtpAAAAhFBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8g2+bRAAAAK3RSTlMAQdGxUOHAoHEQA/zrybylkIZsZTAsIPXESAqsmFhUOSccFpuPIdiSfV3X85gLfQAAAOZJREFUKM+1zdeOhDAMBVAHEkqAhCSE3suUzf//33pH4pXRSjPn6Ur2teHZr3BpHWatX4lnzL7C3K3NdN3i4wxJJU0URSrP8z4MQ+kjEQRB5iHGvCNlziUbOawiiRvDaZmi1Lkqff5NUYbLwkcS6z2eUXjObFUKqp7PT20cx0tZlrYoCoIopSM1buturBbCVwcxsZEiqG+p6Fk3jLhAEK5brC1Yb89bTVLDO34q8ek06GEFHRDeaNMsADTJ7GWv5fAOkfsZeVZ3Z6b+Az7G7kHlJfcWPo/rx86ajMJX/FQcvuSu4B9+Af8SD8iHOLnTAAAAAElFTkSuQmCC") no-repeat transparent;

    -webkit-transition:all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.navDesktop ul li a:hover,
.navDesktop ul li a:active,
.navDesktop ul li a:focus,
.navDesktop li.active a{
    color:#fefefe;
    outline: none;
}

.navDesktop ul li:hover a:after,
.navDesktop ul li:active a:after,
.navDesktop ul li:focus a:after,
.navDesktop li.active a:after{
    opacity: 1;
    width: 90px;
}

/*!----------------------------------------------*\
/* SLIDER bckCycle                               *|
/*-----------------------------------------------*/

.bkgCycleRel{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    position: relative;
    max-width: 2000px;
    margin-top: 70px;
    height:450px;
    /* -30% de hauteur */
    height: calc((100vw/2000)*( 700 - ( 700 * .30 ) ) );

    /* fond slider */
    background: rgb(123,176,220);
    background: -webkit-radial-gradient(center, ellipse cover, rgba(123,176,220,1) 0%,rgba(44,84,118,1) 100%);
    background: -webkit-radial-gradient(center, ellipse, rgba(123,176,220,1) 0%,rgba(44,84,118,1) 100%);
    background: -o-radial-gradient(center, ellipse, rgba(123,176,220,1) 0%,rgba(44,84,118,1) 100%);
    background: radial-gradient(ellipse at center, rgba(123,176,220,1) 0%,rgba(44,84,118,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7bb0dc', endColorstr='#2c5476',GradientType=1 );
}

.index .bkgCycleRel{
    /* ( largeur du Viewport / largeur de l'image ) * hauteur de l'image*/
    height: calc((100vw/2000)*700);
}

.bkgCycle{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bkgCycle li{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;

    opacity: 0;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    -webkit-transition: opacity 2s;
    -o-transition: opacity 2s;
    transition: opacity 2s;
}
.bkgCycle .bkgActived{
    opacity: 1;
    text-indent:initial;
}

.slogan{
    z-index: 2;
    padding: 30px 30px 60px 15%;
    margin-top: auto;
    font:28px/1.1 'Open Sans', sans-serif;
    text-align: center;
    color:#fff;
    background-color: rgba(44,84,118,.5);
}
.slogan-mobile{
    display: none;
    font:28px/1.5 'Open Sans', sans-serif;
    text-align: center;
    color:#fff;
    background-color: rgba(44,84,118,.5);

}
.logoSlider{
    margin-bottom: 60px;
}
.tel{
    font:700 36px/1.1 'Open Sans', sans-serif;
}

/*!----------------------------------------------*\
/* CORPS                                         *|
/*-----------------------------------------------*/
section {
    padding-top: 80px;
    background: url(../images/fond-mnu-graphique.jpg) no-repeat;
    background-position-y:13%;
}

article {

}


.content{

}
.content ul{
    margin: 2em;
    list-style: inherit;
    text-align: left;
    list-style: square;
}
.content img
{
    margin: 0 10px 10px 0;
}

/*!----------------------------------------------*\
/* PAGE INDEX                                    *|
/*-----------------------------------------------*/
.index article{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    width: 100%;
    height: 400px;
    margin-bottom: 50px;
}
.index .content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px 0;
    max-width: 980px;
    /*height: 300px;*/
    border:2px solid #fff;

    font:300 16px/24px 'Open Sans', sans-serif;
    text-align: justify;
    color:#fff;
}
.index .content h2{
    font: 400 42px/1 'Crimson Text', serif;
    margin: 0 0 25px 0;
    text-transform: uppercase;
}
.index .content h2::first-letter {
  font-size: 130%;
}


.art-l{
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.art-r{
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.art-l .content{
    padding-left: 34%;
    padding-right: 50px;
}
.art-r .content{
    padding-right: 34%;
    padding-left: 50px;
}

.js-bkg{
    background-repeat: no-repeat;
}
.bkgArticle-l{

    background-position-x: left;
}
.bkgArticle-r{

    background-position-x: right;
}
a.btSite{
    display:block;
    margin-top: auto;
    -ms-flex-item-align: end;
    align-self: flex-end;
    border:1px solid #fff;
    padding: 0 20px;
    font:600 24px/2 'Crimson Text', serif;
    text-decoration: none;
}

/* Texte de la page index */
.page-site{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

    max-width: 850px;
    height: auto;
}
.page-site .content{
    border: none;
}
.page-site a.btSite{
    margin: 40px 0 0 0;
}
.article-container{
    padding: 150px 0 180px 0;
    background-position-x:center;
    background-position-y:bottom;
    background-size: cover;
}
.article-container article{
    height: auto;
}
.article-container article header h1{
    text-align: center;
    margin-bottom: 10px;
}
.article-container .sous-titre{
    font: 36px/1.1 'Crimson Text', serif;
    text-align: center;
}
.article-container .sous-titre:after{
    content: '';
    display:block;
    width: 200px;
    height: 20px;
    margin: 30px auto 90px;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAAAUCAMAAAD/eoL4AAAAQlBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////8IX9KGAAAAFXRSTlMAvXIRMa7f84NPoWLRHj/Kj1npmCa7ygoxAAAB60lEQVRIx93V3W7jIBAF4AEDBozNn8/7v+oenCrdpllFSrNS3O8iUYxi5jAYi4hZ5ZV8l69qg7qdIgd5NeOALi+xxI0FK9SvE6BZZPkiQousum/yCqvvQSQjAkEemWil3dBGYVhID97I6hAd5uyARa7MpDFMf/e9AzkDinOL8XpYKAwbGdpXmuhxaQ0ZWjDkUnokS4pyIkdtJjzWJslICh/SMslgLPYKmkXP5XJt1w4fCuBZxmMzNUeJsiJLkXopCnCcIIH0dZk/V9lTYcCbfI6+p7Oy8QOHpkCO8zmkTWT8XIRJmFSlGaRwSIkF2O81O7qpuLMUT9fufTavYxDTgCjPmeiy3XZZABXtUWfSXjUAzVYJTBK0EancZHmMOuv9Maqsd8Dx7+suesY+4xJh2+XnfAWwj9vWolqLuta6eKu2I+/GL6265rXq7dyUD6vICD9XIz+1qezlVWxx+Dyb1rD4UnxdhSalEYWM9r14HSa5WGeg50XeygLtgCp3GAQ4uSMCqmOV9xJh0/0g7Ee+e8BbKIU3awiFEus/jnlX4KY7I94WI2cwzqE9A9CAmuS8DHIC0OABpHMs/n0WpC28jgCsnFcoep9m9DplzFXOzaO5ILKf+SE5JABnfj6uHODkN/B4w7feU7KV/+8PATEqQKJvbyEAAAAASUVORK5CYII=") no-repeat;
}

a.btAvisDeces{
    display:block;
    border:1px solid #fff;
    padding: 0 20px;
    font: 48px/2 'Crimson Text', serif;
    text-transform: uppercase;
    text-decoration: none;
}
a.btAvisDeces::first-letter{
    font-size: 130%;
}


.avis-deces-container{
    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;

    height: 380px;
    background-color: #f99e67;
    background-position: center center;
}
/*!----------------------------------------------*\
/* ASIDE                                         *|
/*-----------------------------------------------*/
aside {

}
aside h2{
    font: 36px/1.1 'Crimson Text', serif;
    text-transform: uppercase;
}
aside h2::first-letter {
  font-size: 130%;
}

.info-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;

    /*max-width: 900px;*/
    margin: 20px auto 40px;
}

.infofoot{text-align:center;padding:20px 0;}
    .infofoot hr{color:#fff;max-width:300px;margin:10px auto;}

.logoAdr{
    display:block;max-width:100%;height:auto;margin:0 auto;
}
.bloc {
    padding-top: 80px;
    font:18px/1.5 'Open Sans', sans-serif;
}
.tal{
    text-align: left;
}
.tar{
    text-align: right;
}
.tel-coord{
    font-weight:700;
}
/*!---------------------------------------------*\
/* MAP GOOGLE API                               *|
/*----------------------------------------------*/
#map-canvas {
    width: 100%;
    height: 300px;
    margin: 0 auto;
    background-color: #e5f2fe; /* Pour IE */
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 41 32" fill="#efefef"><path d="M9.24 31.927c.008.006.02.003.03.01.072.036.148.063.23.063.044 0 .088-.006.132-.018L20.5 29.016l10.868 2.966c.044.012.088.018.132.018.082 0 .158-.027.23-.065.01-.005.02-.003.03-.01l9-5.5c.19-.116.28-.347.22-.562l-4.984-17.5c-.04-.147-.148-.267-.29-.326-.142-.057-.3-.048-.436.026l-4.962 2.784c-.24.135-.326.44-.19.68s.438.328.68.192l4.41-2.476 4.707 16.526-8.015 4.9-1.904-15.232c-.034-.275-.293-.466-.56-.434-.272.034-.467.284-.433.558l1.907 15.26L21 28.115v-2.73c0-.276-.224-.5-.5-.5s-.5.224-.5.5v2.73l-9.91 2.705 1.906-15.258c.034-.274-.16-.524-.434-.558-.272-.032-.524.16-.56.434L9.1 30.668l-8.015-4.897L5.792 9.247l4.41 2.475c.24.135.545.05.68-.19.136-.24.05-.545-.19-.68L5.73 8.063c-.134-.075-.293-.085-.436-.026s-.25.178-.29.326L.02 25.864c-.062.216.028.446.22.563l9 5.5zm10.92-8.56c.097.09.218.133.34.133.12 0 .24-.043.336-.13C21.17 23.07 29 15.883 29 8.5 29 3.733 25.267 0 20.5 0S12 3.733 12 8.5c0 7.254 7.828 14.56 8.16 14.868zM20.5 1C24.775 1 28 4.224 28 8.5c0 6.097-5.993 12.337-7.497 13.807C19.003 20.82 13 14.497 13 8.5 13 4.224 16.225 1 20.5 1zM25 8.5C25 6.02 22.98 4 20.5 4S16 6.02 16 8.5s2.02 4.5 4.5 4.5S25 10.98 25 8.5zM20.5 12c-1.93 0-3.5-1.57-3.5-3.5S18.57 5 20.5 5 24 6.57 24 8.5 22.43 12 20.5 12z"/></svg>') no-repeat center #e5f2fe;
    background-size: 50% 50%;
}
/*!----------------------------------------------*\
/* FOOTER:                                       *|
/*-----------------------------------------------*/
footer {
    padding: 30px 0;
    font: .8em/1.5em -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",Arial,sans-serif;
    color: #fefefe;
    background-color: #2c5476;
}

footer a {
    text-decoration: underline;
    color: inherit;
}
.flxw-footer{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient:horizontal;
  -webkit-box-direction:normal;
  -ms-flex-direction:row;
  flex-direction:row;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  justify-content:space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

  padding:0 2vw;
}
/*!500px*/
@media screen and (max-width: 31.25em) {
    footer p{
        font-size:2.8vw;
    }
}/*!----------------------------------------------*\
/* MENTIONS LEGALES                              *|
/*-----------------------------------------------*/
#full article {
    width: 100%
}
.mentions-legales article
{
    float:none;
    display:block;
    width: 100%;
    padding: 2% 5%;
    font: 1em/1.5 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",Arial,sans-serif;
    text-align: justify;
}
.mentions-legales article a
{
    text-decoration: underline;
    color: currentColor;
}
.mentions-legales article h2
{
    display: block;
    margin: 24px 0;
    margin:2.5rem 0 1.7rem 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",Arial,sans-serif;
    font-size: 32px;
    line-height: 48px;
    font-size: 2rem;
    line-height: 3rem;
    text-align: left;
    border-bottom: none;
}
.mentions-legales article > h2:first-child
{
    font-size: 24px;
    line-height: 64px;
    margin: 32px 0 20.8px 0;
    font-size: 1.5rem;
    line-height: 4rem;
    margin: 2rem 0 1.3rem 0;
    padding-bottom: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    background-color: #000;
}
.mentions-legales article p{
    line-height: 24px;
    margin: 24px 0;
    line-height: 1.5rem;
    margin: 1.5rem 0;
}
/*!---------------------------------------------*\
/*             RESEAUX SOCIAUX:                 *|
/*----------------------------------------------*/
ul.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 30px;    /*! Element référant */
}

/* Texte Partager sur : */
ul.social li.reseau-social {
    padding: 0 0.5em 0 0;
}
ul.social li.reseau-social:last-child {
    padding-right: 0;
}

ul.social li.reseau-social a:hover,
ul.social li.reseau-social a:focus {
    outline: none;
}
ul.social li.reseau-social:active {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}
ul.social li.reseau-social svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}
ul.social li.reseau-social:hover svg {
    fill: #efefef;
    border-radius: 50px;
}
ul.social li.reseau-social:nth-child(1) svg:hover{
    background-color: #000;
}
ul.social li.reseau-social:nth-child(2) svg:hover{
    background-color: #3b5998;
}
ul.social li.reseau-social:nth-child(3) svg:hover{
    background-color: #1da1f2;
}
ul.social li.reseau-social:nth-child(4) svg:hover{
    background-color: #ea4335;
}

/*!850px*/
@media screen and (max-width: 53.125em) {
  footer .flxw-footer{
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -ms-flex-direction:column;
    flex-direction:column;
  }
  footer ul.social {
    -webkit-box-ordinal-group:2;
    -ms-flex-order:1;
    order:1;
    margin:0 auto;
    font-size: 45px;    /*! Element référant */
  }
  footer p{
    -webkit-box-ordinal-group:3;
    -ms-flex-order:2;
    order:2;
    font-size:2.8vw;
    margin: 15px auto 0;
  }
}
/*!----------------------------------------------*\
/* ACCORDEON                                     *|
/*-----------------------------------------------*/
/*!----------------------------------------------*\
/* VARIABLES CSS                                 *|
/*-----------------------------------------------*/
:root{
}
.js-accordion{
    font-size:14px;
}
.accordeon-accordion__header,
.accordeon-noanim-accordion__header{
    font-family:inherit;
    font-size:1.5em;
    font-weight:normal;
    line-height:1.8462;
    position:relative;
    display:block;
    width:100%;
    margin:1em 0 0 0;
    padding:.25em 2.25em .25em .5em;
    cursor:pointer;
            -webkit-transition:background .3s;
            -o-transition:background .3s;
            transition:background .3s;
    text-align:left;
    color:#efefef;
    border:0;
    border-radius: 3px;
    background-color:#2c5476;
}
.accordeon-accordion__header::after,
.accordeon-noanim-accordion__header::after{
    position:absolute;
    top:32%;
    right:.75em;
    display:inline-block;
    width:1em;
    height:1em;
    content:'';
    -webkit-transition:all 200ms;
    -o-transition:all 200ms;
    transition:all 200ms;
    background-image:url(img/rond-plus.svg);
    background-repeat:no-repeat;
    background-size:100%;
}
[aria-expanded='true'].accordeon-accordion__header::after,
[aria-expanded='true'].accordeon-noanim-accordion__header::after{
    -webkit-transform:rotate(180deg);
    -ms-transform:rotate(180deg);
    transform:rotate(180deg);
    -webkit-transform-origin:50% 50%;
    -ms-transform-origin:50% 50%;
    transform-origin:50% 50%;
    background-image:url(img/rond-moins.svg);
}
.accordeon-accordion__header:hover,
.accordeon-noanim-accordion__header:hover,
.accordeon-accordion__header:focus,
.accordeon-noanim-accordion__header:focus{
    color:#efefef;
    outline:none;
    background-color:#111;
}
[aria-expanded='true'].accordeon-accordion__header,
[aria-expanded='true'].accordeon-noanim-accordion__header{
    color:#fff;
    background-color:#000;
}
.accordeon-accordion__title,
.accordeon-noanim-accordion__title{
    position:absolute;
    overflow:hidden;
    clip:rect(0 0 0 0);
    width:1px;
    height:1px;
    margin:-1px;
    padding:0;
    border:0;
}
.accordeon-accordion__panel{

    font-size:1.25em;
    display:block;
    visibility:visible;
    overflow:hidden;
    margin:1em 0 0 0;
    padding:.25em;
            -webkit-transition:visibility 0s ease, max-height 1s ease, opacity 1s ease;
            -o-transition:visibility 0s ease, max-height 1s ease, opacity 1s ease;
            transition:visibility 0s ease, max-height 1s ease, opacity 1s ease;
            -webkit-transition-delay:0s;
            -o-transition-delay:0s;
            transition-delay:0s;
    opacity:1;
    color:#fff;
    background-color:#687581;
}
.accordeon-noanim-accordion__panel{
    padding:.25em;
    color:#fff;
    background-color:transparent;
}
.accordeon-accordion__panel ul{
    margin: 2em;
    list-style: inherit;
    text-align: left;
    list-style: square;
}
[aria-hidden=true].accordeon-accordion__panel{
    display:block;
    visibility:hidden;
    max-height:0;
    margin:0;
    padding:0;
            -webkit-transition-delay:1s, 0s, 0s;
            -o-transition-delay:1s, 0s, 0s;
            transition-delay:1s, 0s, 0s;
    opacity:0;
}
.accordeon-noanim-accordion__panel{
    display:block;
}
[aria-hidden=true].accordeon-noanim-accordion__panel{
    display:none;
}

/*!----------------------------------------------*\
/* GALERIE IMAGE SIMPLE MODEL FLEXBOX            *|
/*-----------------------------------------------*/
.galerie.simple{
    padding-top: 2rem;

    display:-ms-flexbox;
    display:-webkit-box;
    display:flex;
    max-width:1200px;
    margin:0 auto;
    text-align:center;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    -ms-flex-align:start;
    -webkit-box-align:start;
    align-items:flex-start;
    -ms-flex-pack:justify;
    -webkit-box-pack:justify;
    justify-content:space-between;
}
.galerie.simple a{
    width:calc(100% / 4 - 8px / 2);
    margin:0 0 8px 0;
}
.galerie.simple figure{
    padding:0 0 75% 0;
}
.galerie.simple img{
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    display:block;
}
@media screen and (max-width: 37.5em){
    .galerie.simple a{
        width:calc(100% / 2 - 8px / 2);
        margin-bottom:5px;
    }
}
@media screen and (max-width: 25em){
    .galerie.simple a:nth-of-type(3n+1){
        width:100%;
    }
}
/*!----------------------------------------------*\
/* CODE CSS COMMUN A TOUTES LES GALERIES         *|
/*-----------------------------------------------*/
.galerie{
    background-color:transparent;
}
.galerie a{
    position:relative;
    display:block;
    overflow:hidden;
    height:100%;
    margin:0;
    padding:0;
    -webkit-transition:-webkit-box-shadow .5s;
    transition:-webkit-box-shadow .5s;
    -o-transition:box-shadow .5s;
    transition:box-shadow .5s;
    transition:box-shadow .5s, -webkit-box-shadow .5s;
    -webkit-transition:all 300ms 1ms linear;
    -o-transition:all 300ms 1ms linear;
    transition:all 300ms 1ms linear;
    background-color:#fff;
}
.galerie figure{
    position:relative;
    overflow:hidden;
    width:auto;
    margin:0;
}
.bkgHach{
    background-image:-webkit-linear-gradient(315deg, rgba(0, 94, 32, .5), rgba(0, 94, 32, .5) 25%, transparent 25%, transparent 50%, rgba(0, 94, 32, .5) 50%, rgba(0, 94, 32, .5) 75%, transparent 75%, transparent);
    background-image:-o-linear-gradient(315deg, rgba(0, 94, 32, .5), rgba(0, 94, 32, .5) 25%, transparent 25%, transparent 50%, rgba(0, 94, 32, .5) 50%, rgba(0, 94, 32, .5) 75%, transparent 75%, transparent);
    background-image:linear-gradient(135deg, rgba(0, 94, 32, .5), rgba(0, 94, 32, .5) 25%, transparent 25%, transparent 50%, rgba(0, 94, 32, .5) 50%, rgba(0, 94, 32, .5) 75%, transparent 75%, transparent);
    background-repeat:repeat;
    background-size:8px 8px;
}
.bkgSvg{
    -webkit-transition:background-size 500ms ease-in;
    -o-transition:background-size 500ms ease-in;
    transition:background-size 500ms ease-in;
    background:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 42 32" fill="#efefef" fill-opacity="0.50"><path d="M39.5 6H32c-1.927 0-1.998-1.797-2-2V3c0-1.258-1.39-3-4-3h-9.97c-2.934 0-4 1.794-4 3v.994C12.03 4.076 11.984 6 10 6H2.5C1.12 6 0 7.122 0 8.5v18C0 27.878 1.12 29 2.5 29h6c.276 0 .5-.224.5-.5s-.224-.5-.5-.5h-6c-.827 0-1.5-.673-1.5-1.5V14h8c-.644 1.54-1 3.23-1 5 0 7.168 5.832 13 13 13s13-5.832 13-13c0-1.77-.36-3.46-1.003-5H41v12.5c0 .827-.673 1.5-1.5 1.5h-7c-.276 0-.5.224-.5.5s.224.5.5.5h7c1.38 0 2.5-1.122 2.5-2.5v-18C42 7.122 40.88 6 39.5 6zM21 31c-6.617 0-12-5.383-12-12S14.383 7 21 7s12 5.383 12 12-5.383 12-12 12zm11.75-18c-.074 0-.143.018-.206.047C30.38 8.867 26.022 6 21 6s-9.38 2.868-11.544 7.047c-.063-.03-.132-.047-.206-.047H1V8.5C1 7.673 1.673 7 2.5 7H10c2.368 0 3.02-1.958 3.03-3V3c0-.804.8-2 3-2H26c2.094 0 3 1.324 3 2v1c0 1.038.627 3 3 3h7.5c.827 0 1.5.673 1.5 1.5V13h-8.25zM9.5 5c.276 0 .5-.224.5-.5v-1C10 2.673 9.327 2 8.5 2h-4C3.673 2 3 2.673 3 3.5v1c0 .276.224.5.5.5s.5-.224.5-.5v-1c0-.276.225-.5.5-.5h4c.275 0 .5.224.5.5v1c0 .276.224.5.5.5zM21 10c-4.963 0-9 4.038-9 9s4.037 9 9 9 9-4.038 9-9-4.037-9-9-9zm0 17c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/></svg>') no-repeat;
    background-position:50% 50%;
    background-size:50% 50%;
}
.galerie img{
    display:block;
    width:100%;
    height:auto;
    margin:0;
   -webkit-transition:all 200ms linear;
   -o-transition:all 200ms linear;
   transition:all 200ms linear;
}
.galerie figure:after{
    position:absolute;
    z-index:1;
    top:5%;
    right:4%;
    bottom:5%;
    left:4%;
    display:none;
    display:block;
    content:'';
}
.galerie svg{
    position:absolute;
    top:25%;
    left:33%;
    display:block;
    width:30%;
    height:50%;
            -webkit-transition:all 300ms 0ms linear;
            -o-transition:all 300ms 0ms linear;
            transition:all 300ms 0ms linear;
            -webkit-transform:translate(-50%, -50%) scale(0);
            -ms-transform:translate(-50%, -50%) scale(0);
            transform:translate(-50%, -50%) scale(0);
    fill:#00;
    stroke:#000;
}
.galerie a:hover,
.galerie a:focus{
    cursor:-webkit-zoom-in;
    -webkit-box-shadow:0 8px 16px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19);
    box-shadow:0 8px 16px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19);
}
.galerie a:hover figure:after,
.galerie a:focus figure:after{
    height:auto;
    opacity:.6;
    border-radius:5px;
    background:-webkit-radial-gradient(circle,transparent 50%,#687581 150%),#000;
    background:-o-radial-gradient(circle,transparent 50%,#687581 150%),#000;
    background:radial-gradient(circle,transparent 50%,#687581 150%),#000;
    background-color:#fff;
    -webkit-box-shadow:inset 0 0 100px #000;
    box-shadow:inset 0 0 100px #000;
}
.galerie a:hover svg,
.galerie a:focus svg{
    z-index:1;
            -webkit-transition:all 300ms 100ms linear;
            -o-transition:all 300ms 100ms linear;
            transition:all 300ms 100ms linear;
            -webkit-transform:translate(0, 0) scale(1);
            -ms-transform:translate(0, 0) scale(1);
            transform:translate(0, 0) scale(1);
}
.galerie a:hover img,
.galerie a:focus img{
            -webkit-transition:all 400ms 100ms linear;
            -o-transition:all 400ms 100ms linear;
            transition:all 400ms 100ms linear;
            -webkit-transform:scale(1.1);
            -ms-transform:scale(1.1);
            transform:scale(1.1);
   filter:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /></filter></svg>#filter');
            -webkit-filter:grayscale(100%);
            filter:grayscale(100%);
}
.galerie a:active{
    -webkit-box-shadow:0 0 0 rgba(0, 0, 0, 0);
    box-shadow:0 0 0 rgba(0, 0, 0, 0);
}
/*!---------------------------------------------*\
/* BAGUETTEBOX                                  *|
/*----------------------------------------------*/
#baguetteBox-overlay{position:fixed;z-index:1000000;top:0;left:0;
    display:none;overflow:hidden;width:100%;height:100%;-webkit-transition:opacity .5s ease;-o-transition:opacity .5s ease;transition:opacity .5s ease;opacity:0;background-color:#222;background-color:rgba(0, 0, 0, .8);
}#baguetteBox-overlay.visible{
    opacity:1;
}#baguetteBox-overlay .full-image{position:relative;
    display:inline-block;width:100%;height:100%;text-align:center;
}#baguetteBox-overlay .full-image figure{
    display:inline;height:100%;margin:0;
}#baguetteBox-overlay .full-image img{
    display:inline-block;width:auto;max-width:100%;height:auto;max-height:100%;vertical-align:middle;-webkit-box-shadow:0 0 8px rgba(0, 0, 0, .6);box-shadow:0 0 8px rgba(0, 0, 0, .6);
}#baguetteBox-overlay .full-image figcaption{font-family:sans-serif;line-height:1.8;position:absolute;bottom:0;
    display:block;width:100%;text-align:center;white-space:normal;color:#ccc;background-color:#000;background-color:rgba(0, 0, 0, .6);
}#baguetteBox-overlay .full-image:before{display:inline-block;width:1px;height:50%;margin-right:-1px;
    content:'';
}#baguetteBox-slider{
    position:absolute;top:0;left:0;width:100%;height:100%;-webkit-transition:left .4s ease,-webkit-transform .4s ease;transition:left .4s ease,-webkit-transform .4s ease;-o-transition:left .4s ease,transform .4s ease;transition:left .4s ease,transform .4s ease;transition:left .4s ease,transform .4s ease,-webkit-transform .4s ease;white-space:nowrap;
}#baguetteBox-slider.bounce-from-right{-webkit-animation:bounceFromRight .4s ease-out;animation:bounceFromRight .4s ease-out;
}#baguetteBox-slider.bounce-from-left{-webkit-animation:bounceFromLeft .4s ease-out;animation:bounceFromLeft .4s ease-out;
}@-webkit-keyframes bounceFromRight{
    0%,
    100%{
        margin-left:0;
    }50%{
        margin-left:-30px;
    }
}@keyframes bounceFromRight{
    0%,
    100%{
        margin-left:0;
    }50%{
        margin-left:-30px;
    }
}@-webkit-keyframes bounceFromLeft{
    0%,
    100%{
        margin-left:0;
    }50%{
        margin-left:30px;
    }
}@keyframes bounceFromLeft{
    0%,
    100%{
        margin-left:0;
    }50%{
        margin-left:30px;
    }
}.baguetteBox-button#next-button,
.baguetteBox-button#previous-button{
    top:50%;top:calc(50% - 30px);width:44px;height:60px;
}.baguetteBox-button{font:1.6em sans-serif;
    position:absolute;margin:0;padding:0;cursor:pointer;-webkit-transition:background-color .4s ease;-o-transition:background-color .4s ease;transition:background-color .4s ease;color:#ddd;border:0;border-radius:15%;outline:0;background-color:#323232;background-color:rgba(50, 50, 50, .5);
}.baguetteBox-button:focus,
.baguetteBox-button:hover{
    background-color:rgba(50, 50, 50, .9);
}.baguetteBox-button#next-button{
    right:2%;
}.baguetteBox-button#previous-button{
    left:2%;
}.baguetteBox-button#close-button{
    top:20px;right:2%;right:calc(2% + 6px);width:30px;height:30px;
}.baguetteBox-button svg{
    position:absolute;top:0;left:0;
}.baguetteBox-spinner{position:absolute;top:50%;left:50%;display:inline-block;
    width:40px;height:40px;margin-top:-20px;margin-left:-20px;
}.baguetteBox-double-bounce1,
.baguetteBox-double-bounce2{position:absolute;top:0;left:0;
    width:100%;height:100%;-webkit-animation:bounce 2s infinite ease-in-out;animation:bounce 2s infinite ease-in-out;opacity:.6;border-radius:50%;background-color:#fff;
}.baguetteBox-double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s;
}@-webkit-keyframes bounce{
    0%,
    100%{-webkit-transform:scale(0);transform:scale(0);
    }50%{-webkit-transform:scale(1);transform:scale(1);
    }
}@keyframes bounce{
    0%,
    100%{-webkit-transform:scale(0);transform:scale(0);
    }50%{-webkit-transform:scale(1);transform:scale(1);
    }
}
/*!----------------------------------------------*\
/* COMMUN V.2.0                                  *|
/*-----------------------------------------------*/
form {
    font: 1em/1 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",Arial,sans-serif;
}

form button {
    /* pour effet slide */
    position: relative;
    z-index: 1;

    display:block;
    margin-left: 27%;
    width: 9em;
    height:3.7em;
    border: 2px solid #fff;
    font-size:1.1em;
    outline: 0;
    text-decoration: none;
    cursor: pointer;
    color:#ffffff;
    background-color: transparent;
    -webkit-transition:box-shadow .5s,opacity .25s,-webkit-filter .25s ease;
    transition:box-shadow .5s,opacity .25s,-webkit-filter .25s ease;
    -webkit-transition:opacity .25s,-webkit-box-shadow .5s,-webkit-filter .25s ease;
    transition:opacity .25s,-webkit-box-shadow .5s,-webkit-filter .25s ease;
    -o-transition:box-shadow .5s,opacity .25s,filter .25s ease;
    transition:box-shadow .5s,opacity .25s,filter .25s ease;
    transition:box-shadow .5s,opacity .25s,filter .25s ease,-webkit-box-shadow .5s,-webkit-filter .25s ease;
    transition:box-shadow .5s,opacity .25s,filter .25s ease,-webkit-filter .25s ease;
}
/* si pas d'effet hvr-sweep
form button:hover {
    color:#fafafa;
    border-color: #2c5476;
    background-color: #2c5476;
}
*/

form button:hover,button:focus{
    -webkit-box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
form button:active{
    -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

/* Placeholder */
::-webkit-input-placeholder{ /* Chrome/Opera/Safari */
    font-style: italic;
    opacity:.2;
      -webkit-transition-property: opacity;
    -webkit-transition-duration: 2s;
    -o-transition-property: opacity;
    transition-property: opacity;
    transition-duration: 2s;

}
::-moz-placeholder { /* Firefox 19+ */
    font-style: italic;
    opacity:.2;
    -moz-transition-property: color;
    -moz-transition-duration: 2s;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    transition-duration: 2s;
}
:-ms-input-placeholder { /* IE 10+ */
    font-style: italic;
    opacity:.2;
    -ms-transition-property: color;
    -ms-transition-duration: 2s;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    transition-duration: 2s;
}
:-moz-placeholder { /* Firefox 18- */
    font-style: italic;
    opacity:.2;
    -moz-transition-property: color;
    -moz-transition-duration: 2s;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    transition-duration: 2s;
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder  { /* Chrome/Opera/Safari */
    opacity:1;
    color:#a9a9a9;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder { /* Firefox 19+ */
    opacity:1;
    color:#a9a9a9;
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder { /* IE 10+ */
    opacity:1;
    color:#a9a9a9;
}
input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder { /* Firefox 18- */
    opacity:1;
    color:#a9a9a9;
}
input:focus::-webkit-textarea-placeholder,
textarea:focus::-webkit-textarea-placeholder { /* Chrome/Opera/Safari */
    opacity:1;
    color:#a9a9a9;
}

/* Texte d'aide sous le input */
.help-hint,.error-hint {
    clear:both;
    margin-left:0;
}
.help-hint {
    padding: .2em 0;
    margin-left:27%;
    font-size: 1em;
    color:#a9a9a9;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
input:focus + .help-hint,
textarea:focus + .help-hint
{
    opacity: 1;
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.mandatory{
    color:#de2d0f;
}

label.mandatory{
    color:#ffffff;
}

/* Message erreur sous les champs */
.error-hint{
    margin-left:27%;
    width: 70%;
    line-height: 1.5em;
    color:#e9322d;
    background-color:transparent;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flash;
    animation-name: flash;
}
@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}
/* class pour secouer un element */
@-webkit-keyframes shakeMe {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  20%,
  60% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  40%,
  80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
@keyframes shakeMe {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  20%,
  60% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  40%,
  80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
.shakeThis {
  -webkit-animation-name: shakeMe;
          animation-name: shakeMe;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
}

/* class pour php */
.success,.error,.alert,.obligatoire{
    font: 1rem/1.6rem -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",Arial,sans-serif;
}
.success,.error,.alert{
    margin:10px 0;
    padding: 10px;
    border-radius: 3px;
}
.success{
    border:1px solid #3a945b;
    color: #ffffff;
    background-color:#43ac6a;
}
.error{
    border:1px solid #de2d0f;
    color: #ffffff;
    background-color: #f04124;
  }
.alert{
    border:1px solid #BCE8F1;
    color: #31708F;
    background-color: #d9edf7;
}
.obligatoire{
    color:#de2d0f;
    font-size: 0.8em;
    vertical-align: bottom;
}
.small-info{
    font-size: 0.8em;
    text-align: right;
}

/* sup le jaune des champs auto-fill de chrome*/
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    color: currentColor;
    -webkit-text-fill-color: currentColor;
    -webkit-box-shadow: 0 0 0px 1000px #fafafa inset !important;
}
/*!----------------------------------------------*\
/* MEDIA-QUERIES                                 *|
/*-----------------------------------------------*/
/*!980px*/
@media screen and (max-width: 61.25em) {
    form button{
        margin: 0 auto;
        width: 100%;
    }
    .small-info{
        text-align: center;
    }
    .error-hint,.help-hint{
        margin-left: 0;
        width: 100%;
    }
}
/*!----------------------------------------------*\
/* Effets sur bouton avec icône SVG caché        *|
/*-----------------------------------------------*/
.link-toggle {

}
.link-toggle span,
.link-toggle svg {
    display: inline-block;
    vertical-align: middle
}
.link-toggle svg {
    display: none;
    width: 0;
    height: 1.47em;
    -webkit-transition: all .5s cubic-bezier(.23, 1, .32, 1);
    -o-transition: all .5s cubic-bezier(.23, 1, .32, 1);
    transition: all .5s cubic-bezier(.23, 1, .32, 1);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    border-radius: 50%;
    background: rgba(0, 0, 0, .15);
    will-change: width, transform;
    fill: currentColor
}
.link-toggle span {
    line-height: 1.47em
}
.link-toggle:hover {
    color: #fff;
    border-color: #2c5476;
    text-shadow: rgba(0, 0, 0, .2) 0 1px 1px
}
.link-toggle:focus svg,
.link-toggle:hover svg {
    display: inline-block;
    width: 1.47em;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    fill: currentColor
}
/*!----------------------------------------------*\
/* Effets de remplissage : right                 *|
/*-----------------------------------------------*/
.hvr-sweep-to-right {
    position: relative;
    display: inline-block;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    vertical-align: middle;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale
}
.hvr-sweep-to-right:before {
    -webkit-transition-duration: .3s;
    -o-transition-duration: .3s;
    transition-duration: .3s
}
.hvr-sweep-to-right:before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-property: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-property: transform, -webkit-transform;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
     background-color: #2c5476;
}
/*!----------------------------------------------*\
/* Effets de remplissage : left                  *|
/*-----------------------------------------------*/
.hvr-sweep-to-left {
    position: relative;
    display: inline-block;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    vertical-align: middle;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale
}
.hvr-sweep-to-left:before {
    -webkit-transition-duration: .3s;
    -o-transition-duration: .3s;
    transition-duration: .3s
}
.hvr-sweep-to-left:before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-property: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-property: transform, -webkit-transform;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    background-color: #2c5476;
}

.hvr-sweep-to-left:active:before,
.hvr-sweep-to-left:focus:before,
.hvr-sweep-to-left:hover:before,
.hvr-sweep-to-right:active:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:hover:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}
.hvr-sweep-to-left:active,
.hvr-sweep-to-left:focus,
.hvr-sweep-to-left:hover,
.hvr-sweep-to-right:active,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:hover {
    color:#fafafa;
}
.hvr-sweep-to-left:active svg,
.hvr-sweep-to-left:focus svg,
.hvr-sweep-to-left:hover svg,
.hvr-sweep-to-right:active svg,
.hvr-sweep-to-right:focus svg,
.hvr-sweep-to-right:hover svg {
    fill:#fafafa;
}
/*!----------------------------------------------*\
/* FORMULAIRE STANDARD V.2.0 BASE                *|
/*-----------------------------------------------*/
form .form-group {
    clear: both;
    padding: 0 0 1.15em 0;
    overflow: hidden;

}
label {
    float: left;
    vertical-align: top;
    margin-right: 2%;
    width: 25%;
    font-size: 1.2em;
    line-height: 2.5;
    text-align: right;
    color:#ffffff;
}
input {
    border: 1px solid #2c5476;
    padding: .2em .5em;
    height: 2.6em;
    width: 70%;
    font-size:1.15em;
    line-height: 1.58;
    color:#ffffff;
    background-color:#fafafa;
}
textarea
{
    width: 70%;
    height: 7.5em;
    padding: .2em .5em;
    font-size: 1.2em;
    line-height: 1.5;
    resize: vertical;
    border: 1px solid #2c5476;
    overflow: auto;
    background-color:#fafafa;
    -webkit-overflow-scrolling: touch;
    background: -webkit-linear-gradient(bottom,rgba(0,0,0,.15) 0, #fafafa 1px);
    background: -webkit-linear-gradient(bottom,rgba(0,0,0,.15) 0,#fafafa 1px);
    background: -o-linear-gradient(bottom,rgba(0,0,0,.15) 0,#fafafa 1px);
    background: linear-gradient(to top,rgba(0,0,0,.15) 0,#fafafa 1px);
    background-position: 0 1.5em;
    background-size: 100% 1.5em;

}
textarea:focus{
    background: -webkit-linear-gradient(bottom, #fafafa 0%, #fafafa 1px);
    background: -o-linear-gradient(bottom, #fafafa 0%, #fafafa 1px);
    background: linear-gradient(to top, #fafafa 0%, #fafafa 1px);

    background: -webkit-linear-gradient(bottom, #fff 0%, #fff 1px);
    background: -o-linear-gradient(bottom, #fff 0%, #fff 1px);
    background: linear-gradient(to top, #fff 0%, #fff 1px);
}

.select-field {
    float: left;
    position: relative;
    width: 70%;
    border:none;
    color: #ffffff;
    background-color: #fafafa;
    cursor: pointer;
}

.select-field .select-icon:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 3%;
    width: 0;
    height: 0;
    margin-top: -.15em;
    pointer-events: none;
    border-top: .35em solid;
    border-right: .35em solid transparent;
    border-bottom: .35em solid transparent;
    border-left: .35em solid transparent;
}

.select:focus ~ .select-icon:after {
  /*border-top-color: #2c5476;*/
}

.select-field .select {
    width: 100%;
    height: 2.7em;
    margin: 0;
    padding: 0 25px 0 10px;
    border: 1px solid #2c5476;
    background-color: #fafafa;
    cursor: pointer;
    outline: 0;
    -webkit-appearance: none;
        -moz-appearance: none;
            appearance: none;
}

.select-field .select:focus:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

.select-field .select:focus,
.select-field .select:active {
    border-color: #2c5476;
    background-color: #fafafa;
}

.select-field .select::-ms-expand {
    display: none;
}

@-moz-document url-prefix() {
    .filter-sort .select {
    text-indent: 0.01px;
    text-overflow: '';
    padding-right: 1rem;
  }
  .filter-sort option {
    background-color: white;
  }
}

/* champs obligatoire*/
label.mandatory:after{
    content:' ★';
    font-size: .5em;
    vertical-align: text-bottom;
    color:#de2d0f;
}

/* Aspect des bordures */
input:focus,
textarea:focus,
select:focus,
input:active
{
    border-color:  #2c5476;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(44,84,118,0.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(44,84,118,0.6);
    background-color: #fafafa;
}

fieldset {
    margin-left: 22%;
    padding: 1em;
    width: 70%;
    border: 1px solid #2c5476;
    background-color:#fafafa;
}
fieldset label{
    width: auto;
    color:#ffffff;
}
legend{
    padding: 0.3em;
    font-size: .9em;
    color: #ffffff;
    background-color:transparent;
}
.disabled{
    opacity:.45;
    pointer-events: none;
    cursor:not-allowed;
}
.disabled fieldset,
input[type=text][readonly="readonly"],
input[type=password][readonly="readonly"],
input[type=email][readonly="readonly"],
input[type=url][readonly="readonly"],
input[type=time][readonly="readonly"],
input[type=date][readonly="readonly"],
input[type=datetime][readonly="readonly"],
input[type=datetime-local][readonly="readonly"],
input[type=tel][readonly="readonly"],
input[type=number][readonly="readonly"],
input[type=search][readonly="readonly"],
input[type=textarea][readonly="readonly"]
{
    border: none;
    cursor:text;
}
.disabled fieldset,
input[type=text]:disabled,
input[type=password]:disabled,
input[type=email]:disabled,
input[type=url]:disabled,
input[type=time]:disabled,
input[type=date]:disabled,
input[type=datetime]:disabled,
input[type=datetime-local]:disabled,
input[type=tel]:disabled,
input[type=number]:disabled,
input[type=search]:disabled,
input[type=textarea]:disabled
{
    opacity:.45;
    border: 1px dotted rgba(44,84,118,0.26);
    cursor:not-allowed;
}


/* Classe pour les groupe contenant un champ en erreur positionnée par visiform.js sur form-group */
.error-field input,
.error-field textarea,
.error-field select,
.error-field fieldset,
.error-field .control__indicator
{
    border:1px solid #e9322d;
}

/*!----------------------------------------------*\
/* MEDIA-QUERIES                                 *|
/*-----------------------------------------------*/
/*!980px*/
@media screen and (max-width: 61.25em) {
    label,input,textarea,.select-field{
        width: 100%;
    }
    input,textarea,select{
        font-weight: 500;
    }

    label{
        float:none;
        display:block;
        font-size: 1.1em;
        letter-spacing: 1px;
        text-align:left;
    }
    fieldset{
        margin: 0;
        width: auto;
    }

}
/*!----------------------------------------------*\
/* STANDARD V.2.0 : ICONES DECORATION SVG        *|
/*-----------------------------------------------*/
.form-group{
    position:relative;
}
label{
    float: none;
    display: block;
    width:100%;
    text-align: left;
    letter-spacing: 1px;
}
input,textarea{
    padding-left:2.5em;
    width:100%;
}
.select-field .select {
    padding-left:3em;
}
.select-field{
    width:100%;
}

.error-hint{
    margin-left:0;
}
form fieldset{
    margin-left:0;
    width:100%;
}
form button{
    margin-left:0;
    width:40%;
}
input:focus ~ svg.ico-deco,
textarea:focus ~ svg.ico-deco,
.select:focus ~ svg.ico-deco{
    opacity:.9;
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}

svg.ico-deco{
    position:absolute;
    left:0.5em;
    margin-top:.5em;
    width:2em;
    height:2em;
    fill:#2c5476;
    opacity:.3;

    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
legend svg.ico-deco{
    display:inline-block;
    position:static;
    margin:0 .5em .2em 0;
    width:1.7em;
    height:1.7em;
    vertical-align:middle;
}
fieldset:active svg{
    opacity:.9;
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}

.help-hint{
    margin-left: 0;
}
input:focus ~ .help-hint,
textarea:focus ~ .help-hint{
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
    opacity: 1;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.error-field svg{
    fill:#e9322d;
    opacity:1;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flash;
    animation-name: flash;
}
/* style pour les champs cachés sous conditions */
form [aria-hidden=true]:not(svg){
    visibility: hidden;
}
form [aria-hidden=false]:not(svg){
    visibility: visible;
}

/*!----------------------------------------------*\
/* MEDIA-QUERIES                                 *|
/*-----------------------------------------------*/
/*!980px*/
@media screen and (max-width: 61.25em) {
    form button{
        width: 100%;
    }
}/*!----------------------------------------------*\
/* Surcharge Style FlexBox                       *|
/*-----------------------------------------------*/
form {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
    -ms-flex-flow:row wrap;
    flex-flow:row wrap;
    -ms-flex-direction:row;
    flex-direction:row;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
}
form .form-group {
    padding: 0 0 1.15em 0;
}
form label{
    float:none;
    display:block;
    width:auto;
    margin:0;
    font-size: 1.1em;
    letter-spacing: 1px;
    text-align:left;
}
form input,form textarea{
    width:100%;
}
form .error-hint,form .help-hint{
    margin-left:0;
    width:100%;
}
form button{
    margin:1.5em 0 0 0;
    width:40%;
}

/* Taille des colonnes */
/* idem width:30%;*/
.w-30{-webkit-box-flex:0;-ms-flex:0 1 29%;flex:0 1 29%;}
.w-50{-webkit-box-flex:0;-ms-flex:0 1 49%;flex:0 1 49%;}
.w-70{-webkit-box-flex:0;-ms-flex:0 1 69%;flex:0 1 69%;}
.w-100{-webkit-box-flex:0;-ms-flex:0 1 100%;flex:0 1 100%;}

/*!680px*/
@media screen and (max-width: 42.5em) {
    form {
        display:block;
    }
    form .form-group {
        padding: 0;
    }
    form button{
        width:100%;
    }
    aside h2{font:20px/1.1 'Crimson Text', serif;}
}

/*!------------------------------------------*\
/*           PACE-version MINI              * |
/*-------------------------------------------*/
/* Voir  http://github.hubspot.com/pace/docs/welcome/ */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #e5f2fe;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 3px;
}
/*!----------------------------------------------*\
/* Menu Mobile : MNUMOB                          *|
/*-----------------------------------------------*/

/* Barre entête du menu mobile */
.mnuMob{
    z-index: 2!important;

    position: fixed;
    top:0;
    left: 0;
    right:0;

    display: none;

    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;

    width: 100%;

    /* Pour IE10,EI11 et Edge*/
    font-family:Arial, Helvetica, sans-serif;
    /* element référant */
    font: 1rem/2rem -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",Arial,sans-serif;

    -webkit-box-shadow: 0 3px 13px 0 rgba(0,0,0,0.75);

    box-shadow: 0 3px 13px 0 rgba(0,0,0,0.75);

    /* Paramétres */
    background-color: #7bb0dc;
}

/* Bouton Menu */
.mnuMob__btn {
    -ms-flex-item-align: end;
        align-self: flex-end;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;

    margin: .6em .6em .6em 0;
    padding: .6em;

    outline: none;
    line-height: 1.125em;
    text-decoration: none;
    cursor: pointer;
    border-radius: 4px;

    /* Paramétres */
    background-color: #fff;
}


/* Texte du bouton menu */
.mnuMob__menutxt{
    font-weight: bold;
    line-height: .9em;
    text-transform: uppercase;

    /* Paramétres */
    color: #2c4760;
}

/* Container ul de navigation */
.mnuMob__nav{
    overflow: hidden;
}
ul.mnuMob__nav  {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mnuMob__nav li{
    display: block;
}

.mnuMob__nav a {
    display: block;
    margin: 2px 5px;
    padding: .5em;
    text-decoration: none;
    border-radius: 6px;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;

    /* Paramétres */
    color: #111;
}

/* icone svg */
.mnuMob__nav svg{
    width:1em;
    height:1em;
    margin-right: .5em;
    /*stroke: currentColor;*/
    fill:#111;
}

.mnuMob__nav li:hover a,
.mnuMob__navl a:active a,
.mnuMob__nav a:focus a,
.mnuMob__nav li.active a{
    /* Paramétres */
    color:#fff;
    background-color: #2c5476;
}


/* Etat du menu */
/* style pour les champs cachés sous condition */
/* menu fermé */
ul.mnuMob__nav[aria-hidden=true]{
    max-height: 0;
    -webkit-transition: max-height 1s;
    -o-transition: max-height 1s;
    transition: max-height 1s;
}
/* menu ouvert */
ul.mnuMob__nav[aria-hidden=false]{
    max-height: 9999px;
    -webkit-transition: max-height 5s ease-in-out;
    -o-transition: max-height 5s ease-in-out;
    transition: max-height 5s ease-in-out;
}

/* menu burger */
.slicknav_icon{
    display: block;
    width: 1.125em;
    height: 0.875em;
    margin-left: 0.438em;
}
.slicknav_icon-bar {
    display: block;
    width: 1.125em;
    height: 0.125em;
    border-radius: 1px;

    /* Paramétres */
    background-color: #2c4760;
}
.slicknav_icon-bar + .slicknav_icon-bar {
    margin-top: 0.188em;
}

/*!----------------------------------------------*\
/* MEDIA-QUERIES                                 *|
/*-----------------------------------------------*/
/*!1200px*/
@media screen and (max-width: 75em) {
    .wrapper {
        width: 100% !important;
        margin: 0 auto;
    }
    article .content img{max-width:100% !important;height:auto !important;display:block;float:none !important;margin:10px auto !important;}

    .header-top-inside{
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
    .logo{
        margin: 0 15px;
    }

    .index article{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .bkgArticle-l,.bkgArticle-r{
        background-position-x: center;
        background-position-y: top;
    }

    .index article{
        height: auto;
    }
    .index .content{
        margin-top: 350px;
    }
    .art-l .content,.art-r .content{
        padding: 50px;
    }
    a.btSite{
        margin: 40px 0 20px 0;
    }

    .page-site .content{

        margin-top: 0;
    }
    .article-container{
        padding: 1em;
    }
}


/*!1130px*/
@media screen and (max-width: 70.625em) {
    .slogan{
        display:none;
    }
    .slogan-mobile{
        display: block;
    }
}
/*!960px*/
@media screen and (max-width: 60em) {

    section{
        padding-top: 20px;
    }
    .article-container{
        padding: 0;
    }
    .content{
        padding: 1em;
    }
    .index .content{
        padding: 3.5em 2em 2em 2em;
        height: auto;
    }

}

/*!890px*/
@media screen and (max-width: 55.625em) {

    .navDesktop {
        display: none
    }
    .mnuMob {
        position: fixed;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .header-top-container{
        top:50px;
    }
    .bkgCycleRel{
        margin-top: 120px;
    }

    .info-container{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .bloc{
        padding: 2em 0.5em;
    }
    .logoAdr{
        -ms-flex-item-align: center;
        align-self: center;
    }
    .tal,.tar{
        text-align: center;
    }
}

/*!430px*/
@media screen and (max-width: 26.875em) {
    .slogan-mobile{
        font-size: 23px;
    }
    .tel{
        font-size: 32px;
    }
    a.btAvisDeces{
        font-size: 40px;
    }
    footer{
        font-size:2.8vw;
        text-align: center;
    }
}
/*!320px smartphone*/
@media screen and (max-width: 20em) {
    footer{
        font-size:2.8vw;
        text-align: center;
    }
}
