@charset "UTF-8";

/* --- FEUILLE DE STYLE --- */

/* ////////////////////////////////////////////////////////////////////////////

  PORT-BAIL 2019 // CSS
  NetConception 2019
  -
  
//////////////////////////////////////////////////////////////////////////// */

/* ////////////////////////////////////////////////////////////////////////////

    01 - COULEURS

//////////////////////////////////////////////////////////////////////////// */

/*
$bleuLighter : #E6F8FD;
$bleuMain : #04BAEE;
$bleuDarker : #025D77;

$violetLighter : #e0cbfe;
$violetMain : #A266F6;
$violetDarker : #6604ee;

$lightGrey : #FAFAFA;

$darkBlack : #1D1D1B;
*/

/* ////////////////////////////////////////////////////////////////////////////

    02 - GRADIENT

//////////////////////////////////////////////////////////////////////////// */

/*
background: $color;
background: -moz-linear-gradient(0deg, $color 0%, $color2 100%);
background: -webkit-linear-gradient(0deg, $color 0%, $color2 100%);
background: linear-gradient(0deg, $color 0%, $color2 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$color",endColorstr="$color2",GradientType=1);
*/

/*
background: rgb(102,4,238);
background: -moz-linear-gradient(0deg, rgba(102,4,238,1) 0%, rgba(224,203,254,1) 100%);
background: -webkit-linear-gradient(0deg, rgba(102,4,238,1) 0%, rgba(224,203,254,1) 100%);
background: linear-gradient(0deg, rgba(102,4,238,1) 0%, rgba(224,203,254,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6604ee",endColorstr="#e0cbfe",GradientType=1); 
*/

/*
background: rgb(2,93,119);
background: -moz-linear-gradient(0deg, rgba(2,93,119,1) 0%, rgba(4,186,238,1) 50%, rgba(205,241,252,1) 100%);
background: -webkit-linear-gradient(0deg, rgba(2,93,119,1) 0%, rgba(4,186,238,1) 50%, rgba(205,241,252,1) 100%);
background: linear-gradient(0deg, rgba(2,93,119,1) 0%, rgba(4,186,238,1) 50%, rgba(205,241,252,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#025d77",endColorstr="#cdf1fc",GradientType=1); 
*/

@media (max-width: 500px) {
	.unelignesurdeux td:empty {
	   display:none!important;
	}
}

/* ////////////////////////////////////////////////////////////////////////////

    03 - FONT

//////////////////////////////////////////////////////////////////////////// */
@font-face {
  font-family: CaviarDreams;
  src: url(../font/CaviarDreams_Bold.ttf);
  font-weight: bold;
}

@font-face {
  font-family: CaviarDreams;
  src: url(../font/CaviarDreams_Italic.ttf);
  font-style: initial;
}

@font-face {
  font-family: CaviarDreams;
  src: url(../font/CaviarDreams.ttf);
  font-weight: normal;
}

.inputSubmit{
	padding: 10px;
    margin: 10px;
	border:2px solid #04BAEE;
	background-color: #04BAEE;
    color: #FFFFFF;
    font-weight: bold;
    cursor: pointer;
    transition: 0.5s ease-out;
	display:block-inline;
}

.inputSubmit:hover{
	color: #025D77;
	border:2px solid #025D77;
    background-color: #E6F8FD;
}


/* ////////////////////////////////////////////////////////////////////////////

    04 - GLOBAL

//////////////////////////////////////////////////////////////////////////// */
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  background-repeat: no-repeat;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background-color: #FFF;
  scroll-behavior: smooth;  /* Attention les fonctions JS scroll ne marcheront pas avec overflow-x: hidden; */

  /*overflow-x: hidden;*/
}

main {
  display: block;
}

::selection {
  color: #fff;
}

::-moz-selection {
  color: #fff;
}

::selection {
  background-color: #04BAEE;
}

::-moz-selection {
  background-color: #04BAEE;
}

p,
div,
td,
li {
  color: #1D1D1B;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
}

a {
  color: #1D1D1B;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a:hover {
  color: #04BAEE;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/*
h3::before {
  content: "•";
  display: inline-block;  
}
/**/

h2.home {
  position: relative;
  margin-bottom: 50px;
  line-height: 36px!important;
}

h2.home::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 33px;
  background-image: url("../images/icon-wave-black-40x33.svg");
  background-size: 40px 33px;
  background-position: center center;
  margin-right: 15px;
}



h1 {
  padding: 0px;
  margin: 0px;
  font-size: 24px;
  font-weight: 300;
  color: #1D1D1B;
  text-transform: uppercase;
  font-family: 'CaviarDreams', sans-serif;
}

h2 {
  color: #1D1D1B;
  font-weight: bold;
  font-size: 40px;
  margin: 0;
  padding: 0;
  font-family: 'CaviarDreams';
  text-transform: uppercase;
  display:flex;
}

h2::before {
  content: "〉";
  display: inline-block;
  font-size:16px;
  margin-right:4px;
  width:10px;
  line-height:24px;
}
h3 {
  color: #1D1D1B;
  font-weight: bold;
  font-size: 24px;
  margin: 0;
  padding: 0;
  font-family: 'CaviarDreams';
  text-transform: uppercase;
}

.plan{
	border:0px;
	width:500px;
	height:300px;
}

.container table.unelignesurdeux td{
	padding:5px !important;
	font-size:14px !important;
	line-height: 15px !important;
}
.container table.unelignesurdeux td strong{
	padding:10px !important;
	font-size:16px !important;
	line-height: 20px !important;
	background-color:#04BAEE;
	color:white;
	width:100%;
	height:100%;
	display:block;
	text-align:center;
}
.container table.unelignesurdeux{
	border:0px;
	max-width:100%;
}
.container table.unelignesurdeux ,.container table.unelignesurdeux tr,.container table.unelignesurdeux td{
	border:0px;
}
.container table.unelignesurdeux tr:nth-child(even) td{
	background-color:#f4f4f4;	
}
.container table.unelignesurdeux tr:nth-child(odd) td{
	background-color:#E6F8FD;	
}



/* ////////////////////////////////////////////////////////////////////////////

  05 - CLASSES G�N�RALES

//////////////////////////////////////////////////////////////////////////// */
.container {
  width: 1200px;
  margin: auto;
}

.spacer {
  clear: both;
}

.flexRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}

.flexColumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}

.noscroll {
  overflow-x: hidden;
}

.alignleft {
  float: left;
  margin: 0 40px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright {
  float: right;
  margin: 0 0 20px 40px;
}

#milieu {
  min-height: 500px;
  padding: 10px;
}

/* ////////////////////////////////////////////////////////////////////////////

  06 - HEADER

//////////////////////////////////////////////////////////////////////////// */
header {
  position: absolute;
  z-index: 10;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 4px 2px rgba(32, 66, 76, 0.1);
  box-shadow: 0 4px 2px rgba(32, 66, 76, 0.1);
}

header #logo-header {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 80%;
  max-width: 242px;
}

header #logo-header img {
  width: 100%;
  height: auto;
}

header nav {
  height: 8vw;
  max-height: 140px;
}

header nav #menu-principal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

header nav #menu-principal .menu-principal--item {
  text-align: center;
  position: relative;
}

header nav #menu-principal > * + * {
  margin-left: 25px;
}

header nav #menu-principal .menu-principal--item:hover .menu-secondaire {
  padding-top: 70px;
  opacity: 1;
  visibility: visible;
  left: 50%;
  pointer-events: all;
}

header nav #menu-principal .menu-principal--item > a {
  position: relative;
  z-index: 2;
  font-family: 'CaviarDreams';
  font-weight: bold;
  color: #1D1D1B;
  text-transform: uppercase;
  font-size: 20px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

header nav #menu-principal .menu-principal--item > a:hover {
  color: #04BAEE;
}

header nav .menu-secondaire {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
  margin: auto;
  padding-top: 50px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

header nav .menu-secondaire .menu-secondaire-container {
  position: relative;
  background-color: #FFF;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  min-width: 300px;
  border: 2px #E6F8FD solid;
}

header nav .menu-secondaire .menu-secondaire-container::after {
  content: '';
  display: block;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin: auto;
  height: 25px;
  width: 25px;
  background-color: #FFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 2px #E6F8FD solid;
  border-left: 2px #E6F8FD solid;
}

header nav .menu-secondaire .menu-secondaire--item:nth-child(odd) > a {
	background-color: #F1F1F1;
}

header nav .menu-secondaire .menu-secondaire--item > a {
  display: block;
  font-size: 20px;
  text-align: center;
  margin: 0;
  padding: 8px 15px;
  opacity: 0.8;
}

header nav .menu-secondaire .menu-secondaire--item > a:hover {
  background-color: #E6F8FD;
  opacity: 1;
}

/* ////////////////////////////////////////////////////////////////////////////

  07 - SLIDER HOME

//////////////////////////////////////////////////////////////////////////// */
#slider-home.page #slider-home-listing {
  height: 45vh !important;
  min-height: 150px !important;
}

#slider-home.page .lSAction {
  display: none !important;
}

#slider-home-listing {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 80vh !important;
  max-height: 850px !important;
  min-height: 350px;
  background-color: #025D77;
  padding-bottom: 0 !important;
}

#slider-home-listing .slider-home-listing--item {
  display: block;
  height: 100%;
  width: 100%;
  background-position: center center;
  background-size: cover;
}

#slider-home .lSAction > a {
  width: 31px;
  height: 54px;
  z-index: 2;
  top: unset;
  bottom: 70px;
  opacity: 1;
  margin-top: 0;
}

#slider-home .lSAction > a:hover {
  opacity: 0.6;
}

#slider-home .lSAction > .lSPrev {
  background-image: url("../images/icon-chevron-left-31x54.svg");
  background-position: center center;
  left: 20px;
}

#slider-home .lSAction > .lSNext {
  background-image: url("../images/icon-chevron-right-31x54.svg");
  background-position: center center;
  right: 20px;
}

#slider-home {
  position: relative;
}

#bienvenue {
  position: absolute;
  bottom: 45px;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  width: calc(100% - 140px);
  margin: 0 70px;
  text-align: center;
  height: 82px;
}

#bienvenue img:last-child {
  margin-top: 5px;
  padding: 0 25px;
}

#bienvenue img {
  width: 100%;
  max-width: 846px;
  height: auto;
}

#contours-carte {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  width: 100%;
  max-width: 507px;
  height: 100%;
  max-height: 259px;
}

#contours-carte svg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#contours-carte path {
  stroke-dasharray: 1668;
  animation: draw 2s reverse;
}

#contours-carte .st1 {
  -webkit-animation: appearence 2s;
  animation: appearence 2s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

@-webkit-keyframes draw {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: 1668;
  }

}

@keyframes draw {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: 1668;
  }

}

@-webkit-keyframes appearence {
  0% {
    opacity: 0;
    fill-opacity: 0;
  }

  80% {
    opacity: 0;
    fill-opacity: 0;
  }

  100% {
    opacity: 1;
    fill-opacity: 0.8;
  }

}

@keyframes appearence {
  0% {
    opacity: 0;
    fill-opacity: 0;
  }

  80% {
    opacity: 0;
    fill-opacity: 0;
  }

  100% {
    opacity: 1;
    fill-opacity: 0.8;
  }

}

#liens-header {
  position: absolute;
  z-index: 3;
  width: 100%;
  top: 180px;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#liens-header #liens-gauche {
  transition: all 0.1s ease;
  position: relative;
  z-index: 3;
}

#liens-header #liens-gauche,
#liens-header #liens-droite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#liens-header #liens-gauche .losange {
  margin-right: 50px;
}

#liens-header #liens-droite .losange {
  height: 43px;
  width: 43px;
  margin-left: 35px;
}

#liens-header #liens-gauche .losange .losange-content {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  
  -webkit-transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
  transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
}

#liens-header #liens-gauche .losange .losange-content .intitule {
  font-family: 'CaviarDreams';
  font-size: 12px;
  font-weight: bold;
  color: #04BAEE;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 5px;
}

#liens-header #liens-gauche .losange .losange-content img {
  width: 45%;
  height: 45%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom center;
  object-position: bottom center;
}

/* Losange sans intitul� */
#liens-header #liens-gauche .losange .losange-content img:last-child {
  width: 55%;
  height: 55%;
}

#liens-header #liens-droite .losange img {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 65%;
  height: 65%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.losange {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #FFF;
  height: 70px;
  width: 70px;
  -webkit-box-shadow: 2px 2px 2px rgba(32, 66, 76, 0.15);
  box-shadow: 2px 2px 2px rgba(32, 66, 76, 0.15);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
  transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
}

.losange:hover {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  border-radius: 10px;
}

.losange:hover .losange-content {
  -webkit-transform: rotate(-135deg) !important;
  transform: rotate(-135deg) !important;
}

.losange:hover > img {
  -webkit-transform: rotate(-135deg) !important;
  transform: rotate(-135deg) !important;
}

/* ////////////////////////////////////////////////////////////////////////////

  08 - ACCES RAPIDES

//////////////////////////////////////////////////////////////////////////// */
section#raccourcis #raccourcis-listing {
  margin: 70px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: visible;
}

section#raccourcis a.raccourcis--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 140px !important;
  width: 140px !important;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

section#raccourcis a.raccourcis--item:hover {
  margin-top: 8px;
}

section#raccourcis a.raccourcis--item:nth-child(odd) {
  background: #025d77;
  background: -moz-linear-gradient(-45deg, #025d77 0%, #04baee 50%, #cdf1fc 100%);
  background: -webkit-linear-gradient(-45deg, #025d77 0%, #04baee 50%, #cdf1fc 100%);
  background: linear-gradient(-45deg, #025d77 0%, #04baee 50%, #cdf1fc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#025d77", endColorstr="#cdf1fc", GradientType=1);
}

section#raccourcis a.raccourcis--item:nth-child(even) {
  background: #6604ee;
  background: -moz-linear-gradient(-45deg, #6604ee 0%, #e0cbfe 100%);
  background: -webkit-linear-gradient(-45deg, #6604ee 0%, #e0cbfe 100%);
  background: linear-gradient(-45deg, #6604ee 0%, #e0cbfe 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6604ee", endColorstr="#e0cbfe", GradientType=1);
}

section#raccourcis a.raccourcis--item span {
  display: block;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  color: #FFF;
  font-size: 24px;
  font-family: 'CaviarDreams';
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}

section#raccourcis .lSAction > a {
  z-index: 1;
  opacity: 1;
}

section#raccourcis .lSAction > .lSPrev {
  left: 0;
  background-image: url("../images/icon-chevron-left-black.svg");
  background-position: left center;
}

section#raccourcis .lSAction > .lSNext {
  right: 0;
  background-image: url("../images/icon-chevron-left-black.svg");
  background-position: 0 center;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* ////////////////////////////////////////////////////////////////////////////

  09 - ACTUALITES

//////////////////////////////////////////////////////////////////////////// */
section#actualites {
  background-color: #E6F8FD;
  padding: 50px 0;
}

section#actualites .actualites-listing--item {
  position: relative;
}

section#actualites .actualites-listing--item a.item-lien {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

section#actualites .actualites-listing--item a.item-lien:hover .item-description h3 {
  color: #025D77;
}

section#actualites .actualites-listing--item a.item-lien:hover .item-description .resume {
  opacity: 0.8;
}

section#actualites .actualites-listing--item a.item-lien:hover .item-photo {
  -webkit-filter: brightness(80%);
  filter: brightness(80%);
}

section#actualites .actualites-listing--item a.item-lien .item-photo {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
  min-height: 500px;
  background-position: center center;
  /*background-size: cover;*/
  background-size: contain;  
  background-color: #eeeeee;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

section#actualites .actualites-listing--item a.item-lien .item-description {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  background-color: #FFF;
  padding: 50px;
}

section#actualites .actualites-listing--item a.item-lien .item-description h3 {
  font-family: 'CaviarDreams';
  font-size: 25px;
  color: #04BAEE;
  text-transform: uppercase;
  margin: 0 0 30px 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

section#actualites .actualites-listing--item a.item-lien .item-description .resume {
  max-height:120px;
  font-size: 20px;
  line-height: 2;
  margin: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

section#actualites .actualites-listing--item a.see-more {
  position: absolute;
  bottom: 0;
  right: 0;
}

section#actualites .lSSlideOuter {
  position: relative;
  -webkit-box-shadow: 0 4px 2px rgba(32, 66, 76, 0.1);
  box-shadow: 0 4px 2px rgba(32, 66, 76, 0.1);
}

section#actualites .lSSlideOuter .lSPager.lSpg {
  position: absolute;
  bottom: 20px;
  left: 30px;
  z-index: 1;
}

section#actualites .lSSlideOuter .lSPager.lSpg > li {
  padding: 0 20px 0 0;
}

section#actualites .lSSlideOuter .lSPager.lSpg > li a {
  height: 20px;
  width: 20px;
  background-color: #FFF;
  border-radius: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

section#actualites .lSSlideOuter .lSPager.lSpg > li.active a,
section#actualites .lSSlideOuter .lSPager.lSpg > li:hover a {
  background-color: #A266F6;
}

a.see-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-family: 'CaviarDreams';
  color: #04BAEE;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a.see-more::after {
  content: '';
  display: inline-block;
  background-image: url("../images/icon-plus-30x30.svg");
  background-position: center center;
  background-size: 30px 30px;
  height: 50px;
  width: 50px;
  background-color: #04BAEE;
  margin-left: 20px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a.see-more:hover {
  color: #025D77;
}

a.see-more:hover:after {
  background-color: #025D77;
}

section#actualites #actualites-mise-en-avant {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 50px;
}

section#actualites #actualites-mise-en-avant .actualites-mise-en-avant--item:first-child {
  margin-right: 50px;
}

section#actualites #actualites-mise-en-avant .actualites-mise-en-avant--item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-height: 300px;
  position: relative;
  background-position: center center;
  /*background-size: cover;*/
  background-size: contain;
  /*background-color: #f8f8f8;*/
  -webkit-box-shadow: 0px 2px 2px rgba(32, 66, 76, 0.15);
  box-shadow: 0px 2px 2px rgba(32, 66, 76, 0.15);
}

section#actualites #actualites-mise-en-avant .actualites-mise-en-avant--item:hover:after {
  background-color: rgba(0, 0, 0, 0.1);
}

section#actualites #actualites-mise-en-avant .actualites-mise-en-avant--item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: block;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

section#actualites #actualites-mise-en-avant .actualites-mise-en-avant--item h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  font-size: 20px;
  color: #FFF;
  text-transform: uppercase;
  font-family: 'CaviarDreams';
  margin: 0 20px 20px 20px;
}

/* ////////////////////////////////////////////////////////////////////////////

  10 - AGENDA

//////////////////////////////////////////////////////////////////////////// */
section#agenda {
  padding: 50px 0;
  background-color: #FAFAFA;
}

section#agenda #agenda-entete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 50px;
}

section#agenda h2.home {
  margin-bottom: 0;
}

section#agenda a.see-more {
  max-height: 50px;
}

section#agenda #agenda-listing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}

section#agenda #agenda-listing .agenda-listing--item {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  margin-right: 50px;
  -webkit-box-shadow: 0 2px 2px rgba(32, 66, 76, 0.15);
  box-shadow: 0 2px 2px rgba(32, 66, 76, 0.15);
  max-width: 33.33%;
  background-color: #FFFFFF;
}

section#agenda #agenda-listing .agenda-listing--item .item-photo {
  width: 100%;
  min-height: 250px;
  background-position: center center;  
  /*background-size: cover;*/
  background-size: contain;
  background-color: #eeeeee;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

section#agenda #agenda-listing .agenda-listing--item:hover .item-description h3 {
  color: #025D77;
}

section#agenda #agenda-listing .agenda-listing--item:hover .item-description .resume {
  opacity: 0.8;
}

section#agenda #agenda-listing .agenda-listing--item:hover .item-photo {
  -webkit-filter: brightness(80%);
  filter: brightness(80%);
}

section#agenda #agenda-listing .agenda-listing--item .item-description {
  background-color: #FFF;
  padding: 20px;
}

section#agenda #agenda-listing .agenda-listing--item .item-description h3 {
  color: #04BAEE;
  text-transform: uppercase;
  font-size: 20px;
  font-family: 'CaviarDreams';
  margin: 0 0 20px 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

section#agenda #agenda-listing .agenda-listing--item .item-description .resume {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 10px 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

section#agenda #agenda-listing .agenda-listing--item .item-date {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
}

section#agenda #agenda-listing .agenda-listing--item .item-date .bloc-date {
  background-color: #04BAEE;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 2;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

section#agenda #agenda-listing .agenda-listing--item .item-date .bloc-date .date-wrapper {
  height: 70px;
  width: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

section#agenda #agenda-listing .agenda-listing--item .item-date .bloc-date .jour,
section#agenda #agenda-listing .agenda-listing--item .item-date .bloc-date .mois {
  color: #FFF;
  font-family: 'CaviarDreams';
  font-weight: bold;
  line-height: 1;
}

section#agenda #agenda-listing .agenda-listing--item .item-date .bloc-date .jour {
  font-size: 26px;
}

section#agenda #agenda-listing .agenda-listing--item .item-date .bloc-date .mois {
  font-size: 16px;
  text-transform: uppercase;
}

section#agenda #agenda-listing .agenda-listing--item .item-date .bloc-date:nth-child(2) {
  background-color: #A266F6;
  z-index: 1;
}

section#agenda #agenda-listing .agenda-listing--item:last-child {
  margin-right: 0;
}

/* ////////////////////////////////////////////////////////////////////////////

  BADGES

//////////////////////////////////////////////////////////////////////////// */

  #badges {
    background-color: #E6F8FD;
    margin-bottom: 40px;
  }
  #badges .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
  .badge {
    flex:1;
    display: block;
    text-align: center;
  }
  .badge img {
    width: 60%;
    max-width: 200px;
    border-radius: 1000px;
    -webkit-box-shadow: 0 2px 2px rgba(32, 66, 76, 0.15);
    box-shadow: 0 2px 2px rgba(32, 66, 76, 0.15);
    transition: all 0.2s ease;
  }
  .badge img:hover {
    filter: brightness(80%);
  }

/* ////////////////////////////////////////////////////////////////////////////

  11 - FOOTER

//////////////////////////////////////////////////////////////////////////// */
footer {
  background-color: #025D77;
}

footer #footer-logo {
  padding: 50px 0 0 0;
  text-align: center;
}

footer #footer-logo a {
  display: block;
}

footer #footer-logo img {
  width: 100%;
  max-width: 279px;
  height: auto;
}

footer #footer-rs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 40px 0;
}

footer #footer-rs .rs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background-color: #FFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
  transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
}

footer #footer-rs .rs img {
  width: 30%;
  height: auto;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

footer #footer-rs .rs:hover {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  border-radius: 10px;
}

footer #footer-rs .rs:hover img {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

footer #footer-liens {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 50px;
}

footer #footer-liens .footer--item {
  margin-right: 20px;
  max-width: 33.33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

footer #footer-liens .footer--item:last-child {
  margin-right: 0;
}

footer #footer-liens ul li {
  color: #FFF;
  font-size: 20px;
  font-family: 'CaviarDreams';
  text-transform: uppercase;
}

footer #footer-liens #footer-rubriques-newsletter {
  max-width: 26%;
}

footer #footer-liens #rubrique-listing a.rubrique , a.rubrique {
  display: inline-block;
  background-color: #04BAEE;
  border-radius: 4px;
  padding: 6px 10px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: bold;
  font-family: 'CaviarDreams';
  margin: 0 10px 10px 0;
}

footer #footer-liens #rubrique-listing a.rubrique:hover , a.rubrique:hover {
  opacity: 0.8;
}

footer #footer-liens #newsletter-form input {
  border-radius: 4px;
  border: none;
  height: 30px;
  font-size: 14px;
}

footer #footer-liens #newsletter-form input[type="email"] {
  background-color: #FFF;
  padding: 0 0 0 10px;
  margin-right: 5px;
  width: calc(100% - 50px);
}

footer #footer-liens #newsletter-form input[type="submit"] {
  background-color: #04BAEE;
  color: #FFF;
  margin: 0;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 40px;
}

footer #footer-liens #newsletter-form input[type="submit"]:hover {
  opacity: 0.8;
}

footer .footer-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  color: #FFF;
  text-transform: uppercase;
  font-size: 20px;
  font-family: 'CaviarDreams';
  font-weight: bold;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

footer .footer-title img {
  height: 25px;
  width: 25px;
  margin-right: 10px;
}

footer a.footer-title:hover {
  opacity: 0.8;
}

footer #credits {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px 0;
}

footer #credits .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

footer #credits a {
  display: inline-block;
  color: #FFF;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ////////////////////////////////////////////////////////////////////////////

  12 - PAGE TYPE

//////////////////////////////////////////////////////////////////////////// */
#breadcrumbs {
  background-color: #FAFAFA;
  padding: 10px 0;
  margin-bottom: 20px;
}

#breadcrumbs p {
  color: #6C6C6C;
  font-size: 18px;
}

#breadcrumbs a {
  color: #04BAEE;
}

section#page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

section#page h1 {
  color: #025D77;
  text-transform: unset;
  font-size: 40px;
  font-weight: bold;
  background-color: #E6F8FD;
  padding: 20px 10px;
  margin-bottom: 20px;
  line-height: 1;
}

section#page h2 {
  color: #04BAEE;
  font-size: 26px;
  padding: 20px 0 5px 0;
  margin:0px;
    font-family: 'CaviarDreams';
}
section#page h3 {
  color: hsl(193.3,96.7%,27.5%);
  /*color: #6604ee;*/
  /*background-color: #E6F8FD;*/
  font-size: 18px;
  padding: 15px 0 5px 0;
  margin: 0 0 15px 0;
  font-weight:600!important;
    font-family: 'CaviarDreams';
}
section#page h3::before {
  content: "●";
  display: inline-block;
  font-size:12px;
  margin-right:0px;
  width:10px;
  line-height:12px;
}
table h3::before {  
  display: none!important;
}
section#page h4 {
      color: #025D77;
  font-size: 16px;
  padding: 10px 0 5px 0;
  /* font-weight: 300!important; */
  font-family: 'CaviarDreams';
  background-color: #E6F8FD;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 4px;
  line-height: 1;
  margin: 0 0 15px 0;
  border:solid 1px #b7ebf9;
}

section#page p,
section#page div,
section#page td,
section#page li,
section#page span {
  font-size: 16px;
  line-height: 20px;
}

section#page p {
  /*text-align: justify;*/
  margin-top:5px;
}

section#page a {
  color: #A266F6;
}

section#page a:hover {
  text-decoration: underline;
}

section#page a.button {
  display: table;
  text-transform: uppercase;
  border: #A266F6 1px solid;
  border-radius: 10px;
  padding: 5px 15px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin: 0 0 0 auto;
}

section#page a.button:hover {
  background-color: #A266F6;
  color: #FFF;
  text-decoration: none;
}

section#page ul {
  list-style: unset;
  padding-left: 40px;
}

section#page #page-menu-wrapper {
  position: relative;
  margin-right: 20px;
}

section#page nav#page-menu {
  width: 260px;
  position: sticky;
  top: 20px;
  z-index: 9;
}

section#page nav#page-menu span#nom-rubrique {
  position: relative;
  display: block;
  text-align: center;
  background-color: #04BAEE;
  background-image: url("../images/icon-wave-white-sous-menu-24x21.svg");
  background-size: 24px 21px;
  background-position: -2px center;
  padding: 10px 22px;
  font-size: 18px;
  text-transform: uppercase;
  color: #FFF;
  font-family: 'Open Sans';
  font-weight: 700;
}

section#page nav#page-menu span#nom-rubrique a {
  color: #FFF;
  text-decoration: none;
}

section#page nav#page-menu ul {
  position: relative;
  background-color: #E6F8FD;
  padding: 10px 0;
  list-style: none;
}
/*
section#page nav#page-menu ul::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -28px;
  height: 30px;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 31' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='1.414'%3E%3Cpath d='M250 .219v9.784c0 4.218-2.044 8.174-5.484 10.614v.001l-7.855 5.153c-7.981 5.968-20.356 5.968-28.336 0l-7.855-5.153c-5.918-4.418-15.084-4.418-21.001 0l-7.855 5.153c-7.97 5.965-20.334 5.965-28.304 0l-7.887-5.153c-5.907-4.414-15.062-4.414-20.969 0l-7.887 5.153c-7.97 5.965-20.334 5.965-28.304 0l-7.888-5.153c-5.906-4.414-15.061-4.414-20.968 0l-7.887 5.153c-7.97 5.965-20.334 5.965-28.304 0l-7.855-5.153A13.343 13.343 0 0 1 0 9.926V.219h250z' fill='%23e6f8fd'/%3E%3C/svg%3E%0A");
  background-size: 100% 100%;
  -webkit-transform: all 0.2s ease;
  transform: all 0.2s ease;
}
/**/
section#page nav#page-menu ul li.page-menu--item a,section#page nav#page-menu ul li.page-menu--sousitem a ,section#page nav#page-menu ul li.page-menu--soussousitem a ,section#page nav#page-menu ul li.page-menu--soussoussousitem a  {
  display: block;
  color: #025D77;
  font-size: 16px;
  padding: 8px 10px 2px 10px;
  border-bottom: 2px transparent solid;
  border-top: 2px transparent solid;
  opacity: 0.6;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  line-height: 1.5;
}

section#page nav#page-menu ul li.page-menu--item a:hover,section#page nav#page-menu ul li.page-menu--sousitem a:hover ,section#page nav#page-menu ul li.page-menu--soussousitem a:hover,section#page nav#page-menu ul li.page-menu--soussoussousitem a:hover,
section#page nav#page-menu ul li.page-menu--item a.actif,section#page nav#page-menu ul li.page-menu--sousitem a.actif ,section#page nav#page-menu ul li.page-menu--soussousitem a.actif ,section#page nav#page-menu ul li.page-menu--soussoussousitem a.actif
section#page nav#page-menu ul li.page-menu--item a.actif:hover,section#page nav#page-menu ul li.page-menu--sousitem a.actif:hover ,section#page nav#page-menu ul li.page-menu--soussousitem a.actif:hover  ,section#page nav#page-menu ul li.page-menu--soussoussousitem a.actif:hover  {
  opacity: 1;
  background-color: #B9ECFA;
  border-bottom: 2px #C7F0FB solid;
  border-top: 2px #C7F0FB solid;
  text-decoration: none;
}

section#page nav#page-menu ul li.page-menu--sousitem a {
  font-size: 13px;
  padding: 0px 10px 2px 30px;
}
section#page nav#page-menu ul li.page-menu--soussousitem a {
  font-size: 11px;
  padding: 0px 10px 2px 45px;
}
section#page nav#page-menu ul li.page-menu--soussoussousitem a {
  font-size: 10px;
  padding: 0px 10px 2px 60px;
}



section#page  #page-content ul.sousmenus li,section#page #page-content  a{/**/
  color: #025D77;
  /*font-size: 18px;*/
  font-weight:600;
  font-family: 'CaviarDreams';/**/
}


.divEmbedGalerie{
	min-height:500px!important;
	height:auto!important;
	
}
.divEmbedGalerie:after{	
	display:block;
	border:5px solid red;
	/*border:1px solid red;*/
	height:100%;
	min-height:200px;
	width:100%;
	content:"Chargement de la galerie en cours...";
	color:red;
	font-weight:bold;
	text-align:center;
	display: flex;
	justify-content:center;
	align-content:center;
	flex-direction:column;
	display:none;
}
/** /
.divEmbedGalerie .lSSlideOuter .lSSlideOuter .lSPager  {
	display:none;
}
.divEmbedGalerie .lSSlideOuter .lSPager  {
	
}
/**/

.evenementPasse{
	filter: grayscale(100%) opacity(60%);
}
.evenementPasse:hover{
	filter: grayscale(25%) opacity(80%);
}

.ligne {
	/*clear:both;*/
        /*float:left;*/
        width:100%;
        margin: 0 0 20px 0;
		background-color:#fafafa;
		padding:5px 5px 5px 5px;
}

.ligne .sous_titre {
        width:100%;
		background-color:#025D77;
		color:#fafafa;
		padding:5px 10px;
		margin-bottom:10px;
        
}

.sous_titre {
    width:100%;
		background-color:#025D77;
		color:#ffffff;
		padding:5px 10px;
		margin-bottom:0px;
        
}
.actif{
	color:#04BAEE !important;
}

#page-content {
    width: calc(100% - 280px);
}

section#page .divEmbedGalerie {
	width: 100%!important;
	max-width: 920px!important;
}

section#page .divEmbedGalerie ul.lSPager,
section#page .divEmbedGalerie ul.lSSlide {
	list-style: none;
	padding: 0;
	margin: 0;
}

section#page .divEmbedGalerie ul.lSSlide {
	background-color: #F5F5F5;
	height: 400px!important;
}

section#page .divEmbedGalerie ul.lSSlide li.lslide {
	text-align: center;
	height: 100%;
}

section#page .divEmbedGalerie ul.lSSlide li.lslide img {
	width: 100%!important;
	height: 100%!important;
	object-fit: contain;
	max-height: 400px;
}

section#page .divEmbedGalerie .lSSlideOuter {
  background-color: #EEE;
}

section#page .divEmbedGalerie ul.lSPager {
  margin: 5px auto 5px auto!important;
}

section#page .divEmbedGalerie ul.lSPager li {
	transition: all 0.2s ease;
}

section#page .divEmbedGalerie ul.lSPager li.active,
section#page .divEmbedGalerie ul.lSPager li:hover {
	filter: grayscale(100%);
}

section#page .divEmbedGalerie ul.lSPager li > a {
  position: relative;
  display: block;
}

section#page .divEmbedGalerie ul.lSPager li > a:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

section#page .divEmbedGalerie ul.lSPager li > a > img {
  position: absolute;
	height: 100%!important;
	width: 100%!important;
	object-fit: cover;
	object-position: center center;
}

/* LISTING */

section#page .listing {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -10px;
}

section#page .listing::after {
  content: "";
  flex: auto;
}

section#page .listing--item {
  display: block;
  width: calc(33.33% - 20px);
  -webkit-box-shadow: 0 2px 2px rgba(32, 66, 76, 0.15);
  box-shadow: 0 2px 2px rgba(32, 66, 76, 0.15);
  margin: 10px 10px 20px 10px;
  background-color: #FAFAFA;
  display: flex;
  flex-flow: column;
  min-width: 240px;
}

section#page .listing--item:hover {
  text-decoration: none;
  background-color: #EEEEEE;
}

section#page .listing.col-2 .listing--item {
  width: calc(50% - 20px);
}

section#page .listing--item:hover img {
  filter: brightness(80%);
}

section#page .listing--item:hover h2 {
  color: #025D77;
}
section#page .listing--item:hover .infos {
  opacity: 0.8;
}

section#page .listing--item img {
  height: 300px!important;
  width: 100%;
  /*object-fit: cover;*/
  object-fit: contain;
  transition: all 0.2s ease;
  background-color:#eeeeeeee;
}

section#page .listing--item img.photo_entreprise {
  height: 300px!important;
}

section#page .listing--item .description {
  padding: 10px;
  margin-bottom: 10px;
}

section#page .listing--item .date {
  text-align: center;
  background-color: #E5F8FD;
  border: 1px solid #04BAEE;
  margin-top: 10px;
}

section#page .listing--item .date span {
  font-size: 12px;
}

section#page .listing--item .infos {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 10px 0;
  color: #1D1D1B;
  transition: all 0.2s ease;
}

section#page .listing--item .infos br {
  display: none;
}

section#page .listing--item .nom {
  display: block;
  color: #04BAEE;
  text-align: center;
  border: 1px solid #04BAEE;
  padding: 4px 8px;
  margin-bottom: 10px;
  background-color: #FFF;
}

section#page .listing--item h2 {
  padding: 0;
  margin: 0;
  font-size: 20px;
  transition: all 0.2s ease;
  display:block;
}

section#page .listing--item h2::before{
	display:none;
}

h2.lettre {
	text-align:center;
	padding:0 10px;
}
h2.lettre::before{
	display:none;
}

@media screen and (max-width: 1000px) {
  section#page .listing--item {
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 550px) {
  section#page .listing--item,
  section#page .listing.col-2 .listing--item {
    width: 100%;
  }
  .container table.unelignesurdeux tr{
	 /* display:block !important;*/
  }  
	  
	 table.unelignesurdeux,
  .unelignesurdeux tbody,
  .unelignesurdeux tr,
  .unelignesurdeux td {
    display: block!important;
    width: auto!important;
    /* parceque tu as mis des style inline grrr */
  }
   table.unelignesurdeux td  {
		background-color: #E6F8FD!important; 
		border-bottom:3px solid #f4f4f4 !important;
		margin:5px;
		padding:5px;
	}
	/*/
  table.unelignesurdeux tr td:nth-child(odd)  {
		background-color: #E6F8FD!important;
	}
  table.unelignesurdeux tr td:nth-child(even)  {
		background-color: #f4f4f4!important;
	}
	/**/
  }
}
