/*
    @autor: Franck CONDE
*/


html,body{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background-color: #F1F1F1;
}

:root{
    --orange: #FF7F00;
    --green: #2C8E43;
    --white: #FFF;
    --gray: #777;
    --fb: #4064AC;
    --twt: #1C9CEB;
    --ytube: #F70000;
    --in: #0276B0;
}

.surlign1 {
    background-color: #ff0;
    font-style: italic;
}

.text-orange{
    color: var(--orange);
}

.text-gray{
    color: var(--gray);
}

.text-white{
    color: var(--white);
}

.bord{
    border: 1px solid red;
}

.conteneur{
    overflow: hidden;
}

.d-block{
    display: block;
}

.cb{
    clear: both;
}

.mb--10{
    margin-bottom: -10px;
}

.oh{
    overflow: hidden;
}

.box-s{
  box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.16);
  transition: .4s;
}

/* HEADER CSS */

.header{
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    z-index: 99;
}

.container {
    max-width: 1140px !important;
}

.cont-before-color::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 15%;
    left: 0;
    background-color:#af0000;
}

.flash_info {
    width: 100%;
    z-index: 10;
}

.flash-zone{
    position: relative;
    width: 100%;
    background-color: var(--ytube);
    color: #fff;
    font-size: 12px;
}

.armoirie{
    z-index: 1;
}

.armoirie::after{
    content: "";
    position: absolute;
    width: 1000%;
    height: 100%;
    right: 17px;
    background-color: var(--white);
    z-index: -1;
    top: 0;
    transform: skewX(-15deg);
}

.icon-social{
    border-bottom: 1px solid #eee;
    z-index: 99;
}

.icon-social span{
    margin-right: 10px;
}

ul.social{
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: inline-block;
}

ul.social li{
    list-style-type: none;
    float: left;
}

ul.social li a{
    text-decoration: none;
    display: block;
    height: 30px;
    width: 30px;
    border-radius: 50px;
    border: 1px solid gray;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all .5s ease;
}

a.fb{
    color: var(--fb) !important;
    border-color: var(--fb) !important;
}

a.fb:hover{
    color: #fff !important;
    background: var(--fb);
    transition: all .5s ease;
}

a.twt{
    color: var(--twt) !important;
    border-color: var(--twt) !important;
}

a.twt:hover{
    color: #fff !important;
    background: var(--twt);
    transition: all .5s ease;
}

a.ytube{
    color: var(--ytube) !important;
    border-color: var(--ytube) !important;
}

a.ytube:hover{
    color: #fff !important;
    background: var(--ytube);
    transition: all .5s ease;
}

a.in{
    color: var(--in) !important;
    border-color: var(--in) !important;
}

a.in:hover{
    color: #fff !important;
    background: var(--in);
    transition: all .5s ease;
}

.search-zone input[type="text"]{
    border-radius: 50px;
}

.search-zone form{
    position: relative;
}

.search-zone button[type="submit"]{
    position: absolute;
    border: none;
    cursor: pointer;
    background-color: #fff;
    border-left: 1px solid #eee;
    right: 10px;
    top: 20%;
}

.search-zone button[type="submit"]:hover{
    color: var(--orange);
}

/* menu nav */

.nav  {
    float: left;
  margin-top: 19px;
  display: block;
}
.nav ul.menu {
  list-style: none;
  margin: 0 ;
  padding: 0;
  float: left;
  position: relative;
  z-index: 3;
}
.nav ul.menu > li {
  margin: 0 15px 0 0;
  padding: 0;
  position: relative;
  display: inline-block;
}

.nav ul.menu > li > a {
  text-decoration: none;
  font-weight: 900;
  color: #555;
  font-size: 13px;
  text-transform: uppercase;
}

.nav ul.menu > li > a:hover{
    color: var(--orange);
}

.nav ul.menu > li.active a{
    color: var(--orange);
}
.nav ul.menu > li.active > a::before {
    content: "";
    position: absolute;
    width: 100%;
    border-bottom: 4px solid var(--orange);
    bottom: -11px;
}

.nav ul.menu li > ul.sub_menu {
  position: absolute;
  margin: 0;
  top: 30px;
  left: 0;
  width: 300px;
  text-align: left;
  padding-top: 10px;
  padding-left: 20px;
  padding-bottom: 10px;;
  background: #fff;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  max-height: 1px;
  transition: all 300ms 0.3s ease;
  -webkit-transition: all 300ms 0.3s ease;
  -moz-transition: all 300ms 0.3s ease;
  -o-transition: all 300ms 0.3s ease;
  -ms-transition: all 300ms 0.3s ease;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
}

.nav ul.menu li ul.sub_menu > li {
  margin: 0px;
  padding: 0 0 0 9px;
  position: relative;
  display: block;
}
.nav ul.menu li ul.sub_menu li > a {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  text-transform: inherit;
  letter-spacing: normal;
  position: relative;
  color: black;
}

.nav ul.menu li ul.sub_menu li > a:hover {
    text-decoration: none;
    color: var(--green);
}
.nav ul.menu li ul.sub_menu li > a:before{
  content: "\f105";
  position: absolute;
  top: -2px;
  left: -16px;
  font-family: 'FontAwesome';
}
.nav ul.menu li:hover > ul, .nav ul li.hovered > ul {
  max-height:500px;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  top: 40px;
  visibility: visible;
}
.nav ul.menu > li:last-child{
  margin: 0;
}

/* ======================== */
/* CONTENU */
/* ======================== */

.contenu{
    z-index: 98;
    background-color: #F1F1F1;
}
.cover-page{
    position: relative;
    width: 100%;
    z-index: 1;
    color: #FFF;
    background-size: cover !important;
    background-repeat: no-repeat;
}

.cover-page .cover{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

/* .cover-page::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: -1;
   /*   -webkit-filter: blur(50px);
    -moz-filter: blur(50px);
    -o-filter: blur(50px);
    -ms-filter: blur(50px);
    filter: blur(50px);

} */

.cover-page.states{
    height: 350px;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.states i::before{
    font-size: 30px;
    margin-left: 0;
    margin-right: 10px;
}

.states i.flaticon-subway::before{
    margin-right: 0;
}

.cover-page.states span{
    margin-right: 5px;
}

span.metro-name{
    font-size: 22px;
    font-weight: 400;
    margin-right: 0 !important;
    text-transform: uppercase;
}

span.city-name{
    font-size: 24px;
    font-weight: 100;
    margin-right: 0 !important;
    text-transform: uppercase;
}

span.s1{
    font-size: 25px;
    font-weight: 900;
}

span.s2{
    font-size: 18px;
    font-weight: 700;
}

span.s3{
    font-size: 15px;
    font-weight: 300;
}

.row.separate-bar{
    z-index: 10;
    position: relative;
    border-bottom: .5px solid rgba(255, 255, 255, 0.8);
}

.row.separate-bar::after{
    content: "";
    position: absolute;
    z-index: 3;
    left: -100%;
    top: 100%;
    width: 300%;
    border-bottom: .5px solid rgba(255, 255, 255, 0.3);
}

/* SECTON LATEST NEWS */

.sections{
    z-index: 999;
    position: relative;
    top: -130px;
}

.president-word{
    height: 486px;
    background-color: #fff;
    border-radius: 5px 5px 0px 0px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.16);
}

.img-president-zone{
    position: relative;
    border-radius: 5px 5px 0px 0px;
    height: 300px;
}

.img-president-zone span{
    display: inline-block;
    color: #fff;
    padding: 3px 10px;
}

.pdt-name{
    font-size: 14px;
    font-weight: 900;
    background-color: rgba(255,127,0,.7);

}

.pdt-function{
    font-size: 12px;
    font-weight: 700;
    background-color: rgba(44,143,67,.7);
}

.info-pdt{
    position: absolute;
    bottom: 0;
}

.pdt-breve{
    padding: 10px;
    font-size: 12px;
}

a.read-more{
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    color: var(--orange);
    text-align: right;
    transition: all .2s linear;
    display: inline-block;
    float: right;
}

a.read-more:hover{
    color: var(--green);
    transition: all .2s linear;
}

.une-slide-zone{
    max-height: 500px;
    border-radius: 5px 5px 0px 0px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.16);
}

.une-slide-zone .carousel-item img{
    border-radius: 5px 5px 0px 0px;
}

.une-slide-zone .carousel-indicators{
    top: 20px !important;
    height: 5px;
    margin: 0;
    padding: 0;
    right: 20px;
    left: unset;
    bottom: unset;
}

.une-slide-zone .carousel-control-prev span.fa::before,
.une-slide-zone .carousel-control-next span.fa::before{
    font-size: 20px;
    padding: 10px;
    border: 1px solid #fff;
}

.une-slide-zone .carousel-indicators .active{
    background-color: var(--orange);
}

.une-slide-zone .carousel-caption {
    width: 100%;
    bottom: 10px;
    left: 0;
    padding: 10px 20px !important;
    text-align: left;
}

.une-slide-zone .carousel-caption > a{
    display: block;
    text-decoration: none;
}

.img-carousel-zone{
  width: 100%;
  height: 486px;
  background-repeat: no-repeat;
  background-size: cover !important;
}

span.date-pub{
    font-size: 12px;
    color: #ff7f00;
    display: block;
}

.une-slide-zone .carousel-caption h5.title-news{
    font-weight: bold;
    font-size: 25px;
    color: #fff;
    margin-top: 5px;
}

.une-slide-zone .carousel-item > a::after{
    content: "";
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,1)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
    position: absolute;
    bottom: -13%;
    left: 0;
    right: 0;
    height: 45%;
    width: 100%;
    z-index: 1;
    transition: .4s;
}

.une-slide-zone .carousel-item > a:hover::after{
    position: absolute;
    bottom: -30%;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    transition: .4s;
}

.indemn-search-bar{
    background-color: var(--ytube);
    padding: 10px 25px;
    color: #FFF;
}

.title-indem span,
.title-partner span{
    display: block;
    text-transform: uppercase;
}

.title-indem span:first-child,
.title-partner span:first-child{
    font-size: 20px;
}

.title-indem span:last-child,
.title-partner span:last-child{
    font-weight: 900;
    font-size: 25px;
}


.indemn-form form input[type="text"]{
    width: 75%;
    height: 40px;
    border-radius: 100px;
    margin-right: 10px;
    background-color: #fff;
}

.indemn-form form button[type="submit"]{
    width: 20%;
    border: none;
    height: 40px;
    border-radius: 100px;
    color: #FFF;
    font-weight: 900;
    background-color: var(--orange);
    text-transform: uppercase;
    text-align: center;
    transition: all .2s linear;
}

.indemn-form form button[type="submit"]:hover{
    background-color: #E47200;
    transition: all .2s linear;
    cursor: pointer;
}

span.section-tile{
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
}

span.section-tile i::before{
    font-size: 20px;
    position: relative;
    top: -2px;
}

a.section-read-more{
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    display: inline;
    transition: .2s;
    position: relative;
    top: -4px;
}

a.section-read-more:hover{
    text-decoration: none;
    color: var(--green);
    transition: .2s;
}

.line::before{
    content: "";
    position: absolute;
    left: 110%;
    top: 50%;
    border-bottom: 1px solid rgba(112, 112, 112, 0.24);
    width: 964%;
}


#owl-news-item .item{
    width: 360px;
    height: 440px;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 5px 5px 0px 0px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.16);
}

.item-img{
    height: 250px;
    border-radius: 5px 5px 0px 0px;
    background-repeat: no-repeat;
    background-size: cover !important;
}

.item-info{
    padding: 20px;
}

.item-info h5{
    font-size: 15px;
    text-transform: uppercase;
    color: #333;
    font-weight: 700;
    margin: 10px 0;
}

.item-info h5 a{
    text-decoration: none;
    color: inherit;
}

.media{
    background-color: #777777;
    padding: 40px 0;
}

a.video-link{
    text-decoration: none;
    display: block;
    color: #fff;
}

a.video-link:hover .cover .fa::before{
    color: var(--orange);
    transition: .4s;
}

.focus-video-zone{
    height: 470px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover !important;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.16);
}

.focus-video-zone .cover{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.focus-video-zone .cover .fa::before{
    color: #fff;
    font-size: 90px;
    position: absolute;
    top: 30%;
    left: 43%;
    transition: .4s;
}

.focus_video_title{
    font-weight: 900;
    font-size: 20px;
    line-height: normal;
    color: #fff;
    position: absolute;
    padding: 20px;
    bottom: 10px;
    text-transform: uppercase;
}

.media span.section-tile{
    font-size: 25px;
}

.media span.section-tile i::before {
    font-size: 15px;
}

.media a.section-read-more{
    top: -3px;
}

.item-photo{
    position: relative;
    height: 224px;
    overflow: hidden;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.16);
    background-repeat: no-repeat;
    background-size: cover !important;
}

.item-photo a{
    text-decoration: none;
    display: block;
}


.item-photo .cover{
    position: absolute;
    left: -8%;
    width: 70%;
    height: 100%;
    background-color: rgba(255,127,0,.8);
    transform: skewX(-10deg);
    padding: 5px 10px 5px 8%;
    color: var(--white);
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.item-photo .cover p{
    transform: skewX(10deg);
    font-size: 12px;
    font-weight: 900;
    margin-top: 10%;
    text-transform: uppercase;
}

.item-photo .cover p span:first-child{
    font-weight: 400;
    font-size: 11px;
    display: block;
    margin-top: 10px;
    text-transform: none;
}

.item-photo a:hover .cover{
    width: 115%;
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.item-photo a:hover .cover p{
    font-size: 14px;
    padding-left: 10%;
    padding-right: 10%;
}

.partner{
    background-color: #fff;
    box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.16);
    padding: 20px 0;
}

ul#partner-list{
    margin: 0;
    padding: 0;
}

ul#partner-list li{
    list-style-type: none;
    float: left;
    margin: 0 10px;
}

ul#partner-list li a{
    display: block;
}

/* :::::::::::::::::::::::::::::::::::
                FOOTER
 :::::::::::::::::::::::::::::::::::*/

 .footer{
     width: 100%;
     min-height: 300px;
     background: transparent url('../img/metro5.png') no-repeat right 145px;
 }

 ul#footer-menu-list{
     margin: 0;
     padding: 0;
 }

 ul#footer-menu-list li{
    list-style-type: none;
    margin-bottom: 8px;
 }

  ul#footer-menu-list li a{
      position: relative;
      text-decoration: none;
      display: block;
      font-size: 10px;
      font-weight: 700;
      line-height: 12px;
      color: var(--gray);
      transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
      text-transform: uppercase;
  }

  ul#footer-menu-list li a:hover{
      color: var(--orange);
      padding-left: 10px;
      transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
  }

  .newsletter-form p{
      padding: 0;
      margin: 25px 0 5px 0;
      font-size: 10px;
      text-transform: uppercase;
      font-weight: 900;
  }

  .copy,
  .author{
      font-size: 10px;
      color: #555;
  }

  .author{
      text-align: center;
  }

  /* :::::::::::::::::::::::::::::::::::
                NOBILE MENU HEADER
 :::::::::::::::::::::::::::::::::::*/

 #mob-menu{
     background: #333;
     box-shadow: 0px 10px 10px 2px rgba(0,0,0,0.2);
     z-index: 99999;
     padding: 0;
}

i.menu-bar::before{
    font-size: 30px;
    color: var(--gray)
}

.project-name{
    text-transform: uppercase;
    color: #000;
    font-size: 15px;
    line-height: 15px;
    font-weight: 900
}

 #mob-menu .site-name{
    padding: 10px;
    background-color: #000;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 900;
    text-align: center;
    font-size: 12px;
}

 #mob-menu ul.menu-list{
     margin: 0;
     padding: 0;
     color: #FFF;
     text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
 }

 #mob-menu .search-zone form{
     box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
 }
 #mob-menu ul.menu-list li{
     list-style-type: none;
 }

  #mob-menu ul.menu-list > li > a{
      text-transform: uppercase;
      text-decoration: none;
      font-size: 13px;
      font-weight: 700;
      padding: 15px 0;
      color: #fff;
      display: block;
  }

  #mob-menu ul.menu-list > li > a:active{
      color: var(--orange);
  }

  #mob-menu ul.menu-list > li{
      border-bottom: 0.5px solid rgba(255, 255, 255, 0.3);
  }

  #mob-menu ul.menu-list > li ul{
      padding: 0;
      margin: 0 0 0 10px;
      height: 0;
      overflow: hidden;
      transition: all .5s cubic-bezier(0, 2.79, 0.58, 1);
  }

  .ul-drop{
      margin: 0 0 15px 0 !important;
      padding-left: 20px !important;
      height: auto !important;
      transition: all .2s cubic-bezier(0, 2.79, 0.58, 1);
  }

  #mob-menu ul.menu-list > li ul li a{
      color: #fff;
      position: relative;
      text-decoration: none;
      display: block;
      text-transform: none;
      font-size: 14px;
      padding: 5px 0;
      font-weight: normal;
  }

  #mob-menu ul.menu-list > li ul li a::before{
    content: "\f105";
    position: absolute;
    font-family: "FontAwesome";
    left: -10%;
    top: 15%;
    color: #fff;
  }

  #mob-menu ul.social li a{
      color: #fff;
  }

  /***************************************
                OTHER PAGE
   **************************************/

.pages span.metro-name {
  font-size: 30px;
  font-weight: 900;
}

.pages span.city-name{
  font-size: 15px;
  text-transform: none;
}

.pages .breadcrumb {
    padding: 10px 0;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0;
}

.pages .breadcrumb li a{
  text-decoration: none;
  color: inherit;
}

.breadcrumb-item.active {
    display: block;
    color: #eee;
    font-weight: 400
}

.breadcrumb-item.active::before{
  font-weight: 300;
}

.pages .sections{
  top: 0;
  background-color: #fff;
  margin-bottom: 50px;
}

.actualite .item {
    width: 100%;
    height: 440px;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 5px 5px 0px 0px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.16);
}

.page-content-title{
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2rem;
}

img.detail-actu-img{
  margin: 20px 0;
   box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.16);
}

.pages .indemn-search-bar {
    padding: 20px 10px;
}

.pages .indemn-form form input[type="text"] {
    width: 75%;
    height: 30px;
    border-radius: 100px;
    margin-right: 10px;
    background-color: #fff;
}

.pages .search-zone form input[type="text"]::placeholder{
    font-size: 10px;
    font-weight: bold;
}

.side-title{
    text-transform: uppercase;
    color: #00A25F;
    font-weight: 900;
    font-size: 15px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.sidebar .widget_nav_menu{
    max-height: 200px;
    overflow-y: auto;
}

.sidebar .widget_nav_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.sidebar .widget_nav_menu ul li {
    position: relative;
}

.sidebar .widget_nav_menu ul a {
    color: #555;
    font-size: 12px;
    text-transform: uppercase;
    display: block;
    padding: 8px 10px 7px 18px;
    font-weight: 700;
}

.sidebar .widget_nav_menu ul li:hover a,
.sidebar .widget_nav_menu ul li.current-menu-item a {
    color: #EF7D00;
}

.widget_nav_menu ul a::before {
    content: '\f101';
    font-size: 14px;
    font-family: "FontAwesome";
    margin-right: 5px;
    position: absolute;
    top: 3px;
    left: 2px;
}

.sidebar .file ul a{
    padding-left: 30px;
}

.file ul a::before {
    content: '\f1c1' !important;
    font-weight: normal;
    color: red;
    font-size: 20px;
}

.sidebar .widget_nav_menu ul li:hover::after,
.sidebar .widget_nav_menu ul li.current-menu-item::after {
    border-right-color: #EF7D00;
}

.sidebar .widget_nav_menu ul li::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    border-right: 3px solid transparent;
        border-right-color: transparent;
    transition: border 0.3s;
    -webkit-transition: border 0.3s;
    -moz-transition: border 0.3s;
}

.sidebar .widget_nav_menu ul li + li::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #dedede;
    background: -moz-linear-gradient(left, #ffffff 16%, #dedede 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(16%,#ffffff), color-stop(100%,#dedede));
    background: -webkit-linear-gradient(left, #ffffff 16%,#dedede 100%);
    background: -o-linear-gradient(left, #ffffff 16%,#dedede 100%);
    background: -ms-linear-gradient(left, #ffffff 16%,#dedede 100%);
    background: linear-gradient(to right, #ffffff 16%,#dedede 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dedede',GradientType=1 );
}

.sidebar .widget_nav_menu ul::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    background: #dedede;
    background: -moz-linear-gradient(top, #ffffff 0%, #dedede 19%, #dedede 79%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(19%,#dedede), color-stop(79%,#dedede), color-stop(100%,#ffffff));
    background: -webkit-linear-gradient(top, #ffffff 0%,#dedede 19%,#dedede 79%,#ffffff 100%);
    background: -o-linear-gradient(top, #ffffff 0%,#dedede 19%,#dedede 79%,#ffffff 100%);
    background: -ms-linear-gradient(top, #ffffff 0%,#dedede 19%,#dedede 79%,#ffffff 100%);
    background: linear-gradient(to bottom, #ffffff 0%,#dedede 19%,#dedede 79%,#ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 );
}

.doc-item{
    height: 100px;
    box-shadow: 0 2px 10px 0 rgba(168, 182, 191, .6);
    background-color: #fff;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.doc-item:hover{
    box-shadow: 0 4px 30px 0 rgba(168, 182, 191, .6);
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.doc-item:hover .doc-icon-dwld{
    width: 25%;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.doc-item:hover .doc-icon-pdf{
    width: 0%;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.doc-icon-dwld{
    background-color: #00A25F;
    color: #fff;
    width: 0%;
    overflow: hidden;
    height: 100%;
    font-size: 30px;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.doc-icon-pdf{
    background-color: #555;
    color: #fff;
    width: 25%;
    overflow: hidden;
    height: 100%;
    font-size: 30px;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.doc-name{
    width: 75%;
    height: 100%;
    padding: 10px;
    text-align: left;
    font-weight: bold;
    font-size: 13px;
    line-height: 16px;
    color: #333;
    text-transform: uppercase;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.item-link{
    text-decoration: none;
    display: block;
    color: inherit;
}

.item-link:hover{
    text-decoration: none;
}

.item-link:hover .editeur-name{
   color: #00A25F !important;
}

p.light{
  font-weight: 300;
}

.item-video-bloc{
  width: 100%;
  height: 300px;
  background-color: #fff;
}

.img-video-bloc{
    width: 100%;
    height: 150px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover !important;
    transition: all .3s ease;
}

.img-video-bloc .cover{
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.5);
}

.img-video-bloc .cover .fa::before{
  position: absolute;
  color: var(--white);
  font-size: 30px;
  bottom: 10%;
  right: 10%;
}

.info-video-bloc{
  padding: 20px;
  color: #333;
  text-transform: uppercase;
  font-size: 12px;
}

.video-link:hover .item-video-bloc{
  transition: all .3s ease;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.16);
}

.galerie {
     margin: 0;
    padding: 0 !important;
    clear: both;
    overflow: hidden;
}

.galerie li {
    list-style-type: none;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 5px !important;
    border: 1px solid #ccc;
    border-radius: 0;
    width: auto;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.galerie li a {
    position: relative;
    display: block;
}

.info-album {
    position: absolute;
    z-index: 9999;
    background: rgba(0,0,0, .5);
    width: 100%;
    height: 100%;
    line-height: 100px;
    color: #fff;
    font-size: 35px;
    text-align: center;
    z-index: 999;
    display: none;
            -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.galerie li:hover .info-album{
    display: block;
    transition-duration: 5s;
}

.theme-default {
    margin:0 0 25px 0 !important;
}

ul.actu-list {
    margin: 0;
    padding: 0;
}

ul.actu-list li {
    border-bottom: 1px solid #eee;
}

ul.actu-list li {
    list-style-type: none;
}

ul.actu-list li a {
    text-decoration: none;
    display: block;
    color: inherit;
    padding: 10px;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    background-color: #fff;
}

ul.actu-list li a:hover{
   box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.16);
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.actu-list-img {
    height: 150px;
    width: 100%;
    position: relative;
    -webkit-background-size: cover !important;
    background-size: cover !important;
}

.actu-list-title {
    color: #0c5004;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-align: left;
}

.icon-photo {
    position: absolute;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #0c5004;
    font-size: 15px;
    line-height: 30px;
    background: #fff;
    bottom: 0;
    right: 0;
    border-top-left-radius: 5px;
}

span.date {
    color: #EF7D00;
    display: block;
    font-size: 13px;
    margin-top: 10px;
}

.sections figure a{
  display: block;
  cursor: zoom-in;
}

.sections figcaption{
  font-size: 12px;
  margin-top: -10px;
  font-style: italic;
}

.avancement{
  background-color: #fff;
  box-shadow: 0 1px 10px rgba(0,0,0,.16);
  margin: 30px 0;
}

.date-etat-zone,
.info-etat-zone{
  padding: 20px;
}

.date-etat-zone{
  border-right: 1px solid #e1e1e1;
}

.date-etat-zone span{
  font-size: 20px;
  font-weight: 300;
}

.titre-etat{
  text-transform: uppercase;
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.realise-oui{
  background-color:var(--green);
  color: white;
}

.realise-non{
  background-color:#ff7f0f ;
  color: white;
}

.logo-zone{
  padding: 20px;
  background-color: #fff;
  height: 200px;
}

.logo-zone img{
  display: block;
  max-height: 150px;
}

.item-partner a{
  display: block;
  text-decoration: none;
}

.item-partner a:hover .logo-zone{
  box-shadow: 0 1px 5px rgba(0,0,0,.16);
  transition: .4s;
}

thead{
  background-color: var(--green);
  color: #fff;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link{
  text-decoration: none;
  color: var(--gray);
}

.process{
  background-color: var(--green);
  color: #fff;
}

.process .date-etat-zone{
  padding: 0;
  padding-right: 10px;
  border: none;
}

.process .info-etat-zone{
  padding: 10px 10px 10px 10px;
}

.process .step{
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 300;
  padding: 2px 15px;
  display: inline-block;
  background-color: var(--orange);
  margin-bottom: 10px;
  border-radius: 3px;
  box-shadow: 0 1px 10px rgba(0,0,0,.16)
}

img.fll{
  float: left;
  margin-right: 15px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.loader{
    position: absolute;
    width: 17px;
    height: 17px;
    display: none;
    background: url('../img/sm_loader.gif') no-repeat center center;
    top: -23px;
    right: 26px;
}

.pages .date-pub{
  color: #555;
  font-size: 13px;
  margin-top: 10px;
}

.connexion-zone{
  max-width: 350px;
  margin: 0 auto;
}

.card-header{
  background-color: var(--green);
}

.btn-link{
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 20px;
}

.btn-link:hover{
  text-decoration: none;
  color: #555;
}

h5.form-lib{
  text-transform: uppercase;
  font-weight: 900;
  color: #777;
  font-size: 13px;
  margin-bottom: 20px;
}

.btn.btn-link.btn-question{
  white-space: normal !important;
  text-align: left !important;
}