/*-------------------------------------------------------------------------------------------------------------------------------*/
/* FONTS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
@font-face {
    font-family: 'league_gothiccondensed_italic';
    src: url('fonts/leaguegothic-condenseditalic-webfont.eot');
    src: url('fonts/leaguegothic-condenseditalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/leaguegothic-condenseditalic-webfont.woff2') format('woff2'),
         url('fonts/leaguegothic-condenseditalic-webfont.woff') format('woff'),
         url('fonts/leaguegothic-condenseditalic-webfont.ttf') format('truetype'),
         url('fonts/leaguegothic-condenseditalic-webfont.svg#league_gothiccondensed_italic') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'league_gothicCnRg';
    src: url('fonts/leaguegothic-condensedregular-webfont.eot');
    src: url('fonts/leaguegothic-condensedregular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/leaguegothic-condensedregular-webfont.woff2') format('woff2'),
         url('fonts/leaguegothic-condensedregular-webfont.woff') format('woff'),
         url('fonts/leaguegothic-condensedregular-webfont.ttf') format('truetype'),
         url('fonts/leaguegothic-condensedregular-webfont.svg#league_gothicCnRg') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'league_gothicitalic';
    src: url('fonts/leaguegothic-italic-webfont.eot');
    src: url('fonts/leaguegothic-italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/leaguegothic-italic-webfont.woff2') format('woff2'),
         url('fonts/leaguegothic-italic-webfont.woff') format('woff'),
         url('fonts/leaguegothic-italic-webfont.ttf') format('truetype'),
         url('fonts/leaguegothic-italic-webfont.svg#league_gothicitalic') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'league_gothicregular';
    src: url('fonts/leaguegothic-regular-webfont.eot');
    src: url('fonts/leaguegothic-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/leaguegothic-regular-webfont.woff2') format('woff2'),
         url('fonts/leaguegothic-regular-webfont.woff') format('woff'),
         url('fonts/leaguegothic-regular-webfont.ttf') format('truetype'),
         url('fonts/leaguegothic-regular-webfont.svg#league_gothicregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
/*------------------------------------------------------------------------------*/
body {
    background: #fff;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
    line-height: 1;
    font-weight: normal;
}
h1 {
    font-size: 22px;
}
h2 {
    font-size: 18px;
    margin: 0;
}
svg{
    width: 100%;
    height: 100%;
}
p{
    line-height: 1.4;
}
a{
    text-decoration: none;
}
*::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*:focus {outline:none !important}
.noselect * {
    user-select: none;
}
.overflow-hidden {
    overflow: hidden;
}
sup{
font-size: 60%;
}
img{
display: block;
width: 100%;
height: auto;
max-width: 100%;
}
.league{
font-family: 'league_gothicregular', sans-serif;    
}
.open-s{
 font-family: 'Open Sans', sans-serif;   
}
#loader-wrapper{
    position: fixed;
background: white;
width: 100%;
height: 100%;
top: 0;
z-index: 99999;
}
/****************HEADER*************/
.header{
position: fixed;
width: 100%;
z-index: 2;
background: #fff;
padding: 10px 0 5px;
-webkit-transition: background 0.3s linear;
  transition: background 0.3s linear;
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-101px);
  }
  100% {
      -webkit-transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-101px);
  }
  100% {
      transform: translateY(0);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
  }
  100% {
      -webkit-transform: translateY(-101px);
  }
}
@keyframes slideUp{
  0% {
    transform: translateY(0);
  }
  100% {
      transform: translateY(-101px);
  }
}
.animated {
    -webkit-animation-duration: .3s;
    -moz-animation-duration: .3s;
    -o-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    will-change: transform,opacity;
}
.animated.supertop {
    -webkit-animation-name: slideUp;
    -moz-animation-name: slideUp;
    -o-animation-name: slideUp;
    animation-name: slideUp;
}
.animated.superdown {
    -webkit-animation-name: slideDown;
    -moz-animation-name: slideDown;
    -o-animation-name: slideDown;
    animation-name: slideDown;
}
.header-container{
margin: 0 auto;
display: block;
height: 40px;
padding: 0 4%;
}
.header .corp{
position: relative;
max-width: 100%;
float: left;
width: 16vw;
}
.corp a{
    display: block;
}
.logoclass{
height: 2.3em;
}
.nav-desk{
    float: right;
}
.nav-pop{
position: fixed;
top: 25px;
left: 30px;
border-radius: 5px;
padding: 8px 0;
font-size: 0;
text-indent: -9999px;
appearance: none;
box-shadow: none;
border: none;
cursor: pointer;
width: 50px;
height: 50px;
z-index: 2;
opacity: 0;
filter: alpha(opacity=0);
}
.nav-pop-svg{
    position: absolute;
width: auto;
height:45px;
left: 0;
}
.nav-pop:focus{
    outline: none;
}
ul.menu-top{
margin: 12px 0 0;
list-style: none;
width: 100%;
display: inline-block;
}
ul.menu-top li{
list-style: none;
display: inline;
margin-right: 45px;
width: auto;
float: left;
}
span.carette{
display: inline-block;
width: 0;
height: 0;
vertical-align: middle;
border-left: 0.4em solid hsla(0, 0%, 50%, 1);
border-top: 0.4em solid transparent;
border-right: 0 dotted;
border-bottom: 0.4em solid transparent;
vertical-align: baseline;
margin-right: 4px;
content: '';
-webkit-transition: all 0.2s ease-out;
-ms-transition: all 0.2s ease-out;
transition: all 0.2s ease-out;
}
ul.menu-top li a{
color: hsla(0, 0%, 50%, 1);
text-decoration: none;
font-size: 0.85em;
letter-spacing: 0.1px;
cursor: pointer;
position: relative;
z-index: 99;
/*font-family: 'Open Sans Condensed', sans-serif;*/
}
ul.menu-top li a:hover{
color: hsla(0, 0%, 0%, 1);
-webkit-transition: all 0.25s ease-out;
-ms-transition: all 0.25s ease-out;
transition: all 0.25s ease-out;
}
ul.menu-top li.expanded{
    position: relative;
}
ul.sous-menu{
position: absolute;
margin: 0;
padding: 0;
max-width: 300px;
width: 100%;
top: 0;
left: 0;
background: #95c236;
z-index: 1;
display: inline-table;
opacity: 0;  
filter: alpha(opacity=0);
-webkit-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
ul.sous-menu li{
display: inline-block;
float: left;
width: 100%;
padding: 0px 20px;
margin-right: 0;
line-height: 1.8em;
font-size: 0.1em;
opacity: 0;  
filter: alpha(opacity=0);
-webkit-transition: all 0.2s ease-out;
-ms-transition: all 0.2s ease-out;
transition: all 0.2s ease-out;
}
ul.sous-menu li:last-child{
    margin-bottom: 5px;
}
ul.sous-menu li a{
    cursor: pointer;
color: hsla(0, 0%, 100%, 1);
font-weight:600;
}
.nav-desk li.expanded:hover ul.sous-menu{
    opacity: 1;  filter: alpha(opacity=100);
    top: 22px;
    margin: 11px 0px;
    padding: 5px 0;
}
.nav-desk li.expanded:hover ul.sous-menu li{
font-size: 1em;
opacity: 1;  filter: alpha(opacity=100);
}
.nav-desk li.expanded:hover span.carette{
 -webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
/******************COOK SCROLLERS *******************/
.scroll-cook{
position: absolute;
top: 50vh;
width: 3vw;
height: 3vw; 
z-index: 99; 
}


.grid-img {
    height: auto;
    background: white;
    z-index: 100000000000;
    position: relative;
    /*z-index: 1;
    position: fixed;*/
    width: 100%;
    /*top: 0;*/
}


/****************HERO**********************************/
.intro-bg{
position: fixed;
top: 0;
left: 0;
margin: 0 auto;
width: 100%;
height: 100%;
}
.hero-bg{
background: url('images/home/CO_MEBIUS-MIGROS-KARTOFFEL-200815.jpg') no-repeat;
background-size: 142%;
background-position: top center;
height: 100%;
width: 100%;
position: absolute;
top: 0;
z-index: 1;
}
.hero-bg-bl{
background: url('images/home/CO_MEBIUS-MIGROS-KARTOFFEL-200815-blur.jpg') no-repeat;
background-size: 134%;
background-position: top center;
height: 100%;
width: 100%;
position: absolute;
top: 0;
z-index: 1;
}
.intro-title{
position: relative;
display: table;
width: 100%;
height: 100vh;
overflow: hidden;
z-index: 1;
padding: 0 4%;
}
.intro-title .content{
position: relative;
display: table-cell;
vertical-align: top;
padding-top: 55px;
}

.intro-title h1.year-title{
    font-size: 2.5em;
    font-weight: normal;
    text-align: right;
    margin: 0;
    display: inline-block;
    float: right;
    line-height: 1;
    letter-spacing: 0;
    position: absolute;
    right: -15px;
    bottom: 120px;
    color: white;
}
    .intro-title h1.year-title strong{
        font-weight: 900;
    }
.intro-title h1.main-title{
    font-size: 4.5em;
    font-weight: normal;
    text-transform: uppercase;
    text-align: right;
    margin: 0;
    display: inline-block;
    float: right;
    line-height: 1;
    position: absolute;
    bottom: 200px;
    right: 0px;
    color: white;
    letter-spacing: 1px;
}
.intro-title p{
    line-height: 1;
    margin: 0;
}
.intro-title .content hr{
    position: absolute;
    bottom: 100px;
    background-color: #95c236;
    margin: 0;
    width: 377px;
    height: 10px;
    border: 0px;
    right: -15px;
}
.slide-title hr{
    border: 0px;
    background-color: #95c236;
    margin: 0;
    width: 320px;
    height: 5px;
    text-align: left;
}
.intro-title span{
font-weight: 200;
}
.intro-title b{
font-weight: 700;
}
.orange-block {
    position: absolute;
    background-color: #95c236;
    width: 570px;
    height: 90px;
    bottom: 195px;
    right: -15px;
}
/****************MAIN CONTENT*******************/
/********SECTION MESSAGE*****************************************************/
.main-content{
    position: relative;
    z-index: 1;
}
.section{
position: relative;
}
#developpement-durable {
    height: 900px;
    position: relative;
    border-top: 6px solid #95c236;
}
    #developpement-durable .fond {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('images/background/developpement.jpg') no-repeat;
        background-size: cover;
        z-index: 2;
        transition-duration: 200ms;
    }
    #developpement-durable .dev-text {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 4;
    }
    #developpement-durable .svg-developpement {
        position: absolute;
        top: -290px;
        bottom: -50px;
        left: 0;
        right: 0;
    }
    #developpement-durable .svg-developpement figure {
        height: 100%;
        width: 100%;
        margin: 0;
    }
    #developpement-durable #TRAITS_2_, #developpement-durable #TXT1,
    #developpement-durable #TXT2, #developpement-durable #TXT3, #developpement-durable #TXT4,
    #developpement-durable #TXT5, #developpement-durable #TXT6, #developpement-durable #TXT7 {
        display: none;
    }
    #developpement-durable h2 {
        color: #000000;
        font-size: 50px;
        text-transform: uppercase;
        padding-top: 60px;
        padding-left: 10%;
    }
.images-grid {
    float: left;
    width: 20%;
}
#message {
    background: transparent;
    height: auto;
}
#message .containing{
    max-width: 900px;
    margin: 0 auto;
    background: hsla(0, 0%, 100%, 0.62);
    padding: 2.65%;
    margin-bottom: 180px;
}
#message h2{
letter-spacing: 1px;
font-size: 2.6em;
}
hr.orng{
border: 0;
background: #95c236;
display: inline-block;
height: 8px;
width: 100%;
margin: 0;
position: absolute;   
z-index: 2;
}
#message .containing hr.orng {
height: 3px;
width: 18%;
margin: 20px 0 5px;
position: relative;
}
#message p{
font-size: 1.25em;
margin: 30px 0;
}

.rightext{
    text-align: right;
}
.no-bottom{
    margin-bottom: 0 !important;
}
span.logo-intext{
font-weight: 900;
color: hsla(19, 100%, 55%, 1);
margin-left: 8px;
}
span.logo-intext b{
color: black;
margin-left: 6px;
}
/********SECTION 10ANS***************************************************/
#dix-ans{
background: url('images/home/la_vd_01.jpg') no-repeat;
background-size: 100%;
background-position: 50% 0%;
height: 100%;
padding-top: 8px;
}

#dix-ans .containing{
background: transparent;
padding: 3%;
width: 100%;
position: relative;
}
.dix-ans-title{
display: table;
width: 100%;
max-width: 1120px;
margin: 0 auto;
padding-left: 7%;
padding-top: 1%;
overflow: hidden;
}
#dix-ans h2{
text-transform: uppercase;
font-size: 4em;
float: left;
display: block;
}
.dix-ans-logo{
width: auto;
position: relative;
float: left;
height: 8vw;
margin-top: -40px;
margin-left: 10px;
}
.dix-ans-logo img{
height: 100%;
width: auto;
}
.dix-ans-flag{
position: absolute;
top: 0;
}
.dix-ans-graphicon{
width: 100%;
height: 70vh;
margin: 3% auto;
padding: 0 17%;
perspective: 800px;
}
/********SECTION INTRO SAISONS***************************************/
#saisons-intro {
    height: auto;
}
#galerie{
height: auto;
}
.intro-text-bg{
display: table;
width: 100%;
}
.intro-text-bg .i-saison{
position: relative;
width: 50%;
height: 450px;
float: left;
overflow: hidden;
}
.i-saison .contenu-bg{
position: absolute;
top: 0;
width: 100%;
height: 100%;
display: inline-table;
}
.i-hiver .contenu-bg{
background: url('images/home/hiver.jpg') no-repeat;
background-size: cover;
background-position: 50% 50%;
}
.i-printemps .contenu-bg{
background: url('images/home/printemps.jpg') no-repeat;
background-size: cover;
background-position: 50% 50%;
}
.i-ete .contenu-bg{
background: url('images/home/ete.jpg') no-repeat;
background-size: cover;
background-position: 50% 50%;
}
.i-automne .contenu-bg{
background: url('images/home/automne.jpg') no-repeat;
background-size: cover;
background-position: 50% 50%;
}
.intro-text-bg .i-saison .contenu,
.intro-text-bg .i-galerie .contenu{
background: hsla(0, 0%, 100%, 0.9);
position: relative;
width: 100%;
height: 100%;
display: inline-block;
}
.i-saison h3, .i-galerie h3{
position: relative;
margin-bottom: 20px;
display: inline-block;
font-size: 2.7em;
/*font-size: 2.2vw;*/
padding-bottom: 20px;
margin-top: 20px;
cursor: pointer;
}
.i-saison h3 a{
    color: inherit;
}
.i-saison h3::after, .i-galerie h3::after{
content: '';
position: absolute;
width: 40%;
height: 100%;
top: 0;
left: 0;
border-bottom: 3px solid hsla(205, 74%, 44%, 1);
}
.i-saison.i-printemps h3::after{
     border-bottom: 3px solid #68bd92;
 }
.i-saison.i-ete h3::after{
    border-bottom: 3px solid #f6a54e;
}
.i-saison.i-automne h3::after{
    border-bottom: 3px solid #d35264;
}
.i-saison .wrap-text{
    /*padding: 9em 6em 1em 12em;*/
    position: absolute;
    overflow: hidden;
    top: 0;
    /*padding: 18vh 6vw 2vh 14vw;*/
    padding: 2vh 7vw 2vh 5vw;
}
.i-galerie .wrap-text{
    /*padding: 9em 6em 1em 12em;*/
    position: absolute;
    overflow: hidden;
    bottom: 0;
    /*padding: 18vh 6vw 2vh 14vw;*/
    padding: 18vh 1vw 2vh 11vw;
}
.i-saison p, .i-galerie p{
/*font-size: 1.25em;*/
margin: 7px 0;
font-size: 14px;
letter-spacing: 0.1px;
}
/************************GALERIE SECTION************************/
.intro-text-bg .i-galerie{
position: relative;
width: 50%;
height: 400px;
float: left;
overflow: hidden;
}
.i-galerie .contenu-bg{
position: absolute;
top: 0;
width: 100%;
height: 100%;
display: inline-table;
}
.i-dir .contenu-bg{
background: url('images/galerie/photo_dir_pour_ra_2018.jpg') no-repeat;
background-size: cover;
background-position: 50% 50%;
}
.i-admin .contenu-bg{
background: url('images/galerie/photo_administration_ra_2018.jpg') no-repeat;
background-size: cover;
background-position: 50% 50%;
}
.i-comite .contenu-bg{
background: url('images/galerie/photo_coco_pour_ra_2018.jpg') no-repeat;
background-size: cover;
background-position: 50% 50%;
}
.i-outlet .contenu-bg{
background: url('images/galerie/photo_equipe_preverenges_ra_2018.jpg') no-repeat;
background-size: cover;
background-position: 50% 50%;
}
.intro-text-bg .i-galerie .contenu{
background: hsla(0, 0%, 100%, 0.85);
position: relative;
width: 100%;
height: 100%;
display: inline-block;
}
.i-galerie h3{
position: relative;
margin-bottom: 20px;
display: inline-block;
/*font-size: 2.7em;*/
font-size: 2.2vw;
padding-bottom: 20px;
margin-top: 20px;
cursor: default;
text-transform: uppercase;
}
.i-galerie h3::after{
content: '';
position: absolute;
width: 40%;
height: 100%;
top: 0;
left: 0;
border-bottom: 3px solid #95c236;
}
.i-galerie .wrap-text{
/*padding: 9em 6em 1em 12em;*/
position: absolute;
overflow: hidden;
bottom: 0;
padding: 18vh 6vw 2vh 14vw;
}
.i-galerie p{
/*font-size: 1.25em;*/
margin: 7px 0;
font-size: 1vw;
letter-spacing: 0.1px;
}
/********SECTION SLIDER SAISONS*************************************************/
#saisons-slider{
height: 100vh;
min-height: 1000px; /* A changer */
width: 100%;
overflow: hidden;
}
#saisons-slider .containing{
height: 100vh;
width: 100%;
overflow: hidden;
}
#saisons-slider .timeliner{
z-index: 999;
position: absolute;
bottom: 0;
left: 10%;
right: 10%;
display: table-row;
}
#saisons-slider .guidance{
position: absolute;
z-index: 9999;
 background: hsla(0, 0%, 100%, 0.7);
width: 100%;
height: 100%;
top: -100px;
left: 0;

}
.timeliner-affordance {
    z-index: 999;
    position: absolute;
    right: 4%;
    width: 101px;
    top: 230px;
}

.timeliner-saison {
    position: absolute;
    top: 325px;
    right: -37px;
    width: 100px;
}

.timeliner-date {
    position: absolute;
    right: -37px;
    width: 100px;
    top: 55px;
}

.guidance .title-announce{
display: table;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.guidance .title-announce h1{
    font-size: 5vw;
}
.guidance .title-announce h1 span{
    color: #95c236;
}
.timeliner ul, .timeliner-affordance ul{
    width: 100%;
    display: table;
    padding: 0;
    text-align: center;
}

.timeliner li, .timeliner-affordance li{
    /*display: table-cell;*/
    list-style-type: none;
    width: 1%;
}
.timeliner ul a {
    background-color: hsla(19, 100%, 55%, 1);
    width: 11px;
    height: 11px;
    display: inline-block;
    border-radius: 10px;
    position: relative;
}
.timeliner .line, .timeliner-affordance .line{
    width: 25%;
}
.timeliner .line i, .timeliner-affordance .line i{
    width: 100%;
    height: 5px;
    margin-bottom: 3px;
    margin-right: 4px;
    border-radius: 0px;
    display: block;
    background-color: hsla(19, 100%, 55%, 1);
}
.timeliner-affordance .line i,  .timeliner-affordance li span,
.timeliner-affordance li span::before {
    background-color: transparent !important;
    border:none;
}
.timeliner-affordance li span{
width: 10vw;
height: 10vw;
background-size: 100%;
display: block;
}
.timeliner-affordance .precedent-announce .fleche-pre{
background: url('images/home/precedent-saison.png') no-repeat;
width: 8vw;
height: 10vw;
background-size: 100%;
display: block;
position: absolute;
left: -5.5%;
top: -40%;
}
.timeliner-affordance .precedent-announce .fleche-pre::before{
background: url('images/home/precedent-fleche.png') no-repeat;
content: '';
width: 8vw;
height: 15vw;
background-size: 100%;
display: block;
position: absolute;
left: 3%;
top: 1%;
background-position: center top;
}
.timeliner-affordance .suivant-announce .fleche-sui{
background: url('images/home/suivant-saison.png') no-repeat;
width: 8vw;
height: 10vw;
background-size: 100%;
display: block;
position: absolute;
right: -5%;
top: -40%;
}
.timeliner-affordance .suivant-announce .fleche-sui::before{
background: url('images/home/suivant-fleche.png') no-repeat;
content: '';
width: 8vw;
height: 15vw;
background-size: 100%;
display: block;
position: absolute;
right: 10%;
top: 1%;
background-position: center top;
}
.timeliner-affordance li span::before {
content: '';
top: 99%;
width: 100%;
height: 100%;
background: url('images/home/fleche_date.png') no-repeat;
display: block;
background-size: 100%
}
.timeliner li a span, .timeliner-affordance li span {
text-transform: uppercase;
font-size: 0.65em;
top: -35px;
left: -30px;
text-align: center;
color: hsla(0,0%,100%,1);
font-weight: 800;
letter-spacing: 0.5px;
background-color: hsla(19, 100%, 55%, 1);
border-radius: 4px;
padding: 2px;
height: 172px;
}
.timeliner li:last-child a span, .timeliner-affordance li:last-child span {
    text-transform: uppercase;
    font-size: 0.65em;
    top: 247px;
    left: 0px;
    text-align: center;
    color: hsla(0,0%,100%,1);
    font-weight: 800;
    letter-spacing: 0.5px;
    background-color: hsla(19, 100%, 55%, 1);
    border-radius: 4px;
    padding: 2px;
    position: absolute;
}
.timeliner-affordance li:last-child span::before {
    content: '';
    top: 99%;
    width: 100%;
    height: 100%;
    background: url('images/home/fleche-saisons.png') no-repeat;
    display: block;
    background-size: 100%
}
.timeliner li a span::before{
content: '';
position: absolute;
top: 99%;
width: 0px;
height: 0px;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-top: 8px solid hsla(19, 100%, 55%, 1);
-webkit-transform: translate(-50%, 0);
-ms-transform: translate(-50%, 0);
transform: translate(-50%, 0);
left: 50%;
}
.timeliner li a span {
position: absolute;
width: 72px;
opacity: 0.2;  
filter: alpha(opacity=0.2);
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.timeliner li a span.active{
opacity: 1;  filter: alpha(opacity=100);
top: -30px;
transition: all 0.3s;
}
.timeliner .s-nav-arrow {
display: inline-block;
}
.timeliner .s-nav-arrow .fleche-g, .timeliner .s-nav-arrow .fleche-d{
width: 45px;
height: 45px;
position: absolute;
bottom: 36%;
}
.timeliner .s-nav-arrow .fleche-g{
    left: -7%;
}
.timeliner .s-nav-arrow .fleche-d{
    right: -7%;
}
.timeliner .s-nav-arrow .nav-text{
cursor: pointer;
position: absolute;
bottom: 12%;
font-family: 'Open Sans';
color: hsla(19, 100%, 55%, 1);
font-size: 0.8em;
font-weight: 700;
}
.timeliner .right.s-nav-arrow .nav-text{
right: -9%;
}
.timeliner .left.s-nav-arrow .nav-text{
left: -10%;
}
#saisons-slider .cover{
width: 100%;
height: 100%;
position: relative;
top: 0;
left: 0;
overflow: hidden;
z-index: 1;
}
.cover .active{
 opacity: 1 !important;
}
.cover .active .wrap-saisonslides .first.active{    
 -webkit-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.cover .c-hiver{
background: url('images/home/hiver-bg-color.jpg') no-repeat;
width: 100%;
background-size: contain;
background-position: 0 0;
height: 100%;
position: absolute;
z-index: 1;
opacity: 0;  filter: alpha(opacity=0);
}
.cover .c-printemps{
background: url('images/home/printemps-bg-color.jpg') no-repeat;
width: 100%;
background-size: contain;
background-position: 0 0;
height: 100%;
position: absolute;
z-index: 1; 
opacity: 0;  filter: alpha(opacity=0);  
}
.cover .c-ete{
background: url('images/home/ete-bg-color.jpg') no-repeat;
width: 100%;
background-size: contain;
background-position: 0 0;
height: 100%;
position: absolute;
z-index: 1; 
opacity: 0;  filter: alpha(opacity=0);
}
.cover .c-automne{
background: url('images/home/automne-bg-color.jpg') no-repeat;
width: 100%;
background-size: contain;
background-position: 0 0;
height: 100%;
position: absolute;
z-index: 1;
opacity: 0;  filter: alpha(opacity=0);  
}
#saisons-slider .dublanc{
position: absolute;
background: hsla(0,0%,100%,1);
width: 150%;
height: 200%;
-webkit-transform: rotate(-30deg);
-ms-transform: rotate(-30deg);
transform: rotate(-30deg);
top: 10%;
left: 0%;
z-index: 1;
}
#saisons-slider .titles-s .title{
position: absolute;
z-index: 1;
opacity: 0;  filter: alpha(opacity=0);
top: 0;
left: 0;
display: inline-table;
margin: 8% 5% 0;
}
#saisons-slider .titles-s .title.active{
opacity: 1;  filter: alpha(opacity=100);
visibility: visible !important;
}
.wrap-saisonslides{
height: 100%;
width: 100%;
position: absolute;
top: 0;
z-index: 1;
overflow: hidden;
}
#saisons-slider .title h2{
color: hsla(0,0%,100%,1);
font-size: 3.4em;
padding-bottom: 15px;
letter-spacing: 0.5px;
}
#saisons-slider .title hr.wht{
border: 0;
background: hsla(0,0%,100%,1);
height: 4px;
width: 75%;
margin: 0;
position: absolute;
}
#saisons-slider .slides{
position: absolute;
width: 100%;
overflow: hidden;
height: 100%;
top: 0;
display: none;
left: 0;
}
#saisons-slider .slides.active{
display: block;
}
.wrap-saisonslides .pri h3.event-date{
color:  hsla(77, 76%, 37%, 1)
}
#saisons-slider .active.cover{
height: 100%;
}
.wrap-saisonslides .etes h3.event-date{
color:  hsla(47, 100%, 50%, 1);
}
.wrap-saisonslides .autom h3.event-date{
color:  hsla(32, 100%, 50%, 1);
}
h3 span.event-name{
color: hsla(0,0%,0%,1);
margin-top: 2px;
display: inline-block;
}
.wrap-saisonslides .visuel, .wrap-saisonslides .img-containing{
height: 100%;
}
.wrap-saisonslides .img-containing img{
height: 100%;
width: auto;
float: left;
}
.wrap-saisonslides .textuel a{
font-family: 'Open Sans';
font-weight: 700;
font-size: 1em;
color: hsla(202, 100%, 39%, 1);
}
.wrap-saisonslides .contenu-page {
    padding: 8vw 6vw 5vw 3vw;
    margin-left: 20%;
    height: 100%;
}
.wrap-saisonslides .contenu-page.right-svw{
 padding-right: 3vw;   
}
.contenu-page.right-svw .textuel h3{
  margin-top: 1vw;
}
.contenu-page.right-svw .content-bot{
    height: 13.5vw;
}
.content-blocks{
    display: -webkit-flex;
display: -ms-flexbox;
display: flex;;
-webkit-flex-direction: column;
-ms-flex-direction: column;
        flex-direction: column;}
.content-top{
     display: -webkit-flex;
display: -ms-flexbox;
display: flex;;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
width: 100%;
height: auto;   
}
.content-top .textuel.x-lvw{
    height: 18vw;
}
.content-bot.x-svw{
    height: 16vw;
}
.content-top > div{
 width: 50%;
height: auto;
float: left;  
padding-right: 2vw; 
}
.content-top > div:first-child{
height: 17vw;
}
.content-bot{
    display: -webkit-flex;
display: -ms-flexbox;
display: flex;;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
width: 100%;
height: 17vw;
}
.content-bot .visuel, .content-bot .textuel{
    width: 50%;
}
.content-bot .visuel .img-containing{
height: 100%;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;;
-webkit-flex-direction: row;
flex-direction: row;
-ms-flex-direction: row;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
position: relative;
}
.content-bot .visuel .img-containing img{
margin-right: 1vw;
}
.content-bot .visuel:nth-child(2) .img-containing{
justify-content: flex-start;
-ms-flex-pack: start;
-webkit-justify-content: flex-start;
}

.content-top .textuel h3, .content-bot .textuel h3{
    font-size: 1.9vw;
margin-bottom: 10px;
color: hsla(202, 100%, 39%, 1);
letter-spacing: 0.1px;
}
.content-top .textuel p, .content-bot .textuel p{
    font-size: 0.95vw;
}
.content-bot .textuel {
    padding-right: 2vw;
}

.content-top .textuel.svw{
    padding-right: 0;
}
.content-top .textuel.svw h3{
    margin-top: 1vw;
}
.content-bot .textuel h3{
    margin-top: 0;
}
.content-top .textuel.h33{
    height: 16vw;
}
.elmnt-play{
position: absolute;
background: url('images/play-vid.png') no-repeat;
width: 4.5vw;
height: 4.5vw;
top: 50%;
left: 60%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background-size: 4.5vw;
}
/********SECTION CHIFFRES************************************************/
#chiffres, #comptes{
background: hsla(0, 0%, 92%, 1);
height: 100vh;
min-height: 500px;
width: 100%;
overflow: hidden;
}
#comptes{
background: hsla(0, 0%, 98%, 1);
}
#chiffres .containing, #comptes .containing{
background: transparent;
position: relative;
height: 100vh;
width: 100%;
overflow: hidden;
margin: 0.5vw 0 5vw;
}
#chiffres .navigate, #comptes .navigate{
z-index: 999;
position: absolute;
left: 10%;
right: 10%;
bottom: calc(50% - 25px);
display: table-row;
}
#chiffres .nav-arrow, #comptes .nav-arrow{
    display: inline-block;
}
#chiffres .fleche-g, #chiffres .fleche-d,
#comptes .fleche-g, #comptes .fleche-d{
width: 40px;
height: 40px;
position: absolute;
bottom: 36%;
bottom: calc(50% - 25px);
}
#chiffres .fleche-g,
#comptes .fleche-g{
    left: -7%;
}
#chiffres .fleche-d,
#comptes .fleche-d{
    right: -7%;
}
a.left.nav-arrow.paspossible {
    display: none!important;
}
#chiffres .title, #chiffres .subs,
#comptes .title, #comptes .subs{
margin: 0 auto;
text-align: center;
letter-spacing: 0.3px;
}
#chiffres .title h2,
#comptes .title h2{
font-size: 3.8em;
}
#chiffres .title h2 span,
#comptes .title h2 span{
color: #000;
}
#chiffres .subs h3{
font-size: 2.4vw;
margin: 1vw 0 0.3vw;
}
#chiffres .subs h4{
font-size: 1.5em;
margin: 0;
}
#chiffres .tableaux{
    height: 80vh;
}
#chiffres .chiffres-graph{
height: calc(100% - 2vh);
display: inline-block;
margin: 0 auto;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
margin-left: 50%;
padding: 2vh 0 6vh;
}
svg.graph-repart{
    overflow: visible !important;
    position: relative;
    width: auto;
    height: 100%;
}
.graph-repart text{
font-size: 0.36em;
}
.graph-repart .graph-data.lw{
font-weight: 300;
}
.graph-repart .graph-data.hw{
font-weight: 700;
}
.graph-repart .graph-data.hwu{
font-weight: 700;
text-transform: uppercase;
}
.chiffres-31{
height: 100%;
margin: 0 auto;
padding: 4vh 0 0;
}
.chiffres-31 svg text{
font-family: 'Open Sans', sans-serif;
font-size: 0.9em;
font-weight: 300;
}
.chiffres-31 .stats .hw{
font-weight: 700;
}
.chiffres-31 .stats .nums{
font-size: 3.1em;
}
.chiffres-31 svg .listing text:nth-child(2n+1){
font-weight: 700;
font-size: 1.4em;
}
#chiffres .chiffreslide-3 .tableaux{
height: 82vh;
margin-top: -1vh;
}
.reseau-map{
    height: 100%;
margin: 0 auto;
}
.reseau-map text{
font-family: 'league_gothicregular', sans-serif;
font-size: 1em;
}
.reseau-maptext{
    margin: 0 auto;
height: 100%;
}
#chiffres .chiffreslide-4 .tableaux{
    height: 82vh;
margin-top: -2vh;
}
.reseau-maptext-svg text{
font-family: 'Open Sans', sans-serif;
font-size: 0.7em;
font-weight: 300;
}
.reseau-maptext-svg .subs text{
    font-weight: 700;
fill: hsla(19, 100%, 55%, 1);
}
#chiffres .chiffreslide-5 .tableaux{
    height: 80vh;
padding-bottom: 3vh;
}
.chiffreslide-5 .organ-graph{
    margin: 3vh auto;
height: 100%;
}
.organi-graph-svg text{
font-family: 'Open Sans', sans-serif;
font-size: 0.6em;
font-weight: 700;
}
.organi-graph-svg .lightos{
    font-weight: 400;
}
.organi-graph-svg{
width: 100%;
height: 135%;
margin-top: -5vw;
}
.organi-graph-svg .sub-t text,
.organi-graph-svg .dir text,
.organi-graph-svg .se-comm text{
font-size: 0.63em;
}
.organi-graph-svg .dir text:nth-child(2),
.organi-graph-svg .commercial .sub-t text:nth-child(2),
.organi-graph-svg .finances .sub-t text:nth-child(2),
.organi-graph-svg .immo .sub-t text:nth-child(3),
.organi-graph-svg .logistic .sub-t text:nth-child(3),
.organi-graph-svg .rh-sec .sub-t text:nth-child(4){
font-weight: 300;
}
.organ-stat-1 svg text, .organ-stat-1 svg tspan,
.organ-stat-2 svg text, .organ-stat-2 svg tspan{
 font-family: 'Open Sans', sans-serif;
font-size: 0.9em;
font-weight: 300;   
}
.organ-stat-1 svg .titre tspan,
.organ-stat-2 svg .titre tspan,
.organ-stat-2 svg .extra-titre text.hw{
    font-weight: 700;
    font-size: 1.5em;
}
.organ-stat-2 svg .extra-titre text.lw{
font-size: 0.75em;
}
#chiffres .chiffreslide-6 .tableaux,
#chiffres .chiffreslide-7 .tableaux{
    height: 86vh;
margin-top: -2vh;
}
.organ-stat-1 svg .init-caps text,
.organ-stat-2 svg .init-caps text{
font-weight: 700;
font-size: 0.75em;
}
.chiffreslide-6 .organ-stat-1,
.chiffreslide-7 .organ-stat-2{
    margin: 0 auto;
height: 100%;
}
.organ-stat-1 svg .listing-bas,
.organ-stat-2 svg .listing-bas{
font-size: 0.75em;
}
.organ-stat-1 svg .listing-bas .hw,
.organ-stat-2 svg .listing-bas .hw{
font-weight: 700;
}
.stats:nth-child(2), .stats:nth-child(3), .stats:nth-child(1){
-webkit-transform: translate(0, -1%);
    transform: translate(0, -1%);
}
/********************COMPTES********************/
#comptes{
background: hsla(0, 0%, 98%, 1);
}
.comptes-texte p{
font-size: 0.9vw;
margin-top: 5px;
font-family: 'Open Sans', sans-serif;
letter-spacing: -0.1px;
}
#comptes .slides.tabs .tableaux{
    background: hsla(0, 0%, 98%, 1);
}
p.right-a{
    text-align: right;
}
.extra-bk-layer{
position: absolute;
width: 100vw;
height: 100vh;
background: hsla(0, 0%, 98%, 1);
opacity: 0;
filter: alpha(opacity=0);
}
.comptes-texte h5{
margin: 0;
font-family: 'league_gothicregular', sans-serif;
font-size: 1.6vw;
color: #000;
font-weight: normal;
}
.compteslide-2 p:nth-child(5){
margin-top: 20px;
}
#comptes .tableaux{
padding: 2vw 10vw;
}
#comptes .tableaux.margtop{
    margin-top: 2vw;
}
#comptes-intro-4 p:last-child{
    text-align: right;
}
#comptes  .slides .cc-tableau{
 width: 100%;
}
#comptes .subs h3{
font-size: 2em;
margin: 10px 0 5px;
}
#comptes .subs h4{
font-size: 1.4vw;
margin: 0.4vw 0 0;
line-height: 1.4;
}
#comptes .slides.tabs .tableaux{
padding: 2vw 8vw;
width: 69vw;
margin-left: 50%;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
#comptes .slides.compteslide-7 .tableaux,
#comptes .slides.compteslide-11 .tableaux{
width: 71vw;
}
#comptes .slides.compteslide-9 .tableaux,
#comptes .slides.compteslide-10 .tableauxx{
width: 75vw;
padding-top: 0;
}
.cc-tableau img{
    background: hsla(0, 0%, 98%, 1);
}
.comptes-slider .contenu-page, .chiffres-slider-desk .contenu-page{
    padding: 2vw 0;
}
.chiffres-slider-desk .slick-slide .contenu-page{
   display: none !important;
}
.chiffres-slider-desk .slick-slide.slick-active .contenu-page{
   display: block !important;
}
.left.s-nav-arrow, .right.s-nav-arrow, 
.left.s-nav-arrow > div, .right.s-nav-arrow > div, 
.left.nav-arrow, .right.nav-arrow{
pointer-events: auto;
}
a.right.paspossible {
    display:none!important;
}
.paspossible{
    opacity: 0.2;
    z-index: -9;
    pointer-events: none;
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
}

#comptes-tableau-13 .cc-tableau img {
    width: 80%;
    margin: 0 auto;
}

/*************************FOOOTER*****************************/
#footer{
position: relative;
background: hsla(0,0%,100%,1);
border-top: 6px solid #95c236;
z-index: 1;
width: 100%;
}
.footer-container{
padding: 3vh;
}
#footer .logoclass{
    height: 1.1em;
}
.video-player{
position: absolute;
z-index: 9999;
background: hsla(0, 0%, 0%, 0.6);
width: 100%;
height: 100%;
top: 0;
display: none;
}
.video-player iframe{
    margin: 0 auto;
position: relative;
-webkit-transform:  translate(-50%, -50%);
transform: translate(-50%, -50%);
left: 50%;
top: 50%;
border: 2px solid hsla(19, 100%, 55%, 1);
}
.slides-mob .video-player iframe{
      width: 100%    !important;
  height: 50%;
}
span.close-vid{
    top: 5%;
position: absolute;
right:5%;
cursor: pointer;
z-index: 99;
}
span.close-vid::before{
    display: inline-block;
content: "\00d7";
font-size: 5em;
color: hsla(19, 100%, 55%, 1);
line-height: 0.6em;
font-weight: 300;
-webkit-transition: all 0.2s ease-out;
transition: all 0.2s ease-out;
-webkit-transform: translate(-8%,-8%);
transform: translate(-8%,-8%);
}
.elmnt-play{
    position: absolute;
top: 50%;
left: 60%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
width: 4.5vw;
height: 4.5vw;
}

.button_calendar {
    height: 40px;
    padding: 10px 15px;
    background-color: #5870a4;
    color: white;
    font-size: 1.25em;
    text-transform: uppercase;
}
.button_calendar.printemps {
    background-color: #68bd92;
}
.button_calendar.ete {
    background-color: #f6a54e;
}
.button_calendar.automne {
    background-color: #d35264;
}
.i-saison .wrap-text p:last-child {
    margin-top: 30px;
}

/***** NEW CALENDAR *****/
#saisons-slider {
    background-color: white;
}
#saisons-slider .slide .slide-title {
    height: 200px;
    background-image: url('images/fonds/hiver.jpg');
    background-size: cover;
    padding: 80px 4% 0 4%;
}

#saisons-slider .slide.slide-printemps .slide-title {
    background-image: url('images/fonds/printemps.jpg');
}
#saisons-slider .slide.slide-ete .slide-title {
    background-image: url('images/fonds/ete.jpg');
}
#saisons-slider .slide.slide-automne .slide-title {
    background-image: url('images/fonds/automne.jpg');
}

#saisons-slider .slide.slide-printemps .sliding a {
    color: #68bd92;
    text-decoration: underline;
    font-weight: bold;
}
#saisons-slider .slide.slide-automne .sliding a {
    color: #d35264;
    text-decoration: underline;
    font-weight: bold;
}
#saisons-slider .slide.slide-ete .sliding a {
    color: #f6a54e;
    text-decoration: underline;
    font-weight: bold;
}

#saisons-slider .slide .slide-title .slide-center {
    width: 675px;
    margin: 0 auto;
}

#saisons-slider .slide .slide-content .slide-article .article-content {
    margin-bottom: 80px;
}

#saisons-slider .slide .slide-content .slide-article .article-content img {
    width: auto;
    display: inline-block;
    margin-right: 5px;
    margin-top: 0;
}
#saisons-slider .slide .slide-content .slide-article .article-content img:last-child {
    margin-right: 0;
}

#saisons-slider .slide .slide-title h3 {
    margin: 0;
    color: white;
    font-size: 48px;
}

#saisons-slider .slide .slide-title h3 span.saison {
    text-transform: uppercase;
    diplay: inline-block;
    padding: 15px 20px;
    background-color: #5870a4;
}

#saisons-slider .slide .slide-content {
    position: relative;
    width: 675px;
    margin: 0 auto;
    padding-top: 75px;
}

#saisons-slider .slide .slide-content .slide-article .article-content {
    position: relative;
    width: 475px;
}

#saisons-slider .slide .calendar {
    position: absolute;
    top: 230px;
    right: 4%;
}
.slide-hiver .slide-title hr {
    background-color: #5870a4;
}
.slide-printemps .slide-title hr {
    background-color: #68bd92;
}
#saisons-slider .slide-printemps.slide .slide-title h3 span.saison {
    background-color: #68bd92;
}
.slide-ete .slide-title hr {
    background-color: #f6a54e;
}
#saisons-slider .slide-ete.slide .slide-title h3 span.saison {
    background-color: #f6a54e;
}
.slide-automne .slide-title hr {
    background-color: #d35264;
}
#saisons-slider .slide-automne.slide .slide-title h3 span.saison {
    background-color: #d35264;
}
#saisons-slider .slide .calendar ul {

}

#saisons-slider .slide .calendar li {
    list-style: none;
    margin-bottom: 25px;
    font-size: 13px;
    text-align: right;
    font-family: "Open Sans";
    font-weight: bold;
    height: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
}

#saisons-slider .slide .calendar li a {
    color: #969696;
}

#saisons-slider .slide .calendar li.active a {
    color: #5870a4;
    font-weight: bolder;
    font-size: 16px;
}

#saisons-slider .slide .calendar li.other a {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
}

#saisons-slider .slide .calendar li.printemps a {
    color: #68bd92;
}

#saisons-slider .slide-ete.slide .calendar li.active a {
     color: #f6a54e;
 }
#saisons-slider .slide-ete.slide .calendar li:after {
    border: 2px solid #979797;
    background: white;
}
#saisons-slider .slide-ete.slide .calendar li.active:after {
    background-color: #f6a54e;
    border: 2px solid #f6a54e;
}

#saisons-slider .slide-automne.slide .calendar li.active a {
    color: #d35264;
}
#saisons-slider .slide-automne.slide .calendar li:after {
    border: 2px solid #979797;
    background: white;
}
#saisons-slider .slide-automne.slide .calendar li.active:after {
    background-color: #d35264;
    border: 2px solid #d35264;
}

#saisons-slider .slide-printemps.slide .calendar li.active a {
    color: #68bd92;
}
#saisons-slider .slide-printemps.slide .calendar li.active:after {
    background-color: #68bd92;
    border: 2px solid #68bd92;
}
#saisons-slider .slide-printemps.slide .calendar li:after {
    /*background-color: #68bd92;*/
    border: 2px solid #979797;
    background: white;
}

#saisons-slider .slide-hiver.slide .calendar li.active:after {
    background-color: #5870a4;
    border: 2px solid #5870a4;
}

         #saisons-slider .slide .calendar li.ete a {
    color: #f6a54e;
}

#saisons-slider .slide .calendar li.hiver a {
    color: #5870a4;
}

#saisons-slider .slide .calendar li.automne a {
    color: #d35264;
}
#saisons-slider .slide .calendar li.printemps-rond:after {
    background-color: #68bd92;
}

#saisons-slider .slide .calendar li.printemps:after {
    background-color: #68bd92;
}

#saisons-slider .slide .calendar li:after {
    border: 2px solid #979797;
    background: white;
}

#saisons-slider .slide .calendar li.ete:after {
    background-color: #f6a54e;
}

#saisons-slider .slide .calendar li.automne:after {
    background-color: #d35264;
}
#saisons-slider .slide .calendar li.hiver:after {
    background-color: #5870a4;
}
.fin-annee {
    color: #969696;
    line-height: 22px;
}
#saisons-slider .slide .calendar li.fin-annee:after {
    background-color: #fff;
    border: 2px solid #969696;
}
#saisons-slider .slide .calendar li.not-active.printemps:after {
    background-color: #fff;
    border: 2px solid #68bd92;
}
#saisons-slider .slide .calendar li.not-active.ete:after {
    background-color: #fff;
    border: 2px solid #f6a54e;
}
#saisons-slider .slide .calendar li.not-active.automne:after {
    background-color: #fff;
    border: 2px solid #d35264;
}
#saisons-slider .slide .calendar li.not-active.hiver:after {
    background-color: #fff;
    border: 2px solid #5870a4;
}

#saisons-slider .slide .calendar li:after {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: " ";
    position: absolute;
    margin-left: 20px;
    margin-top: 7px;
}

#saisons-slider .slide .calendar li:after {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: " ";
    position: absolute;
    margin-left: 20px;
    margin-top: 7px;
}

#saisons-slider .container-img {
    width: 1175px;
    margin: 0 auto 80px auto;
    text-align: left;
}
#saisons-slider .container-img img {
    width: auto;
    display: inline-block;
    margin-right: 15px;
}
#saisons-slider .container-img img:last-child {
    margin-right: 0;
}

.filet-bleu {
    position: absolute;
    width: 2px;
    height: 20px;
    background-color: #5870a4;
}

.filet-vert {
    position: absolute;
    width: 2px;
    height: 20px;
    background-color: #68bd92;
}

.filet-jaune {
    position: absolute;
    width: 2px;
    height: 20px;
    background-color: #f6a54e;
}

.filet-rouge {
    position: absolute;
    width: 2px;
    height: 20px;
    background-color: #d35264;
}

.filet-noir {
    position: absolute;
    width: 2px;
    height: 20px;
    background-color: #969696;
}

.filet1 {
    right: -26px;
    top: 50px;
}

.filet2 {
    right: -26px;
    top: 95px;
}

.filet3 {
    right: -26px;
    top: 140px;
}

.filet4 {
    right: -26px;
    top: 185px;
}

.filet5 {
    right: -26px;
    top: 230px;
}

.filet6 {
    right: -26px;
    top: 275px;
}

.filet7 {
    right: -26px;
    top: 320px;
}

.filet8 {
    right: -26px;
    top: 365px;
}

.filet9 {
    right: -26px;
    top: 410px;
}

.filet10 {
    right: -26px;
    top: 455px;
}

.filet11 {
    right: -26px;
    top: 500px;
}

.filet12 {
    right: -26px;
    top: 545px;
}

.filet13 {
    right: -26px;
    top: 590px;
}

.filet14 {
    right: -26px;
    top: 635px;
}

.filet15 {
    right: -26px;
    top: 680px;
}

.filet16 {
    right: -26px;
    top: 725px;
}

.filet17 {
    right: -26px;
    top: 770px;
}

.filet18 {
    right: -26px;
    top: 815px;
}

.filet19 {
    right: -26px;
    top: 860px;
}

.filet20 {
    right: -26px;
    top: 905px;
}

img.img-left {
    float: left;
    width: 180px;
}
img.img-right {
    float: right;
    width: 280px;
}

#saisons-slider .slide .slide-content .slide-article .article-content p {
    font-size: 14px;
}
#saisons-slider .slide .slide-content .slide-article .article-content p:first-child {
    margin-top: 25px;
}
#saisons-slider .slide .slide-content .slide-article .article-content img {
    margin-top: 80px;
}

#saisons-slider .slide .slide-content .slide-article .article-date {
    font-size: 30px;
}
#saisons-slider .slide .slide-content .slide-article .article-title {
    font-size: 30px;
}

#saisons-slider .slide-hiver.slide .slide-content .slide-article .article-date {
    color: #5870a4;
}

#saisons-slider .slide-printemps.slide .slide-content .slide-article .article-date {
    color: #68bd92;
}

#saisons-slider .slide-ete.slide .slide-content .slide-article .article-date {
    color: #f6a54e;
}

#saisons-slider .slide-automne.slide .slide-content .slide-article .article-date {
    color: #d35264;
}

span.italic {
    font-style: italic;
}
.mobile {
    display: none;
}
.images-grid {
    position: relative;
}
    .images-grid .overlay-text {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #95c236;
        text-align: center;
        font-size: 34px;
        line-height: 44px;
        color: white;
        text-transform: uppercase;
    }

/*************RESPONSIVITY***************/
@media screen and (min-width: 1600px){
    .content-bot{
        height: 16vw;
    }
    .contenu-page.right-svw .content-bot{
        height: 13vw;
    }
    .content-top .textuel.x-lvw{
        height: 17vw;
    }
    .content-bot.x-svw{
        height: 15vw;
    }
}
@media screen and (max-width: 1500px){
  ul.menu-top li a {
    color: hsla(0, 0%, 50%, 1);
    text-decoration: none;
    font-size: 1vw;
  }
  ul.menu-top{
    padding-left: 0;
  } 
    ul.menu-top li {
        margin-right: 0;
        margin-left: 2.5vw;
    }
    ul.sous-menu li{
      margin-left: 0;
    }
    ul.sous-menu li a{
      color: hsla(0, 0%, 100%, 1);
    }
   #chiffres .title h2, #comptes .title h2 {
    font-size: 3.8vw;
  }
  #comptes .slides.tabs .tableaux {
    padding: 1vw 8vw;
    width: 67vw;
  }
}
@media screen and (min-width: 801px){

    .nav-mob, .nav-pop-mob{
        display: none;
    }
    #dix-ans h2 br{
        display: none;
    }
    .dix-ans-graph-mob{
        display: none;
    }
    #l-hiver-mob, #l-printemps-mob, #l-ete-mob, #l-automne-mob {
        display: none;
    }
    .title-comptemob{
        display: none;
    }
    .mobile-graph-slides.slick-slider{
        display: none;
    }
    #chiffres .navigate-mob{
        display: none;
    }
}
@media screen and (min-device-width : 1025px) and (max-device-width : 1280px) and (orientation : landscape){ 
  .hero-bg{
    background-size: 125%;
  }
  .intro-title .content {
    padding-top: 100px;
  }
  .intro-title h1 {
    font-size: 7vw;
  }
  #dix-ans {
    background-size: cover;
  }
  .dix-ans-graphicon {
    height: 80vh;
    padding: 0 10%;
  }
  .i-saison .wrap-text, .i-galerie .wrap-text {
    padding: 0vh 6vw 2vh 14vw;
  }
  .i-saison p, .i-galerie p {
    font-size: 1.35vh;
  }
  .i-saison h3, .i-galerie h3 {
    font-size: 2.3vw;
  }
  .timeliner ul, .timeliner-affordance ul {
    margin-bottom: 30px;
  }
  #saisons-slider .title h2 {
    font-size: 3.5vw;
  }
  #chiffres .title h2, #comptes .title h2 {
      font-size: 4.5vw;
  }
  #comptes .subs h4 {
    font-size: 2vw;
  }
  .comptes-texte p {
    font-size: 0.9vw;
  }
  .comptes-texte h5 {
    font-size: 2vw;
  }
  #comptes .slides.tabs .tableaux {
    width: 80vw;
  }
/***************SAISONS SLIDER MINI FORMAT LANDSCAPE/**************/

  .content-top .textuel p, .content-bot .textuel p {
    font-size: 1.1vw;
  }
  .content-top .textuel h3, .content-bot .textuel h3 {
    font-size: 2vw;
  }

  .wrap-saisonslides .contenu-page {
    padding: 8vw 8vw 5vw 3vw;
  }
  .content-bot{
  }
  .content-bot .visuel.spec-width .img-containing{
    width: 83%;
    margin-left: 17%;
  }
  .content-top .textuel.h33, .content-top .textuel.x-lvw{
    height: 22vw;
  }
  .content-top > div:first-child {
    height: 22vw;
  }
  .content-bot .visuel .img-containing img {
    padding-right: 1vw;
    margin-right: 0;
  }
  .wrap-saisonslides .img-containing img {
    height: auto;
    width: 100%;
  }
  .visuel.ultra-flex .img-containing{
    display: block;
  }
  .visuel.ultra-flex .img-containing img{
    display: block;
    float: left;
    height: 100%;
    width: auto;
  }
  .content-bot.x-svw .visuel:first-child img,
  .content-bot .spec-width .img-containing, .content-bot .spec-width img,
  .right-svw .content-bot .spec-width.ultra-flex .img-containing{
    width: auto;
    height: 100%;
  }
  .right-svw .content-bot .ultra-flex:first-child img:first-child{
    margin-left: 3%;
  }
  .spec-width.ultra-flex .img-containing.no-f-margin{
    margin-left: 0;
    width: auto !important;
  }

}
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape){ 

/***************SAISONS SLIDER MINI FORMAT LANDSCAPE/**************/
  .content-top .textuel h3, .content-bot .textuel h3 {
    font-size: 2.3vw;
  }
  .content-top .textuel p, .content-bot .textuel p {
    font-size: 1.35vw;
  }

  .wrap-saisonslides .contenu-page {
    padding: 12vw 5vw 5vw 3vw;
    margin-left: 15%;
  }
  .content-bot{
  }

  .content-bot .visuel.spec-width .img-containing{
    width: 83%;
    margin-left: 17%;
  }
  .content-bot .visuel.spec-width.ultra-flex .img-containing {
    width: 83%;
    margin-left: 26% !important;
  }
  .content-bot .visuel.spec-width.ultra-flex .img-containing.no-f-margin {
    width: 83%;
    margin-left: 0% !important;
  }
  .content-top .textuel.h33, .content-top .textuel.x-lvw{
    height: 22vw;
  }
  .content-top > div:first-child {
    height: 22vw;
  }
  .content-bot .visuel .img-containing img {
    padding-right: 1vw;
        margin-right: 0;
  }
  .wrap-saisonslides .img-containing img {
      height: auto;
      width: 100%;
  }
  .visuel.ultra-flex .img-containing{
    display: block;
  }
  .visuel.ultra-flex .img-containing img{
    display: block;
    float: left;
    height: 100%;
    width: auto;
  }
  .content-bot.x-svw .visuel:first-child img,
  .content-bot .spec-width .img-containing, .content-bot .spec-width img,
  .right-svw .content-bot .spec-width.ultra-flex .img-containing{
    width: auto;
    height: 100%;
  }
  .right-svw .content-bot .ultra-flex:first-child img:first-child{
    margin-left: 9%;
  }
  .spec-width.ultra-flex .img-containing.no-f-margin{
    margin-left: 0;
    width: auto !important;
  }
  .content-bot.uni-rflex{
    height: auto !important;
  }
  .ninty-w img{
    width: 90% !important;
  }
  .hero-bg{
    background-size: cover;
  }
  .intro-title h1 {
    font-size: 7vw;
  }
  .header-container {
    padding: 0 2%;
  }
  ul.menu-top li {
    margin-left: 1.8vw;
  }
  ul.menu-top li a {
    font-size: 1.2vw;
  }
  #dix-ans {
    background-size: cover;
    height: 100vh;
  }
  #dix-ans h2 {
    font-size: 6vw;
  }
  .dix-ans-logo {
    margin-top: 0px;
  }
  .dix-ans-graphicon {
    padding: 0 3%;
  }
  .i-saison .wrap-text, .i-galerie .wrap-text {
    padding: 0vh 4vw 2vh 8vw;
  }
  .i-saison p, .i-galerie p {
    font-size: 1.5vw;
  }
  .i-saison h3, .i-galerie h3{
    font-size: 2.7vw;
  }
  #saisons-slider .dublanc {
    width: 160%;
    height: 150%;
    -webkit-transform: rotate(-38deg);
    -ms-transform: rotate(-38deg);
    transform: rotate(-38deg);
  }
  #saisons-slider .titles-s .title{
    margin-top: 10%;
  }
  #saisons-slider .title h2 {
    font-size: 4vw;
    padding-bottom: 10px;
  }
  .guidance .title-announce h1 {
    font-size: 4vw;
  }
  .timeliner-affordance {
    left: 7.5vw;
    right: 7.5vw;
  }

  #saisons-slider .timeliner {
    left: 12%;
    right: 12%;
  }
  .timeliner ul, .timeliner-affordance ul {
    margin-bottom: 30px;
  }
  .timeliner .right.s-nav-arrow .nav-text {
    right: -13%;
  }
  .timeliner .s-nav-arrow .fleche-d {
    right: -10%;
  }
  .timeliner .s-nav-arrow .fleche-g {
    left: -10%;
  }
  .timeliner .left.s-nav-arrow .nav-text {
    left: -14%;
  }

  #chiffres .title h2, #comptes .title h2 {
    font-size: 5vw;
  }
  #comptes .subs h4 {
    font-size: 2vw;
  }
  .comptes-texte h5 {
    font-size: 2vw;
  }
 .comptes-texte p {
    font-size: 1.25vw;
  }
  #comptes .slides.tabs .tableaux {
    padding: 5vw 8vw;
    width: 85vw;
  }
  .chiffres-31 {
    padding: 4vh 4vw 0;
  }
  #chiffres .chiffreslide-3 .tableaux, #chiffres .chiffreslide-4 .tableaux, #chiffres .chiffreslide-6 .tableaux, #chiffres .chiffreslide-7 .tableaux{
    height: 75vh;
    margin-top: 0;
  }
}


@media screen and (max-width: 767px) and (orientation : landscape) {
  .header .nav-mob ul li a {
    font-size: 2.5vw !important;
    line-height: 1.5em !important;
  }
  .saison-mob .saison-event-list {
      height: 100% !important;
  }
  .saison-event-list .titlemob {
    height: 50vh !important;
  }
  .saison-event-list .saison-mob-anchors {
    height: 100vh !important;
    padding: 4vw 6vw !important;
  }
  ul.call-mob-slides li::before {
    width: 1.2vw !important;
    height: 1.2vw !important;
    border-radius: 1.2vw !important;
  }
  ul.call-mob-slides li {
    font-size: 4.4vw !important;
    margin: 1.6vw auto !important;
  }
  #chiffres, #chiffres .containing, #chiffres .mobile-graph-slides, #chiffres .graph-slide{
    height: 220vh !important;
  }

}
@media screen and (max-width: 800px) {
    .mobile {
        display: none;
    }

    #developpement-durable {
        height: 520px;
    }
    #developpement-durable .mobile {
        text-align: center;
    }
    #developpement-durable .mobile img {
        width: 50%;
        margin: 0 auto;
        margin-top: 50px;
    }

    #developpement-durable h2 {
        font-size: 8vw;
        line-height: 30px;
        padding-left: 15px;
        padding-right: 60px;
    }

    html, body{
    overflow-y: scroll; /* has to be scroll, not auto */
    -webkit-overflow-scrolling: touch;
    }
    .animated {
    -webkit-animation-fill-mode: none;
    -moz-animation-fill-mode: none;
    -o-animation-fill-mode: none;
    animation-fill-mode: none;
    will-change: unset;
    }
    .scroll-cook{
        display: none;
    }
    .header{
        position: relative;
        width: 100%;
        height: auto;
        right: 0;
        padding: 0;
    }
    .header-container{
        height: 100%;
        padding: 0;
    }
    .header .corp{
        width: 100%;
        height: auto;
        position: absolute;
        left: 0;
        top: 0;
        padding: 1em 1em 0.7em;
        background: hsla(0, 0%, 100%, 1);
    }
    .header .logoclass{
        width: 40vw;
        height: auto;
    }
    #saisons-slider .containing{
        display: none;
    }
    .logoclass .logo-top-svg{
        width: 100%;
        height: auto;
    }
    .nav-pop-mob{
        float: right;
        position: relative;
        width: 8vw;
        border: 0;
        height: 8vw;
        top: -1px;
    }
    .nav-desk{
        display: none;
    }
    .nav-mob{
    top: 0;
        position: fixed;
        width: 100%;
    }
    .nav-mob .menu-drop{
    width: 100%;
        margin: 0;
        padding: 0;
        display: table;
        position: relative;
        float: left;
        margin-top: -100%;
    }
    .header .nav-mob ul li{
        width: 100%;
        background: #95c236;
        border-bottom: 2px solid hsla(0, 0%, 100%, 1);
        padding: 12px 35px;
    }
    .header .nav-mob ul li:last-child{
        border: none;
    }
    .header .nav-mob ul li.expanded{
       padding: 12px 0 0;
    }
    li.expanded a{
        padding: 0 35px;
    }
    .header .nav-mob ul li.expanded .carette{
        display: block;
        float: right;
        border: none;
        background: url('images/fleche-menu.png') no-repeat;
        background-size: 100%;
        width: 4vw;
        height: 5vw;
        background-position: 0% 50%;
    }
    .header .nav-mob ul li a{
        color: hsla(0, 0%, 100%, 1);
        font-size: 3vw;
        line-height: 1.8em;
        font-weight: 600;
        display: inline-table;
        width: 100%;
    }
    .header ul.menu-dropdown{
        margin: 12px 0 -12px;
        width: 100%;
        background: transparent;
        display: block;
        max-width: 100%;
        padding: 0;
        opacity: 1;
        top: -12px;
        position: relative;
        max-height: 0;
        overflow: hidden;
        -webkit-transition: max-height .5s cubic-bezier(0, 1, 0, 1) -.2s;
        transition: max-height .5s cubic-bezier(0, 1, 0, 1) -.2s;
    }
    .header .nav-mob ul.menu-dropdown li{
        padding-left: 50px;
        opacity: 1;
        font-size: 1em;
    }
    .header .nav-mob ul li a.nolink{
        margin-bottom: 12px;
    }
    ul.menu-dropdown li:first-child{
           border-top: 2px solid hsla(0, 0%, 100%, 1);
    }
    .header .nav-mob ul li .second-menu{
        position: relative;
        height: 100%;
        display: inline;
    }
    .header .nav-mob ul.menu-dropdown li:last-child{
    margin: 0;
    border-bottom: 2px solid hsla(0, 0%, 100%, 1);
    }
    .header .nav-mob li.expanded:hover, .header .nav-mob ul.dropdown li:hover{
       background: hsla(205, 59%, 72%, 1);
       -webkit-transition: background 0.3s ease-out;
       transition: background 0.3s ease-out;
    }
       li.expanded:hover >  ul.menu-dropdown{
     /* max-height: 9999px;*/
      -webkit-transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
    -webkit-transition-delay: 0s;
        transition-timing-function: cubic-bezier(0.5, 0, 1, 0); 
    transition-delay: 0s;
    }
    .nav-pop{
        display: none;
    }
    .nav-pop-mob{
      cursor: pointer;
    }
    .nav-pop-mob.navtotop svg .bg{
      fill:  #95c236;
    }
    .nav-mob .menu-dropdown.true-expand{
        max-height: 999px !important;
    }
    .intro-title .content {
    padding-top: 17vw;
    }
    .intro-title h1 {
    font-size: 9vw;
    }
    .intro-title hr {
    border-bottom: 3px solid hsla(205, 74%, 44%, 1);
    }
    .intro-title p {
    line-height: 0.9;
    }
    .intro-bg{
        height: 100vh;
    }
    .hero-bg-bl{
        display: none;
    }
    #message .containing{
        padding: 5vw 6.5vw;
    margin: 0 5vw 100px;
    }
    #message h2{
    font-size: 5vw;
    }
    #message .containing hr.orng {
    height: 4px;
    width: 30vw;
    margin: 40px 0 5px;
    }
    #message p{
        font-size: 3vw;
    }
    #message p:first-of-type, #message p:nth-of-type(2){
        display: block;
    }
    #message p.rightext.no-bottom{
      text-align: right;
      margin-top: 0;
      padding-bottom: 20px;
    }
    hr.orng {
    height: 6px;
    }   
    #dix-ans {
    background: url('images/home/la_vd_01-mob.jpg') no-repeat;
    background-size: cover;
    }
    .dix-ans-title{
    padding-left: 7%;
    padding-top: 7%;
    }
    #dix-ans h2{
     line-height: 1.1;
    font-size: 9vw;
    }
    .dix-ans-logo{
    margin-top: 8px;
    height: 20vw;
    position: relative;
    right: 0;
    float: left;
    margin: 0;
    margin-left: -2.5vw;
    }
    .dix-ans-graphicon{
        display: none;
    }
    .dix-ans-graph-mob{
      padding: 2vw 10vw;
    }
    #saisons-intro .containing{
      display: table;
    }
    .intro-text-bg{
  display: block;
    }
    .i-saison p, .i-galerie p{
        font-size: 3vw;
    }
    .i-saison h3::after, .i-galerie h3::after {
            width: 27vw;
        }
    .i-saison h3, .i-galerie h3{
            font-size: 6vw;
        }
    .i-saison .wrap-text, .i-galerie .wrap-text{
            padding: 5vw;
            position: relative;
            z-index: 9;
        }
   .intro-text-bg .i-saison .contenu, .intro-text-bg .i-galerie .contenu{
        height: 62%; 
        background: hsla(0, 0%, 100%, 1);   
        position: relative;
        z-index:9;
        display: inline-table;
        }
    .intro-text-bg .i-saison, .intro-text-bg .i-galerie{
        width: 100%;
        height: 100%;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        -webkit-flex-direction: column;
        justify-content: space-between;
        -webkit-justify-content: space-between;    
        -ms-flex-pack: justify;
        }
        .i-hiver .contenu-bg, .i-ete .contenu-bg, .i-automne .contenu-bg {
            background-position: 50% 62%;
            -webkit-order:2;
            -ms-flex-order:2;
            order:2;
            height: 50vw;
            background-size: 100%;
            position: relative;
            z-index: 9;
        }
        .i-printemps .contenu-bg {
                background-position: 50% 25%;
                -webkit-order:2;
              -ms-flex-order:2;
              order:2;
            height: 50vw;
            background-size: 100%;
            position: relative;
            z-index: 9;
        }
        .intro-text-bg .i-galerie .contenu{
            -webkit-order:2;
            -ms-flex-order:2;
            order:2;
        }
        .i-dir .contenu-bg, .i-admin .contenu-bg, .i-comite .contenu-bg, .i-outlet .contenu-bg{
         background-position: 50% 62%;
        order: 1;
        -ms-flex-order: 1;
        -webkit-order: 1;
        height: 70vw;
        background-size: 115%;
        position: relative;
        z-index: 9;
        }
        .i-outlet .contenu-bg {
            background-position: 80% 62%;
            }
        #chiffres .navigate {
            bottom: 3%;
        left: 12%;
        right: 12%;
        }
        #chiffres .fleche-g, #chiffres .fleche-d{
            width: 8vw ;
            height: 8vw;
        }
        #saisons-slider{
          z-index: 2;
          overflow: visible;
        }
        .superflow{
        overflow: visible !important;
        }
       #l-hiver-mob .saison-event-list .titlemob{
        background: url('images/home/hiver-bg-color.jpg') no-repeat;
       }
        #l-printemps-mob .saison-event-list .titlemob{
        background: url('images/home/printemps-bg-color.jpg') no-repeat;
       }
         #l-ete-mob .saison-event-list .titlemob{
        background: url('images/home/ete-bg-color.jpg') no-repeat;
       }
         #l-automne-mob .saison-event-list .titlemob{
        background: url('images/home/automne-bg-color.jpg') no-repeat;
       }
        #l-hiver-mob .saison-event-list .titlemob, #l-printemps-mob .saison-event-list .titlemob, #l-ete-mob .saison-event-list .titlemob, #l-automne-mob .saison-event-list .titlemob{
            position: relative;
            opacity: 1;
            background-size: 112vw;
            filter: alpha(opacity=100);
        }
        #l-hiver-mob, #l-printemps-mob, #l-ete-mob, #l-automne-mob {
          background-color: hsla(0, 0%, 100%, 1);
        }
        .saison-mob{
          position: relative;
        }
        .saison-mob.hiver{
          z-index: 4;
        }
        .saison-mob.printemps{
          z-index: 3;
        }
        .saison-mob.ete{
          z-index: 2;
        }
        .saison-mob.automne{
          z-index:1;
        }
        .saison-mob .slides-mob{
            left: 0;
            position: absolute;
            top: 0;
            height: auto;
            width: 100%;
            z-index: 9;
            overflow: hidden;
        }
        .saison-mob.automne .saison-event-list .left-calls{
        max-width: 48%;
        }
        .saison-mob .content-blocks{
            height: 100%;
            background: hsla(0, 0%, 100%, 1);
            display: block !important;
            flex-direction: unset;
        }
        .saison-mob .content-blocks .visuel{
        overflow: hidden;
        position: relative;
        }
        .saison-mob .content-blocks .textuel{
        padding: 0vw 4vw 4vw;
        position: relative;
        background: hsla(0, 0%, 100%, 1);
        }
        .saison-mob .content-blocks .textuel h3{
        color: hsla(202, 100%, 39%, 1);
        font-size: 6vw;
        margin: 4vw 0;
        }
        .slides-mob .content-blocks .retour-btn{
        width: 100%;
        position: relative;
        text-align: left;
        padding-bottom: 0vw;
        padding-left: 4vw;
        padding-top: 4vw;
        }
        .saison-mob .content-blocks .textuel p{
        font-size: 3.4vw;
        line-height: 1.5;
        }
        .saison-mob .content-blocks .textuel a{
        color: hsla(202, 100%, 39%, 1);
        font-weight: 700;
        }
        .saison-mob .content-blocks .img-containing{
            position: relative;
            height: 100%;
        }
        .saison-mob .content-blocks .img-containing > div:first-child{
            position: relative;
            z-index: 4;
        }
        .saison-mob .content-blocks .img-containing > div{
            position: absolute;
            top: 0;
            width: 100%;
        }
         .saison-mob .content-blocks .visuel .narrows{
                position: absolute;
            bottom: 0;
            right: 0;
            background: hsla(0, 0%, 100%, 0.8);
            height: 10vw;
            width: 27vw;
            z-index: 5;
        }   
        .saison-mob .content-blocks .visuel .narrows span{
            width: 12vw;
            height: 10vw;;
            position: absolute;
            bottom: 0;
            padding: 1vw;
            vertical-align: bottom;
            display: block;
        }
        .saison-mob .content-blocks .visuel span.on-right{
            background-size: 6vw !important;
                    background: url('images/fleche-menu-saison-mob.png') no-repeat;
                    right: 0;
                            background-position: 50% 50% !important;
        }
            .saison-mob .content-blocks .visuel span.on-left{
                background-size: 6vw !important;
                        background-position: 50% 50% !important;
                left:0;
                        background: url('images/fleche-menu-saison-mob-g.png') no-repeat;
            }
            .saison-mob .content-blocks .img-containing > div:nth-child(2){
        z-index: 3;
            }
           .saison-mob .content-blocks .img-containing > div:nth-child(3){
        z-index: 2;
            }
        .saison-mob .content-blocks .img-containing > div:nth-child(4){
            z-index:1;
             }
    /*.saison-mob .content-blocks .img-containing > div{
        left: 100%;
    }
    .saison-mob .content-blocks .img-containing > div.once-all{
        left: 0;
    }*/
            .saison-mob .slides-mob.once-active{
                position: relative;
                height: 0;
            }

            .saison-mob .content-blocks .retour-btn a{
            text-transform: uppercase;
            font-family: 'Open Sans', sans-serif;
            font-weight: bold;
            font-size: 3vw;
            padding: 10px 25px;
            background: hsla(19, 100%, 55%, 1);
            color: hsla(0, 0%, 100%, 1);
            display: inline-block;
            cursor: pointer;
        }
        .saison-mob .slides-mob.active{
            left: 0;
        }
        .saison-mob .saison-event-list{
            position: relative;
            top: 0;
            display: -webkit-flex;
            display: flex;;
            flex-direction: column;
            -webkit-flex-direction: column;
            width: 100%;
            height: 600px;
        }
        .saison-event-list .titlemob{
            height: 31vh;
            position: relative;
            padding: 5vw;
        }
        .saison-event-list .saison-mob-anchors{
            height: auto;
            background: hsla(0, 0%, 100%, 1);
            padding: 6vw;
            display: -webkit-flex;
            display: flex;;
            -webkit-flex-direction: row;
            -ms-flex-direction: row;
            flex-direction: row;
            padding-right: 3vw;
        }
        .visiblenot{
          display: none;
        }
        #saisons-slider .titlemob h2 {
            position: absolute;
            bottom: 15%;
            margin-bottom: 10px;
            font-size: 6vw;
        color: hsla(0,0%,100%,1);
        padding-bottom: 15px;
        letter-spacing: 0.5px;
        }
        #saisons-slider .titlemob hr.wht {
            position: absolute;
            bottom: 15%;
            width: 27vw;
            border: 0;
            background: hsla(0,0%,100%,1);
            height: 4px;
            margin: 0;
        }
         ul.call-mob-slides{
            margin: 0;
            padding: 0;
         }
        ul.call-mob-slides li{
            font-size: 5.5vw;
            font-family: 'league_gothicregular', sans-serif;
            list-style-type: none;
            color: #5870a4;
            margin: 2.5vw auto;
            display: inline-block;
            cursor: pointer;
            padding-left: 3vw;
        }
        .left-calls ul.call-mob-slides li:first-child, .right-calls ul.call-mob-slides li:first-child{
            margin-top: 0;
        }
        ul.call-mob-slides li:before{
            content: '';
            position: absolute;
            width: 1.5vw;
            height: 1.5vw;
            background: #5870a4;
            border-radius: 1.5vw;
            margin-top: 2.5vw;
            margin-left: -3.5vw;
            left: auto;
            bottom: auto;
        }

        ul.call-mob-slides li:after{
            content: '';
            position: absolute;
            width: 15px;
            height: 15px;
            background: url(images/fleche-menu-saison-mob.png) no-repeat;
            background-size: 15px;
            right: 30px;
            top: 8px;
        }

        ul.call-mob-slides li {
            width: 160px;
            position: relative;
        }

        #comptes {
            min-height: auto;
            height: auto;
        }
        #comptes .containing{
            height: 100%;
        }
        #comptes .navigate, .comptes-slider, .chiffres-slider-desk{
            display: none !important;
        }
        .title-comptemob{
            padding-top: 30px;
        }
        .title-comptemob h2{
            font-size: 9vw;
            text-align: center;
        }
        .title-comptemob h2 span{
           color: hsla(19, 100%, 55%, 1);
        }
        #chiffres .containing{
           margin: 2vh auto 0;
        }
        #chiffres .navigate{
            display: none;
        }
        #chiffres .left-mob{
            z-index: 999;
            position: absolute;
            display: table-row;
            bottom: 12vw;
            left: 5vw;
        }
        #chiffres .right-mob{
            z-index: 999;
            position: absolute;
            display: table-row;
            bottom: 12vw;
            right: 5vw;
        }
        .pdf-link{
         width: 100vw;
        text-align: center;
        margin: 0 auto;
        position: relative;
        }
        .pdf-link span{
            margin: 0 auto;
            display: inline-block;
            background: hsla(19, 100%, 55%, 1);
            padding: 10px 30px;
            padding: 10px 20px;
            font-size: 4.5vw;
            margin: 60px auto 80px;
        }
        .pdf-link span a{
            text-align: center;
            color: hsla(0, 0%, 100%, 1);
            text-transform: uppercase;
            font-weight: 700;
        }
        .mobile-graph-slides .pdf-link{
            position: absolute;
            bottom: 8vw;
        }
        #chiffres .headings{
            margin-top: 20px;
        }
        #chiffres .headings h2, #chiffres .title h2{
            font-size: 9vw;
        }
        #chiffres .subs h3{
        font-size: 5.5vw;
        margin: 10px 0 0;
        }
        #chiffres .subs h4{
            font-size: 4.5vw;
        }
        #chiffres .pdf-link span{
             margin: 0 auto;
        }
        #chiffres .headings{
        margin-bottom: 40px;
        }
        #chiffres .graph-slide {
            top: 0;
            height: 100vh;
            width: 100%;
        }
        .mobile-graph-slides{
            height: 100vh;
        }
        /*#chiffres .graph-slide.active {
            opacity: 1;
        }*/
        .graph-slide figure{
        margin: 10px 10px 0 5px;
    }
    .tableau-chiffres-cles.mobi text{
            font-family: 'Open Sans', sans-serif;
            font-weight: 700;
    }
    .tableau-chiffres-cles.mobi .min-t{
        font-weight: normal;
    }
    .graph-figure .colonne-graph{
            width: 80vw;
    }
    .graph-figure .reseau-carte{
        width: 76vw;
        margin: 0 auto;
    }
    #chiffres .pdf-link.last-item{
        position: relative !important;
        margin-top: 60%;
    }
    .pdf-link.last-link{
        position: relative !important;
        margin-top: 60px;
    }
    .graph-slide a.head-link{
        position: absolute;
        z-index: 2;
        width: 100%;
        height: 100%;
    }
    .footer-container .logoclass{
        height: 7vw;
    }
    .graph-slide .graph-figure{
      padding: 0 10vw;
    }
    .graph-figure .colonne-graph {
    width: 62vw;
    }
    .graph-figure .reseau-carte {
    width: 55vw;
    }

    .intro-title h1.year-title {
        top: 290px!important;
    }

    .intro-title .content hr {
        top: 380px!important;
        width: 50%;
        right: 0;
    }

    .orange-block {
        width: 70%;
        height: 148px;
        top: 135px;
        right: 0;
    }

    .intro-title p {
        padding-right: 20px;
    }

    .hero-bg {
        height: 100vh;
        background-size: cover;
        background-position: 50% 25%;
    }

    #saisons-slider .slide .calendar {
        position: relative;
        top: 0;
        right: 55px;
        width: 100%;
        display: block;
    }

    #saisons-slider .slide .slide-content .slide-article .article-content {
        margin-bottom: 0;
    }

    .filet1 {
        top: 35px;
    }

    .filet2 {
        right: -26px;
        top: 80px;
    }

    .filet3 {
        right: -26px;
        top: 125px;
    }

    .filet4 {
        right: -26px;
        top: 170px;
    }

    .filet5 {
        right: -26px;
        top: 215px;
    }

    .filet6 {
        right: -26px;
        top: 260px;
    }

    .filet7 {
        right: -26px;
        top: 305px;
    }

    .filet8 {
        right: -26px;
        top: 350px;
    }

    .filet9 {
        right: -26px;
        top: 395px;
    }

    .filet10 {
        right: -26px;
        top: 440px;
    }

    .filet11 {
        right: -26px;
        top: 485px;
    }

    .filet12 {
        right: -26px;
        top: 530px;
    }

    .filet13 {
        right: -26px;
        top: 575px;
    }

    .filet14 {
        right: -26px;
        top: 620px;
    }

    .filet15 {
        right: -26px;
        top: 665px;
    }

    .filet16 {
        right: -26px;
        top: 710px;
    }

    .filet17 {
        right: -26px;
        top: 755px;
    }

    .filet18 {
        right: -26px;
        top: 800px;
    }

    .filet19 {
        right: -26px;
        top: 845px;
    }

    .filet20 {
        right: -26px;
        top: 890px;
    }

    .sliding {
        padding-left: 20px;
        padding-right: 20px;
    }

    #saisons-slider .slide .slide-content, #saisons-slider .slide .slide-content .slide-article .article-content {
        width: 100%;
        padding-top: 20px;
    }

    #saisons-slider .slide .slide-content .slide-article .article-content img {
        margin-top: 15px;
    }

    img.img-left, img.img-right {
        float: none;
    }

    #saisons-slider .container-img, #saisons-slider .slide .slide-title .slide-center {
        width: 100%;
    }

    #saisons-slider .slide .slide-title h3 {
        line-height: 75px;
    }

    #saisons-slider .slide .slide-title {
        padding-top: 20px;
        text-align: center;
    }

}

.btn_mob {
    display: none;
}

@media screen and (max-width: 800px) and (orientation: portrait) {

}
@media screen and (max-width: 600px) and (orientation: portrait) {
    .header .corp{
        padding: 1.8em 1.8em 1.4em;
    }
    .nav-pop-mob {
        width: 14vw;
        height: 14vw;
    }
    .header .logoclass {
    width: 70vw;
    }
    .header .nav-mob ul li a{
        font-size: 4.6vw;
        line-height: 2em;
    }
    .header .nav-mob ul li.expanded .carette{
        width: 5vw;
        height: 10vw;
    }
    .hero-bg{
        height: 110vh;
    }
    .intro-title h1 {
    font-size: 11.8vw;
    }
    #message h2{
    font-size: 6.8vw;
    }
    #message p{
        font-size: 4.5vw;
    }
    #message p.rightext.no-bottom{
      text-align: left;
    }
    .dix-ans-title{
    padding-left: 3%;
    padding-top: 5%;
    }
     #dix-ans h2{
    font-size: 10vw;
    }
    .dix-ans-logo{
    height: 22vw;
    }
    .dix-ans-graph-mob{
      padding: 0;
    }
    .i-saison p, .i-galerie p{
        font-size: 3.9vw;
    }
    .i-saison h3::after, .i-galerie h3::after {
            width: 34vw;
        }
    .i-saison h3, .i-galerie h3{
            font-size: 8vw;
        }
    #saisons-slider .titlemob h2 {
            font-size: 7.5vw;
    }
    #saisons-slider .titlemob hr.wht {
            width: 35vw;
     }
    ul.call-mob-slides li{
        font-size: 6.2vw;
    }
    ul.call-mob-slides li:before{
        width: 1.8vw;
        height: 1.8vw;
        border-radius: 1.8vw;
        margin-top: 3vw;
    }
    ul.call-mob-slides li span{
        width: 5vw;
        height: 5vw;
        background-size: 5vw;
    }
    .saison-mob .content-blocks .retour-btn a{
      font-size: 3vw;
    }
    .saison-mob .content-blocks .textuel h3{
        font-size: 7.2vw;
    }
    .saison-mob .content-blocks .textuel p {
    font-size: 4.3vw;
    line-height: 1.4;
   }
    .title-comptemob h2{
        font-size: 13vw;
    }
    .pdf-link span{
        font-size: 6vw;
    }
    #chiffres .headings h2, #chiffres .title h2{
        font-size: 13vw;
    }
    #chiffres .subs h3{
    font-size: 7vw;
    }
    #chiffres .subs h4{
        font-size: 6vw;
    }
    .graph-slide .graph-figure{
    padding: 0 3vw;
    }
   #chiffres .headings {
    margin-bottom: 5vw;
   }
   .graph-figure .colonne-graph {
    width: 67vw;
    }
    .graph-figure .reseau-carte {
    width: 60vw;
    }
}
@media screen and (max-width: 480px) and (orientation: portrait) {
        .header .corp{
            padding: 1em 1em 0.8em;
        }
}
@media screen and (max-width: 400px) and (orientation: portrait) {
    .dix-ans h2{
        font-size: 10vw;
        float: left;
        display: inline-block;
    }
    .dix-ans-logo {
        position: relative;
        height: 23vw;
        float: left;
    }
    .intro-title h1 {
        font-size: 11.4vw!important;
        top: 148px!important;
    }
    .intro-title hr {
    margin-top: 5px;
    }
    .saison-mob .content-blocks .textuel p {
    font-size: 4.2vw;
    margin-bottom: 10px;
    }
    .graph-figure .colonne-graph {
    width: 74vw;
    }
    .graph-figure .reseau-carte {
    width: 70vw;
    }

}
@media screen and (max-width: 360px) and (orientation: portrait) {
    .intro-title h1 {
      font-size: 11vw;
    }
    .intro-title .content{
        padding-top: 100px;
    }
    .nav-pop-mob {
    cursor: pointer;
    width: 16vw;
    height: 16vw;
    }
    #message h2 {
    font-size: 10.8vw;
    }
    #message p {
    font-size: 4.8vw;
    line-height: 1.5;
    text-align: justify;
    }
    #message .containing {
    padding: 5vw 6vw;
    }
    #dix-ans .containing {
    padding: 20px 2% 80px;
    }
    .dix-ans-title {
    padding-left: 2%;
    padding-top: 5%;
    }
    #dix-ans h2 {
    font-size: 10.5vw;
    }
    .i-saison p, .i-galerie p {
        font-size: 4.5vw;
        line-height: 1.5;
    }
    .saison-event-list .saison-mob-anchors {
    padding: 6vw 4vw 6vw 5vw;
    }
    #saisons-slider .titlemob h2 {
    font-size: 7.7vw;
    margin-bottom: 5px;
    }
    ul.call-mob-slides li {
    font-size: 6.7vw;
    }
}
@media screen and (max-width: 340px) and (orientation: portrait) {
    .header .nav-mob ul li a {
        color: hsla(0, 0%, 100%, 1);
        font-size: 4.6vw;
        line-height: 1.8em;
    }
    .header .nav-mob ul li a.nolink {
    margin-bottom: 8px;
    }
    .nav-pop-mob {
    right: -1px;
    }

}
@media screen and (max-width: 1024px) {
    .orange-block {
        width: 57%;
        height: 85px;
    }
}
@media screen and (max-width: 768px) {
    #haut {
        display: block !important;
        width: 125px;
        margin: 0 auto;
        height: 45px;
    }
    #developpement-durable .mobile img {
        width: 25%;
    }
    #developpement-durable h2 {
        font-size: 6vw;
        margin-left: 15px;
    }
    .intro-title .content hr {
        top: 280px!important;
    }
    .intro-title h1.main-title {
        font-size: 3.8em;
        bottom: inherit;
        padding-top: 10px;
    }
	#developpement-durable .svg-developpement {
		position: absolute;
		top: 0px;
		bottom: 0px;
    	left: -65px;
    	right: -25px;
	}
    .images-grid {display: none;}
    #chiffres .title {
        margin-top: 100px;
    }
    .intro-title h1.year-title {
        font-size: 1.5em!important;
        right: 0px!important;
        top: 315px!important;
    }
    .guidance {
        display: none;
    }
    .orange-block {
        width: 70%;
        height: 125px;
        top: 124px;
        right: 5px;
    }
    .slide-title hr {
        display: none;
    }
    .slide { display: none; }

    .left-calls, .right-calls {
        width: 50%;
    }

    #l-printemps-mob ul.call-mob-slides li:before {
        background: #68bd92;
    }
    #l-printemps-mob ul.call-mob-slides li a {
        color: #68bd92!important;
    }
    #l-printemps-mob .content-blocks .textuel h3 {
        color: #68bd92;
    }
    #l-printemps-mob .content-blocks .textuel a {
        color: #68bd92;
    }

    #l-ete-mob ul.call-mob-slides li:before {
        background: #f6a54e;
    }
    #l-ete-mob ul.call-mob-slides li a {
        color: #f6a54e!important;
    }
    #l-ete-mob .content-blocks .textuel h3 {
         color: #f6a54e;
    }
    #l-ete-mob .content-blocks .textuel a {
        color: #f6a54e;
    }

    #l-automne-mob ul.call-mob-slides li:before {
        background: #d35264;
    }
    #l-automne-mob ul.call-mob-slides li a {
        color: #d35264!important;
    }
    #l-automne-mob .content-blocks .textuel h3 {
        color: #d35264;
    }
    #l-automne-mob .content-blocks .textuel a {
        color: #d35264;
    }

    .i-dir .contenu-bg, .i-admin .contenu-bg, .i-comite .contenu-bg, .i-outlet .contenu-bg {
        z-index: 0;
    }

    .btn_mob {
        width: 150px;
        display: block;
    }
    .btn_calendar {
        display: none!important;
    }

    #saisons-intro, #galerie {
        height: 100%;
    }

    .intro-text-bg .i-saison, .intro-text-bg .i-galerie {
        height: 100%;
    }

    .saison-mob {
        height: auto;
    }
    #saisons-slider {
        height: 100%;
    }
}
@media screen and (max-width: 768px) and (min-width: 376px) {
    .orange-block {
        height: 90px;
    }

    .intro-title h1.year-title {
        top: 245px!important;
    }

    .btn_mob {
        width: 215px;
    }

    .button_calendar {
        height: 55px;
    }

    ul.call-mob-slides li {
        width: 250px;
    }

    ul.call-mob-slides li:after {
        width: 20px;
        height: 20px;
        background-size: 20px;
        right: 30px;
        top: 15px;
    }

    .saison-mob .saison-event-list {
        height: 1000px;
    }
}

@media screen and (min-width: 1600px) {
    .i-dir .contenu-bg, .i-admin .contenu-bg, .i-outlet .contenu-bg {
        background-position: 50% 20%;
    }
}


@media screen and (min-width: 375px) and (max-width: 415px) {
    .intro-title h1.year-title {
        font-size: 1em!important;
        right: 0px!important;
        top: 255px!important;
    }
    .intro-title h1.main-title {
        font-size: 2.8em;
        margin-top: 0px;
        bottom: inherit;
        padding-top: 10px;
        padding: 0 25px;
        right: -20px;
    }

    .intro-title p {
        padding-right: 20px;
    }
    ul.call-mob-slides li {
        width: 185px;
    }
    ul.call-mob-slides li:after {
        top: 6px;
    }
    .button_calendar {
        height: 45px;
    }
    .btn_mob {
        width: 160px;
    }
}