@charset "UTF-8";
/*--------------------------------

	RESET
	Ce fichier contient les styles de reset

*/
/*--------------------------------

	Reset

*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: auto;
}

body {
  line-height: 1;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*--------------------------------

	Reset forms

*/
fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

input,
select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-clip: border-box;
  margin: 0;
  outline: 0;
  text-align: left;
  vertical-align: top;
  width: 100%;
}

input[type=checkbox],
input[type=radio] {
  width: auto;
  height: auto;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
}

input[type=radio] {
  -webkit-appearance: radio;
     -moz-appearance: radio;
          appearance: radio;
}

textarea,
select[size],
select[multiple] {
  height: auto;
}

select::-ms-expand {
  display: none;
}

select:focus::-ms-value {
  background-color: transparent;
  color: inherit;
}

textarea {
  resize: vertical;
  height: auto;
}

input[type=search]::-webkit-search-decoration {
  display: none;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}

button,
.button {
  cursor: pointer;
  display: inline-block;
  font: normal 16px/1 sans-serif;
  outline: 0;
  overflow: visible;
  text-align: center;
  text-decoration: none;
  vertical-align: top;
  width: auto;
}
button:hover, button:focus,
.button:hover,
.button:focus {
  text-decoration: none;
}

[disabled],
[disabled] * {
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/*--------------------------------

	HELPERS
	Ces fichiers contiennent les styles "abstraits" utiles au projet

*/
/*--------------------------------

	Typography

*/
/*--------------------------------

	Layout

*/
/*
ordered from high to low
suggested naming convention would be the class/ID the z-index is going on
*/
/*--------------------------------

	Colours

*/
/*--------------------------------

	Other Styles

*/
/*--------------------------------

	Easing/Timing

*/
/*--------------------------------

	Transitions

*/
/*--------------------------------

	EMs calculator

*/
/*--------------------------------

	Grids

*/
/*--------------------------------

	Z-indexing

	use:

		instead of guessing or adding random z-indexes throughout the project (e.g. 100000, 999999, etc.), call the z-index function to generate a z-index from a stacked list of classes

	prerequisits:

		$z-indexes list must exist in variables file

	example:

		.box {
			z-index: z('box');
		}

*/
/*--------------------------------

	Photoshop letter spacing

	use:

		for simple conversion between Photoshop letter-spacing to ems

	prerequisits:

		$ls list must exist in variables file

	example:

		.awesome-heading {
			letter-spacing: ls('awesome-heading');
		}

		could generate (if "awesome-heading") is 2nd in the list:

		.awesome-heading {
			letter-spacing: -0.01em;
		}

*/
/*--------------------------------

	Map deep get

	Get values from anywhere in a variable list

	http://css-tricks.com/snippets/sass/deep-getset-maps/

*/
/*--------------------------------

	Strip unit

*/
/*--------------------------------

	Very simple number functions

*/
/*--------------------------------

	Photoshop letter spacing

	use:

		get the value of a particular breakpoint

	example:

		.box {
			width: breakpoint('phone-wide');
		}

		would generate:

		.box {
			width: 480px;
		}

*/
/*--------------------------------

	Colour map lookup, retrieving base value by default

*/
/*--------------------------------

	Media Queries

	used for outputting content either between media query tags

	example: basic usage

	.element {
		width: 50%;

		@include mq('tablet-small') {
			width: 20%;
		}
	}

	example: using max-width

	.element {
		width: 50%;

		@include mq('tablet-small', 'max') {
			width: 20%;
		}
	}

*/
/*--------------------------------

	Margin / Padding Quick Resets

	example: top & bottom margin set to $spacing-unit
	.element {
		@include push--ends;
	}

	example: left & right padding set to $spacing-unit--small
	.element {
		@include soft--sides($spacing-unit--small);
	}

*/
/*--------------------------------

	Form input placeholder text

	example:

	input,
	textarea {
		@include input-placeholder {
			color: $grey;
		}
	}

*/
/*--------------------------------

	Retina images

	example:

	.element {
		@include retina {
			background-image: url(../img/background@2x.png);
		}
	}

*/
/*--------------------------------

	Content margins

	for removing first/last child margins

	example: default
	.element {
		@include content-margins;
	}

	output:
	.element > *:first-child {
		margin-top: 0;
	}
	.element > *:last-child {
		margin-bottom: 0;
	}

	example: empty selector
	.element {
		@include content-margins('false');
	}

	output:
	.element:first-child {
		margin-top: 0;
	}
	.element:last-child {
		margin-bottom: 0;
	}

*/
/*--------------------------------

	Hide text

	example:

	.element {
		@include hide-text;
	}

*/
/*--------------------------------

	Responsive ratio

	Used for creating scalable elements that maintain the same ratio

	example:
	.element {
		@include responsive-ratio(400, 300);
	}

*/
/*--------------------------------

	Typography

	Text image replacement, with responsive ratio

	HTML:

	<h1 class="element">
		<span>Text to replace</span>
	</h1>

	example:
	.element {
		@include typography(200, 50, 'hello-world');
	}


*/
/*--------------------------------

	Colours

	background, colour, etc. match up with colour map in _variables.scss

	modify to suit per project

*/
/*--------------------------------

	Misc

*/
/*--------------------------------

	Fluid Property

	http://www.adrenalinmedia.com.au/the-agency/insights/this-changes-everything-css-fluid-properties.aspx

	HTML:

	<h1 class="element">
		<span>Text to replace</span>
	</h1>

	example:
	h1 {
		@include fp(font-size, 50, 100); // 50px at 320, 100px at 1920;
	}

	output:
	h1 {
		font-size: calc(3.125vw + 40px); //This is the magic!
	}

	@media (max-width:320px){ //Clips the start to the min value
		font-size:50px;
	}

	@media (min-width:1920px){ //Clips the end to the max value
		font-size:100px;
	}


*/
/*--------------------------------

	BASE
	Ces fichiers contiennent la structure principale

*/
/*--------------------------------

	Box sizing

*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*--------------------------------

	Basic document styling

*/
html {
  font-size: 100%;
  min-height: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  background-color: #fff;
  color: #1a1a1a;
  font-family: "Open Sans", Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  font-size: 14px;
  line-height: 2;
  color: #5c5c5c;
}
body.open {
  overflow: hidden;
  height: 100vh;
}
@media only screen and (min-width: 48em) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media only screen and (min-width: 78em) {
  body {
    font-size: 18px;
    line-height: 1.67;
  }
}

#page {
  overflow: hidden;
}

main {
  padding: 0 8%;
  position: relative;
}
main::before {
  content: "";
  position: absolute;
  width: 261px;
  height: 509px;
  left: 0;
  top: 0;
  background: url("/images/_v2/shape/shape-defaut.svg") no-repeat right top;
  background-size: auto 100%;
  z-index: -1;
}
@media only screen and (min-width: 48em) {
  main::before {
    width: 565px;
  }
}
@media only screen and (min-width: 78em) {
  main::before {
    width: 1034px;
    height: 818px;
  }
}
@media only screen and (min-width: 103.125em) {
  main::before {
    top: 15px;
  }
}
@media only screen and (min-width: 78em) {
  main::after {
    content: "";
    position: absolute;
    width: 361px;
    height: 818px;
    right: 0;
    top: 863px;
    background: url("/images/_v2/shape/shape-defaut.svg") no-repeat left top;
    background-size: auto 100%;
    z-index: -1;
  }
}

.site-container {
  max-width: 1440px;
  margin: 0 auto;
}
@media only screen and (min-width: 78em) {
  .site-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .site-container article {
    width: calc(100% - 325px);
    padding-right: 60px;
    max-width: 1010px;
  }
}

/*--------------------------------

	Text selection/highlighting

*/
::-moz-selection {
  background: #d92d29;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #d92d29;
  color: #fff;
  text-shadow: none;
}

/* ---------------------------------------- */
/* Structure blocs manage                  	*/
/* ---------------------------------------- */
.size1_1, .size1_2, .size1_3, .size1_4, .size1_5, .size1_6, .size1_7, .size1_8 {
  width: 100%;
}

@media only screen and (min-width: 48em) {
  .grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 48em) and (min-width: 78em) {
  .grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 48em) {
  .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .grid-2 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .grid-3 {
    margin-left: -10px;
    margin-right: -10px;
  }
  .grid-4, .grid-5 {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .grid-6, .grid-7 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .grid-8 {
    margin-left: -2.5px;
    margin-right: -2.5px;
  }
  .size1_1 {
    width: 100%;
  }
  .size1_2 {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
  .size1_3 {
    width: calc(33.33% - 20px);
    margin: 0 10px 20px;
  }
  .size1_4 {
    width: calc(25% - 15px);
    margin: 0 7.5px;
  }
  .size1_5 {
    width: calc(20% - 15px);
    margin: 0 7.5px;
  }
  .size1_6 {
    width: calc(16.666% - 10px);
    margin: 0 5px;
  }
  .size1_7 {
    width: calc(14.285% - 10px);
    margin: 0 5px;
  }
  .size1_8 {
    width: calc(12.55% - 5px);
    margin: 0 2.5px;
  }
  .size1_2 > .elementText:first-child .structured_text_semantique_text > *:first-child {
    margin-top: 0;
  }
}
@media only screen and (min-width: 90em) {
  .grid-2 {
    margin: 0 -25px;
  }
  .size1_2 {
    width: calc(50% - 50px);
    margin: 0 25px 50px;
  }
}
/*-------------------------------- 

	CORE
	Ces fichiers contiennent les styles généraux des éléments html & les règles de typo

*/
/*--------------------------------

	Style général des liens

*/
a {
  color: #d92d29;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: 700;
}
a:hover {
  text-decoration: underline;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
a img {
  border: none;
}
a strong {
  font-weight: 400;
}

a:focus {
  outline: none;
}
a:link {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

/*--------------------------------

	Tous les styles de boutons

*/
.btn-neutral, .btn-negative, .btn-positive, .btn-full, .btn-full-blue, .ru-demande-etude.ru-demande-assu input[type=submit], .btn-full-red, input[type=submit], .lienBlocRouge a, .btn-empty, .btn-empty-black, .btn-empty-white, .btn-empty-blue, .btn-empty-red, input[type=reset] {
  display: inline-block;
  border-radius: 31.5px;
  cursor: pointer;
  text-align: center;
  clear: both;
  padding: 13px 20px;
  font-size: 16px;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: 500;
  line-height: 1.1;
}
@media only screen and (min-width: 78em) {
  .btn-neutral, .btn-negative, .btn-positive, .btn-full, .btn-full-blue, .ru-demande-etude.ru-demande-assu input[type=submit], .btn-full-red, input[type=submit], .lienBlocRouge a, .btn-empty, .btn-empty-black, .btn-empty-white, .btn-empty-blue, .btn-empty-red, input[type=reset] {
    font-size: 18px;
    padding: 18px 40px;
    border-radius: 37.5px;
  }
}
.btn-neutral:hover, .btn-negative:hover, .btn-positive:hover, .btn-full:hover, .btn-full-blue:hover, .ru-demande-etude.ru-demande-assu input[type=submit]:hover, .btn-full-red:hover, input[type=submit]:hover, .lienBlocRouge a:hover, .btn-empty:hover, .btn-empty-black:hover, .btn-empty-white:hover, .btn-empty-blue:hover, .btn-empty-red:hover, input[type=reset]:hover {
  text-decoration: none;
}

.btn-empty, .btn-empty-black, .btn-empty-white, .btn-empty-blue, .btn-empty-red, input[type=reset] {
  background: none;
  border: 2px solid;
}
.btn-empty-red, input[type=reset] {
  border-color: #d92d29;
  color: #d92d29;
}
.btn-empty-red:hover, input[type=reset]:hover {
  background: rgba(217, 45, 41, 0.1);
}
.btn-empty-blue {
  border-color: #6dcaff;
  color: #6dcaff;
}
.btn-empty-blue:hover {
  background: rgb(231.4, 246.4328767123, 255);
}
.btn-empty-white {
  border-color: #fff;
  color: #6dcaff;
  -webkit-box-shadow: -4px 7px 27px 0 rgba(0, 0, 0, 0.13);
          box-shadow: -4px 7px 27px 0 rgba(0, 0, 0, 0.13);
}
.btn-empty-white:hover {
  border-color: #6dcaff;
  background: rgb(236.5, 248.2842465753, 255);
}
.btn-empty-black {
  border-color: #000;
  color: #000;
}
.btn-empty-black:hover {
  background: rgb(178.5, 178.5, 178.5);
}
.btn-full, .btn-full-blue, .ru-demande-etude.ru-demande-assu input[type=submit], .btn-full-red, input[type=submit], .lienBlocRouge a {
  border: none;
  color: #fff;
}
.btn-full-red, input[type=submit], .lienBlocRouge a {
  background: #d92d29;
}
.btn-full-red:hover, input[type=submit]:hover, .lienBlocRouge a:hover {
  background: rgb(175.7857142857, 34.5, 31.2142857143);
}
.btn-full-blue, .ru-demande-etude.ru-demande-assu input[type=submit] {
  background: #6dcaff;
}
.btn-full-blue:hover, .ru-demande-etude.ru-demande-assu input[type=submit]:hover {
  background: rgb(58, 183.4863013699, 255);
}
.btn-positive {
  background-color: #24b35d;
  color: #fff;
}
.btn-positive:hover {
  background: rgb(51.8558139535, 214.1441860465, 116.5441860465);
}
.btn-negative {
  background-color: #d92d29;
  color: #fff;
}
.btn-negative:hover {
  background: rgb(224.6904761905, 87.5, 84.3095238095);
}
.btn-neutral {
  background: #ddd;
  color: #444;
}
.btn-neutral:hover {
  background: rgb(195.5, 195.5, 195.5);
}
.btn-small {
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.lienBlocRouge {
  display: block;
  margin: 50px auto;
}
button {
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/*--------------------------------

	Boutons de partage (social)

*/
.lienRs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 64em) {
  .lienRs {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.lienRs a {
  margin: 10px;
}
.lienRs a i {
  display: block;
}

hr,
.clear {
  border: none;
  clear: both;
}
hr.trait, hr.separator,
.clear.trait,
.clear.separator {
  padding-top: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
}
@media only screen and (min-width: 35em) {
  hr.trait, hr.separator,
  .clear.trait,
  .clear.separator {
    padding-top: 40px;
    margin-bottom: 60px;
  }
}

/*--------------------------------

	Comportement des images dans le contenu des pages

*/
a img {
  border: none;
}
img[style*="float:left"], img[style*="float: left"] {
  float: none !important;
  display: block;
  margin: 20px auto;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  img[style*="float:left"], img[style*="float: left"] {
    float: left !important;
    margin: 10px 30px 10px 0;
  }
}
img[style*="float:right"], img[style*="float: right"] {
  float: none !important;
  display: block;
  margin: 20px auto;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  img[style*="float:right"], img[style*="float: right"] {
    float: right !important;
    margin: 10px 0 10px 30px;
  }
}

.textAndImages .above_left,
.textAndImages .below_left {
  text-align: left;
  margin-top: 30px;
  margin-bottom: 30px;
}
.textAndImages .above_right,
.textAndImages .below_right {
  text-align: right;
  margin-top: 30px;
  margin-bottom: 30px;
}
.textAndImages .above_center,
.textAndImages .below_center {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.textAndImages > *:first-child {
  margin-top: 0;
}
.textAndImages > *:last-child {
  margin-bottom: 0;
}

.intext_right {
  float: none !important;
  display: block;
  margin: 20px auto;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  .intext_right {
    float: right !important;
    margin: 10px 0 10px 30px;
  }
}

.intext_left {
  float: none !important;
  display: block;
  margin: 20px auto;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  .intext_left {
    float: left !important;
    margin: 10px 30px 10px 0;
  }
}

.medias .center {
  text-align: center;
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (min-width: 90em) {
  .medias .center {
    margin-left: -100px;
    margin-right: -100px;
  }
}
.medias .center img {
  max-width: auto;
}

.fit-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.fit-cover img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.custom-object-fit {
  position: relative;
  background-position: center center;
  background-size: cover;
}

.custom-object-fit img {
  opacity: 0;
}

.no-photo:empty {
  background: url("/images/commun/no-photo.jpg") no-repeat scroll center;
  opacity: 0.4;
  background-size: 100%;
  width: 100%;
  height: 100%;
}

.formulaire,
iframe:not([src*=recaptcha]),
.medias {
  margin-top: 30px;
  margin-bottom: 30px;
}

/*--------------------------------

	Logo

*/
#logo {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1000;
}
@media only screen and (min-width: 78em) {
  #logo {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 10%;
    padding-left: 30px;
  }
}
@media only screen and (min-width: 103.125em) {
  #logo {
    width: 215px;
  }
}
@media only screen and (min-width: 120em) {
  #logo {
    padding: 0;
    margin-left: 50px;
  }
}

#logo a {
  display: block;
  width: 99px;
  height: 44px;
  text-indent: -9999px;
  background: url("/images/_v2/logo/logo.svg") no-repeat scroll center top;
  background-size: 100%;
}
@media only screen and (min-width: 78em) {
  #logo a {
    width: 100%;
    height: 100%;
    background-position: center;
  }
}
@media only screen and (min-width: 103.125em) {
  #logo a {
    background-position: bottom;
  }
}

/*--------------------------------

	Listes à puces

*/
ul li {
  list-style: none;
}
article ul {
  margin-top: 30px;
  margin-bottom: 30px;
}
article ul li {
  margin-top: 10px;
  margin-bottom: 10px;
}
article ul li ul,
article ul li ol {
  margin-left: 20px;
}
.structured_text_semantique_text ul, ul .blockList, .form_creator_header ul, .ckEditor ul, .postDetail ul {
  margin-left: 20px;
}
.structured_text_semantique_text ul li, ul .blockList li, .form_creator_header ul li, .ckEditor ul li, .postDetail ul li {
  font-size: 14px;
  color: #272324;
  line-height: 1.2;
  padding-left: 32px;
  position: relative;
  margin-bottom: 26px;
}
@media only screen and (min-width: 78em) {
  .structured_text_semantique_text ul li, ul .blockList li, .form_creator_header ul li, .ckEditor ul li, .postDetail ul li {
    font-size: 16px;
    line-height: 1.3;
  }
}
.structured_text_semantique_text ul li a, ul .blockList li a, .form_creator_header ul li a, .ckEditor ul li a, .postDetail ul li a {
  color: #6dcaff;
}
.structured_text_semantique_text ul li::before, ul .blockList li::before, .form_creator_header ul li::before, .ckEditor ul li::before, .postDetail ul li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #6dcaff;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  color: #fff;
  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;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: bold;
  padding-bottom: 3px;
}

article ol {
  margin-top: 30px;
  margin-bottom: 30px;
}
article ol li {
  list-style: inside decimal-leading-zero;
  margin-top: 10px;
  margin-bottom: 10px;
}

/*--------------------------------

	Tableaux spéciaux

*/
table {
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
  border: 1px solid #ddd;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 48em) {
  table {
    font-size: 16px;
  }
}
table caption {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media only screen and (min-width: 48em) {
  table caption {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
table thead,
table tfoot {
  background: #F6F6F6;
  color: #444;
}
table thead th,
table thead td,
table tfoot th,
table tfoot td {
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #ddd;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
@media only screen and (min-width: 48em) {
  table thead th,
  table thead td,
  table tfoot th,
  table tfoot td {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
table tr:nth-of-type(even) {
  background: #F6F6F6;
}
table tr td {
  border: 1px solid #ddd;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
@media only screen and (min-width: 48em) {
  table tr td {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
table.sansBord, table.sansBord *:not(caption) {
  border: none;
  background: none !important;
  font-weight: 400;
  color: #1a1a1a;
  font-size: 16px;
}

/*--------------------------------

	Tableaux responsive

*/
.table-responsive {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  width: 100% !important;
  margin-bottom: 15px !important;
  -ms-overflow-style: -ms-autohiding-scrollbar !important;
  -webkit-overflow-scrolling: touch !important;
}
.table-responsive > .table {
  margin-bottom: 0;
}
.table-responsive > .table-bordered {
  border: 0;
}

.table-responsive > table > thead > tr > th,
.table-responsive > table > tbody > tr > th,
.table-responsive > table > tfoot > tr > th,
.table-responsive > table > thead > tr > td,
.table-responsive > table > tbody > tr > td,
.table-responsive > table > tfoot > tr > td {
  min-width: 100px;
}

/*--------------------------------

	Règles typographiques

*/
/*--------------------------------

	Basic, low level typography

*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  display: block;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: bold;
  line-height: 1.2;
  color: #272324;
  margin: 40px 0 20px;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong,
.h1 strong,
.h2 strong,
.h3 strong,
.h4 strong,
.h5 strong,
.h6 strong {
  font-weight: 700;
}
@media only screen and (min-width: 78em) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6 {
    margin: 60px 0 30px;
  }
}

h1,
.h1 {
  font-size: 36px;
  margin: 0;
}
h1::after,
.h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 8px;
  background: #d92d29;
  margin: 35px 0 40px;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
}
@media only screen and (min-width: 78em) {
  h1,
  .h1 {
    font-size: 46px;
  }
}

h2,
.h2 {
  font-size: 32px;
  margin: 57px 0 35px;
}

h3,
.h3 {
  font-size: 26px;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: 500;
}

h4,
.h4 {
  font-size: 22px;
}

h5,
.h5 {
  font-size: 20px;
}

h6,
.h6 {
  text-transform: uppercase;
  color: #5c5c5c;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: 500;
}

p, ul, ol,
.blockquote, .button-wrapper, .media, .table-wrapper {
  margin-top: 1em;
}
p:first-child, ul:first-child, ol:first-child,
.blockquote:first-child, .button-wrapper:first-child, .media:first-child, .table-wrapper:first-child {
  margin-top: 0;
}

p {
  margin-top: 15px;
  margin-bottom: 15px;
}

ol,
ul {
  list-style: none;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 80%;
}

em, i {
  font-style: italic;
}

/*--------------------------------

	Fonts

*/
@font-face {
  font-family: "din";
  src: url("/images/_v2/fonts/dinmedium-webfont.woff2") format("woff2"), url("/images/_v2/fonts/dinmedium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "din";
  src: url("/images/_v2/fonts/dinbold-webfont.woff") format("woff2"), url("/images/_v2/fonts/dinbold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "din";
  src: url("/images/_v2/fonts/dinregularalternate-webfont.woff2") format("woff2"), url("/images/_v2/fonts/dinregularalternate-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("/images/_v2/fonts/OpenSans-Regular.woff2") format("woff2"), url("/images/_v2/fonts/OpenSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("/images/_v2/fonts/OpenSans-Bold.woff2") format("woff2"), url("/images/_v2/fonts/OpenSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/*--------------------------------

	MODULE
	Ces fichiers contiennent les styles généraux des éléments html & les règles de typo

*/
.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  line-height: 1;
  margin: 20px 0 17px;
}
@media only screen and (min-width: 78em) {
  .breadcrumb {
    margin: 15px 0 45px;
  }
}
.breadcrumb-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-shadow: 0 6px 11px -9px rgba(0, 0, 0, 0.12);
          box-shadow: 0 6px 11px -9px rgba(0, 0, 0, 0.12);
  background-color: #fff;
  border-radius: 13.5px;
  padding: 5px 11px;
}
.breadcrumb span {
  padding: 0 4px 3px;
}
.breadcrumb span:not(:last-child) a {
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: 500;
  color: rgba(39, 35, 36, 0.6);
}
.breadcrumb span.separator {
  background: url(/images/_v2/icon/icon-chevron-right-blue.svg) no-repeat center;
  width: 8px;
  height: 10px;
  margin-top: 3px;
}
.breadcrumb a {
  font-size: 11px;
  font-weight: 300;
  color: #272324;
}

/*--------------------------------

	Galerie Fancybox 3

*/
.fancybox-enabled {
  overflow: hidden;
}
.fancybox-enabled body {
  overflow: visible;
  height: 100%;
}

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99993;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.fancybox-container ~ .fancybox-container {
  z-index: 99992;
}

.fancybox-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0f0f11;
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.fancybox-container--ready .fancybox-bg {
  opacity: 0.87;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  z-index: 99994;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  direction: ltr;
}
.fancybox-show-controls .fancybox-controls {
  opacity: 1;
}

.fancybox-infobar {
  display: none;
}
.fancybox-show-infobar .fancybox-infobar {
  display: inline-block;
  pointer-events: all;
}

.fancybox-infobar__body {
  display: inline-block;
  width: 70px;
  line-height: 44px;
  font-size: 13px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  color: #ddd;
  background-color: rgba(30, 30, 30, 0.7);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox-buttons {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  pointer-events: all;
}
.fancybox-show-buttons .fancybox-buttons {
  display: block;
}

.fancybox-slider, .fancybox-slider-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  z-index: 99993;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}

.fancybox-slider-wrap {
  overflow: hidden;
  direction: ltr;
}

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch;
}
.fancybox-slide::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0;
}
.fancybox-slide > * {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0 44px;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #000000;
  overflow: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.fancybox-slide--image {
  overflow: hidden;
}
.fancybox-slide--image ::before {
  display: none;
}

.fancybox-content {
  display: inline-block;
  position: relative;
  margin: 44px auto;
  padding: 0;
  border: 0;
  width: 80%;
  height: calc(100% - 88px);
  vertical-align: middle;
  line-height: normal;
  text-align: left;
  white-space: normal;
  outline: none;
  font-size: 16px;
  font-family: Arial, sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
}
.fancybox-slide--video .fancybox-content {
  background: transparent;
}

.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #000000;
}
.fancybox-slide--video .fancybox-iframe {
  background: transparent;
}

.fancybox-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.fancybox-image, .fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
  background: transparent;
  background-size: 100% 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-controls--canzoomOut .fancybox-placeholder {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.fancybox-controls--canzoomIn .fancybox-placeholder {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.fancybox-controls--canGrab .fancybox-placeholder {
  cursor: -webkit-grab;
  cursor: grab;
}
.fancybox-controls--isGrabbing .fancybox-placeholder {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-tmp {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}

.fancybox-error {
  position: absolute;
  margin: 0;
  padding: 40px;
  top: 50%;
  left: 50%;
  width: 380px;
  max-width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #000000;
  cursor: default;
}
.fancybox-error p {
  margin: 0;
  padding: 0;
  color: #444;
  font: 16px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.fancybox-close-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  z-index: 10;
  cursor: pointer;
}
.fancybox-slide--video .fancybox-close-small {
  top: -36px;
  right: -36px;
  background: transparent;
}
.fancybox-close-small::after {
  content: "×";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  font: 20px/30px Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #888;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  background: #000000;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 2;
}
.fancybox-close-small:focus::after {
  outline: 1px dotted #888;
}
.fancybox-close-small:hover::after {
  color: #555;
  background: #eee;
}

/* Caption */
.fancybox-caption-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 0 30px;
  z-index: 99998;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20%, rgba(0, 0, 0, 0.1)), color-stop(40%, rgba(0, 0, 0, 0.2)), color-stop(80%, rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  pointer-events: none;
}
.fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1;
}

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  line-height: 20px;
  -webkit-text-size-adjust: none;
}
.fancybox-caption button {
  pointer-events: all;
}
.fancybox-caption a {
  color: #000000;
  text-decoration: underline;
}

/* Buttons */
.fancybox-button {
  display: inline-block;
  position: relative;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: top;
  outline: none;
}
.fancybox-button:hover {
  background: rgba(0, 0, 0, 0.8);
}
.fancybox-button::before, .fancybox-button::after {
  content: "";
  pointer-events: none;
  position: absolute;
  border-color: #fff;
  background-color: currentColor;
  color: currentColor;
  opacity: 0.9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
}
.fancybox-button--disabled {
  cursor: default;
  pointer-events: none;
}
.fancybox-button--disabled::before, .fancybox-button--disabled::after {
  opacity: 0.5;
}
.fancybox-button--left {
  border-bottom-left-radius: 5px;
}
.fancybox-button--left::after {
  left: 20px;
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.fancybox-button--right {
  border-bottom-right-radius: 5px;
}
.fancybox-button--right::after {
  right: 20px;
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.fancybox-button--close {
  float: right;
}
.fancybox-button--close::before, .fancybox-button--close::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 2px;
  width: 16px;
  top: calc(50% - 1px);
  left: calc(50% - 8px);
}
.fancybox-button--close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.fancybox-button--close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.fancybox-button--fullscreen::before {
  width: 15px;
  height: 11px;
  left: 15px;
  top: 16px;
  border: 2px solid;
  background: none;
}
.fancybox-button--play::before {
  top: 16px;
  left: 18px;
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px inset transparent;
  border-left: 10px solid;
  border-radius: 1px;
  background: transparent;
}
.fancybox-button--pause::before {
  top: 16px;
  left: 18px;
  width: 7px;
  height: 11px;
  border-style: solid;
  border-width: 0 2px 0 2px;
  background: transparent;
}
.fancybox-button--thumbs span {
  font-size: 23px;
}
.fancybox-button--thumbs::before {
  top: 20px;
  left: 21px;
  width: 3px;
  height: 3px;
  -webkit-box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, 0 0 0 32px inset, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0;
          box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, 0 0 0 32px inset, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0;
}

.fancybox-infobar__body, .fancybox-button {
  background: rgba(30, 30, 30, 0.6);
}

/* Loading spinner */
.fancybox-loading {
  border: 6px solid rgba(100, 100, 100, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  -webkit-animation: fancybox-rotate 0.8s infinite linear;
          animation: fancybox-rotate 0.8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-controls {
    text-align: left;
  }
  .fancybox-button--left, .fancybox-button--right, .fancybox-buttons button:not(.fancybox-button--close) {
    display: none !important;
  }
  .fancybox-caption {
    padding: 20px 0;
    margin: 0;
  }
}
.fancybox-container--thumbs .fancybox-controls,
.fancybox-container--thumbs .fancybox-slider-wrap,
.fancybox-container--thumbs .fancybox-caption-wrap {
  right: 220px;
}

.fancybox-thumbs {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 220px;
  margin: 0;
  padding: 5px 5px 0 0;
  background: #000000;
  z-index: 99993;
  word-break: normal;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.fancybox-thumbs > ul {
  list-style: none;
  position: absolute;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 0;
}
.fancybox-thumbs > ul > li {
  float: left;
  overflow: hidden;
  max-width: 50%;
  padding: 0;
  margin: 0;
  width: 105px;
  height: 75px;
  position: relative;
  cursor: pointer;
  outline: none;
  border: 5px solid #000000;
  border-top-width: 0;
  border-right-width: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.fancybox-thumbs > ul > li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 2px;
  border: 4px solid #4ea7f9;
  z-index: 99991;
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fancybox-thumbs > ul > li.fancybox-thumbs-active::before {
  opacity: 1;
}
.fancybox-thumbs > ul > li > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

li.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1);
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    display: none !important;
  }
  .fancybox-container--thumbs .fancybox-controls,
  .fancybox-container--thumbs .fancybox-slider-wrap,
  .fancybox-container--thumbs .fancybox-caption-wrap {
    right: 0;
  }
}
/*--------------------------------

	Style général des formulaires

*/
.formulaire {
  -webkit-box-shadow: 0 26px 73px -12px rgba(0, 0, 0, 0.21);
          box-shadow: 0 26px 73px -12px rgba(0, 0, 0, 0.21);
  background-color: #fff;
  margin: 0 -10%;
  padding: 40px 8%;
}
@media only screen and (min-width: 48em) {
  .formulaire {
    border-radius: 15px;
    margin: 0;
    padding: 40px;
  }
}
@media only screen and (min-width: 90em) {
  .formulaire {
    padding: 70px;
  }
}
.formulaire form {
  max-width: 520px;
  margin: 0 auto;
}

.form_creator_header, .form_creator_footer {
  max-width: 520px;
  margin: 0 auto;
}
.form_creator_header > *, .form_creator_footer > * {
  margin-top: 0;
}

label.inline {
  display: block;
  cursor: pointer;
  font-weight: 700;
  margin-bottom: 15px;
}
label.inline.error {
  color: #d92d29;
}
label.inline .obligatory {
  color: #d92d29;
}

select, textarea, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  border-radius: 6px;
  font-size: inherit;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  padding: 15px;
  margin-bottom: 30px;
  border: 2px solid #e6f6ff;
}
@media only screen and (min-width: 78em) {
  select, textarea, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
    padding: 20px;
  }
}
select.placeholder, textarea.placeholder, input.placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  font-size: 16px;
}
select:-moz-placeholder, textarea:-moz-placeholder, input:-moz-placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  font-size: 16px;
}
select::-moz-placeholder, textarea::-moz-placeholder, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset])::-moz-placeholder {
  font-size: 16px;
}
select:-ms-input-placeholder, textarea:-ms-input-placeholder, input:-ms-input-placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  font-size: 16px;
}
select::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset])::-webkit-input-placeholder {
  font-size: 16px;
}
select:focus, textarea:focus, input:focus:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  outline: none;
}
select:disabled, textarea:disabled, input:disabled:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  cursor: default;
  background-color: #ddd;
}

.error input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  border: 1px solid #ddd;
  border-color: #d92d29;
}

.error textarea {
  border: 1px solid #ddd;
  border-color: #d92d29;
}

.step {
  text-align: right;
  font-size: 16px;
  color: #d92d29;
  line-height: 1;
}

/*--------------------------------

	Liste déroulante

*/
select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(/images/_v2/icon/icon-chevron-down-blue.svg) no-repeat calc(100% - 15px) 20px;
  background-size: 22px;
  padding-right: 50px;
}
@media only screen and (min-width: 78em) {
  select {
    background-position: calc(100% - 20px) 28px;
  }
}
.error select {
  border: 1px solid #ddd;
  border-color: #d92d29;
}

/*--------------------------------

	Boutons de validation/annulation

*/
.submit {
  text-align: center;
  margin-top: 10px;
}

input[type=submit] {
  display: inline-block;
  width: auto;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/*--------------------------------

	Upload d'un fichier

*/
input[type=file] {
  padding-left: 20px !important;
  font-size: 12px !important;
}

/*--------------------------------

	Validation par Captcha

*/
.captcha {
  overflow: hidden;
  text-align: center;
}
.captcha #html_element > div {
  width: inherit !important;
  height: inherit !important;
}
.captcha #html_element > div iframe {
  margin: 30px 0px 10px;
}

/*--------------------------------

	Ensemble de champs

*/
fieldset {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}
fieldset + fieldset {
  margin-top: 40px;
}
fieldset > legend {
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  color: #d92d29;
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

/*--------------------------------

	Erreurs -> ENLEVER LES REQUIRED POUR STYLISER

*/
:not(label):not(.form_field).error,
.loginError,
.confirmpasswd,
.strength_password {
  color: #d92d29;
  font-size: 12px !important;
  display: block;
  padding: 2px 10px;
  margin: -10px 0 30px;
  letter-spacing: 1px;
}
:not(label):not(.form_field).error::before,
.loginError::before,
.confirmpasswd::before,
.strength_password::before {
  font-size: 4px;
  margin-right: 8px;
  margin-top: -2px;
}
:not(label):not(.form_field).error .errorMessage,
.loginError .errorMessage,
.confirmpasswd .errorMessage,
.strength_password .errorMessage {
  display: inline;
}

.strength_password {
  font-weight: 700;
}
.strength_password::before {
  display: none;
}
.strength_password.shortPass {
  color: #d92d29;
}
.strength_password.badPass {
  color: orange;
}
.strength_password.goodPass, .strength_password.strongPass {
  color: #24b35d;
}

.confirmpasswd {
  font-weight: 700;
}
.confirmpasswd::before {
  display: none;
}
.confirmpasswd.notequalpasswd {
  color: #d92d29;
}
.confirmpasswd.equalpasswd {
  color: #24b35d;
}

/*--------------------------------

	Aides/Informations

*/
.aide {
  display: block;
  clear: both;
  margin: -30px 0 25px;
  padding: 15px;
  color: #707173;
  line-height: 1.3;
  font-size: 12px;
  background-color: #e6f6ff;
}
.aide p {
  font-size: 12px;
  line-height: 20px;
}

/*--------------------------------

	Checkboxes et boutons radios

*/
.group_multi_radio,
.groupMultiRadio,
.groupMulticheckbox,
.group_multi,
.groupMulti {
  display: block;
  margin-top: 10px;
  padding-bottom: 20px;
}
.group_multi_radio.groupCheckBoxUnique,
.groupMultiRadio.groupCheckBoxUnique,
.groupMulticheckbox.groupCheckBoxUnique,
.group_multi.groupCheckBoxUnique,
.groupMulti.groupCheckBoxUnique {
  padding-bottom: 0;
}
.group_multi_radio p,
.groupMultiRadio p,
.groupMulticheckbox p,
.group_multi p,
.groupMulti p {
  margin: 0;
}

.group_multi_radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.group_multi_radio .multi_radio:not(:first-child) {
  margin-left: 15px;
}

.multi_radio,
.multiRadio,
.multi_checkbox,
.multiCheckbox {
  display: block;
  overflow: hidden;
}
.multi_radio.other input[type=text],
.multiRadio.other input[type=text],
.multi_checkbox.other input[type=text],
.multiCheckbox.other input[type=text] {
  margin-bottom: 0;
}

input[type=checkbox], input[type=radio] {
  float: left;
  margin: 5px 10px 10px 0;
}
input[type=checkbox].checkbox, input[type=radio].checkbox {
  float: none;
  margin-bottom: 20px;
  display: block;
}

.groupCheckBoxUnique .multi_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 33px;
}
.groupCheckBoxUnique .multi_checkbox input {
  margin: 0 10px 0 0;
}

/*--------------------------------

	CAPCHA

*/
#captcha {
  margin: 10px 0 25px;
}
#captcha iframe {
  margin: 0;
}
#captcha #html_element > div {
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------

	Submit

*/
.submit {
  text-align: center;
}

/*--------------------------------

	Suppression reset form

*/
#reset {
  display: none;
}

.form_creator_footer {
  margin-top: 50px;
  font-size: 12px;
  line-height: 1.3;
}

.ru-demande-etude.first-step .formulaire > *:not(.form_creator_header) {
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ru-demande-etude.first-step .form_creator_header {
  display: block;
}
.ru-demande-etude.first-step .visible > *:not(.form_creator_header) {
  opacity: 1;
}
.ru-demande-etude.first-step .visible .form_creator_header {
  visibility: hidden;
  opacity: 0;
}
.ru-demande-etude .formulaire {
  position: relative;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
}
.ru-demande-etude .formulaire > *:not(.form_creator_header) {
  opacity: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ru-demande-etude .step {
  position: absolute;
  top: 10px;
  right: 10px;
}
@media only screen and (min-width: 48em) {
  .ru-demande-etude .step {
    top: 21px;
    right: 25px;
  }
}
@media only screen and (min-width: 90em) {
  .ru-demande-etude .step {
    top: 40px;
    right: 47px;
  }
}
.ru-demande-etude .form_creator_header {
  display: none;
  position: relative;
  top: 0;
  left: 0;
  background: #d92d29;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 40px 4%;
  max-width: 100%;
  overflow: hidden;
  -webkit-box-shadow: 0 26px 73px -12px rgba(0, 0, 0, 0.21);
          box-shadow: 0 26px 73px -12px rgba(0, 0, 0, 0.21);
}
@media only screen and (min-width: 48em) {
  .ru-demande-etude .form_creator_header {
    border-radius: 15px;
    margin: 0;
    padding: 40px;
  }
}
@media only screen and (min-width: 78em) {
  .ru-demande-etude .form_creator_header {
    padding: 75px 40px;
  }
}
@media only screen and (min-width: 90em) {
  .ru-demande-etude .form_creator_header {
    padding: 113px 40px 113px;
  }
  .ru-demande-etude .form_creator_header > * {
    position: relative;
    z-index: 3;
  }
  .ru-demande-etude .form_creator_header::after, .ru-demande-etude .form_creator_header::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 640px;
    height: 216px;
  }
  .ru-demande-etude .form_creator_header::before {
    background: url("/images/_v2/shape/shape-devis.svg") no-repeat -107px 25px;
    background-size: 100%;
    z-index: 1;
  }
  .ru-demande-etude .form_creator_header::after {
    background: url("/images/_v2/illu/demande-devis.svg") no-repeat 64px 67px;
    z-index: 2;
  }
}
.ru-demande-etude .form_creator_header h2 {
  color: #fff;
}
@media only screen and (min-width: 78em) {
  .ru-demande-etude .form_creator_header h2 {
    font-size: 46px;
    margin-bottom: 53px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
.ru-demande-etude .form_creator_header .btn-empty-white {
  background: none;
  color: #fff;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: 500;
  font-size: 20px;
  padding: 20px 50px;
}
.ru-demande-etude .form_creator_header .btn-empty-white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}
.ru-demande-etude .form_creator_header p:last-child {
  margin-bottom: 0;
  margin-top: 30px;
}
@media only screen and (min-width: 78em) {
  .ru-demande-etude .form_creator_header p:last-child {
    margin-top: 53px;
  }
}
@media only screen and (min-width: 90em) {
  .ru-demande-etude.ru-parrainage .form_creator_header::after {
    background: url("/images/_v2/illu/illu-contact.svg") no-repeat 64px 67px;
    background-size: 141px;
  }
}
.ru-demande-etude.ru-demande-assu .form_creator_header {
  background-color: #6dcaff;
}
.ru-demande-etude.ru-demande-assu fieldset > legend, .ru-demande-etude.ru-demande-assu .step {
  color: #6dcaff;
}
.ru-demande-etude form {
  background: #fff;
  -webkit-box-shadow: 0 26px 73px -12px rgba(0, 0, 0, 0.21);
          box-shadow: 0 26px 73px -12px rgba(0, 0, 0, 0.21);
  padding: 30px 8%;
  max-width: 100%;
  margin: 0;
}
@media only screen and (min-width: 48em) {
  .ru-demande-etude form {
    border-radius: 15px;
    margin: 0;
    padding: 40px;
  }
}
@media only screen and (min-width: 90em) {
  .ru-demande-etude form {
    padding: 70px;
  }
}
.ru-demande-etude form > fieldset {
  max-width: 520px;
  margin: 0 auto;
}
.ru-demande-etude .form_creator_footer {
  max-width: 100%;
  padding: 20px;
}

/*--------------------------------

	Style de la galerie miniature

*/
ul.gallery {
  margin: 40px -10%;
}
@media only screen and (min-width: 48em) {
  ul.gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 60px -10px;
  }
  ul.gallery li {
    height: 230px;
    width: calc(50% - 20px);
    margin: 0 10px 20px;
  }
  ul.gallery li img {
    border-radius: 15px;
  }
}
@media only screen and (min-width: 64em) {
  ul.gallery li {
    width: calc(33.3333% - 20px);
  }
}

/*--------------------------------

	NAVIGATION

*/
@media only screen and (min-width: 78em) {
  .navbar {
    width: 90%;
  }
}

.navbar-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
}
@media only screen and (min-width: 78em) {
  .navbar-header {
    display: none;
  }
}
.navbar-header .navbar-toggle {
  border-radius: 21px;
  background-color: #272324;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.3px;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: 500;
  line-height: 1.3;
  padding: 12px 17px;
}
.navbar-header .navbar-toggle::after {
  content: url(/images/_v2/icon/icon-menu-mobile.svg);
  display: inline-block;
  margin-left: 7px;
  width: 18px;
  height: 11px;
}
.navbar-header .telHeader {
  -webkit-box-shadow: 0 12px 11px -6px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 11px -6px rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  text-indent: -99999999px;
  margin-left: 14px;
  background: url("/images/_v2/icon/icon-phone-white.svg") no-repeat center, #d92d29;
}

.navbar-collapse {
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 999999;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 90%;
  max-width: 400px;
  overflow: auto;
  height: 100%;
  -webkit-box-shadow: -4px 7px 27px 0 rgba(0, 0, 0, 0.13);
          box-shadow: -4px 7px 27px 0 rgba(0, 0, 0, 0.13);
}
@media only screen and (min-width: 78em) {
  .navbar-collapse {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    -webkit-box-shadow: none;
            box-shadow: none;
    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;
    overflow: visible;
  }
}
@media only screen and (min-width: 103.125em) {
  .navbar-collapse {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.navbar-collapse.expanded {
  right: 0;
  background: #fff;
}
.navbar-collapse a {
  display: block;
  line-height: 1.2;
}

.navbar-close {
  padding: 8px 20px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.3px;
  margin: 15px 15px 20px auto;
  display: block;
}
@media only screen and (min-width: 78em) {
  .navbar-close {
    display: none;
  }
}

.navbar-nav {
  padding-bottom: 30px;
}
@media only screen and (min-width: 78em) {
  .navbar-nav {
    border-radius: 49px;
    border: solid 1px #272324;
    padding: 0 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    margin: 0 52px 0 0;
    position: relative;
  }
}
@media only screen and (min-width: 90em) {
  .navbar-nav {
    margin-right: 65px;
  }
}
@media only screen and (min-width: 103.125em) {
  .navbar-nav {
    margin-right: 40px;
  }
}
.navbar-nav > li > a {
  font-size: 19px;
  color: #272324;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: 700;
  padding: 10px 35px 10px 15px;
}
@media only screen and (min-width: 78em) {
  .navbar-nav > li > a {
    font-size: 14px;
    padding: 20px 10px;
  }
}
@media only screen and (min-width: 90em) {
  .navbar-nav > li > a {
    font-size: 16px;
  }
}
@media only screen and (min-width: 103.125em) {
  .navbar-nav > li > a {
    padding: 28px 20px;
  }
}
@media only screen and (min-width: 120em) {
  .navbar-nav > li > a {
    font-size: 19px;
  }
}
.navbar-nav > li > a:hover {
  text-decoration: none;
  color: #6dcaff;
}
.navbar-nav > li.has-dropdown > a {
  position: relative;
}
.navbar-nav > li.has-dropdown > a::after {
  content: "+";
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #6dcaff;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  color: #fff;
  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;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: bold;
  padding-bottom: 5px;
}
@media only screen and (min-width: 78em) {
  .navbar-nav > li.has-dropdown > a::after {
    display: none;
  }
}
@media only screen and (min-width: 78em) {
  .navbar-nav > li.has-dropdown:hover > .dropdown-menu {
    left: 0 !important;
    display: block;
    margin-top: 0;
    opacity: 1;
  }
}
.navbar-nav > li:nth-child(n+5) {
  display: none;
}
.navbar-nav > li.active > a {
  color: #6dcaff;
}

.dropdown-menu {
  display: none;
  -webkit-box-shadow: 17px 0 25px -13px rgba(0, 0, 0, 0.19);
          box-shadow: 17px 0 25px -13px rgba(0, 0, 0, 0.19);
  background-color: #272324;
  margin: 0;
  padding: 15px 0;
}
@media only screen and (min-width: 78em) {
  .dropdown-menu {
    position: absolute !important;
    z-index: 99;
    top: auto;
    right: auto;
    left: -999rem !important;
    display: block;
    overflow: hidden;
    clip: auto;
    width: 771px;
    min-width: 100%;
    max-width: 96.5vw;
    height: auto !important;
    padding: 30px;
    opacity: 0;
    border: none;
    border-radius: 12px;
    -webkit-box-shadow: 0 20px 38px -9px rgba(0, 0, 0, 0.16);
            box-shadow: 0 20px 38px -9px rgba(0, 0, 0, 0.16);
  }
  .dropdown-menu .navConseil {
    background: white;
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    margin: 0;
    font-size: 12px;
    padding-left: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .dropdown-menu .navConseil::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 100%;
    border-radius: 0 12px 12px 0;
    -webkit-box-shadow: 17px 0 25px -13px rgba(0, 0, 0, 0.19);
            box-shadow: 17px 0 25px -13px rgba(0, 0, 0, 0.19);
    background-color: #272324;
  }
  .dropdown-menu .navConseil li {
    color: #272324;
    line-height: 1.2;
    position: relative;
    margin-bottom: 20px;
    font-size: 12px;
  }
  .dropdown-menu .navConseil li a {
    color: #272324;
    display: block;
    padding-left: 26px;
    font-family: "Open Sans", Tahoma, sans-serif;
  }
  .dropdown-menu .navConseil li a::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: #6dcaff;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    color: #fff;
    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;
    font-family: "din", Trebuchet MS, sans-serif;
    font-weight: bold;
    padding-bottom: 3px;
  }
}
@media only screen and (min-width: 78em) {
  .dropdown-menu > li {
    white-space: nowrap;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .dropdown-menu > li:last-child {
    margin-bottom: 0;
  }
}
.dropdown-menu > li > a {
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  padding: 7px 15px;
}
.dropdown-menu > li > a:hover {
  text-decoration: none;
  color: #6dcaff;
}
.dropdown-menu > li.active > a {
  color: #6dcaff;
}

@media only screen and (min-width: 78em) {
  .scnd-nav {
    width: 34%;
  }
}
@media only screen and (min-width: 90em) {
  .scnd-nav {
    width: 450px;
  }
}
@media only screen and (min-width: 103.125em) {
  .scnd-nav {
    width: 510px;
  }
}
@media only screen and (min-width: 120em) {
  .scnd-nav {
    width: 608px;
  }
}
.scnd-nav ul {
  background: #6dcaff;
  padding: 15px 0 40px;
}
@media only screen and (min-width: 78em) {
  .scnd-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 20px 30px 20px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .scnd-nav ul::after {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
    border-radius: 0 0 0 18px;
    background-color: #6dcaff;
    width: calc(100% + 30px);
    height: calc(100% + 20px);
    z-index: -1;
  }
}
@media only screen and (min-width: 103.125em) {
  .scnd-nav ul {
    padding: 40px 30px 27px;
  }
  .scnd-nav ul::after {
    left: -3px;
    height: calc(100% + 28px);
  }
}
@media only screen and (min-width: 120em) {
  .scnd-nav ul {
    padding: 50px 60px 27px 30px;
  }
}
@media only screen and (min-width: 78em) {
  .scnd-nav ul > li:not(:last-child) {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 90em) {
  .scnd-nav ul > li:not(:last-child) {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 103.125em) {
  .scnd-nav ul > li:not(:last-child) {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 120em) {
  .scnd-nav ul > li:not(:last-child) {
    margin-right: 35px;
  }
}
.scnd-nav ul > li > a {
  color: #fff;
  font-size: 18px;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: 500;
  padding: 6px 15px;
  text-align: center;
}
.scnd-nav ul > li > a:hover {
  color: #000;
  text-decoration: none;
}
@media only screen and (min-width: 78em) {
  .scnd-nav ul > li > a {
    padding: 0;
    font-size: 14px;
  }
}
@media only screen and (min-width: 90em) {
  .scnd-nav ul > li > a {
    font-size: 16px;
  }
}
.scnd-nav ul > li.active > a {
  color: #000;
}
.scnd-nav-btn {
  margin: -20px 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 78em) {
  .scnd-nav-btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0;
    position: relative;
    z-index: 2;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-right: 30px;
  }
}
@media only screen and (min-width: 120em) {
  .scnd-nav-btn {
    margin-right: 50px;
  }
}
.scnd-nav-btn a {
  background: #fff;
}
@media only screen and (min-width: 78em) {
  .scnd-nav-btn a {
    font-size: 14px;
    padding: 10px 20px;
  }
}
@media only screen and (min-width: 90em) {
  .scnd-nav-btn a {
    font-family: "din", Trebuchet MS, sans-serif;
    font-weight: bold;
  }
}
@media only screen and (min-width: 103.125em) {
  .scnd-nav-btn a {
    font-size: 18px;
    padding: 15px 28px;
  }
}
.scnd-nav-btn a:first-child {
  margin-bottom: 10px;
}
@media only screen and (min-width: 78em) {
  .scnd-nav-btn a:first-child {
    margin: 0 10px 0 0;
  }
}
@media only screen and (min-width: 103.125em) {
  .scnd-nav-btn a:first-child {
    margin-right: 20px;
  }
}

/*--------------------------------

	Listing pagination

*/
.pager {
  margin: 50px 0;
}
.pager-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pager li {
  margin: 0 7.5px;
}
.pager li a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border: solid 2px #d92d29;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #d92d29;
}
.pager li a:hover {
  text-decoration: none;
}
.pager li a.pager_active_page {
  background-color: #d92d29;
  color: #fff;
}
.pager li a.pagerNext, .pager li a.pagerPrevious {
  padding-bottom: 5px;
}
.pager li a.pager-back {
  width: auto;
  border-radius: 40px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.2;
}

.newsDetail .pager li {
  margin: 0 10px !important;
}
.newsDetail .pager a.pager-back {
  width: auto;
  padding: 0 20px;
  border-radius: 50px;
  font-size: 16px;
}

.modal-open {
  overflow: hidden;
  height: 100%;
}

#contentWrapper {
  display: unset;
}

/***
* Reset CSS
*/
#tarteaucitronRoot div, #tarteaucitronRoot span, #tarteaucitronRoot applet, #tarteaucitronRoot object, #tarteaucitronRoot iframe, #tarteaucitronRoot h1, #tarteaucitronRoot h2, #tarteaucitronRoot h3, #tarteaucitronRoot h4, #tarteaucitronRoot h5, #tarteaucitronRoot h6, #tarteaucitronRoot p, #tarteaucitronRoot blockquote, #tarteaucitronRoot pre, #tarteaucitronRoot a, #tarteaucitronRoot abbr, #tarteaucitronRoot acronym, #tarteaucitronRoot address, #tarteaucitronRoot big, #tarteaucitronRoot cite, #tarteaucitronRoot code, #tarteaucitronRoot del, #tarteaucitronRoot dfn, #tarteaucitronRoot em, #tarteaucitronRoot img, #tarteaucitronRoot ins, #tarteaucitronRoot kbd, #tarteaucitronRoot q, #tarteaucitronRoot s, #tarteaucitronRoot samp, #tarteaucitronRoot small, #tarteaucitronRoot strike, #tarteaucitronRoot strong, #tarteaucitronRoot sub, #tarteaucitronRoot sup, #tarteaucitronRoot tt, #tarteaucitronRoot var, #tarteaucitronRoot b, #tarteaucitronRoot u, #tarteaucitronRoot i, #tarteaucitronRoot center, #tarteaucitronRoot dl, #tarteaucitronRoot dt, #tarteaucitronRoot dd, #tarteaucitronRoot ol, #tarteaucitronRoot ul, #tarteaucitronRoot li, #tarteaucitronRoot fieldset, #tarteaucitronRoot form, #tarteaucitronRoot label, #tarteaucitronRoot legend, #tarteaucitronRoot table, #tarteaucitronRoot caption, #tarteaucitronRoot tbody, #tarteaucitronRoot tfoot, #tarteaucitronRoot thead, #tarteaucitronRoot tr, #tarteaucitronRoot th, #tarteaucitronRoot td, #tarteaucitronRoot article, #tarteaucitronRoot aside, #tarteaucitronRoot canvas, #tarteaucitronRoot details, #tarteaucitronRoot embed, #tarteaucitronRoot figure, #tarteaucitronRoot figcaption, #tarteaucitronRoot footer, #tarteaucitronRoot header, #tarteaucitronRoot hgroup, #tarteaucitronRoot menu, #tarteaucitronRoot nav, #tarteaucitronRoot output, #tarteaucitronRoot ruby, #tarteaucitronRoot section, #tarteaucitronRoot summary, #tarteaucitronRoot time, #tarteaucitronRoot mark, #tarteaucitronRoot audio, #tarteaucitronRoot video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  /*background: initial;*/
  text-align: initial;
  text-shadow: initial;
}

/* Animation */
#tarteaucitronRoot * {
  -webkit-transition: border 300ms, background 300ms, opacity 200ms, -webkit-box-shadow 400ms;
  transition: border 300ms, background 300ms, opacity 200ms, -webkit-box-shadow 400ms;
  transition: border 300ms, background 300ms, opacity 200ms, box-shadow 400ms;
  transition: border 300ms, background 300ms, opacity 200ms, box-shadow 400ms, -webkit-box-shadow 400ms;
}

/* HTML5 display-role reset for older browsers */
#tarteaucitronRoot article, #tarteaucitronRoot aside, #tarteaucitronRoot details, #tarteaucitronRoot figcaption, #tarteaucitronRoot figure, #tarteaucitronRoot footer, #tarteaucitronRoot header, #tarteaucitronRoot hgroup, #tarteaucitronRoot menu, #tarteaucitronRoot nav, #tarteaucitronRoot section {
  display: block;
}

#tarteaucitronRoot ol, #tarteaucitronRoot ul {
  list-style: none;
}

#tarteaucitronRoot blockquote, #tarteaucitronRoot q {
  quotes: none;
}

#tarteaucitronRoot blockquote:before, #tarteaucitronRoot blockquote:after, #tarteaucitronRoot q:before, #tarteaucitronRoot q:after {
  content: "";
  content: none;
}

#tarteaucitronRoot table {
  border-collapse: collapse;
  border-spacing: 0;
}

#tarteaucitronRoot a:focus-visible, #tarteaucitronRoot button:focus-visible {
  outline: 3px dashed #3d86d8;
}

/***
 * Better scroll management
 */
div#tarteaucitronMainLineOffset {
  margin-top: 0 !important;
}

div#tarteaucitronServices {
  margin-top: 21px !important;
}

#tarteaucitronServices::-webkit-scrollbar {
  width: 5px;
}

#tarteaucitronServices::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
}

#tarteaucitronServices::-webkit-scrollbar-thumb {
  background-color: #ddd;
  outline: 0px solid slategrey;
}

div#tarteaucitronServices {
  -webkit-box-shadow: 0 40px 60px #545454;
          box-shadow: 0 40px 60px #545454;
}

/***
 * Responsive layout for the control panel
 */
@media screen and (max-width: 479px) {
  #tarteaucitron .tarteaucitronLine .tarteaucitronName {
    width: 90% !important;
  }
  #tarteaucitron .tarteaucitronLine .tarteaucitronAsk {
    float: left !important;
    margin: 10px 15px 5px;
  }
}
@media screen and (max-width: 767px) {
  #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer, #tarteaucitron {
    background: #fff;
    border: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    left: 0 !important;
    margin: 0 !important;
    max-height: 100% !important;
    max-width: 100% !important;
    top: 0 !important;
    width: 100% !important;
  }
  #tarteaucitron .tarteaucitronBorder {
    border: 0 !important;
  }
  #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList {
    border: 0 !important;
  }
  #tarteaucitron #tarteaucitronServices .tarteaucitronTitle {
    text-align: left !important;
  }
  .tarteaucitronName .tarteaucitronH2 {
    max-width: 80%;
  }
  #tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk {
    text-align: center !important;
  }
  #tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk button {
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #tarteaucitron {
    border: 0 !important;
    left: 0 !important;
    margin: 0 5% !important;
    max-height: 80% !important;
    width: 90% !important;
  }
}
/***
 * Common value
 */
#tarteaucitronRoot div#tarteaucitron {
  left: 0;
  right: 0;
  margin: auto;
}

#tarteaucitronRoot button#tarteaucitronBack {
  background: #eee;
}

#tarteaucitron .clear {
  clear: both;
}

#tarteaucitron a {
  color: rgb(66, 66, 66);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

#tarteaucitronRoot button {
  background: transparent;
  border: 0;
}

#tarteaucitronAlertBig strong, #tarteaucitronAlertSmall strong,
#tarteaucitronAlertBig a, #tarteaucitronAlertSmall a {
  color: #fff;
}

#tarteaucitron strong {
  font-size: 22px;
  font-weight: 500;
}

#tarteaucitron ul {
  padding: 0;
}

#tarteaucitron .tarteaucitronH1, #tarteaucitron .tarteaucitronH2, #tarteaucitron .tarteaucitronH3, #tarteaucitron .tarteaucitronH4, #tarteaucitron .tarteaucitronH5, #tarteaucitron .tarteaucitronH6 {
  display: block;
}

.cookie-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/***
 * Root div added just before </body>
 */
#tarteaucitronRoot {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

#tarteaucitronRoot * {
  -webkit-box-sizing: initial;
          box-sizing: initial;
  color: #333;
  font-family: sans-serif !important;
  font-size: 14px;
  line-height: normal;
  vertical-align: initial;
}

#tarteaucitronRoot .tarteaucitronH1 {
  font-size: 1.5em;
  text-align: center;
  color: #fff;
  margin: 15px 0 28px;
}

#tarteaucitronRoot .tarteaucitronH2 {
  display: inline-block;
  margin: 12px 0 0 10px;
  color: #fff;
}

#tarteaucitronCookiesNumberBis.tarteaucitronH2 {
  margin-left: 0;
}

/***
 * Control panel
 */
#tarteaucitronBack {
  background: #fff;
  display: none;
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2147483646;
}

#tarteaucitron {
  display: none;
  max-height: 80%;
  left: 50%;
  margin: 0 auto 0 -430px;
  padding: 0;
  position: fixed;
  top: 6%;
  width: 860px;
  z-index: 2147483647;
}

#tarteaucitron .tarteaucitronBorder {
  background: #fff;
  border: 2px solid #333;
  border-top: 0;
  height: auto;
  overflow: auto;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronClosePanelCookie,
#tarteaucitron #tarteaucitronClosePanel {
  background: #333333;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  padding: 4px 0;
  position: absolute;
  right: 0;
  text-align: center;
  width: 70px;
}

#tarteaucitron #tarteaucitronDisclaimer {
  color: #555;
  font-size: 12px;
  margin: 15px auto 0;
  width: 80%;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronHidden,
#tarteaucitron #tarteaucitronServices .tarteaucitronHidden {
  background: rgba(51, 51, 51, 0.07);
}

#tarteaucitron #tarteaucitronServices .tarteaucitronHidden {
  display: none;
  position: relative;
}

#tarteaucitronCookiesList .tarteaucitronH3.tarteaucitronTitle {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronTitle,
#tarteaucitron #tarteaucitronServices .tarteaucitronTitle button,
#tarteaucitron #tarteaucitronInfo,
#tarteaucitron #tarteaucitronServices .tarteaucitronDetails {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  margin: 20px 0px 0px;
  padding: 5px 20px;
  text-align: left;
  width: auto;
  background: #333;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a,
#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a {
  color: #fff;
  font-weight: 500;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a:hover,
#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a:hover {
  text-decoration: none !important;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a {
  font-size: 22px;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a {
  font-size: 14px;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronTitle {
  padding: 5px 10px;
  margin: 0;
}

#tarteaucitron #tarteaucitronInfo,
#tarteaucitron #tarteaucitronServices .tarteaucitronDetails {
  color: #fff;
  display: none;
  font-size: 12px;
  font-weight: 500;
  margin-top: 0;
  max-width: 270px;
  padding: 20px;
  position: absolute;
  z-index: 2147483647;
}

#tarteaucitron #tarteaucitronInfo a {
  color: #fff;
  text-decoration: underline;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine:hover {
  background: rgba(51, 51, 51, 0.2);
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine {
  background: rgba(51, 51, 51, 0.1);
  border-left: 5px solid transparent;
  margin: 0;
  overflow: hidden;
  padding: 15px 5px;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsAllowed {
  border-color: #1B870B;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsDenied {
  border-color: #9C1A1A;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine {
  background: #333;
  border: 3px solid #333;
  border-left: 9px solid #333;
  border-top: 5px solid #333;
  margin-bottom: 0;
  margin-top: 21px;
  position: relative;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine:hover {
  background: #333;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName {
  margin-left: 15px;
  margin-top: 2px;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName button {
  color: #fff;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronAsk {
  margin-top: 0px !important;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName {
  display: inline-block;
  float: left;
  margin-left: 10px;
  text-align: left;
  width: 50%;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName a:hover {
  text-decoration: underline;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk {
  display: inline-block;
  float: right;
  margin: 7px 15px 0;
  text-align: right;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronAllow,
#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronDeny,
.tac_activate .tarteaucitronAllow {
  background: gray;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  padding: 6px 10px;
  text-align: center;
  text-decoration: none;
  width: auto;
  border: 0;
}

#tarteaucitron #tarteaucitronServices #tarteaucitronAllAllowed.tarteaucitronIsSelected {
  background-color: #1B870B;
  opacity: 1;
}

#tarteaucitron #tarteaucitronServices #tarteaucitronAllDenied.tarteaucitronIsSelected,
#tarteaucitron #tarteaucitronServices #tarteaucitronAllDenied2.tarteaucitronIsSelected {
  background-color: #9C1A1A;
  opacity: 1;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsAllowed .tarteaucitronAllow {
  background-color: #1B870B;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsDenied .tarteaucitronDeny {
  background-color: #9C1A1A;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName .tarteaucitronListCookies {
  color: #333;
  font-size: 12px;
}

#tarteaucitron .tarteaucitronH3 {
  font-size: 18px;
}

#tarteaucitron #tarteaucitronMainLineOffset .tarteaucitronName {
  width: auto !important;
  margin-left: 0 !important;
  font-size: 14px;
}

span#tarteaucitronDisclaimerAlert {
  padding: 0 10px;
  display: inline-block;
}

#tarteaucitron .tarteaucitronBorder, #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain, #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList, #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronHidden, #tarteaucitron #tarteaucitronServices .tarteaucitronMainLine {
  border-color: #333 !important;
}

/***
 * Big alert
 */
.tarteaucitronAlertBigTop {
  top: 0;
}

.tarteaucitronAlertBigBottom {
  bottom: 0;
}

#tarteaucitronRoot #tarteaucitronAlertBig {
  background: #fff;
  color: #000;
  display: none;
  font-size: 15px !important;
  left: 0;
  position: fixed;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  z-index: 2147483645;
  text-align: center;
  padding: 10px 0 10px 0;
  margin: auto;
  width: 100%;
  max-height: 80%;
  overflow: auto;
}

#tarteaucitronAlertBig #tarteaucitronPrivacyUrl,
#tarteaucitronAlertBig #tarteaucitronPrivacyUrlDialog,
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert,
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong {
  font: 15px verdana;
  color: #000;
}

#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong {
  font-weight: 700;
}

#tarteaucitronAlertBig #tarteaucitronPrivacyUrl,
#tarteaucitronAlertBig #tarteaucitronPrivacyUrlDialog {
  cursor: pointer;
}

#tarteaucitronAlertBig #tarteaucitronCloseAlert,
#tarteaucitronAlertBig #tarteaucitronPersonalize,
#tarteaucitronAlertBig #tarteaucitronPersonalize2,
.tarteaucitronCTAButton,
#tarteaucitron #tarteaucitronPrivacyUrl,
#tarteaucitron #tarteaucitronPrivacyUrlDialog,
#tarteaucitronRoot .tarteaucitronDeny,
#tarteaucitronRoot .tarteaucitronAllow {
  background: #4DAC55;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px !important;
  line-height: 1.2;
  padding: 5px 10px;
  text-decoration: none;
  margin-left: 7px;
}

#tarteaucitronRoot .tarteaucitronDeny {
  background: #D92D29;
}

#tarteaucitronAlertBig #tarteaucitronCloseAlert, #tarteaucitron #tarteaucitronPrivacyUrl, #tarteaucitron #tarteaucitronPrivacyUrlDialog {
  background: #3e3e3e;
  color: #fff;
  font-size: 13px;
  margin-bottom: 3px;
  margin-left: 7px;
  padding: 5px 10px;
}

#tarteaucitronPercentage {
  background: #0A0 !important;
  -webkit-box-shadow: 0 0 2px #fff, 0 1px 2px #555;
          box-shadow: 0 0 2px #fff, 0 1px 2px #555;
  height: 5px;
  left: 0;
  position: fixed;
  width: 0;
  z-index: 2147483644;
}

/***
 * Icon
 */
.tarteaucitronIconBottomRight {
  bottom: 0;
  right: 0;
}

.tarteaucitronIconBottomLeft {
  bottom: 0;
  left: 0;
}

.tarteaucitronIconTopRight {
  top: 0;
  right: 0;
}

.tarteaucitronIconTopLeft {
  top: 0;
  left: 0;
}

.tarteaucitronIconTopLeft #tarteaucitronManager {
  border-radius: 2px 7px 7px 2px;
}

.tarteaucitronIconTopRight #tarteaucitronManager {
  border-radius: 7px 2px 2px 7px;
}

.tarteaucitronIconBottomLeft #tarteaucitronManager {
  border-radius: 7px 7px 2px 2px;
}

.tarteaucitronIconBottomRight #tarteaucitronManager {
  border-radius: 7px 7px 2px 2px;
}

#tarteaucitronIcon {
  background: transparent;
  position: fixed;
  display: none;
  width: auto;
  z-index: 2147483646;
}

#tarteaucitronIcon #tarteaucitronManager {
  color: transparent;
  cursor: pointer;
  display: inline-block;
  font-size: 11px !important;
  padding: 8px 10px 8px;
  border: none;
}

#tarteaucitronIcon #tarteaucitronManager img {
  width: 50px;
  height: 50px;
}

#tarteaucitronRoot .tarteaucitronCross::before {
  content: "✗";
  display: inline-block;
  color: white;
}

#tarteaucitronRoot .tarteaucitronCheck::before {
  content: "✓";
  display: inline-block;
  color: white;
}

#tarteaucitronRoot .tarteaucitronPlus::before {
  content: "✛";
  display: inline-block;
  color: white;
}

/***
 * Small alert
 */
.tarteaucitronAlertSmallTop, .tarteaucitronAlertSmallBottom {
  bottom: 0;
}

#tarteaucitronAlertSmall {
  background: #333;
  display: none;
  padding: 0;
  position: fixed;
  right: 0;
  text-align: center;
  width: auto;
  z-index: 2147483646;
}

#tarteaucitronAlertSmall #tarteaucitronManager {
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 11px !important;
  padding: 8px 10px 8px;
}

#tarteaucitronAlertSmall #tarteaucitronManager:hover {
  background: rgba(255, 255, 255, 0.05);
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot {
  background-color: gray;
  border-radius: 5px;
  display: block;
  height: 8px;
  margin-bottom: 1px;
  margin-top: 5px;
  overflow: hidden;
  width: 100%;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotGreen,
#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotYellow,
#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotRed {
  display: block;
  float: left;
  height: 100%;
  width: 0%;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotGreen {
  background-color: #d9d9d9;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotYellow {
  background-color: #FBDA26;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotRed {
  background-color: #9C1A1A;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesNumber {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 30px;
  padding: 0px 10px;
  vertical-align: top;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesNumber:hover {
  background: rgba(255, 255, 255, 0.3);
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer {
  display: none;
  max-height: 70%;
  max-width: 500px;
  position: fixed;
  right: 0;
  width: 100%;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList {
  background: #fff;
  border: 2px solid #333;
  color: #333;
  font-size: 11px;
  height: auto;
  overflow: auto;
  text-align: left;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList strong {
  color: #333;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle {
  background: #333;
  margin-top: 21px;
  padding: 13px 0 9px 13px;
  text-align: left;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle strong {
  color: #fff;
  font-size: 16px;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain {
  background: rgba(51, 51, 51, 0.1);
  padding: 7px 5px 10px;
  word-wrap: break-word;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain:hover {
  background: rgba(51, 51, 51, 0.2);
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain a {
  color: #333;
  text-decoration: none;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListLeft {
  display: inline-block;
  width: 50%;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListLeft a strong {
  color: darkred;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListRight {
  color: #333;
  display: inline-block;
  font-size: 11px;
  margin-left: 10%;
  vertical-align: top;
  width: 30%;
}

/***
 * Fallback activate link
 */
.tac_activate {
  background: #333;
  color: #fff;
  display: table;
  font-size: 12px;
  height: 100%;
  line-height: initial;
  margin: auto;
  text-align: center;
  width: 100%;
}

.tac_float {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding: 10px;
}

.tac_activate .tac_float strong {
  color: #fff;
}

.tac_activate .tac_float .tarteaucitronAllow {
  background-color: #1B870B;
  display: inline-block;
}

/***
 * CSS for services
 */
ins.ferank-publicite, ins.adsbygoogle {
  text-decoration: none;
}

div.amazon_product {
  height: 240px;
  width: 120px;
}

.tarteaucitronIsAllowed .tarteaucitronDeny {
  opacity: 0.4 !important;
}

.tarteaucitronIsDenied .tarteaucitronAllow {
  opacity: 0.4 !important;
}

.tarteaucitronIsAllowed .tarteaucitronAllow {
  opacity: 1 !important;
}

.tarteaucitronIsDenied .tarteaucitronDeny {
  opacity: 1 !important;
}

.tarteaucitronLine .tarteaucitronAllow, .tarteaucitronLine .tarteaucitronDeny {
  opacity: 0.4;
}

#tarteaucitronServices_mandatory button.tarteaucitronAllow {
  opacity: 1;
}

div#tarteaucitronInfo {
  display: block !important;
  position: relative !important;
  text-align: center !important;
  max-width: 80% !important;
  padding: 15px 0 !important;
  margin: -10px auto 40px !important;
  font-size: 1em !important;
  border-bottom: 1px solid;
  border-top: 1px solid;
  border-color: #555;
}

a.tarteaucitronSelfLink {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  text-align: center !important;
  display: block;
  height: 30px;
}

.tarteaucitronMainLine .tarteaucitronH2 {
  font-size: 1.2em !important;
  margin-top: 4px !important;
}

span.tarteaucitronTitle.tarteaucitronH3 {
  margin-top: 12px !important;
}

.spacer-20 {
  height: 20px;
  display: block;
}

.display-block {
  display: block;
}

.display-none {
  display: none;
}

/*
STARTUP***********************************************************************************
*/
body #tarteaucitronRoot #tarteaucitronAlertBig {
  display: none;
  position: fixed;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  z-index: 2147483645;
  text-align: center;
  margin: auto;
  overflow: auto;
  background: #ffffff;
  max-width: 480px;
  width: 90%;
  padding: 24px;
  border-radius: 16px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#tarteaucitronAlertBig #tarteaucitronPrivacyUrl {
  display: block;
  text-align: center;
  margin: 22px auto 0;
  text-decoration: underline;
}

#tarteaucitronRoot span#tarteaucitronDisclaimerAlert p.title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

#tarteaucitronRoot span#tarteaucitronDisclaimerAlert p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

div#tarteaucitronAlertBig::before {
  display: none;
}

body #tarteaucitronRoot span#tarteaucitronDisclaimerAlert {
  position: relative;
  padding: 80px 0 0;
  margin: 0 0 20px;
}

#tarteaucitronDisclaimerAlert::before {
  content: "🍪";
  font-size: 35px;
  background: #F4F4F4;
  padding: 15px;
  border-radius: 50%;
  width: 66px;
  height: 66px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  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;
}

#tarteaucitronRoot button#tarteaucitronPrivacyUrl {
  margin-bottom: 0 !important;
  margin-top: 15px !important;
}

/*--------------------------------------- à partir de 768px - MEDIUM ---------------------------------------*/
@media only screen and (min-width: 48em) {
  body #tarteaucitronRoot span#tarteaucitronDisclaimerAlert {
    padding: 0 0 0 80px;
  }
  #tarteaucitronDisclaimerAlert::before {
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}
/* Notes */
.note::before {
  content: "";
  background: url(/images/_v2/stars/stars-50.svg) no-repeat center;
  background-size: 100%;
  margin-right: 10px;
  position: relative;
  top: 3px;
  width: 94px;
  height: 16px;
  display: inline-block;
}
.note.s10::before {
  background-image: url(/images/_v2/stars/stars-10.svg);
}
.note.s15::before {
  background-image: url(/images/_v2/stars/stars-15.svg);
}
.note.s20::before {
  background-image: url(/images/_v2/stars/stars-20.svg);
}
.note.s25::before {
  background-image: url(/images/_v2/stars/stars-25.svg);
}
.note.s30::before {
  background-image: url(/images/_v2/stars/stars-30.svg);
}
.note.s35::before {
  background-image: url(/images/_v2/stars/stars-35.svg);
}
.note.s40::before {
  background-image: url(/images/_v2/stars/stars-40.svg);
}
.note.s45::before {
  background-image: url(/images/_v2/stars/stars-45.svg);
}
.note.white::before {
  background-image: url(/images/_v2/stars/stars-50-white.svg);
  width: 137px;
  height: 23px;
  margin: 5px 0 5px;
}
.note.white.s10::before {
  background-image: url(/images/_v2/stars/stars-10-white.svg);
}
.note.white.s15::before {
  background-image: url(/images/_v2/stars/stars-15-white.svg);
}
.note.white.s20::before {
  background-image: url(/images/_v2/stars/stars-20-white.svg);
}
.note.white.s25::before {
  background-image: url(/images/_v2/stars/stars-25-white.svg);
}
.note.white.s30::before {
  background-image: url(/images/_v2/stars/stars-30-white.svg);
}
.note.white.s35::before {
  background-image: url(/images/_v2/stars/stars-35-white.svg);
}
.note.white.s40::before {
  background-image: url(/images/_v2/stars/stars-40-white.svg);
}
.note.white.s45::before {
  background-image: url(/images/_v2/stars/stars-45-white.svg);
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-track script {
  display: none !important;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow {
  text-indent: -9999px;
  height: 100%;
  width: 30px;
  height: 90px;
  min-width: 30px;
}
.slick-arrow.slick-prev {
  background: url("/images/_v2/icon/icon-chevron-left-black.svg") no-repeat left center;
}
.slick-arrow.slick-next {
  background: url("/images/_v2/icon/icon-chevron-right-black.svg") no-repeat right center;
}

/*--------------------------------

	LAYOUT
	Ces fichiers contiennent les styles des blocs principaux du layout

*/
/*--------------------------------

	Layout du contenu des pages

*/
#elements_list .elementSeparator {
  display: block;
  width: 64px;
  height: 8px;
  background: #d92d29;
  margin: 35px 0 40px;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
  border: none !important;
}

.simpleText,
.textAndImages {
  overflow: hidden;
}

.alignCenter {
  text-align: center;
}

.above_left {
  margin-bottom: 20px;
  text-align: left;
}

.above_right {
  margin-bottom: 20px;
  text-align: right;
}

.above_center {
  margin-bottom: 20px;
  text-align: center;
}

.below_center {
  margin-top: 20px;
  text-align: center;
}

.below_right {
  margin-top: 20px;
  text-align: right;
}

.below_left {
  margin-top: 20px;
  text-align: left;
}

.posLeft .txtCenter figure, .posRight .txtCenter figure {
  float: none !important;
  text-align: center;
}

.posLeft div:not(.elementPicture) .txtRight figure, .posRight div:not(.elementPicture) .txtRight figure {
  float: right !important;
  text-align: right;
}

.posLeft div:not(.elementPicture) .txtLeft figure, .posRight div:not(.elementPicture) .txtLeft figure {
  float: left !important;
  text-align: left;
}

.above_center img,
.above_right img,
.above_left img,
.below_center img,
.below_right img,
.below_left img {
  float: none !important;
}

/*---- IMAGE DANS BLOC TEXTE ----*/
.intext_left,
.posLeft > div:not(.elementPicture) .posLeft figure,
img[style*="float:left"],
img[style*="float: left"] {
  display: block;
  float: none !important;
  margin: 0 auto 10px;
}
@media only screen and (min-width: 30em) {
  .intext_left,
  .posLeft > div:not(.elementPicture) .posLeft figure,
  img[style*="float:left"],
  img[style*="float: left"] {
    float: left !important;
    max-width: 100%;
    margin: 10px 30px 10px 0;
  }
}

.intext_right,
.posRight > div:not(.elementPicture) .posRight figure,
.posRight,
img[style*="float:right"],
img[style*="float: right"] {
  display: block;
  float: none !important;
  margin: 0 auto 1rem;
}
@media only screen and (min-width: 30em) {
  .intext_right,
  .posRight > div:not(.elementPicture) .posRight figure,
  .posRight,
  img[style*="float:right"],
  img[style*="float: right"] {
    float: right !important;
    max-width: 100%;
    margin: 10px 0 10px 30px;
  }
}

/*--------------------------------

	Plan du site

*/
.site-map li {
  margin-left: 30px !important;
}
.site-map li a {
  margin-bottom: 10px;
  display: inline-block;
  border-radius: 2px;
  color: #6dcaff;
  font-weight: 700;
  background: white;
  padding: 10px 20px;
}
.site-map .rubrique_sommaire_ {
  font-size: 24px;
}
.site-map .rubrique_sommaire_::before {
  display: none;
}
.site-map .sitemap_level1 {
  font-size: 18px;
}
.site-map .sitemap_level1 > li {
  margin-top: 20px;
}
.site-map .sitemap_level2 {
  font-size: 16px;
}
.site-map .sitemap_level2 > li {
  margin-top: 10px;
}
.site-map .sitemap_level2 > li a {
  font-weight: 400;
}
.site-map .sitemap_level3 {
  font-size: 14px;
}

/*--------------------------------

	Page vide

*/
.error-page .icon-website-update::before {
  font-size: 12px;
}
@media only screen and (min-width: 48em) {
  .error-page .icon-website-update::before {
    font-size: 16px;
  }
}

/* -------------------------------
Bloc contact 
*/
.bloc-contact {
  -webkit-box-shadow: 0 19px 36px -8px rgba(0, 0, 0, 0.07);
          box-shadow: 0 19px 36px -8px rgba(0, 0, 0, 0.07);
  background-color: #6dcaff;
  margin: 0 -10%;
  padding: 40px 8%;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: bold;
  font-size: 32px;
  line-height: 1.22;
  color: #fff;
}
@media only screen and (min-width: 48em) {
  .bloc-contact {
    margin: 0;
    padding: 54px;
    border-radius: 15px;
  }
}
@media only screen and (min-width: 78em) {
  .bloc-contact {
    padding-left: 270px;
    background: url("/images/_v2/shape/shape-bloc-contact.svg") no-repeat left bottom, #6dcaff;
    position: relative;
    margin: 70px 0;
  }
  .bloc-contact::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 70px;
    background: url("/images/_v2/illu/illu-clac-doitg.svg") no-repeat center;
    width: 141px;
    height: 223px;
  }
}
@media only screen and (min-width: 90em) {
  .bloc-contact {
    padding: 54px 89px 54px 320px;
    font-size: 42px;
  }
}
@media only screen and (min-width: 103.125em) {
  .bloc-contact {
    margin: 100px 0;
  }
  .bloc-contact::before {
    width: 174px;
    height: 275px;
    background-size: 100%;
  }
}
.bloc-contact p:last-child {
  margin-bottom: 0;
  margin-top: 30px;
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .bloc-contact p:last-child {
    text-align: left;
  }
}
@media only screen and (min-width: 90em) {
  .bloc-contact p:last-child {
    margin-top: 50px;
  }
}
.bloc-contact .lienBlocRouge {
  margin: 0;
}

.elementDirectory.solo .directory-list {
  margin: 0 !important;
}
.elementDirectory.solo .directory-list-item {
  width: 100% !important;
}

.bloc-courtier {
  margin-top: 30px;
}
@media only screen and (min-width: 48em) {
  .bloc-courtier {
    margin-top: 0;
  }
}
.bloc-courtier .txtCenter {
  margin-bottom: 10px;
}
.bloc-courtier .txtCenter img {
  max-width: 200px;
  border-radius: 50%;
}

/*--------------------------------

	Footer

*/
#tidio-chat-iframe {
  margin-bottom: 25px !important;
  right: -5px !important;
}
@media only screen and (min-width: 78em) {
  #tidio-chat-iframe {
    right: 0 !important;
    margin-bottom: 35px !important;
  }
}

.footer {
  margin-top: 71px;
}
@media only screen and (min-width: 48em) {
  .footer {
    margin-top: 140px;
  }
}
@media only screen and (min-width: 90em) {
  .footer {
    margin-top: 150px;
  }
}
@media only screen and (min-width: 103.125em) {
  .footer {
    margin-top: 190px;
  }
}

.footer-inner {
  background-color: #e6f6ff;
}
@media only screen and (min-width: 78em) {
  .footer-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer-left {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 78em) {
  .footer-left {
    width: 75%;
  }
}
@media only screen and (min-width: 78em) {
  .footer-left {
    width: 67%;
  }
}
.footer-left-bg {
  width: 100%;
  height: 40px;
  display: block;
  position: relative;
  z-index: 1;
  background: #fff;
}
@media only screen and (min-width: 48em) {
  .footer-left-bg {
    height: 20px;
  }
}
.footer-left-bg::after {
  content: "";
  position: absolute;
  right: 0;
  height: 100%;
  background: #fff;
  width: 10px;
  top: 0;
  z-index: 10;
}
@media only screen and (min-width: 78em) {
  .footer-left-bg::after {
    background: #e6f6ff;
    height: 100px;
  }
}
.footer-left-bg-inner {
  background: #6dcaff;
  width: calc(100% - 10px);
  position: relative;
  height: 100%;
}
.footer-left-bg-inner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #6dcaff;
  z-index: 2;
  border-top-right-radius: 30px;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
  left: 0;
  top: -18px;
}
@media only screen and (min-width: 48em) {
  .footer-left-bg-inner::before {
    top: -27px;
    height: 60px;
  }
}
@media only screen and (min-width: 78em) {
  .footer-left-bg-inner::before {
    top: -30px;
    height: 120px;
  }
}
@media only screen and (min-width: 120em) {
  .footer-left-bg-inner::before {
    top: -34px;
  }
}
.footer-left-inner {
  background: #6dcaff;
  z-index: 2;
  position: relative;
  width: calc(100% - 10px);
  padding: 0 8%;
  padding-bottom: 75px;
  border-radius: 0 0 10px 10px;
}
@media only screen and (min-width: 48em) {
  .footer-left-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 78em) {
  .footer-left-inner {
    border-radius: 0;
  }
}
.footer-left-item:not(:last-child) {
  margin-bottom: 60px;
}
@media only screen and (min-width: 48em) {
  .footer-left-item:not(:last-child) {
    margin-bottom: 0;
  }
}
.footer-left-item:last-child ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-left-item:last-child ul li {
  height: 22px;
}
.footer-left-item:last-child ul li a {
  height: 22px;
  display: block;
}
.footer-left-item:last-child ul li img {
  vertical-align: top;
}
.footer-left-item:last-child ul li:not(:last-child) {
  margin-right: 35px;
}
.footer-left-item ul {
  margin: 0;
}
@media only screen and (min-width: 90em) {
  .footer-left-item ul li {
    line-height: 1.2;
  }
  .footer-left-item ul li:not(:last-child) {
    margin-bottom: 15px;
  }
}
.footer-left-item p {
  font-size: 12px;
  font-style: italic;
  color: #fff;
  margin: 0 0 25px;
}
.footer-left-item a {
  color: #fff;
  font-size: 19px;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: 500;
}

.footer-right {
  padding: 50px 8% 70px;
}
@media only screen and (min-width: 48em) {
  .footer-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 50px 8%;
  }
}
@media only screen and (min-width: 78em) {
  .footer-right {
    width: 25%;
    display: block;
    padding: 0 30px;
  }
}
@media only screen and (min-width: 90em) {
  .footer-right {
    width: 33%;
    padding: 0 60px;
  }
}
@media only screen and (min-width: 90em) {
  .footer-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-right img {
  width: 185px;
  min-width: 185px;
  margin-bottom: 48px;
}
@media only screen and (min-width: 48em) {
  .footer-right img {
    margin: 0 48px 0 0;
  }
}
@media only screen and (min-width: 78em) {
  .footer-right img {
    margin: 0 0 20px 0;
  }
}
@media only screen and (min-width: 90em) {
  .footer-right img {
    margin: 0 48px 0 0;
  }
}
.footer-right p {
  margin: 0;
  font-size: 16px;
  line-height: 1.56;
  color: #272324;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: 400;
}
@media only screen and (min-width: 78em) {
  .footer-right p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 90em) {
  .footer-right p {
    font-size: 16px;
    line-height: 1.32;
    max-width: 300px;
  }
}

.footer-signature {
  padding: 30px 8%;
  text-align: center;
  font-size: 12px;
  color: #272324;
}
@media only screen and (min-width: 48em) {
  .footer-signature {
    padding: 20px 8%;
  }
}
@media only screen and (min-width: 78em) {
  .footer-signature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 20px 6%;
  }
}
@media only screen and (min-width: 48em) {
  .footer-signature-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-signature-left span {
  display: block;
}
@media only screen and (min-width: 48em) {
  .footer-signature-left span:not(:last-child)::after {
    content: "|";
    margin: 0 10px;
  }
}
.footer-signature-right {
  margin-top: 30px;
}
@media only screen and (min-width: 48em) {
  .footer-signature-right {
    margin-top: 15px;
  }
  .footer-signature-right ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-signature-right ul li {
    margin: 0 10px;
  }
}
@media only screen and (min-width: 78em) {
  .footer-signature-right {
    margin-top: 0;
  }
}
.footer-signature a {
  font-size: 12px;
  color: #272324;
  font-family: "Open Sans", Tahoma, sans-serif;
}

/*--------------------------------

	Header

*/
header {
  position: relative;
}
@media only screen and (min-width: 78em) {
  header .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/*--------------------------------

	Sidebar

*/
.rightbar {
  margin: 50px 0;
}
@media only screen and (min-width: 78em) {
  .rightbar {
    width: 325px;
    margin: 100px 0;
  }
}

.widgetActu .lienBlog,
.widgetConseil .lienActualites,
.widget.widgetConseil .widgetHighlightDate,
.widgetConseil .widgetHighlightThumbnail,
.widgetConseil .widgetHighlightDescription {
  display: none;
}

.widgetHighlightPost {
  position: relative;
}

.widgetConseil {
  -webkit-box-shadow: 9px 15px 44px -24px rgba(0, 0, 0, 0.26);
          box-shadow: 9px 15px 44px -24px rgba(0, 0, 0, 0.26);
  background-color: #fff;
  border-radius: 12px;
}
.widgetConseil > a {
  border-radius: 10px;
  -webkit-box-shadow: 9px 15px 44px -24px rgba(0, 0, 0, 0.26);
          box-shadow: 9px 15px 44px -24px rgba(0, 0, 0, 0.26);
  background-color: #272324;
  text-align: center;
  display: block;
  font-size: 26px;
  color: #fff;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: bold;
  line-height: 1.2;
  padding: 23px 30px;
}
@media only screen and (min-width: 78em) {
  .widgetConseil > a {
    padding: 30px 45px;
  }
}
.widgetConseil > a:hover {
  text-decoration: none;
  background: rgb(12.1216216216, 10.8783783784, 11.1891891892);
}
.widgetConseil .widgetContainer {
  padding: 57px 22px 48px;
  background: url(/images/_v2/icon/icon-chevron-down-blue.svg) no-repeat center 18px;
}
@media only screen and (min-width: 78em) {
  .widgetConseil .widgetContainer {
    padding: 84px 15px 54px;
  }
}
.widgetConseil .widgetHighlightPost:not(:last-child) {
  margin-bottom: 26px;
}
@media only screen and (min-width: 78em) {
  .widgetConseil .widgetHighlightPost:not(:last-child) {
    margin-bottom: 50px;
  }
}
.widgetConseil .widgetHighlightPost .contenu {
  font-size: 14px;
  color: #272324;
  line-height: 1.2;
  padding-left: 32px;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (min-width: 78em) {
  .widgetConseil .widgetHighlightPost .contenu {
    font-size: 15px;
    padding-left: 50px;
  }
}
.widgetConseil .widgetHighlightPost .contenu::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #6dcaff;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  color: #fff;
  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;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: bold;
  padding-bottom: 3px;
}
@media only screen and (min-width: 78em) {
  .widgetConseil .widgetHighlightPost .contenu::before {
    width: 27px;
    height: 27px;
  }
}
.widgetConseil .widgetHighlightPost:hover .contenu {
  font-weight: 700;
}

.avis-rightbar {
  position: relative;
  text-align: center;
  color: #fff;
  width: 185px;
  height: 185px;
  display: block;
  background: #d92d29;
  border-radius: 50%;
  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-direction: column;
          flex-direction: column;
  margin: 40px auto;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (min-width: 78em) {
  .avis-rightbar {
    margin: 47px auto;
  }
}
.avis-rightbar .chiffre {
  font-size: 45px;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: bold;
  line-height: 1;
}
.avis-rightbar .nombre {
  font-size: 15px;
}
.avis-rightbar .link {
  font-size: 12px;
  font-style: italic;
}
.avis-rightbar:hover {
  background: rgb(184.4476190476, 36.2, 32.7523809524);
  -webkit-box-shadow: -4px 7px 27px 0 rgba(0, 0, 0, 0.13);
          box-shadow: -4px 7px 27px 0 rgba(0, 0, 0, 0.13);
}

.widgetActu > a {
  font-family: "din", Trebuchet MS, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #afafaf;
  text-transform: uppercase;
  display: block;
  line-height: 1.2;
  margin-bottom: 22px;
}
.widgetActu .widgetHighlightPost {
  border-radius: 15px;
  -webkit-box-shadow: 0 19px 36px -10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 19px 36px -10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.widgetActu .widgetHighlightPost .h5-like {
  border-radius: 10px 10px 0 0;
  -webkit-box-shadow: 9px 15px 44px -24px rgba(0, 0, 0, 0.26);
          box-shadow: 9px 15px 44px -24px rgba(0, 0, 0, 0.26);
  background-color: #6dcaff;
  text-align: center;
  display: block;
  font-size: 22px;
  color: #fff;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: bold;
  line-height: 1.2;
  padding: 23px 30px;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.widgetActu .widgetHighlightPost .widgetHighlightThumbnail {
  height: 220px;
}
.widgetActu .widgetHighlightPost .widgetHighlightThumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.widgetActu .widgetHighlightPost .widgetHighlightDate {
  font-size: 12px;
  font-weight: 300;
  color: #5c5c5c;
  line-height: 1;
  padding: 10px 25px 0;
}
.widgetActu .widgetHighlightPost .widgetHighlightDate::after {
  content: url(/images/_v2/icon/icon-chevron-down-blue.svg);
  margin: 15px 0 20px;
  display: block;
  text-align: center;
}
.widgetActu .widgetHighlightPost .contenu {
  padding: 0 25px 18px;
  font-size: 14px;
  line-height: 1.43;
  color: #5c5c5c;
}
@media only screen and (min-width: 78em) {
  .widgetActu .widgetHighlightPost .contenu {
    padding-bottom: 25px;
  }
}
.widgetActu .widgetHighlightPost:hover .h5-like {
  background: #272324;
}

.rightbar .widgetText {
  display: none;
}

.projet-sidebar {
  border-radius: 15px;
  -webkit-box-shadow: 9px 15px 44px -24px rgba(0, 0, 0, 0.26);
          box-shadow: 9px 15px 44px -24px rgba(0, 0, 0, 0.26);
  background-color: #d92d29;
  color: #fff;
  text-align: center;
  position: relative;
  padding: 26px 22px;
  margin: 45px 0;
}
.projet-sidebar .h2 {
  color: #fff;
  font-size: 28px;
  margin: 0 0 30px;
}
@media only screen and (min-width: 78em) {
  .projet-sidebar .h2 {
    margin: 0 25px 30px;
  }
}
.projet-sidebar .btn-full-red, .projet-sidebar .lienBlocRouge a, .lienBlocRouge .projet-sidebar a, .projet-sidebar input[type=submit] {
  border: 2px solid #fff;
  font-size: 22px;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: 500;
  padding: 24px;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (min-width: 78em) {
  .projet-sidebar .btn-full-red, .projet-sidebar .lienBlocRouge a, .lienBlocRouge .projet-sidebar a, .projet-sidebar input[type=submit] {
    width: 100%;
  }
}
.projet-sidebar:hover .btn-full-red, .projet-sidebar:hover .lienBlocRouge a, .lienBlocRouge .projet-sidebar:hover a, .projet-sidebar:hover input[type=submit] {
  background: rgba(255, 255, 255, 0.3);
}

/*--------------------------------

	PUBLICATION
	Ces fichiers contiennent les styles des différents type de publication

*/
.bloc-faq {
  margin: 0 -10% 20px;
}
@media only screen and (min-width: 48em) {
  .bloc-faq {
    margin: 0;
    padding: 30px !important;
  }
}
@media only screen and (min-width: 78em) {
  .bloc-faq {
    padding: 40px !important;
  }
}
.bloc-faq h2 {
  cursor: pointer;
  margin: 0;
  font-size: 20px;
  padding-right: 30px;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.bloc-faq h2::after {
  content: "";
  position: absolute;
  right: 0;
  height: 20px;
  width: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background: url("/images/_v2/icon/icon-chevron-right-blue.svg") no-repeat right bottom;
  background-size: auto 20px;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.bloc-faq h2.open::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.bloc-faq-inner {
  display: none;
  margin-top: 30px;
}
.bloc-faq:hover h2 {
  color: #6dcaff;
}

/*--------------------------------

	Page listing actualités

*/
.blog-list {
  margin-top: 40px;
}
@media only screen and (min-width: 48em) {
  .blog-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 50px -15px 0;
  }
}
.blog-list-item {
  position: relative;
  border-radius: 15px;
  -webkit-box-shadow: 0 19px 36px -10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 19px 36px -10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  margin-bottom: 40px;
}
@media only screen and (min-width: 48em) {
  .blog-list-item {
    width: calc(50% - 30px);
    margin: 0 15px 40px;
  }
}
.blog-list-item h2 {
  border-radius: 10px 10px 0 0;
  -webkit-box-shadow: 9px 15px 44px -24px rgba(0, 0, 0, 0.26);
          box-shadow: 9px 15px 44px -24px rgba(0, 0, 0, 0.26);
  background-color: #6dcaff;
  text-align: center;
  display: block;
  font-size: 22px;
  color: #fff;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: bold;
  line-height: 1.2;
  padding: 23px 30px;
  margin: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.blog-list-item:hover h2 {
  background: #272324;
}
.blog-list-item-img {
  height: 220px;
}
.blog-list-item-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.blog-list-item-txt {
  padding: 10px 25px 25px;
}
.blog-list-item-txt .date {
  font-size: 12px;
  font-weight: 300;
  color: #5c5c5c;
  line-height: 1;
}
.blog-list-item-txt .date::after {
  content: url(/images/_v2/icon/icon-chevron-down-blue.svg);
  margin: 15px 0 20px;
  display: block;
  text-align: center;
}
.blog-list-item-txt .resume {
  font-size: 14px;
  line-height: 1.43;
  color: #5c5c5c;
}

/*--------------------------------

	Page détail actualité

*/
@media only screen and (min-width: 48em) {
  .chapo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    border-radius: 8px;
    -webkit-box-shadow: 0 19px 36px -10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 19px 36px -10px rgba(0, 0, 0, 0.1);
    background: #fff;
  }
  .chapo > div:nth-child(1) {
    width: 60%;
  }
  .chapo > div:nth-child(2) {
    width: 40%;
  }
}

@media only screen and (min-width: 48em) {
  .chapo-text {
    margin: 0;
    padding: 30px;
  }
}
@media only screen and (min-width: 78em) {
  .chapo-text {
    padding: 40px;
  }
}
@media only screen and (min-width: 90em) {
  .chapo-text {
    padding: 50px;
  }
}
@media only screen and (min-width: 48em) {
  .chapo-text h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .chapo-text h1::after {
    display: none;
  }
}
.chapo-text .chapo-date {
  font-size: 12px;
  font-weight: 300;
  color: #5c5c5c;
  line-height: 1;
}
.chapo-text .chapo-desc {
  margin-top: 15px;
}
@media only screen and (min-width: 78em) {
  .chapo-text .chapo-desc {
    font-size: 18px;
  }
}

.chapo-img {
  margin: 30px -10% 0;
  height: 250px;
}
@media only screen and (min-width: 35em) {
  .chapo-img {
    height: 450px;
  }
}
@media only screen and (min-width: 48em) {
  .chapo-img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0;
    overflow: hidden;
    height: auto;
  }
}

.socialSharing {
  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-top: 50px;
}
.socialSharing img {
  vertical-align: middle;
}

.backToPage a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.backToPage a svg {
  margin-right: 10px;
}

.postDetail p img:last-child:first-child {
  margin: 40px 0;
  border-radius: 15px;
}

/*--------------------------------

	Annuaire

*/
/* Detail annuaire */
.fiche-coordonnees {
  margin-top: 15px;
  position: relative;
  padding-top: 75px;
}
@media only screen and (min-width: 78em) {
  .fiche-coordonnees {
    padding: 0;
  }
}
@media only screen and (min-width: 90em) {
  .fiche-coordonnees {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 53px 0 58px;
  }
}
.fiche-coordonnees .avisResume {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  color: #fff;
  width: 110px;
  height: 110px;
  display: block;
  background: #d92d29;
  border-radius: 50%;
  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-direction: column;
          flex-direction: column;
  z-index: 2;
}
@media only screen and (min-width: 78em) {
  .fiche-coordonnees .avisResume {
    top: 100px;
    -webkit-transform: none;
            transform: none;
    left: -51px;
  }
}
.fiche-coordonnees .avisResume .note::before {
  height: 13px;
  background-size: auto 100%;
  margin: 0;
  display: inherit;
  top: 0;
}
.fiche-coordonnees .avisResume .chiffre {
  font-size: 34px;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: bold;
  line-height: 1;
}
.fiche-coordonnees .avisResume .nombre {
  font-size: 10px;
}
.fiche-coordonnees .avisResume .link {
  font-style: italic;
  font-size: 8px;
}
.fiche-coordonnees-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  margin: 0 -10% 0;
  padding: 0 8%;
}
@media only screen and (min-width: 78em) {
  .fiche-coordonnees-img {
    display: block;
    margin: 50px 0;
    padding: 0;
    overflow: visible;
  }
}
@media only screen and (min-width: 90em) {
  .fiche-coordonnees-img {
    width: 50%;
    padding-right: 15px;
    margin: 0;
  }
}
@media only screen and (min-width: 103.125em) {
  .fiche-coordonnees-img {
    padding-right: 18px;
  }
}
.fiche-coordonnees-img img {
  border-radius: 15px;
  min-width: 325px;
  width: 325px;
  height: 222px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 78em) {
  .fiche-coordonnees-img img {
    width: 100%;
    height: 100%;
    min-width: 0;
  }
}
.fiche-coordonnees-img-big {
  position: relative;
  margin-right: 15px;
}
@media only screen and (min-width: 78em) {
  .fiche-coordonnees-img-big {
    height: 320px;
    margin: 0;
  }
}
.fiche-coordonnees-img-gallery {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 78em) {
  .fiche-coordonnees-img-gallery {
    margin-top: 20px;
  }
}
.fiche-coordonnees-img-gallery li {
  margin: 0 15px 0 0;
}
@media only screen and (min-width: 78em) {
  .fiche-coordonnees-img-gallery li {
    padding: 0;
    height: 90px;
    margin: 0;
    background: #fff;
  }
  .fiche-coordonnees-img-gallery li img {
    padding: 0 4px;
  }
}
@media only screen and (min-width: 90em) {
  .fiche-coordonnees-txt {
    width: 50%;
    padding-left: 15px;
  }
}
@media only screen and (min-width: 103.125em) {
  .fiche-coordonnees-txt {
    padding-left: 18px;
  }
}
.fiche-coordonnees-txt-title {
  background-color: #272324;
  padding: 28px 8% 37px;
  text-align: center;
  margin: 35px -10%;
}
@media only screen and (min-width: 78em) {
  .fiche-coordonnees-txt-title {
    margin: 0 0 20px;
    padding: 27px;
    border-radius: 12px;
  }
}
@media only screen and (min-width: 103.125em) {
  .fiche-coordonnees-txt-title {
    padding: 27px 50px;
  }
}
.fiche-coordonnees-txt-title h2 {
  font-size: 22px;
  line-height: 1.27;
  color: #fff;
  margin: 0 0 20px;
}
.fiche-coordonnees-txt-title p {
  margin: 0;
  opacity: 0.7;
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
}
@media only screen and (min-width: 78em) {
  .fiche-coordonnees-txt-title + p {
    font-size: 16px;
    line-height: 1.88;
    padding: 0 20px;
  }
}

.fiche-contact {
  text-align: center;
  margin: 40px 0 60px;
}
@media only screen and (min-width: 90em) {
  .fiche-contact {
    margin: 58px 0 80px;
  }
}

.fiche-agent {
  position: relative;
}
.fiche-agent::before {
  content: "";
  position: absolute;
  left: -10%;
  top: 80px;
  height: 509px;
  width: 282px;
  background: url("/images/_v2/shape/shape-defaut.svg") no-repeat right top;
  background-size: auto 100%;
  z-index: -1;
}
@media only screen and (min-width: 78em) {
  .fiche-agent::before {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: absolute;
    width: 465px;
    height: 818px;
    margin-left: calc(-50vw + 190px);
    top: 0;
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
}
@media only screen and (min-width: 78em) {
  .fiche-agent-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 80px -15px 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (min-width: 103.125em) {
  .fiche-agent-list {
    margin: 80px -35px 0;
  }
}
.fiche-agent-list-item {
  border-radius: 12px;
  border: solid 1px rgba(39, 35, 36, 0.08);
  background-color: #fff;
  padding-top: 107px;
  position: relative;
  margin-top: 60px;
}
@media only screen and (min-width: 78em) {
  .fiche-agent-list-item {
    width: calc(50% - 30px);
    margin: 0 15px 80px;
  }
}
@media only screen and (min-width: 103.125em) {
  .fiche-agent-list-item {
    width: calc(50% - 70px);
    margin: 0 35px 80px;
  }
}
.fiche-agent-list-item:not(:last-child) {
  margin-bottom: 100px;
}
@media only screen and (min-width: 78em) {
  .fiche-agent-list-item:not(:last-child) {
    margin-bottom: 80px;
  }
}
.fiche-agent-list-item .agent-img {
  width: 134px;
  height: 132px;
  -webkit-box-shadow: 0 16px 12px -8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 16px 12px -8px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  overflow: hidden;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -40px;
  position: absolute;
}
.fiche-agent-list-item .agent-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.fiche-agent-list-item p {
  margin: 0;
  line-height: 1.3;
}
.fiche-agent-list-item-top {
  padding: 0 17px 27px;
  text-align: center;
}
.fiche-agent-list-item-top .agent-name {
  font-size: 18px;
  font-weight: bold;
  color: #272324;
}
.fiche-agent-list-item-top .agent-job {
  opacity: 0.7;
  font-size: 14px;
  color: #272324;
  margin: 7px 0 18px;
}
.fiche-agent-list-item-top .btn-full-red, .fiche-agent-list-item-top .lienBlocRouge a, .lienBlocRouge .fiche-agent-list-item-top a, .fiche-agent-list-item-top input[type=submit] {
  font-family: "Open Sans", Tahoma, sans-serif;
  font-weight: bold;
  font-size: 18px;
  padding: 11px 25px;
}
.fiche-agent-list-item .agent-description {
  margin: 0;
  background-color: #272324;
  padding: 21px 22px 23px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 0 0 12px 12px;
}
@media only screen and (min-width: 78em) {
  .fiche-agent-list-item .agent-description {
    padding: 32px;
  }
}

.fiche-carte {
  margin: 40px -10%;
}
@media only screen and (min-width: 64em) {
  .fiche-carte {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 78em) {
  .fiche-carte {
    margin: 0 0 67px;
  }
}
.fiche-carte .generatedGoogleMap {
  width: 100% !important;
  height: 305px !important;
}
@media only screen and (min-width: 78em) {
  .fiche-carte .generatedGoogleMap {
    height: 455px !important;
  }
}

.fiche-detail h2:first-child {
  margin-top: 0;
}

.fiche-avis h2 {
  margin-bottom: 35px;
}
.fiche-avis ul li {
  border-radius: 12px;
  border: solid 1px rgba(39, 35, 36, 0.08);
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
  padding: 20px 16px;
}
@media only screen and (min-width: 78em) {
  .fiche-avis ul li {
    padding: 24px 28px;
  }
}
@media only screen and (min-width: 90em) {
  .fiche-avis ul li {
    padding: 24px 43px 24px 28px;
  }
}
.fiche-avis ul li span {
  display: block;
  line-height: 1.3;
}
.fiche-avis ul li span.nom {
  font-size: 14px;
  font-weight: 700;
  color: #272324;
  margin-bottom: 5px;
}
@media only screen and (min-width: 78em) {
  .fiche-avis ul li span.nom {
    font-size: 16px;
  }
}
.fiche-avis ul li span.date {
  font-size: 10px;
  color: rgba(39, 35, 36, 0.7);
}
@media only screen and (min-width: 78em) {
  .fiche-avis ul li span.date {
    font-size: 12px;
  }
}
.fiche-avis ul li span.note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: bold;
  color: #272324;
}
.fiche-avis ul li span.note::before {
  top: 0;
}
.fiche-avis ul li span.avis {
  font-size: 12px;
  color: rgba(39, 35, 36, 0.7);
  margin-top: 15px;
}
@media only screen and (min-width: 78em) {
  .fiche-avis ul li span.avis {
    font-size: 14px;
  }
}
.fiche-avis ul li div:first-child {
  width: 88px;
}
@media only screen and (min-width: 78em) {
  .fiche-avis ul li div:first-child {
    width: 260px;
  }
}
.fiche-avis ul li div:last-child {
  width: calc(100% - 88px);
  padding-left: 25px;
}
@media only screen and (min-width: 78em) {
  .fiche-avis ul li div:last-child {
    width: calc(100% - 260px);
  }
}
.fiche-avis .btn-more {
  text-align: center;
  margin-top: 41px;
}

/* Listing annuaire */
.carteFiche {
  margin: 30px -10% 36px;
}
@media only screen and (min-width: 64em) {
  .carteFiche {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 78em) {
  .carteFiche {
    margin: 50px 0 67px;
  }
}
.carteFiche #divmap_4 {
  width: 100% !important;
  height: 305px !important;
}
@media only screen and (min-width: 103.125em) {
  .carteFiche #divmap_4 {
    height: 430px !important;
  }
}

.directory-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  margin: 0 -10%;
  padding: 0 8%;
}
@media only screen and (min-width: 78em) {
  .directory-list {
    margin: 0 -15px;
    padding: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.directory-list-item {
  position: relative;
  width: 280px;
  min-width: 280px;
  margin-right: 17px;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-radius: 0 0 8px 8px;
}
@media only screen and (min-width: 78em) {
  .directory-list-item {
    width: calc(50% - 30px);
    margin: 0 15px 40px;
  }
}
@media only screen and (min-width: 90em) {
  .directory-list-item {
    width: calc(33.333% - 30px);
    min-width: 0;
  }
}
.directory-list-item:hover {
  -webkit-box-shadow: -4px 7px 27px 0 rgba(0, 0, 0, 0.13);
          box-shadow: -4px 7px 27px 0 rgba(0, 0, 0, 0.13);
}
.directory-list-item h2 {
  border-radius: 8px 8px 0 0;
  background-color: #272324;
  padding: 15px 17px 18px;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: #fff;
  margin: 0;
}
.directory-list-item-img {
  height: 170px;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
}
.directory-list-item-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.directory-list-item-txt {
  padding: 16px;
  text-align: center;
  position: relative;
}
.directory-list-item-txt .agent-img {
  position: absolute;
  left: 12px;
  top: -8px;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  -webkit-box-shadow: 0 16px 12px -8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 16px 12px -8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.directory-list-item-txt .agent-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.directory-list-item-txt .agent-name {
  font-size: 16px;
  font-weight: bold;
  color: #272324;
  line-height: 1.4;
  max-width: calc(100% - 110px);
  margin: 0 auto;
}
.directory-list-item-txt .agent-address {
  font-size: 14px;
  color: #5c5c5c;
  line-height: 1.3;
  margin: 16px 0;
}
.directory-list-item-txt .agent-tel {
  font-family: "Open Sans", Tahoma, sans-serif;
  font-weight: bold;
  font-size: 18px;
  padding: 11px 18px;
  color: #fff !important;
}

#gMapWindowContent h2 {
  margin: 0 0 10px;
  font-size: 16px;
}
#gMapWindowContent p {
  margin: 10px 0;
}
#gMapWindowContent .corresResume {
  display: none;
}

/*--------------------------------

	PAGE
	Ces fichiers contiennent les styles des pages "spéciales"

*/
/*--------------------------------

	Page Contact

*/
.ru-accueil #page::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 264.3px;
  height: 378.7px;
  background: url("/images/_v2/shape/shape-diapo-blue.svg") no-repeat left bottom;
  background-size: auto 100%;
}
@media only screen and (min-width: 78em) {
  .ru-accueil #page::before {
    width: 493.3px;
    height: 557.7px;
  }
}
@media only screen and (min-width: 90em) {
  .ru-accueil #page::before {
    width: 582px;
    height: 658px;
  }
}
@media only screen and (min-width: 103.125em) {
  .ru-accueil #page::before {
    width: 666px;
    height: 946.9px;
  }
}
@media only screen and (min-width: 120em) {
  .ru-accueil #page::before {
    width: 760px;
    height: 885.9px;
  }
}
.ru-accueil .rightbar,
.ru-accueil .breadcrumb {
  display: none;
}
.ru-accueil main {
  padding: 0;
}
.ru-accueil main::before {
  top: 380px;
}
@media only screen and (min-width: 48em) {
  .ru-accueil main::before {
    width: 257px;
    top: 0;
    height: 921px;
  }
}
@media only screen and (min-width: 103.125em) {
  .ru-accueil main::before {
    width: 360px;
    height: 921px;
    top: 350px;
  }
}
@media only screen and (min-width: 120em) {
  .ru-accueil main::before {
    top: 290px;
  }
}
.ru-accueil main::after {
  display: none;
}
.ru-accueil .site-container {
  display: block;
  width: 100%;
  max-width: 100%;
}
.ru-accueil .site-container article {
  padding: 0;
  width: 100%;
  max-width: 100%;
}
.ru-accueil .footer {
  margin-top: 0;
}
.ru-accueil .footer-left-bg {
  background: #e6f6ff;
}
.ru-accueil .footer-left-bg::after {
  background-color: #e6f6ff;
}

@media only screen and (min-width: 48em) {
  .intro-accueil {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.intro-accueil-right {
  max-width: 375px;
  margin: 0 0 0 auto;
  position: relative;
}
@media only screen and (min-width: 48em) {
  .intro-accueil-right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 50%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 78em) {
  .intro-accueil-right {
    width: 57%;
  }
}
@media only screen and (min-width: 103.125em) {
  .intro-accueil-right {
    width: 1050px;
  }
}
.intro-accueil-right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background: url("/images/_v2/shape/shape-diapo.svg") no-repeat center;
  background-size: auto 100%;
  z-index: -1;
  width: 336.5px;
  height: 259.8px;
}
@media only screen and (min-width: 78em) {
  .intro-accueil-right::before {
    width: 525.5px;
    height: 404.8px;
    left: -17px;
  }
}
@media only screen and (min-width: 103.125em) {
  .intro-accueil-right::before {
    width: 833.1px;
    height: 663px;
    left: 0;
    background-position: 30px top;
    top: 15px;
  }
}
.intro-accueil-right svg {
  margin: 0 -30px;
}
@media only screen and (min-width: 90em) {
  .intro-accueil-right svg {
    margin: -10px 3px 0 0;
  }
}
.intro-accueil-right .avis-accueil {
  position: absolute;
  top: 38px;
  left: 49px;
  text-align: center;
  color: #fff;
  width: 110px;
  height: 110px;
  display: block;
  background: #d92d29;
  border-radius: 50%;
  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-direction: column;
          flex-direction: column;
  z-index: 2;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (min-width: 78em) {
  .intro-accueil-right .avis-accueil {
    width: 185px;
    height: 185px;
    margin: 47px auto;
  }
}
@media only screen and (min-width: 103.125em) {
  .intro-accueil-right .avis-accueil {
    top: 90px;
    left: 160px;
  }
}
.intro-accueil-right .avis-accueil:hover {
  background: rgb(184.4476190476, 36.2, 32.7523809524);
  -webkit-box-shadow: -4px 7px 27px 0 rgba(0, 0, 0, 0.13);
          box-shadow: -4px 7px 27px 0 rgba(0, 0, 0, 0.13);
}
.intro-accueil-right .avis-accueil .note::before {
  height: 13px;
  background-size: auto 100%;
  margin: 0;
  display: inherit;
  top: 0;
}
@media only screen and (min-width: 78em) {
  .intro-accueil-right .avis-accueil .note::before {
    height: 22px;
  }
}
.intro-accueil-right .avis-accueil .chiffre {
  font-size: 34px;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: bold;
  line-height: 1;
}
@media only screen and (min-width: 78em) {
  .intro-accueil-right .avis-accueil .chiffre {
    font-size: 45px;
  }
}
.intro-accueil-right .avis-accueil .nombre {
  font-size: 10px;
}
@media only screen and (min-width: 78em) {
  .intro-accueil-right .avis-accueil .nombre {
    font-size: 15px;
    margin: 2px 0 10px;
  }
}
.intro-accueil-right .avis-accueil .link {
  font-style: italic;
  font-size: 8px;
}
@media only screen and (min-width: 78em) {
  .intro-accueil-right .avis-accueil .link {
    font-size: 12px;
    margin-top: 10px;
  }
}
.intro-accueil-team {
  display: none;
  z-index: 12;
}
@media only screen and (min-width: 78em) {
  .intro-accueil-team {
    display: block;
    position: absolute;
    right: 130px;
    bottom: 100px;
  }
  .intro-accueil-team::after {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0.94;
    border-radius: 15px;
    -webkit-box-shadow: 0 2px 38px 0 rgba(0, 0, 0, 0.5);
            box-shadow: 0 2px 38px 0 rgba(0, 0, 0, 0.5);
    background-color: #e6f6ff;
    position: absolute;
    right: -10px;
    bottom: -10px;
    z-index: -1;
  }
  .intro-accueil-team-inner {
    position: relative;
    z-index: 2;
    background-color: #fff;
    border-radius: 15px;
    -webkit-box-shadow: 0 2px 38px 0 rgba(0, 0, 0, 0.5);
            box-shadow: 0 2px 38px 0 rgba(0, 0, 0, 0.5);
    padding: 18px 50px 30px;
  }
  .intro-accueil-team p {
    margin: 0 0 20px;
    text-align: center;
    font-size: 15px;
    text-align: center;
    color: #000;
    font-family: "din", Trebuchet MS, sans-serif;
    font-weight: bold;
    line-height: 1.2;
  }
  .intro-accueil-team ul {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .intro-accueil-team ul li {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #d92d29;
    overflow: hidden;
    margin: 0 -20px 0 0;
    font-family: "din", Trebuchet MS, sans-serif;
    font-weight: 500;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    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;
  }
  .intro-accueil-team ul li:last-child {
    padding-bottom: 5px;
  }
  .intro-accueil-team ul li img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 103.125em) {
  .intro-accueil-team {
    right: 254px;
    bottom: 120px;
  }
}
.intro-accueil-left {
  margin-top: 30px;
  padding: 0 8%;
}
@media only screen and (min-width: 48em) {
  .intro-accueil-left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 50%;
    padding: 0 60px 0 8%;
  }
}
@media only screen and (min-width: 64em) {
  .intro-accueil-left {
    padding: 0 60px 0 4%;
    margin-top: 50px;
  }
}
@media only screen and (min-width: 78em) {
  .intro-accueil-left {
    width: 43%;
    margin-top: 84px;
  }
}
@media only screen and (min-width: 103.125em) {
  .intro-accueil-left {
    width: calc(100% - 1050px);
    margin-top: 100px;
  }
}
@media only screen and (min-width: 120em) {
  .intro-accueil-left {
    width: 28%;
    margin: 100px 0 0 auto;
    padding: 0;
  }
}
.intro-accueil-left h2 {
  margin: 0 0 20px;
  font-size: 45px;
  line-height: 1.11;
}
@media only screen and (min-width: 103.125em) {
  .intro-accueil-left h2 {
    font-size: 71px;
    line-height: 1.23;
    margin-bottom: 40px;
  }
}
.intro-accueil-left h3 {
  font-size: 22px;
  line-height: 1.36;
  color: #000;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: 400;
  margin: 20px 0 36px;
}
@media only screen and (min-width: 103.125em) {
  .intro-accueil-left h3 {
    font-size: 32px;
    line-height: 1.41;
    margin-bottom: 60px;
  }
}
.intro-accueil-left h3 strong {
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: 500;
}
.intro-accueil-left .link-more {
  margin: 0 -5px;
}
@media only screen and (min-width: 120em) {
  .intro-accueil-left .link-more {
    margin: 0 -130px 0 -5px;
  }
}
.intro-accueil-left .link-more a {
  margin: 0 5px 10px;
}
@media only screen and (min-width: 78em) {
  .intro-accueil-left .link-more a {
    font-size: 20px;
    border-radius: 37.5px;
    padding: 18px 31px 21px;
  }
}

.short-list {
  padding: 0 4%;
  margin: 120px 0 80px;
}
@media only screen and (min-width: 103.125em) {
  .short-list {
    margin-top: 170px;
  }
}
@media only screen and (min-width: 48em) {
  .short-list-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (min-width: 64em) {
  .short-list-inner {
    margin: 0 -15px;
  }
}
@media only screen and (min-width: 103.125em) {
  .short-list-inner {
    max-width: 1470px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 48em) {
  .short-list-item {
    width: calc(50% - 30px);
    margin: 0 15px;
  }
}
@media only screen and (min-width: 78em) {
  .short-list-item {
    width: calc(25% - 30px);
    position: relative;
  }
  .short-list-item:hover h2 {
    background: #d92d29;
  }
  .short-list-item:hover ul {
    opacity: 1;
    visibility: visible;
  }
}
.short-list-item h2 {
  border-radius: 15px;
  -webkit-box-shadow: 0 22px 40px -27px rgba(0, 0, 0, 0.2);
          box-shadow: 0 22px 40px -27px rgba(0, 0, 0, 0.2);
  background-color: #6dcaff;
  font-size: 26px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.71);
  text-align: center;
  padding: 204px 4% 33px;
  position: relative;
  margin: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (min-width: 78em) {
  .short-list-item h2 {
    font-size: 32px;
    line-height: 1;
    padding: 209px 30px 42px;
  }
}
@media only screen and (min-width: 103.125em) {
  .short-list-item h2 {
    font-size: 38px;
    padding: 243px 30px 48px;
  }
}
.short-list-item h2::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 243px;
  width: 208px;
}
@media only screen and (min-width: 103.125em) {
  .short-list-item h2::before {
    top: -110px;
    height: 309px;
    width: 264px;
  }
}
.short-list-item h2::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url("/images/_v2/icon/icon-chevron-down-white.svg") no-repeat center;
  background-size: 100%;
  width: 20px;
  height: 9px;
}
.short-list-item h2 strong {
  color: #fff;
}
@media only screen and (min-width: 78em) {
  .short-list-item h2 strong {
    display: block;
  }
}
.short-list-item h2.open {
  background: #d92d29;
}
.short-list-item ul {
  display: none;
  margin: 0;
  padding: 30px 15px;
  width: 100%;
}
@media only screen and (min-width: 78em) {
  .short-list-item ul {
    display: block;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    height: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    width: calc(100% - 30px);
  }
}
.short-list-item ul li {
  margin: 8px 0;
}
.short-list-item ul li a {
  text-align: center;
  display: block;
  border-radius: 4px;
  background-color: #e6f6ff;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #5c5c5c;
  padding: 11px 20px;
  line-height: 1;
}
.short-list-item ul li a:hover {
  background-color: #5c5c5c;
  color: #fff;
  text-decoration: none;
}
.short-list-item.credit {
  margin-bottom: 70px;
}
.short-list-item.credit h2::before {
  background: url("/images/_v2/illu/cr-dit-immobilier.svg") no-repeat center;
  background-size: contain;
}
.short-list-item.assurance {
  margin-bottom: 63px;
}
.short-list-item.assurance h2::before {
  background: url("/images/_v2/illu/assurance-emprunteur.svg") no-repeat center;
  background-size: contain;
  height: 217px;
  width: 170px;
  top: -27px;
}
@media only screen and (min-width: 103.125em) {
  .short-list-item.assurance h2::before {
    height: 300px;
    width: 234px;
    top: -105px;
  }
}
.short-list-item.rachat {
  margin-bottom: 60px;
}
@media only screen and (min-width: 48em) {
  .short-list-item.rachat {
    margin-bottom: 0;
  }
}
.short-list-item.rachat h2::before {
  background: url("/images/_v2/illu/rachat-de-cr-dit.svg") no-repeat center;
  background-size: contain;
  height: 201px;
  width: 208px;
  top: -12px;
}
@media only screen and (min-width: 103.125em) {
  .short-list-item.rachat h2::before {
    height: 275px;
    width: 284px;
    top: -80px;
  }
}
.short-list-item.regroupement h2::before {
  background: url("/images/_v2/illu/regroupement-de-cr-dit.svg") no-repeat center;
  background-size: contain;
  height: 212px;
  width: 186px;
  top: -26px;
}
@media only screen and (min-width: 103.125em) {
  .short-list-item.regroupement h2::before {
    height: 304px;
    width: 267px;
    top: -100px;
  }
}

@media only screen and (min-width: 48em) {
  .equipe-accueil-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 78em) {
  .equipe-accueil-inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (min-width: 103.125em) {
  .equipe-accueil {
    margin-top: 200px;
  }
  .equipe-accueil-inner {
    max-width: 1440px;
    margin: 0 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.equipe-accueil-left {
  padding: 0 8%;
}
@media only screen and (min-width: 48em) {
  .equipe-accueil-left {
    width: 50%;
    padding: 0 70px 0 50px;
  }
}
@media only screen and (min-width: 78em) {
  .equipe-accueil-left {
    width: 45%;
  }
}
@media only screen and (min-width: 103.125em) {
  .equipe-accueil-left {
    padding: 0;
    width: 600px;
  }
}
@media only screen and (min-width: 78em) {
  .equipe-accueil-left h2 {
    font-size: 48px;
    margin: 0;
  }
}
.equipe-accueil-left h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 8px;
  background: #d92d29;
  margin: 35px 0 40px;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
}
.equipe-accueil-left .btn-more {
  margin-top: 30px;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  .equipe-accueil-left .btn-more {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (min-width: 78em) {
  .equipe-accueil-left .btn-more {
    margin-top: 60px;
  }
}
.equipe-accueil-left .btn-more a:first-child {
  margin-bottom: 15px;
}
.equipe-accueil-right {
  padding: 90px 0;
  position: relative;
}
@media only screen and (min-width: 48em) {
  .equipe-accueil-right {
    width: 50%;
  }
}
@media only screen and (min-width: 78em) {
  .equipe-accueil-right {
    width: 55%;
  }
}
@media only screen and (min-width: 103.125em) {
  .equipe-accueil-right {
    width: 651px;
  }
}
.equipe-accueil-right::after {
  content: "";
  position: absolute;
  right: 0;
  top: -100px;
  height: 617.1px;
  width: 371px;
  background: url("/images/_v2/shape/shape-equipe.svg") no-repeat left top;
  background-size: auto 100%;
  z-index: -1;
}
@media only screen and (min-width: 48em) {
  .equipe-accueil-right::after {
    top: -86px;
    height: 617.1px;
    width: 443px;
  }
}
@media only screen and (min-width: 78em) {
  .equipe-accueil-right::after {
    top: -176px;
    height: 1035px;
    width: 12665px;
    left: -59px;
  }
}
.equipe-accueil .gallery {
  max-width: 320px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 78em) {
  .equipe-accueil .gallery {
    max-width: 100%;
  }
}
.equipe-accueil .gallery ul {
  position: relative;
  width: 17em;
  height: 17em;
  padding: 0;
  border-radius: 50%;
  list-style: none;
}
.equipe-accueil .gallery ul > * {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4em;
  height: 4em;
  margin: -2em;
}
.equipe-accueil .gallery ul > *:nth-of-type(1) {
  -webkit-transform: rotate(0deg) translate(8.5em) rotate(0deg);
          transform: rotate(0deg) translate(8.5em) rotate(0deg);
}
.equipe-accueil .gallery ul > *:nth-of-type(2) {
  -webkit-transform: rotate(72deg) translate(8.5em) rotate(-72deg);
          transform: rotate(72deg) translate(8.5em) rotate(-72deg);
}
.equipe-accueil .gallery ul > *:nth-of-type(3) {
  -webkit-transform: rotate(144deg) translate(8.5em) rotate(-144deg);
          transform: rotate(144deg) translate(8.5em) rotate(-144deg);
}
.equipe-accueil .gallery ul > *:nth-of-type(4) {
  -webkit-transform: rotate(216deg) translate(8.5em) rotate(-216deg);
          transform: rotate(216deg) translate(8.5em) rotate(-216deg);
}
.equipe-accueil .gallery ul > *:nth-of-type(5) {
  -webkit-transform: rotate(288deg) translate(8.5em) rotate(-288deg);
          transform: rotate(288deg) translate(8.5em) rotate(-288deg);
}
.equipe-accueil .gallery ul {
  background: #fff;
  margin: 0;
}
@media only screen and (min-width: 22.5em) {
  .equipe-accueil .gallery ul {
    position: relative;
    width: 20em;
    height: 20em;
    padding: 0;
    border-radius: 50%;
    list-style: none;
  }
  .equipe-accueil .gallery ul > * {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5em;
    height: 5em;
    margin: -2.5em;
  }
  .equipe-accueil .gallery ul > *:nth-of-type(1) {
    -webkit-transform: rotate(0deg) translate(10em) rotate(0deg);
            transform: rotate(0deg) translate(10em) rotate(0deg);
  }
  .equipe-accueil .gallery ul > *:nth-of-type(2) {
    -webkit-transform: rotate(72deg) translate(10em) rotate(-72deg);
            transform: rotate(72deg) translate(10em) rotate(-72deg);
  }
  .equipe-accueil .gallery ul > *:nth-of-type(3) {
    -webkit-transform: rotate(144deg) translate(10em) rotate(-144deg);
            transform: rotate(144deg) translate(10em) rotate(-144deg);
  }
  .equipe-accueil .gallery ul > *:nth-of-type(4) {
    -webkit-transform: rotate(216deg) translate(10em) rotate(-216deg);
            transform: rotate(216deg) translate(10em) rotate(-216deg);
  }
  .equipe-accueil .gallery ul > *:nth-of-type(5) {
    -webkit-transform: rotate(288deg) translate(10em) rotate(-288deg);
            transform: rotate(288deg) translate(10em) rotate(-288deg);
  }
}
@media only screen and (min-width: 78em) {
  .equipe-accueil .gallery ul {
    position: relative;
    width: 550px;
    height: 550px;
    padding: 0;
    border-radius: 50%;
    list-style: none;
  }
  .equipe-accueil .gallery ul > * {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    margin: -70px;
  }
  .equipe-accueil .gallery ul > *:nth-of-type(1) {
    -webkit-transform: rotate(0deg) translate(275px) rotate(0deg);
            transform: rotate(0deg) translate(275px) rotate(0deg);
  }
  .equipe-accueil .gallery ul > *:nth-of-type(2) {
    -webkit-transform: rotate(72deg) translate(275px) rotate(-72deg);
            transform: rotate(72deg) translate(275px) rotate(-72deg);
  }
  .equipe-accueil .gallery ul > *:nth-of-type(3) {
    -webkit-transform: rotate(144deg) translate(275px) rotate(-144deg);
            transform: rotate(144deg) translate(275px) rotate(-144deg);
  }
  .equipe-accueil .gallery ul > *:nth-of-type(4) {
    -webkit-transform: rotate(216deg) translate(275px) rotate(-216deg);
            transform: rotate(216deg) translate(275px) rotate(-216deg);
  }
  .equipe-accueil .gallery ul > *:nth-of-type(5) {
    -webkit-transform: rotate(288deg) translate(275px) rotate(-288deg);
            transform: rotate(288deg) translate(275px) rotate(-288deg);
  }
}
.equipe-accueil .gallery ul li {
  display: block;
  max-width: 100%;
  border-radius: 50%;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  overflow: hidden;
}
.equipe-accueil .gallery ul li:not(.legend) {
  border: solid 2px transparent;
  cursor: pointer;
}
.equipe-accueil .gallery ul li img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.equipe-accueil .gallery ul li.legend {
  -webkit-box-shadow: 0 2px 38px 0 rgba(0, 0, 0, 0.35);
          box-shadow: 0 2px 38px 0 rgba(0, 0, 0, 0.35);
  background-color: #6dcaff;
  width: 9em;
  height: 9em;
  margin: -4.5em;
  background-image: url("/images/_v2/illu/illu-clac-doitg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 53px;
}
@media only screen and (min-width: 30em) {
  .equipe-accueil .gallery ul li.legend {
    width: 12em;
    height: 12em;
    margin: -6em;
  }
}
@media only screen and (min-width: 78em) {
  .equipe-accueil .gallery ul li.legend {
    width: 318px;
    height: 318px;
    margin: -159px;
    background-size: 141px;
  }
}
.equipe-accueil .gallery ul li.legend .description {
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px;
  text-align: center;
  background-color: #d92d29;
  border-radius: 50%;
}
@media only screen and (min-width: 78em) {
  .equipe-accueil .gallery ul li.legend .description {
    padding: 40px;
  }
}
.equipe-accueil .gallery ul li.legend .description span {
  font-size: 12px;
  color: #fff;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: bold;
  line-height: 1.3;
}
@media only screen and (min-width: 78em) {
  .equipe-accueil .gallery ul li.legend .description span {
    font-size: 16px;
  }
}
.equipe-accueil .gallery ul li.legend .description span:first-child {
  font-size: 14px;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: bold;
  margin-bottom: 5px;
}
@media only screen and (min-width: 78em) {
  .equipe-accueil .gallery ul li.legend .description span:first-child {
    font-size: 26px;
    margin-bottom: 15px;
  }
}
.equipe-accueil .gallery ul li:hover:not(.legend) {
  -webkit-box-shadow: 0 34px 45px -17px rgba(0, 0, 0, 0.47);
          box-shadow: 0 34px 45px -17px rgba(0, 0, 0, 0.47);
  border: solid 2px #d92d29;
  width: 4.5em;
  height: 4.5em;
}
@media only screen and (min-width: 22.5em) {
  .equipe-accueil .gallery ul li:hover:not(.legend) {
    width: 6em;
    height: 6em;
  }
}
@media only screen and (min-width: 78em) {
  .equipe-accueil .gallery ul li:hover:not(.legend) {
    width: 150px;
    height: 150px;
  }
}
.equipe-accueil .gallery ul li.item-1:hover ~ .legend .item-1 {
  opacity: 1;
}
.equipe-accueil .gallery ul li.item-2:hover ~ .legend .item-2 {
  opacity: 1;
}
.equipe-accueil .gallery ul li.item-3:hover ~ .legend .item-3 {
  opacity: 1;
}
.equipe-accueil .gallery ul li.item-4:hover ~ .legend .item-4 {
  opacity: 1;
}
.equipe-accueil .gallery ul li.item-5:hover ~ .legend .item-5 {
  opacity: 1;
}
.equipe-accueil .gallery ul li.item-6:hover ~ .legend .item-6 {
  opacity: 1;
}
.equipe-accueil .gallery ul li.item-7:hover ~ .legend .item-7 {
  opacity: 1;
}
.equipe-accueil .gallery ul li.item-8:hover ~ .legend .item-8 {
  opacity: 1;
}
.equipe-accueil .gallery ul li.item-9:hover ~ .legend .item-9 {
  opacity: 1;
}

.banque-accueil {
  padding: 0 8%;
  margin: 80px 0 -20px;
}
@media only screen and (min-width: 78em) {
  .banque-accueil {
    margin: 130px 0 -20px;
  }
}
.banque-accueil-inner {
  max-width: 1160px;
  margin: 0 auto;
}
@media only screen and (min-width: 48em) {
  .banque-accueil h2 {
    text-align: center;
  }
}
@media only screen and (min-width: 78em) {
  .banque-accueil h2 {
    font-size: 48px;
  }
}
.banque-accueil h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 8px;
  background: #d92d29;
  margin: 35px 0 40px;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
}
@media only screen and (min-width: 48em) {
  .banque-accueil h2::after {
    margin: 35px auto 40px;
  }
}
.banque-accueil ul.gallery {
  margin: 0 -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media only screen and (min-width: 78em) {
  .banque-accueil ul.gallery {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 -20px;
  }
}
.banque-accueil ul.gallery li {
  height: 40px;
  margin: 0 10px;
  width: calc(50% - 20px);
}
@media only screen and (min-width: 78em) {
  .banque-accueil ul.gallery li {
    height: 80px;
    margin: 0 40px;
  }
}
.banque-accueil ul.gallery li img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}

.video-accueil {
  padding: 0 8%;
  margin: 80px 0;
}
@media only screen and (min-width: 48em) {
  .video-accueil {
    text-align: center;
  }
}
@media only screen and (min-width: 64em) {
  .video-accueil {
    margin-bottom: 160px;
  }
}
@media only screen and (min-width: 78em) {
  .video-accueil {
    max-width: 1160px;
    margin: 160px auto;
  }
}
@media only screen and (min-width: 103.125em) {
  .video-accueil {
    margin-top: 130px;
    padding: 0;
  }
}
@media only screen and (min-width: 78em) {
  .video-accueil h2 {
    font-size: 48px;
  }
}
.video-accueil h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 8px;
  background: #d92d29;
  margin: 35px 0 40px;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
}
@media only screen and (min-width: 48em) {
  .video-accueil h2::after {
    margin: 35px auto 40px;
  }
}
.video-accueil-bottom {
  margin: 40px -6% 0;
}
@media only screen and (min-width: 48em) {
  .video-accueil-bottom {
    margin-top: 60px;
  }
}
@media only screen and (min-width: 78em) {
  .video-accueil-bottom {
    margin: 60px 0 0;
  }
}
.video-accueil #vidwrap .tac_iframe,
.video-accueil #vidwrap iframe {
  max-width: 100%;
  width: 100% !important;
  height: 185px !important;
}
@media only screen and (min-width: 48em) {
  .video-accueil #vidwrap .tac_iframe,
  .video-accueil #vidwrap iframe {
    height: 350px !important;
  }
}
@media only screen and (min-width: 78em) {
  .video-accueil #vidwrap .tac_iframe,
  .video-accueil #vidwrap iframe {
    height: 450px !important;
  }
}
@media only screen and (min-width: 120em) {
  .video-accueil #vidwrap .tac_iframe,
  .video-accueil #vidwrap iframe {
    height: 596px !important;
  }
}
.video-accueil #vidwrap .tac_iframe {
  border-radius: 12px;
  -webkit-box-shadow: 0 58px 50px -42px rgba(0, 0, 0, 0.24);
          box-shadow: 0 58px 50px -42px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}
.video-accueil #vidwrap iframe {
  margin: 0;
}

@media only screen and (min-width: 64em) {
  .zone-texte-2-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 103.125em) {
  .zone-texte-2 {
    margin: 220px 0;
  }
  .zone-texte-2-inner {
    max-width: 1440px;
    margin: 0 auto;
  }
}
.zone-texte-2 h2 {
  font-size: 22px;
  margin: 0 0 10px;
}
.zone-texte-2 p {
  font-size: 14px;
}
@media only screen and (min-width: 103.125em) {
  .zone-texte-2 p {
    font-size: 18px;
    line-height: 1.56;
  }
}
.zone-texte-2-txt {
  padding: 40px 8% 100px;
  position: relative;
}
@media only screen and (min-width: 64em) {
  .zone-texte-2-txt {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 50%;
    padding: 0 8% 0 60px;
  }
}
@media only screen and (min-width: 103.125em) {
  .zone-texte-2-txt {
    width: 682px;
    padding: 0;
  }
}
.zone-texte-2-txt::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/images/_v2/shape/shape-accueil.svg") no-repeat center;
  background-size: auto 100%;
  z-index: -1;
}
@media only screen and (min-width: 64em) {
  .zone-texte-2-txt::after {
    left: -400px;
    background-position: left center;
    width: calc(100% + 400px);
    height: calc(100% + 120px);
    top: -60px;
  }
}
@media only screen and (min-width: 103.125em) {
  .zone-texte-2-txt::after {
    position: absolute;
    background-position: right top;
    height: 770px;
    width: 1381.6px;
    top: -120px;
  }
}
.zone-texte-2-img {
  margin-top: -50px;
  padding: 0 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 64em) {
  .zone-texte-2-img {
    padding-right: 0;
    margin: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50%;
  }
}
@media only screen and (min-width: 103.125em) {
  .zone-texte-2-img {
    width: calc(100% - 682px);
    padding: 0 80px 0 0;
  }
}
@media only screen and (min-width: 120em) {
  .zone-texte-2-img {
    width: calc(100% - 682px + 190px);
    margin-left: -190px;
  }
}
@media only screen and (min-width: 64em) {
  .zone-texte-2-img .elementPicture .txtLeft,
  .zone-texte-2-img .elementPicture figure {
    height: 100%;
  }
}
.zone-texte-2-img .elementPicture:first-child {
  width: 35%;
  margin-right: -5%;
}
@media only screen and (min-width: 64em) {
  .zone-texte-2-img .elementPicture:first-child {
    height: 80%;
  }
}
@media only screen and (min-width: 120em) {
  .zone-texte-2-img .elementPicture:first-child {
    width: 37%;
  }
}
.zone-texte-2-img .elementPicture:last-child {
  width: 70%;
}
@media only screen and (min-width: 64em) {
  .zone-texte-2-img .elementPicture:last-child {
    height: 100%;
  }
}
@media only screen and (min-width: 120em) {
  .zone-texte-2-img .elementPicture:last-child {
    width: 68%;
  }
}
.zone-texte-2-img figure {
  border-radius: 15px;
  -webkit-box-shadow: -40px 54px 48px -39px rgba(0, 0, 0, 0.19);
          box-shadow: -40px 54px 48px -39px rgba(0, 0, 0, 0.19);
  overflow: hidden;
}
.zone-texte-2-img figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.agences-accueil {
  background: #272324;
  position: relative;
  padding: 120px 8% 75px;
  margin-top: 275px;
}
@media only screen and (min-width: 64em) {
  .agences-accueil {
    padding: 0 8% 75px;
    margin-top: 230px;
  }
  .agences-accueil-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 78em) {
  .agences-accueil {
    margin-top: 270px;
  }
}
@media only screen and (min-width: 103.125em) {
  .agences-accueil {
    margin-top: 400px;
    padding-bottom: 30px;
  }
  .agences-accueil-inner {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    top: -120px;
  }
}
.agences-accueil::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 0;
  height: 100px;
  width: 100%;
  background: url("/images/_v2/shape/shape-agences.png") no-repeat top right;
  background-size: 100% 100%;
  z-index: -1;
}
@media only screen and (min-width: 78em) {
  .agences-accueil::before {
    height: 200px;
  }
}
@media only screen and (min-width: 103.125em) {
  .agences-accueil::before {
    top: -199px;
  }
}
.agences-accueil img {
  width: 297px;
  height: 297px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 38px 38px 0 rgba(0, 0, 0, 0.42);
          box-shadow: 0 38px 38px 0 rgba(0, 0, 0, 0.42);
  position: absolute;
  top: -185px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (min-width: 64em) {
  .agences-accueil img {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
  }
}
@media only screen and (min-width: 78em) {
  .agences-accueil img {
    width: 515px;
    height: 515px;
    margin-top: -150px;
  }
}
@media only screen and (min-width: 103.125em) {
  .agences-accueil img {
    margin-left: 85px;
  }
}
@media only screen and (min-width: 64em) {
  .agences-accueil .elementText {
    padding-left: 60px;
    width: 100%;
  }
}
@media only screen and (min-width: 103.125em) {
  .agences-accueil .elementText {
    padding-left: 126px;
  }
}
.agences-accueil h2 {
  color: #fff;
  margin: 36px 0 34px;
}
@media only screen and (min-width: 103.125em) {
  .agences-accueil h2 {
    font-size: 40px;
  }
}
.agences-accueil p {
  color: #fff;
  font-size: 18px;
  line-height: 1.67;
}
@media only screen and (min-width: 103.125em) {
  .agences-accueil p {
    font-size: 22px;
    line-height: 1.55;
  }
}
.agences-accueil p:last-child {
  margin: 58px 0 0;
  text-align: center;
}
@media only screen and (min-width: 64em) {
  .agences-accueil p:last-child {
    text-align: left;
  }
}

.parrainage-accueil {
  background: #6dcaff;
  padding: 47px 8% 300px;
  position: relative;
}
.parrainage-accueil-inner {
  z-index: 2;
  position: relative;
}
@media only screen and (min-width: 64em) {
  .parrainage-accueil {
    padding: 60px 8%;
  }
  .parrainage-accueil-inner {
    max-width: 1440px;
    margin: 0 auto;
  }
  .parrainage-accueil .elementText {
    max-width: 400px;
  }
}
@media only screen and (min-width: 103.125em) {
  .parrainage-accueil {
    padding: 154px 0 148px;
  }
  .parrainage-accueil .elementText {
    max-width: 626px;
  }
}
.parrainage-accueil::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("/images/_v2/illu/parrainage.svg") no-repeat calc(50% + 80px) top;
  background-size: auto;
  width: 100%;
  height: 250px;
  background-size: 600px;
}
@media only screen and (min-width: 64em) {
  .parrainage-accueil::after {
    background-position: right top;
  }
}
@media only screen and (min-width: 103.125em) {
  .parrainage-accueil::after {
    height: 494px;
    background-size: 943px;
    background-position: calc(100% + 150px) 38px;
  }
}
.parrainage-accueil h2,
.parrainage-accueil p {
  color: #fff;
}
.parrainage-accueil h2 {
  margin: 0 0 25px;
}
@media only screen and (min-width: 103.125em) {
  .parrainage-accueil h2 {
    font-size: 40px;
  }
}
.parrainage-accueil p {
  font-size: 18px;
  line-height: 1.67;
}
@media only screen and (min-width: 103.125em) {
  .parrainage-accueil p {
    font-size: 22px;
    line-height: 1.55;
  }
}
.parrainage-accueil p:last-child {
  margin: 60px 0 0;
  text-align: center;
}
@media only screen and (min-width: 64em) {
  .parrainage-accueil p:last-child {
    margin-top: 30px;
    text-align: left;
  }
}
@media only screen and (min-width: 64em) {
  .parrainage-accueil p:last-child {
    margin-top: 60px;
  }
}

.alaune {
  padding: 92px 4% 60px;
  position: relative;
  margin-top: 28px;
}
@media only screen and (min-width: 78em) {
  .alaune {
    padding: 0 4%;
    margin: 100px 0;
  }
}
@media only screen and (min-width: 103.125em) {
  .alaune {
    margin-top: 160px;
  }
}
@media only screen and (min-width: 64em) {
  .alaune-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 103.125em) {
  .alaune-inner {
    max-width: 1440px;
    margin: 0 auto;
  }
}
.alaune::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 981px;
  background: url("/images/_v2/shape/shape-actus.svg") no-repeat calc(50% - 200px) top;
  z-index: -1;
}
@media only screen and (min-width: 78em) {
  .alaune::before {
    top: -217px;
    width: 624px;
    height: 921px;
    background-position: right bottom;
  }
}
.alaune-left {
  border-radius: 15px;
  background-color: #272324;
  padding: 45px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 64em) {
  .alaune-left {
    width: 40%;
  }
}
@media only screen and (min-width: 78em) {
  .alaune-left {
    width: 45%;
  }
}
@media only screen and (min-width: 103.125em) {
  .alaune-left {
    width: 655px;
    padding: 76px 51px;
  }
}
.alaune-left .h2-like {
  font-size: 18px;
  color: #fff;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: 400;
  line-height: 1.2;
}
@media only screen and (min-width: 78em) {
  .alaune-left .h2-like {
    font-size: 25px;
  }
}
.alaune-left h3 {
  font-size: 26px;
  line-height: 1.62;
  color: #fff;
  margin: 0;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: bold;
}
@media only screen and (min-width: 78em) {
  .alaune-left h3 {
    font-size: 40px;
    line-height: 1.3;
    margin: 28px 0 0;
  }
}
.alaune-right {
  border-radius: 15px;
  -webkit-box-shadow: 51px 54px 53px -21px rgba(0, 0, 0, 0.08);
          box-shadow: 51px 54px 53px -21px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  padding: 92px 26px 46px;
  margin-top: -36px;
  z-index: 1;
  position: relative;
  background-image: url("/images/_v2/icon/icon-chevron-down-blue.svg");
  background-repeat: no-repeat;
  background-position: center 56px;
}
@media only screen and (min-width: 64em) {
  .alaune-right {
    width: calc(60% + 30px);
    margin: 0 0 0 -30px;
    padding-left: 90px;
    background-image: url("/images/_v2/icon/icon-chevron-right-blue.svg");
    background-position: 50px center;
    background-size: 14px auto;
  }
}
@media only screen and (min-width: 78em) {
  .alaune-right {
    width: calc(55% + 30px);
  }
}
@media only screen and (min-width: 103.125em) {
  .alaune-right {
    width: calc(100% - 655px + 30px);
    padding: 124px 82px 55px 104px;
  }
}
.alaune-right a {
  color: #6dcaff;
}
.alaune-right p {
  font-size: 18px;
  line-height: 1.44;
  color: #5c5c5c;
}
@media only screen and (min-width: 103.125em) {
  .alaune-right p {
    font-size: 22px;
    line-height: 1.55;
    color: #272324;
  }
}
.alaune-right p:last-child {
  margin-top: 40px;
  margin-bottom: 0;
}

@media only screen and (min-width: 64em) {
  #actuAccueil {
    padding: 0 4%;
  }
}
@media only screen and (min-width: 90em) {
  #actuAccueil .elementWidgetGetBoxBlogHighlightPosts {
    max-width: 1440px;
    margin: 0 auto;
  }
}
#actuAccueil .widgetContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  padding: 0 4% 42px;
}
@media only screen and (min-width: 64em) {
  #actuAccueil .widgetContainer {
    padding: 0 0 42px;
    margin: 0 -15px;
  }
}
@media only screen and (min-width: 78em) {
  #actuAccueil .widgetContainer {
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 103.125em) {
  #actuAccueil .widgetContainer {
    margin: 0 -32px;
    padding-bottom: 98px;
  }
}
#actuAccueil .widgetContainer .widgetHighlightPost {
  width: 285px;
  min-width: 285px;
  margin-right: 25px;
}
@media only screen and (min-width: 64em) {
  #actuAccueil .widgetContainer .widgetHighlightPost {
    width: calc(33.333% - 30px);
    margin: 0 15px;
    max-width: 100%;
    min-width: 0;
  }
}
@media only screen and (min-width: 103.125em) {
  #actuAccueil .widgetContainer .widgetHighlightPost {
    width: calc(33.333% - 64px);
    margin: 0 32px;
  }
}
#actuAccueil .linkMore {
  text-align: center;
}

.fb-accueil {
  padding: 60px 8% 85px;
  background-color: #e6f6ff;
  position: relative;
  margin-top: 100px;
}
@media only screen and (min-width: 64em) {
  .fb-accueil {
    margin-top: 130px;
    padding-top: 10px;
  }
}
@media only screen and (min-width: 78em) {
  .fb-accueil {
    margin-top: 160px;
    padding-bottom: 140px;
  }
}
@media only screen and (min-width: 103.125em) {
  .fb-accueil {
    margin-top: 200px;
    padding-bottom: 175px;
  }
}
.fb-accueil-inner {
  max-width: 340px;
  margin: 0 auto;
}
@media only screen and (min-width: 64em) {
  .fb-accueil-inner {
    max-width: 100%;
    margin: 0;
    text-align: center;
  }
  .fb-accueil-inner h2.h1::after {
    margin-left: auto;
    margin-right: auto;
  }
}
.fb-accueil::before {
  content: "";
  position: absolute;
  left: 0;
  top: -100px;
  height: 100px;
  width: 100%;
  background: url("/images/_v2/shape/shape-fb.svg") no-repeat center bottom;
  background-size: 100%;
}
.fb-accueil .fb-page {
  max-width: 500px;
  margin: 0 auto;
}
.fb-accueil iframe {
  margin: 0;
}
.fb-accueil .link-more {
  text-align: center;
  margin-top: 50px;
}
@media only screen and (min-width: 103.125em) {
  .fb-accueil .link-more {
    margin-top: 60px;
  }
}

/*--------------------------------

	Page menu

*/
.page-menu-item .fit-cover {
  border-radius: 6px;
  overflow: hidden;
  height: 200px;
}
@media only screen and (min-width: 78em) {
  .page-menu-item .fit-cover {
    height: 250px;
  }
}
.page-menu-item h2 {
  margin: 20px 0 0;
}

/*--------------------------------

	Page Avis

*/
.intro-avis p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 48em) {
  .intro-avis {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.intro-avis .avis {
  position: relative;
  text-align: center;
  color: #fff;
  width: 110px;
  height: 110px;
  display: block;
  background: #d92d29;
  border-radius: 50%;
  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-direction: column;
          flex-direction: column;
  z-index: 2;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  margin: 0 auto 30px;
  padding-bottom: 10px;
}
@media only screen and (min-width: 48em) {
  .intro-avis .avis {
    margin: 0 30px 0 0;
  }
}
@media only screen and (min-width: 64em) {
  .intro-avis .avis {
    margin-right: 50px;
  }
}
@media only screen and (min-width: 78em) {
  .intro-avis .avis {
    width: 185px;
    height: 185px;
    min-width: 185px;
  }
}
.intro-avis .avis:hover {
  background: rgb(184.4476190476, 36.2, 32.7523809524);
  -webkit-box-shadow: -4px 7px 27px 0 rgba(0, 0, 0, 0.13);
          box-shadow: -4px 7px 27px 0 rgba(0, 0, 0, 0.13);
}
.intro-avis .avis .note::before {
  height: 13px;
  background-size: auto 100%;
  margin: 0;
  display: inherit;
  top: 0;
}
@media only screen and (min-width: 78em) {
  .intro-avis .avis .note::before {
    height: 22px;
  }
}
.intro-avis .avis .chiffre {
  font-size: 34px;
  font-family: "din", Trebuchet MS, sans-serif;
  font-weight: bold;
  line-height: 1;
}
@media only screen and (min-width: 78em) {
  .intro-avis .avis .chiffre {
    font-size: 45px;
  }
}
.intro-avis .avis .nombre {
  font-size: 10px;
  margin: 2px 0 5px;
}
@media only screen and (min-width: 78em) {
  .intro-avis .avis .nombre {
    font-size: 15px;
  }
}

.list-avis {
  margin-top: 40px;
}
@media only screen and (min-width: 78em) {
  .list-avis {
    margin-top: 60px;
  }
}
.list-avis ul li {
  border-radius: 12px;
  border: solid 1px rgba(39, 35, 36, 0.08);
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
  padding: 20px 16px;
}
@media only screen and (min-width: 78em) {
  .list-avis ul li {
    padding: 24px 28px;
  }
}
@media only screen and (min-width: 90em) {
  .list-avis ul li {
    padding: 24px 43px 24px 28px;
  }
}
.list-avis ul li span {
  display: block;
  line-height: 1.3;
}
.list-avis ul li span.nom {
  font-size: 14px;
  font-weight: 700;
  color: #272324;
  margin-bottom: 5px;
}
@media only screen and (min-width: 78em) {
  .list-avis ul li span.nom {
    font-size: 16px;
  }
}
.list-avis ul li span.date {
  font-size: 10px;
  color: rgba(39, 35, 36, 0.7);
  display: block;
  margin: 5px 0;
}
@media only screen and (min-width: 78em) {
  .list-avis ul li span.date {
    font-size: 12px;
  }
}
.list-avis ul li span.link-agence {
  font-size: 12px;
  line-height: 1.2;
  display: block;
}
@media only screen and (min-width: 78em) {
  .list-avis ul li span.link-agence {
    font-size: 14px;
  }
}
.list-avis ul li span.note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: bold;
  color: #272324;
}
.list-avis ul li span.note::before {
  top: 0;
}
.list-avis ul li span.avis {
  font-size: 12px;
  color: rgba(39, 35, 36, 0.7);
  margin-top: 15px;
}
@media only screen and (min-width: 78em) {
  .list-avis ul li span.avis {
    font-size: 14px;
  }
}
.list-avis ul li div:first-child {
  width: 88px;
}
@media only screen and (min-width: 78em) {
  .list-avis ul li div:first-child {
    width: 260px;
  }
}
.list-avis ul li div:last-child {
  width: calc(100% - 88px);
  padding-left: 25px;
}
@media only screen and (min-width: 78em) {
  .list-avis ul li div:last-child {
    width: calc(100% - 260px);
  }
}

/*--------------------------------

	UTILITIES
	Ces fichiers contiennent les classes utiles

*/
/*--------------------------------

	Classes utilisables telles quelles dans fichier html

*/
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

.hide {
  display: none !important;
  visibility: hidden;
}

.block {
  display: block !important;
}

.i-block {
  display: inline-block !important;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.flex-around {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex-evenly {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.items-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.o-hidden {
  overflow: hidden !important;
}

.viewproduct {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  text-indent: -9999px;
}
.viewproduct a {
  width: 100%;
  height: 100%;
  display: block;
}

.bloc, .bloc-faq {
  border-radius: 8px;
  -webkit-box-shadow: 0 19px 36px -8px rgba(0, 0, 0, 0.07);
          box-shadow: 0 19px 36px -8px rgba(0, 0, 0, 0.07);
  background-color: #fff;
  padding: 20px;
  font-size: 16px;
  line-height: 1.44;
  color: rgba(39, 35, 36, 0.7);
}
.bloc p + h3, .bloc-faq p + h3 {
  margin: 20px 0 35px;
}
.bloc a, .bloc-faq a {
  color: #6dcaff;
}
@media only screen and (min-width: 78em) {
  .bloc, .bloc-faq {
    padding: 27px;
  }
}

.bold {
  font-weight: 700;
}

.f-right {
  float: right !important;
}

.f-left {
  float: left !important;
}

.f-none {
  float: none !important;
}

.align-right {
  text-align: right;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.fz-normal {
  font-size: 16px !important;
}

.fz-xxx-small {
  font-size: 8px !important;
}

.fz-small {
  font-size: 14px !important;
}

.fz-medium {
  font-size: 18px !important;
}

.fz-large {
  font-size: 24px !important;
}

.pos-rel {
  position: relative;
}

.pos-abs {
  position: absolute;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.ml0 {
  margin-left: 0 !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pr0 {
  padding-right: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pl0 {
  padding-left: 0 !important;
}

.rotate-0 {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.rotate-90 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.rotate-180 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.rotate-270 {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.rotate--90 {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.rotate--180 {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.rotate--270 {
  -webkit-transform: rotate(-270deg);
          transform: rotate(-270deg);
}

.icon-container, .icon-right, .icon-left {
  display: inline;
  position: relative;
}
.icon-container .icon, .icon-right .icon, .icon-left .icon {
  position: absolute;
  top: 25px;
}

.icon-left .icon {
  left: 20px;
}

.icon-right .icon {
  right: 20px;
}

.integration_toolbar {
  position: fixed !important;
  width: 220px !important;
}

div[style*="display: block; visibility: visible;"] {
  position: relative !important;
  top: 0 !important;
  visibility: hidden !important;
  height: 0 !important;
}

.icon {
  font-size: inherit;
}
.icon::before {
  font-size: 8px;
}

.color1 {
  color: #d92d29;
}

.color2 {
  color: #6dcaff;
}

.color3 {
  color: #5c5c5c;
}

.exergue {
  font-size: 18px;
  line-height: 1.67;
  color: #5c5c5c;
}
@media only screen and (min-width: 78em) {
  .exergue {
    font-size: 22px;
    line-height: 1.55;
  }
}

/*--------------------------------

	PRINT
	Ces fichiers contiennent les styles pour l'impression

*/
/*--------------------------------

	Style lors de l'impression

*/
@media print {
  *,
  *:before,
  *:after,
  *:first-letter,
  p:first-line,
  div:first-line,
  blockquote:first-line,
  li:first-line {
    background: transparent !important;
    color: #000 !important; /* Black prints faster:
http://www.sanbeiji.com/archives/953 */
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a {
    page-break-inside: avoid;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote,
  table {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  img {
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  ul,
  ol,
  dl {
    page-break-before: avoid;
  }
}
/*# sourceMappingURL=styles.css.map */