/*!
Theme Name: vandb-rh
Theme URI: https://mediapilote.com
Author: Mediapilote
Author URI: https://mediapilote.com
Description: Thème Mediapilote pour le site VandB RH
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: vandb-rh
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

vandb-rh is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/


:root {
	--pink: #E34669;
	--yellow: #F1BB25;
	--blue: #2A3271;
	--blueDuck : #00B1B1;
	--blueDark : #285059;
	--maxWidth: 1600px;
}

::-moz-selection {background-color: var(--yellow); color: var(--blue);}
::selection {background-color: var(--yellow); color: var(--blue);}

body {
	margin: 0;
	font-family: "Montserrat";
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#page {
	background-color: #fff;
	overflow: hidden;
}

main {

}

h1 {
	opacity: 0;
}

h2 {
	color: #2F2F2F;
	opacity: 0;
}

p {
	opacity: 0;
}

video::-webkit-media-controls-overlay-play-button {
  display: none;
}

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

.flex-col {
	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;
}

.no-marge-top {
	margin-top: 0!important;
}

.no-marge {
	margin: 0!important;
}

.word {
	overflow: hidden;
	line-height: 100%;
}

.word div {
 	-webkit-transform: translateZ(0);
 	        transform: translateZ(0);
}

.button, .wp-block-button__link {
	font-family: "Montserrat";
	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;
	text-align: center;
	padding: 15px 20px;
	font-size: 15px;
	font-weight: 900;
	text-transform: uppercase;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	-webkit-transition: -webkit-filter 0.5s;
	transition: -webkit-filter 0.5s;
	-o-transition: filter 0.5s;
	transition: filter 0.5s;
	transition: filter 0.5s, -webkit-filter 0.5s;
	-webkit-filter: invert(0);
	        filter: invert(0);
	-webkit-box-shadow: 0 3px 6px 0 rgba(0,0,0,0.16);
	        box-shadow: 0 3px 6px 0 rgba(0,0,0,0.16);
	border-radius: 0;
}

.button:hover, .wp-block-button__link:hover {
	-webkit-filter: invert(1);
	        filter: invert(1);
}

.button.pink {
	background-color: var(--pink);
	color: #fff;
}

.page-progession {
	display: none;
	position: fixed;
	z-index: 10;
	bottom: 0;
	left: 0;
	width: 100vw;
	height: 3px;
}

.page-progession .barre {
	width: 100%;
	height: 100%;
	background-color: var(--yellow);
	-webkit-transform: scaleX(0);
	    -ms-transform: scaleX(0);
	        transform: scaleX(0);
	-webkit-transform-origin: left;
	    -ms-transform-origin: left;
	        transform-origin: left;
}

.bandeau-text {
	position: relative;
	z-index: 3;
	font-size: 32px;
	font-weight: normal;
  padding: 25px 30px 25px 30px;
	letter-spacing: 4px;
	text-transform: uppercase;
	-webkit-transition: -webkit-transform 0.5s;
	transition: -webkit-transform 0.5s;
	-o-transition: transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s;
	opacity: 0;
}

.bandeau-text.big {
	font-size: 62px;
	letter-spacing: 25px;
  padding: 15px 20px 35px 35px;
}

.bandeau-text .text {
	overflow: hidden;
}

.bandeau-text .bg {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: rotate(-1deg);
	    -ms-transform: rotate(-1deg);
	        transform: rotate(-1deg);
	-webkit-box-shadow: 0 6px 6px 0 rgba(0,0,0,0.45);
	        box-shadow: 0 6px 6px 0 rgba(0,0,0,0.45);
}

.bandeau-text.yellow .bg {
	background-color: var(--yellow)
}
.bandeau-text.white .bg {
	background-color: #fff;
}
.bandeau-text.yellow {
	color: #fff;
}
.bandeau-text.white {
	color: var(--blue);
}
.bandeau-text.white.yellow-txt {
	color: var(--yellow);
}
.bandeau-text.white.blue-duck-txt {
	color: var(--blueDuck);
}
.bandeau-text.white.blue-dark-txt {
	color: var(--blueDark);
}

.site-header {
	position: fixed;
	z-index: 20;
	top: 0;
	left: 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;
	width: 100vw;
	height: 100px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.site-header.scroll-display {
	height: 50px;
	background-color: #212121;
}

.inner-header {
	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;
	width: calc(100% - 40px);
	max-width: var(--maxWidth);
	height: 100%;
	pointer-events: none;
}

.site-header .logo {
	width: 15%;
	max-width: 125px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	pointer-events: all;
}

.site-header.scroll-display .logo {
	max-width: unset;
	width: unset;
	height: 80%;
}

.site-header .logo img {
	max-width: 100%;
	height: auto;
}

.site-header.scroll-display .logo img {
	max-width: 100%;
	height: 100%;
}

.site-header .main-navigation {
	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;
	width: 60%;
}

.site-header .main-navigation .menu-menu-1-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 100%;
}

.site-header .main-navigation .menu {
	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: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}

.site-header .main-navigation .menu li {
	pointer-events: all;
}

.site-header .main-navigation .menu li a {
	position: relative;
	font-size: 15px;
	font-weight: 900;
	margin: 0 5px;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
}

.site-header .main-navigation .menu li a::after {
	content: '';
  position: absolute;
  top: 120%;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--pink);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.site-header .main-navigation .menu li a:hover::after {
	-webkit-transform: scaleX(1);
	    -ms-transform: scaleX(1);
	        transform: scaleX(1);
}

.site-header .main-navigation .menu .sub-menu {
	/*display: none;*/
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-ms-flex-line-pack: start;
	    align-content: flex-start;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 50%;
	width: 100%;
	padding: 100px 40px 20px 40px;
	list-style: none;
	max-height: 20vh;
	max-width: calc(var(--maxWidth) - 80px);
	-webkit-transform: translateX(-50%) translateY(-150%);
	    -ms-transform: translateX(-50%) translateY(-150%);
	        transform: translateX(-50%) translateY(-150%);
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.site-header .main-navigation .menu li:hover .sub-menu,
.site-header .main-navigation .menu li .sub-menu:hover {
	-webkit-transform: translateX(-50%) translateY(0%);
	    -ms-transform: translateX(-50%) translateY(0%);
	        transform: translateX(-50%) translateY(0%);
}

.site-header .main-navigation .menu .sub-menu::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 50%;
	width: 100vw;
	height: 100%;
	background-color: var(--blue);
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.site-header .main-navigation .menu .sub-menu li {
	padding: 12.5px;
	margin: 0 20px;
}

.site-header .main-navigation .menu .sub-menu li a {
	font-weight: 700;
	opacity: 0;
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;
}

.site-header .main-navigation .menu li:hover .sub-menu a,
.site-header .main-navigation .menu li .sub-menu:hover a {
	opacity: 1;
}

.site-header .main-navigation .menu .sub-menu li:first-child {
	width: auto;
	height: 20vh;
	pointer-events: none;
}

.site-header .main-navigation .menu .sub-menu li:first-child a {
	font-size: 50px;
	font-weight: 900;
}

.site-header .second-navigation {
	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;
	width: 20%;
	pointer-events: all;
}

.site-header .button-menu {
	width: 45%;
}

.site-header .social-medias {
	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;
	width: 45%;
}

.site-header .social-medias a {
	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;
	width: 100%;
	max-width: 15%;
}

.site-header .social-medias a img {
	max-width: 99%;
}

.parent-button {
	position:relative;
}

.childs-button {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
}

.parent-button:hover span {
	-webkit-filter: grayscale(1);
	        filter: grayscale(1);
	opacity: 0.8;
}

.parent-button:hover .childs-button {
	display: block;
}

@media only screen and (max-width: 1440px) {
	.childs-button {
		top: unset;
		bottom: 100%;
	}
}

/*.margin-header {
	margin-top: 100px;
}*/

.site-footer {
	position: relative;
	z-index: 9;
	width: 100%;
	background-color: #000;
	padding-bottom: 80px;
}

.site-footer::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
}

.site-info {
	position: relative;
	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: 40px 0;
	background-color: #000;
	font-size: 13px;
	color: #fff;
	padding-right: 20px;
	max-width: var(--maxWidth);
	padding-left: 30%;
	width: calc(70% - 20px);
	-ms-flex-flow: wrap;
	    flex-flow: wrap;
}

.site-info a {
	text-decoration: none;
	margin: 0 5px;
	color: #fff;
}

.picto-footer {
  position: absolute;
  left: 20px;
  top: -15%;
  height: 185%;
  width: 100px;
}

.picto-footer-2 {
	position: absolute;
	left: 140px;
	top: -15%;
	height: 185%;
	width: 15%;
}

.picto-footer img, .picto-footer-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.accueil {
	position: relative;
	width: 100vw;
	max-width: 100%;
	min-height: calc(100vh - 100px);
	padding: 50px 0;
	background-image: url(images/photo_header.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.accueil .filter {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
}

.accueil .accueil-content {
	position: relative;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 90%;
	max-width: var(--maxWidth);
	-webkit-transition: -webkit-transform 0.5s;
	transition: -webkit-transform 0.5s;
	-o-transition: transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s;
}

.page-template-template-accueil .accueil .accueil-content {
	z-index: 4;
}

.accueil h1 {
	position: relative;
  z-index: 4;
  font-size: 178px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  line-height: 105%;
	margin: 0;
  margin-top: -50px;
	margin-bottom: 50px;
  color: #fff;
}

.accueil h1 #txt-1 {
  -webkit-transform: translateY(-15%);
      -ms-transform: translateY(-15%);
          transform: translateY(-15%);
}

.accueil h1 #txt-2 {
	font-size: 245px;
  padding-left: 20px;
  -webkit-transform: translateY(-25%);
      -ms-transform: translateY(-25%);
          transform: translateY(-25%);
}

.accueil h1 .word {
	padding-left: 5px;
}

.accueil .search {
	width: 100%;
	max-width: 600px;
}

.accueil .search input[type="text"] {
	width: calc(70% - 40px);
	height: calc(100% - 30px);
	border: 0;
	padding: 15px 20px;
	font-size: 18px;
	font-weight: 700;
	color: var(--yellow);
}

.accueil .search input::-webkit-input-placeholder {
	font-size: 18px;
	font-weight: 100;
	color: #D9D9D9;
	letter-spacing: 1px;
}

.accueil .search input::-moz-placeholder {
	font-size: 18px;
	font-weight: 100;
	color: #D9D9D9;
	letter-spacing: 1px;
}

.accueil .search input:-ms-input-placeholder {
	font-size: 18px;
	font-weight: 100;
	color: #D9D9D9;
	letter-spacing: 1px;
}

.accueil .search input::-ms-input-placeholder {
	font-size: 18px;
	font-weight: 100;
	color: #D9D9D9;
	letter-spacing: 1px;
}

.accueil .search input::placeholder {
	font-size: 18px;
	font-weight: 100;
	color: #D9D9D9;
	letter-spacing: 1px;
}

.accueil .search input[type="submit"] {
	width: 30%;
	height: 100%;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.esprit {
	width: 100%;
	padding: 75px 0 25px 0;
}

.great-place {
	position: relative;
}

.great-place::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 200px;
	background-color: #F2EDED;
}

.esprit .esprit-content {
	position: relative;
	z-index: 2;
	width: 100%;
  max-width: 1060px;
  background-color: #fff;
	-webkit-box-shadow: 6px 6px 15px 0 rgba(0,0,0,0.22);
	        box-shadow: 6px 6px 15px 0 rgba(0,0,0,0.22);
	padding: 50px 50px;
	border-left: 32px solid var(--pink);
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin: 0 20px;
}

.page-template-template-accueil .esprit .esprit-content {
	z-index: 5;
}

.esprit h2 {
	font-size: 78px;
	font-weight: 900;
	color: var(--yellow);
	text-transform: uppercase;
	margin-top: 30px;
	margin-bottom: 10px;
	overflow: hidden;
}

.page-template-template-culture .esprit h2 {
	font-size: 78px;
	font-weight: 900;
	color: var(--yellow);
	text-transform: uppercase;
	margin-top: 30px;
	margin-bottom: 10px;
	overflow: hidden;
}

.esprit h2 .title-1 {
	margin-bottom: 20px;
	line-height: 100%;
}

.esprit h2 .title-2, .esprit h2 .title-3 {
	font-size: 154px;
	line-height: 100%;
}

.partenaires h2 {
	font-family: "Montserrat";
  font-size: 30px;
  font-weight: 700;
  color: #2F2F2F;
}

.esprit .image {
	position: absolute;
	bottom: 0;
	right: 0;
	-webkit-transform: translateX(50%);
	    -ms-transform: translateX(50%);
	        transform: translateX(50%);
	width: 40%;
	height: 70%;
}

.esprit .image img {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: bottom;
	   object-position: bottom;
}

.esprit p {
	font-family: "Lato";
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 1px;
	line-height: 140%;
	max-width: 80%;
	color: #2F2F2F;
}

.partenaires p {
	max-width: 100%;
}

.schpouiks {
	position: absolute;
  bottom: 100%;
  left: 50%;
  width: 30%;
  padding-top: 30%;
}

.esprit .schpouiks {
  bottom: 90%;
  left: 60%;
}

.schpouiks .schpouik {
	position: absolute;
	width: 20%;
	height: 100%;
	bottom: 0;
	left: 0;
	overflow: hidden;
}

.schpouiks .schpouik:nth-child(1) {
	-webkit-transform-origin: bottom;
	    -ms-transform-origin: bottom;
	        transform-origin: bottom;
	-webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
}

.schpouiks .schpouik:nth-child(2) {
	-webkit-transform-origin: bottom;
	    -ms-transform-origin: bottom;
	        transform-origin: bottom;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}

.schpouiks .schpouik:nth-child(3) {
	-webkit-transform-origin: bottom;
	    -ms-transform-origin: bottom;
	        transform-origin: bottom;
	-webkit-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	        transform: rotate(90deg);
}

.schpouiks div div {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 60%;
	background-color: var(--yellow);
	border-radius: 100px;
	-webkit-transform: scaleY(0);
	    -ms-transform: scaleY(0);
	        transform: scaleY(0);
}

.schpouiks-2 {
	position: absolute;
	bottom: 140%;
	left: 98.8%;
  width: 30%;
  padding-top: 30%;
	-webkit-transform-origin: center;
	    -ms-transform-origin: center;
	        transform-origin: center;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}

.schpouiks-2 .schpouik {
	position: absolute;
	width: 30%;
	height: 100%;
	bottom: 0;
	left: 0;
	overflow: hidden;
}

.schpouiks-2 .schpouik:nth-child(1) {
	-webkit-transform-origin: bottom;
	    -ms-transform-origin: bottom;
	        transform-origin: bottom;
	-webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
}

.schpouiks-2 .schpouik:nth-child(2) {
	-webkit-transform-origin: bottom;
	    -ms-transform-origin: bottom;
	        transform-origin: bottom;
	-webkit-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	        transform: rotate(90deg);
}

.schpouiks-2 .schpouik:nth-child(3) {
	-webkit-transform-origin: bottom;
	    -ms-transform-origin: bottom;
	        transform-origin: bottom;
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}

.schpouiks-2 .schpouik:nth-child(4) {
	-webkit-transform-origin: bottom;
	    -ms-transform-origin: bottom;
	        transform-origin: bottom;
	-webkit-transform: rotate(270deg);
	    -ms-transform: rotate(270deg);
	        transform: rotate(270deg);
}

.schpouiks-2 div div {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 75%;
	background-color: var(--yellow);
	border-radius: 100px;
	-webkit-transform-origin: bottom;
	    -ms-transform-origin: bottom;
	        transform-origin: bottom;
	-webkit-transform: scaleY(0);
	    -ms-transform: scaleY(0);
	        transform: scaleY(0);
}

.page-template-template-blog .next,
.page-template-template-accueil .next {
	position: absolute;
	z-index: 3;
	bottom: 10px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	font-size: 15px;
  font-weight: 900;
	text-transform: uppercase;
	color: #fff;
	cursor: pointer;
}

.page-template-template-blog .next.blue,
.page-template-template-accueil .next.blue {
	position: relative;
	color: var(--blue);
	left: unset;
	-webkit-transform: unset;
	    -ms-transform: unset;
	        transform: unset;
}

.page-template-template-blog .next .text,
.page-template-template-accueil .next .text {
	margin-bottom: 10px;
	text-align: center;
}

.page-template-template-blog .next .image,
.page-template-template-accueil .next .image {
	width: 25px;
}

.page-template-template-accueil .esprit .next {
	position: absolute;
	left: 50%;
	top: 110%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.page-template-template-accueil .esprit .next .image {
	position: relative;
	bottom: 10px;
	left: 5%;
	height: 50px;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.decouvrir {
	position: relative;
	width: 100%;
	padding-top: 100px;
	padding-bottom: 0px;
	background-color: #F2EDED;
}

.page-template-template-audace .decouvrir {
	padding-top: 0;
	padding-bottom: 100px;
}

.decouvrir::before {
	content: '';
	background-color: inherit;
	position: absolute;
	bottom: 100%;
	left: 0%;
	width: 100%;
	height: 200px;
}

.decouvrir-2::before {
	content: unset;
}

.decouvrir .decouvrir-content {
	position: relative;
	width: 100%;
  max-width: var(--maxWidth);
	margin: 0 20px;
}

.decouvrir-2 .decouvrir-content {
	width: 100vw;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.decouvrir-2.fit .decouvrir-content {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.decouvrir .decouvrir-content .text {
	width: 50%;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	text-align: right;
}

.decouvrir-2 .decouvrir-content .text {
	width: 40%;
	padding: 0 5%;
}

.decouvrir-2.fit .decouvrir-content .text {
	padding: 0 5% 0 0;
}

.decouvrir.reverse .decouvrir-content .text {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	text-align: left;
	padding: 0 0 0 5%;
}

.decouvrir h2 .title-1 {
	font-family: "Lato";
	font-size: 60px;
	font-weight: 300;
	color: var(--blue);
	text-transform: uppercase;
	line-height: 100%;
}

.decouvrir h2 .title-2 {
	font-family: "Montserrat";
	font-size: 130px;
	font-weight: 900;
	color: var(--blue);
	text-transform: uppercase;
	line-height: 100%;
  padding-right: 100px;
}
.decouvrir-2  h2 .title-2  {
	font-size: 100px;
	padding-right: 0;
}

.decouvrir h2 .title-3 {
	font-family: "Pacifico";
  font-size: 183px;
  font-weight: 400;
  color: var(--yellow);
  line-height: 0%;
  padding-bottom: 14%;
}
.decouvrir-2 h2 .title-3 {
	font-size: 140px;
	padding-right: 20px;
	padding-top: 6%;
	padding-bottom: 10%;
}
.decouvrir.reverse h2 .title-3 {
	padding-right: 0;
	padding-left: 20px;
}

.decouvrir h3 {
	font-size: 30px;
	font-weight: 700;
	color: #454F5C;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.decouvrir p {
	font-family: "Lato";
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 1px;
	line-height: 140%;
	max-width: 80%;
	margin-bottom: 40px;
	color: #2F2F2F;
}

.decouvrir-2 .decouvrir-content .text p {
	text-align: right;
}

.decouvrir.fit .decouvrir-content .text p {
	text-align: left;
}

.decouvrir .decouvrir-content .text img {
	max-width: 100%;
}

.decouvrir-2 .decouvrir-content .text img {
	width: 150px;
}

.decouvrir-content .image {
	position: relative;
	width: 30%;
	height: 80vh;
}

.decouvrir-2 .decouvrir-content .image {
	height: 70vh;
	min-height: 600px;
}

.decouvrir-2.fit .decouvrir-content .image {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	width: 35%;
	height: 50vh;
}

.decouvrir.reverse .decouvrir-content .image {
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}

.decouvrir-content .image img {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
}

.decouvrir-2 .decouvrir-content .image img {
	-o-object-fit: cover;
	   object-fit: cover;
}

.decouvrir-2.fit .decouvrir-content .image img {
	width: 75%;
	height: 100%;
}

.decouvrir-content .image .bg-square {
	position: absolute;
	z-index: 1;
	right: 50%;
	top: 0;
	width: 100%;
	height: 80%;
	background-color: var(--blue);
}

.decouvrir-2.fit .decouvrir-content .image .bg-square {
	right: unset;
	left: 0;
	top: 15%;
	width: 60%;
	height: 100%;
	background-color: var(--yellow);
}

.decouvrir.reverse .decouvrir-content .image .bg-square {
	left: unset;
	right: 0;
	background-color: var(--blue);
}

.decouvrir-content .image .flower {
	position: absolute;
	left: 60%;
	top: 50%;
	width: 15vw;
  height: 15vw;
	max-width: 250px;
	max-height: 250px;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.decouvrir-content .image .flower svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.actualites {
	position: relative;
}

.rss-gallery {
	margin-top: 50px;
	width: 100%;
  padding: 25px 0 75px 0;
	background-image: url("images/logo-charte.svg");
	background-size: 110%;
	background-position: top;
	background-repeat: no-repeat;
}

.rss-gallery-content {
	position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1060px;
  background-color: #fff;
  -webkit-box-shadow: 6px 6px 15px 0 rgba(0,0,0,0.22);
          box-shadow: 6px 6px 15px 0 rgba(0,0,0,0.22);
  padding: 50px 50px;
  margin: 0 20px;
}

.rss-gallery h2 {
	font-size: 130px;
	line-height: 100%;
  font-weight: 900;
  color: var(--yellow);
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 10px;
  overflow: hidden;
	text-align: center;
}

.rss-gallery .gallery {
	width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto 10px auto 10px auto;
  grid-template-rows: auto auto auto;
  gap: 10px 10px;
      grid-template-areas: "image-2 image-1" "image-3 image-1" "image-4 image-4";
	margin-top: 50px;
	height: 80vh;
}

.image-1 { -ms-grid-row: 1; -ms-grid-row-span: 3; -ms-grid-column: 3; grid-area: image-1; }

.image-2 { -ms-grid-row: 1; -ms-grid-column: 1; grid-area: image-2; }

.image-3 { -ms-grid-row: 3; -ms-grid-column: 1; grid-area: image-3; }

.image-4 { -ms-grid-row: 5; -ms-grid-column: 1; -ms-grid-column-span: 3; grid-area: image-4; }

.rss-gallery .gallery .article {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.rss-gallery .gallery .article .img-blog {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.rss-gallery .gallery .article .title {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: 75%;
	height: 90%;
	text-align: center;
	text-transform: uppercase;
	font-family: "Lato";
	font-size: 25px;
	font-weight: 400;
	color: #fff;
	letter-spacing: 1px;
	-webkit-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
	opacity: 0;
}

.rss-gallery .gallery .article .title .plus {
	position: relative;
	margin-top: 20px;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	border: 2px solid #fff;
}

.rss-gallery .gallery .article .title .plus div {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50%;
	height: 3px;
	background-color: #fff;
	border-radius: 100px;
}

.rss-gallery .gallery .article .title .plus div:nth-child(1) {
	-webkit-transform: translate(-50%,-50%) rotate(0);
	    -ms-transform: translate(-50%,-50%) rotate(0);
	        transform: translate(-50%,-50%) rotate(0);
}
.rss-gallery .gallery .article .title .plus div:nth-child(2) {
	-webkit-transform: translate(-50%,-50%) rotate(90deg);
	    -ms-transform: translate(-50%,-50%) rotate(90deg);
	        transform: translate(-50%,-50%) rotate(90deg);
}

.rss-gallery .gallery .article .filter {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--yellow);
	/*opacity: 0.85;*/
	opacity: 0;
}

.somm-metier {
	position: relative;
	background-color: var(--blue);
	color: #fff;
	min-height: 100vh;
	width: 100vw;
	max-width: 100%;
	opacity: 0;
}

.somm-metier-content {
	max-width: var(--maxWidth);
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	padding: 50px 0;
	width: 100%;
}

.somm-metier .content {
	width: calc(75% - 100px);
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	padding: 0 50px;
}

.somm-metier .content h1 {
	font-size: 5vw;
	font-weight: 900;
	text-transform: uppercase;
	margin: 0;
	line-height: 100%;
	margin-top: 20px;
}

.somm-metier .content p {
	font-family: "Lato";
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 1px;
	line-height: 140%;
	width: 80%;
	margin-bottom: 50px;
}

.somm-metier .content .links {
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-ms-flex-flow: wrap;
	    flex-flow: wrap;
}

.somm-metier .content .links .button {
	margin-right: 20px;
	margin-bottom: 20px;
}

.somm-metier .image {
	position: absolute;
	width: 25%;
	height: 100vh;
	top: 0;
	right: 0;
}

.somm-metier .image img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}

.somm-metier .image .filter {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
}

.somm-metier .image .flower {
	position: absolute;
	right: 90%;
	top: 50%;
	width: 15vw;
  height: 15vw;
	max-width: 250px;
	max-height: 250px;
	-webkit-transform: translateY(-50%) rotateY(180deg);
	        transform: translateY(-50%) rotateY(180deg);
}

.somm-metier .image .flower svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.bandeau-metier {
	position: relative;
	background-color: var(--blue);
  width: 100vw;
  max-width: 100%;
  /*min-height: calc(60vh - 200px);*/
  padding: 150px 0 100px 0;
}

.bandeau-metier::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: var(--blue);
	z-index: 1;
}

.bandeau-metier h1 {
	position: relative;
	z-index: 2;
	font-size: 104px;
	font-weight: 900;
	text-transform: uppercase;
	margin: 0;
	max-width: 1100px;
	text-align: center;
	line-height: 100%;
	color: #fff;
	margin-top: 40px;
  margin-bottom: 50px;
	-webkit-transition: -webkit-transform 0.5s;
	transition: -webkit-transform 0.5s;
	-o-transition: transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s;
}

.bandeau-metier .schpouiks-2 {
	position: absolute;
	top: 20%;
	left: unset;
	right: 10%;
	width: 75px;
	height: 75px;
	-webkit-transform-origin: center;
	    -ms-transform-origin: center;
	        transform-origin: center;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	padding-top: 0;
	z-index: 2;
}

.bandeau-page-modele {
	position: relative;
	background-color: #212121;
  width: 100vw;
  max-width: 100%;
  padding: 150px 0 50vh 0;
	height: calc(50vh - 150px);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.bandeau-page-modele::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.5;
}

.bandeau-page-modele h1 {
	position: relative;
	z-index: 2;
	font-size: 40px;
	font-weight: 900;
	text-transform: uppercase;
	margin: 0;
	max-width: 1100px;
	text-align: center;
	line-height: 100%;
	color: #fff;
	margin-top: 40px;
  margin-bottom: 50px;
	-webkit-transition: -webkit-transform 0.5s;
	transition: -webkit-transform 0.5s;
	-o-transition: transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s;
}

.desc-metier {
	position: relative;
	z-index: 3;
	background-color: var(--blue);
	padding-bottom: 20vh;
	opacity: 0;
}

.desc-metier-content {
	position: relative;
	background-color: #F2EDED;
	width: 100%;
	max-width: 1280px;
	opacity: 0;
}

.desc-metier-content::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 99%;
	width: 100%;
	height: 50px;
	background-color: inherit;
  border-top: 32px solid var(--pink);
}

.desc-metier h2 {
	max-width: calc(100% - 80px);
}

.desc-metier h2 .title-1 {
	font-family: "Montserrat";
	font-size: 78px;
	font-weight: 900;
	color: var(--blue);
	text-transform: uppercase;
	line-height: 100%;
}

.desc-metier h2 .title-2 {
	font-family: "Pacifico";
  font-size: 110px;
  font-weight: 400;
  color: var(--yellow);
  line-height: 0%;
  position: relative;
  z-index: 2;
	padding-top: 6%;
	padding-bottom: 10%;
  padding-left: 100px;
}

.desc-metier h2 .title-3 {
	font-family: "Lato";
	font-size: 35px;
	font-weight: 300;
	color: var(--blue);
	text-transform: uppercase;
	line-height: 100%;
}

.desc-metier p {
	font-family: "Lato";
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 1px;
	line-height: 140%;
	max-width: 80%;
	margin: 60px 0;
	text-align: center;
	color: #2F2F2F;
}

.desc-metier .hashtags {
	max-width: 80%;
	-ms-flex-flow: wrap;
	    flex-flow: wrap;
	font-size: 20px;
	font-weight: 700;
	margin: 0 5px;
	color: var(--blue);
	text-align: center;
	margin-bottom: 60px;
}

.desc-metier iframe {
	width: 100vw;
  height: 56.5vw;
	max-width: 100%;
	max-height: 720px;
}

.desc-metier img {
	width: 100%;
}

.desc-page-modele {
	position: relative;
	z-index: 3;
	margin-bottom: -40vh;
	background-color: #F2EDED;
}

.desc-page-modele-content {
	position: relative;
  background-color: #fff;
  width: calc(80% - 160px);
  max-width: 1120px;
  -webkit-box-shadow: 6px 6px 15px 0 rgba(0,0,0,0.22);
          box-shadow: 6px 6px 15px 0 rgba(0,0,0,0.22);
  -webkit-transform: translateY(-50vh);
      -ms-transform: translateY(-50vh);
          transform: translateY(-50vh);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 80px;
	padding-bottom: 100px;
}

.desc-page-modele-content::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 100%;
	width: 100%;
	height: 50px;
	background-color: inherit;
  border-top: 32px solid var(--pink);
}

.desc-page-modele h2 {
	max-width: calc(100% - 80px);
}

.desc-page-modele p {
	font-family: "Lato";
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 1px;
	line-height: 140%;
	max-width: 100%;
	color: #2F2F2F;
}

.pictos-metier {
	width: 100vw;
	max-width: 100%;
	padding-bottom: 150px;
	background-color: #fff;
	position: relative;
	z-index: 2;
}

.pictos-metier-content {
	width: 100%;
	max-width: var(--maxWidth);
}

.pictos-metier h2 {
	font-family: "Montserrat";
	font-size: 78px;
	font-weight: 900;
	color: var(--blue);
	text-transform: uppercase;
	line-height: 100%;
	margin-bottom: 40px;
	margin-top: 0;
}

.pictos-metier .pictos {
	width: 100%;
	-ms-flex-flow: wrap;
	    flex-flow: wrap;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.pictos-metier .pictos .picto {
	width: 30%;
	margin: 40px 1.5%;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}

.pictos-metier .pictos .picto .image {
	position: relative;
	width: 96px;
	height: 96px;
	background-color: var(--yellow);
	border-radius: 100%;
}

.pictos-metier .pictos .picto .image img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 70%;
	height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
	-webkit-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}

.pictos-metier .pictos .picto h3 {
	font-size: 20px;
	font-weight: 700;
	color: #2F2F2F;
	text-transform: uppercase;
	max-width: 75%;
	margin-bottom: 0;
	text-align: center;
	overflow: hidden;
}
.pictos-metier .pictos .picto .text {
	font-family: "Lato";
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 1px;
	line-height: 140%;
	max-width: 80%;
	margin: 0;
	text-align: center;
	color: #2F2F2F;
	overflow: hidden;
}

.temoignage {
	position: relative;
	width: 100vw;
	max-width: 100%;
}

.page-template-template-integrer-reseau .temoignage {
	margin-top: 0!important;
}

.temoignage.marge-top {
	margin-top: 100px;
}

.temoignage .image {
	position: absolute;
	top: 0;
	left: 0;
	width: 33%;
	height: 100%;
	overflow: hidden;
	background-color: #fff;
}

.temoignage .image::after {
	content:'';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, right top, left top, color-stop(-45%, var(--blue)), color-stop(35%, transparent));
	background: -o-linear-gradient(right, var(--blue) -45%, transparent 35%);
	background: linear-gradient(-90deg, var(--blue) -45%, transparent 35%);
}

.temoignage .image img {
	position: absolute;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	top: 0%;
	left: 50%;
	-webkit-transform: translate(-50%,0%);
	    -ms-transform: translate(-50%,0%);
	        transform: translate(-50%,0%);
}

.temoignage .content {
	background-color: var(--yellow);
	background-image: url("images/fond-temoignage.svg");
	background-size: 50%;
	background-position: 125% 150%;
	background-repeat: no-repeat;
	margin-left: 33%;
	padding: 100px 10% 150px 10%;
	width: 47%;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	min-height: 66vh;
}

.temoignage .content p {
	font-family: "Lato";
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 140%;
  width: 80%;
  margin-bottom: 30px;
	margin-top: 0;
	color: #fff;
	max-width: 400px;
}
.temoignage .content p span {
	font-family: "Pacifico";
}
.temoignage .content .text {
	font-size: 46px;
  font-weight: 800;
  line-height: 120%;
  text-transform: uppercase;
  width: 120%;
  -webkit-transform: translateX(-25%);
      -ms-transform: translateX(-25%);
          transform: translateX(-25%);
	color: #fff;
	margin-bottom: 50px;
}
.temoignage .content .guillemet:first-child {
	position: absolute;
  right: 103%;
  top: -15%;
  width: 100px;
  height: 100px;
}
.temoignage .content .guillemet:last-child {
	position: absolute;
  left: 102%;
  bottom: -15%;
  width: 100px;
  height: 100px;
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}
.temoignage .content .guillemet img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
}
.temoignage .text-content {
	width: 100%;
	overflow: hidden;
}
.bandeau-classique {
	background-color: var(--yellow);
	width: 100vw;
	max-width: 100%;
	/*min-height: calc(60vh - 200px);*/
	padding: 150px 0 150px 0;
}
.bandeau-classique.blue-duck {
	background-color: var(--blueDuck);
}
.bandeau-classique.blue-dark {
	background-color: var(--blueDark);
}
.bandeau-classique .title {
	position: relative;
	font-size: 124px;
	font-weight: 900;
	text-transform: uppercase;
	margin: 0;
	max-width: 1100px;
	text-align: center;
	line-height: 100%;
	color: #fff;
	margin-top: 40px;
	margin-bottom: 50px;
	-webkit-transition: -webkit-transform 0.5s;
	transition: -webkit-transform 0.5s;
	-o-transition: transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s;
	opacity: 0;
}
.bandeau-classique .schpouiks:first-child {
	position: absolute;
	top: -50%;
	left: unset;
	right: 100%;
	width: 200px;
	padding-top: 150px;
	-webkit-transform: rotate(-135deg) translateY(-50%);
	    -ms-transform: rotate(-135deg) translateY(-50%);
	        transform: rotate(-135deg) translateY(-50%);
}
.bandeau-classique .schpouiks:last-child {
	position: absolute;
	top: 30%;
	left: 100%;
	width: 200px;
	padding-top: 150px;
	-webkit-transform: rotate(45deg) translateY(-50%);
	    -ms-transform: rotate(45deg) translateY(-50%);
	        transform: rotate(45deg) translateY(-50%);
}
.bandeau-classique .schpouiks .schpouik {
	width: 12.5%;
}
.bandeau-classique .schpouiks div div {
	background-color: #fff;
	height: 50%;
}
.desc-classique-content {
	position: relative;
	z-index: 3;
  background-color: #F2EDED;
  width: 100%;
  max-width: 1280px;
}
.page-template-template-reseau .desc-classique-content {
  width: calc(100% - 200px);
  max-width: 1080px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 100px;
  padding-bottom: 200px;
}
.desc-classique-content::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 50px;
  background-color: inherit;
  border-top: 32px solid var(--pink);
}
.desc-classique-content h2 {
	font-family: "Montserrat";
	font-size: 30px;
	font-weight: 700;
	color: #2F2F2F;
	max-width: 80%;
}
.desc-classique-content h3 {
	font-family: "Montserrat";
	font-size: 30px;
	font-weight: 700;
	color: #2F2F2F;
	max-width: 80%;
}
.desc-classique-content p {
	font-family: "Lato";
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 140%;
  max-width: 80%;
  margin: 60px 0;
  color: #2F2F2F;
	text-align: center;
}
.page-template-template-concept .desc-classique-content p {
	margin: 20px 0 60px 0;
}
.desc-classique-content p.has-text-align-left {
	text-align: left;
}
.desc-classique-content p.has-text-align-right {
	text-align: right;
}
.wp-block-columns p {
	margin: 30px 0;
}
.wp-block-embed-youtube {
	margin: 0;
}
.desc-classique-content .esprit p {
	text-align: left;
}
.page-template-template-reseau .desc-classique-content p {
  max-width: 45%;
  margin: 20px 0 60px 0;
  text-align: left;
}
.desc-classique-content h1 .title-1 {
	font-family: "Pacifico";
  font-size: 110px;
  font-weight: 400;
  color: var(--yellow);
  line-height: 0%;
  position: relative;
  z-index: 2;
  padding-top: 6%;
  padding-bottom: 10%;
}
.desc-classique-content h1.reverse .title-1 {
  padding-left: 190px;
}
.desc-classique-content h1 .title-2 {
	font-family: "Montserrat";
	font-size: 78px;
	font-weight: 900;
	color: var(--blue);
	text-transform: uppercase;
	line-height: 100%;
  padding-left: 190px;
}
.desc-classique-content h1.reverse .title-2 {
  padding-left: 0;
}
.page-template-template-conditions .desc-classique-content h1 .title-2 {
	padding-left: 60px;
}
.desc-classique-content .title {
	opacity: 0;
}
.desc-classique-content .title h2 .title-1 {
	font-family: "Pacifico";
  font-size: 110px;
  font-weight: 400;
  color: var(--yellow);
  line-height: 0%;
  position: relative;
  z-index: 2;
  padding-top: 6%;
  padding-bottom: 7%;
}
.desc-classique-content .title h2 .title-2 {
	font-family: "Montserrat";
	font-size: 78px;
	font-weight: 900;
	color: var(--blue);
	text-transform: uppercase;
	line-height: 100%;
  padding-left: 190px;
}

.desc-classique-content .pink-arrow {
	margin: 0 30px;
	-webkit-transform: translateY(30%) rotate(160deg);
	    -ms-transform: translateY(30%) rotate(160deg);
	        transform: translateY(30%) rotate(160deg);
	width: 5vw;
	min-width: 80px;
}

.desc-classique-content .pink-arrow:last-child {
	-webkit-transform: translateY(-30%);
	    -ms-transform: translateY(-30%);
	        transform: translateY(-30%);
}

.desc-classique iframe {
    width: 100vw;
    height: 56.5vw;
    max-width: 100%;
    max-height: 720px;
}
.desc-classique .carte-reseau {
	/*position: absolute;
	top: 20%;
	left: 50%;
	width: 50%;
	height: 50vh;*/
	position: absolute;
	top: 20%;
	left: 75%;
	width: 470px;
	height: 500px;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}
.desc-classique .carte-reseau .carte {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
}
.desc-classique .carte-reseau .separateur {
	position: absolute;
	top: 100%;
	left: 50%;
	width: 70%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}
.desc-classique .carte-reseau .points {
	position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
}
.desc-classique .carte-reseau .points .point {
	position: absolute;
	width: 4%;
  padding-top: 4%;
	background-color: var(--blue);
	border-radius: 100%;
}
.desc-classique .carte-reseau .points .point:nth-child(1) {left: 25%;top: 26%;}
.desc-classique .carte-reseau .points .point:nth-child(2) {left: 20%;top: 30%;}
.desc-classique .carte-reseau .points .point:nth-child(3) {left: 18%;top: 21%;}
.desc-classique .carte-reseau .points .point:nth-child(4) {left: 13%;top: 28%;}
.desc-classique .carte-reseau .points .point:nth-child(5) {left: 9%;top: 17%;}
.desc-classique .carte-reseau .points .point:nth-child(6) {left: 26%;top: 16%;}
.desc-classique .carte-reseau .points .point:nth-child(7) {left: 35%;top: 27%;}
.desc-classique .carte-reseau .points .point:nth-child(8) {left: 19%;top: 28%;}
.desc-classique .carte-reseau .points .point:nth-child(9) {left: 28%;top: 34%;}
.desc-classique .carte-reseau .points .point:nth-child(10) {left: 6%;top: 24%;}
.desc-classique .carte-reseau .points .point:nth-child(11) {left: 2%;top: 18%;}
.desc-classique .carte-reseau .points .point:nth-child(12) {left: 27%;top: 39%;}
.desc-classique .carte-reseau .points .point:nth-child(13) {left: 33%;top: 22%;}
.desc-classique .carte-reseau .points .point:nth-child(14) {left: 29%;top: 28%;}
.desc-classique .carte-reseau .points .point:nth-child(15) {left: 23%;top: 45%;}
.desc-classique .carte-reseau .points .point:nth-child(16) {left: 22%;top: 50%;}
.desc-classique .carte-reseau .points .point:nth-child(17) {left: 21%;top: 55%;}
.desc-classique .carte-reseau .points .point:nth-child(18) {left: 20%;top: 58%;}
.desc-classique .carte-reseau .points .point:nth-child(19) {left: 19%;top: 62%;}
.desc-classique .carte-reseau .points .point:nth-child(20) {left: 15%;top: 70%;}
.desc-classique .carte-reseau .points .point:nth-child(21) {left: 20%;top: 73%;}
.desc-classique .carte-reseau .points .point:nth-child(22) {left: 34%;top: 40%;}
.desc-classique .carte-reseau .points .point:nth-child(23) {left: 41%;top: 33%;}
.desc-classique .carte-reseau .points .point:nth-child(24) {left: 47%;top: 27%;}
.desc-classique .carte-reseau .points .point:nth-child(25) {left: 34%;top: 50%;}
.desc-classique .carte-reseau .points .point:nth-child(26) {left: 50%;top: 34%;}
.desc-classique .carte-reseau .points .point:nth-child(27) {left: 38%;top: 13%;}
.desc-classique .carte-reseau .points .point:nth-child(28) {left: 46%;top: 10%;}
.desc-classique .carte-reseau .points .point:nth-child(29) {left: 55%;top: 6%;}
.desc-classique .carte-reseau .points .point:nth-child(30) {left: 41%;top: 21%;}
.desc-classique .carte-reseau .points .point:nth-child(31) {left: 31%;top: 60%;}
.desc-classique .carte-reseau .points .point:nth-child(32) {left: 35%;top: 76%;}
.desc-classique .carte-reseau .points .point:nth-child(33) {left: 48%;top: 74%;}
.desc-classique .carte-reseau .points .point:nth-child(34) {left: 44%;top: 82%;}
.desc-classique .carte-reseau .points .point:nth-child(35) {left: 45%;top: 59%;}
.desc-classique .carte-reseau .points .point:nth-child(36) {left: 60%;top: 71%;}
.desc-classique .carte-reseau .points .point:nth-child(37) {left: 74%;top: 53%;}
.desc-classique .carte-reseau .points .point:nth-child(38) {left: 82%;top: 32%;}
.desc-classique .carte-reseau .points .point:nth-child(39) {left: 18%;top: 38%;}
.desc-classique .carte-reseau .points .point:nth-child(40) {left: 54%;top: 10%;}
.desc-classique .carte-reseau .points .point:nth-child(41) {left: 83%;top: 24%;}
.desc-classique .carte-reseau .points .point:nth-child(42) {left: 76%;top: 27%;}
.desc-classique .carte-reseau .points .point:nth-child(43) {left: 74%;top: 21%;}
.desc-classique .carte-reseau .points .point:nth-child(44) {left: 49%;top: 19%;}
.desc-classique .carte-reseau .points .point:nth-child(45) {left: 39%;top: 38%;}
.desc-classique .carte-reseau .points .point:nth-child(46) {left: 30%;top: 70%;}
.desc-classique .carte-reseau .points .point:nth-child(47) {left: 26%;top: 76%;}
.desc-classique .carte-reseau .points .point:nth-child(48) {left: 25%;top: 57%;}
.desc-classique .carte-reseau .points .point:nth-child(49) {left: 34%;top: 33%;}
.desc-classique .carte-reseau .points .point:nth-child(50) {left: 23%;top: 10%;}
.desc-classique .carte-reseau .points .point:nth-child(51) {left: 46%;top: 40%;}
.desc-classique .carte-reseau .points .point:nth-child(52) {left: 42%;top: 48%;}
.desc-classique .carte-reseau .points .point:nth-child(53) {left: 58%;top: 65%;}
.desc-classique .carte-reseau .points .point:nth-child(54) {left: 66%;top: 75%;}
.desc-classique .carte-reseau .points .point:nth-child(55) {left: 60%;top: 61%;}
.desc-classique .carte-reseau .points .point:nth-child(56) {left: 50%;top: 50%;}
.desc-classique .carte-reseau .points .point:nth-child(57) {left: 51%;top: 56%;}
.desc-classique .carte-reseau .points .point:nth-child(58) {left: 61%;top: 50%;}
.desc-classique .carte-reseau .points .point:nth-child(59) {left: 70%;top: 76%;}
.desc-classique .carte-reseau .points .point:nth-child(60) {left: 75%;top: 75%;}
.desc-classique .carte-reseau .points .point:nth-child(61) {left: 80%;top: 73%;}
.desc-classique .carte-reseau .points .point:nth-child(62) {left: 40%;top: 69%;}
.desc-classique .carte-reseau .points .point:nth-child(63) {left: 75%;top: 42%;}
.desc-classique .carte-reseau .points .point:nth-child(64) {left: 57%;top: 40%;}
.desc-classique .carte-reseau .points .point:nth-child(65) {left: 66%;top: 63%;}
.desc-classique .carte-reseau .points .point:nth-child(66) {left: 70%;top: 58%;}
.desc-classique .carte-reseau .points .point:nth-child(67) {left: 67%;top: 51%;}
.desc-classique .carte-reseau .points .point:nth-child(68) {left: 63%;top: 55%;}
.desc-classique .carte-reseau .points .point:nth-child(69) {left: 23%;top: 33%;}
.desc-classique .carte-reseau .points .point:nth-child(70) {left: 10%;top: 25%;}
.desc-classique .carte-reseau .points .point:nth-child(71) {left: 2%;top: 22%;}
.desc-classique .carte-reseau .points .point:nth-child(72) {left: 14%;top: 23%;}
.desc-classique .carte-reseau .points .point:nth-child(73) {left: 42%;top: 27%;}
.desc-classique .carte-reseau .points .point:nth-child(74) {left: 28%;top: 43%;}
.desc-classique .carte-reseau .points .point:nth-child(75) {left: 22%;top: 24%;}
.desc-classique .carte-reseau .points .point:nth-child(76) {left: 26%;top: 30%;}
.desc-classique .carte-reseau .points .point:nth-child(77) {left: 47%;top: 65%;}
.desc-classique .carte-reseau .points .point:nth-child(78) {left: 66%;top: 45%;}
.desc-classique .carte-reseau .points .point:nth-child(79) {left: 75%;top: 61%;}
.desc-classique .carte-reseau .points .point:nth-child(80) {left: 36%;top: 54%;}

.pictos-concept {
	width: 100vw;
	max-width: 100%;
	padding: 20px 0;
}

.pictos-concept-content {
	width: 100%;
	max-width: var(--maxWidth);
}

.pictos-concept .pictos {
	width: 100%;
	-ms-flex-flow: wrap;
	    flex-flow: wrap;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.pictos-concept .pictos .picto {
	width: 30%;
	margin: 40px 1.5%;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	font-family: "Lato";
	min-width: 400px;
}

.desc-classique-content .pictos-concept .pictos .picto {
	width: 32%;
  margin: 40px 0.5%;
	opacity: 0;
}

.pictos-concept .pictos .picto .image {
	position: relative;
	width: 96px;
	height: 96px;
	background-color: var(--yellow);
	border-radius: 100%;
}

.pictos-concept .pictos .picto .image img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 70%;
	height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
	-webkit-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}

.pictos-concept .pictos .picto h2 {
	font-size: 38px;
	font-weight: 300;
	color: var(--blue);
	text-transform: uppercase;
	max-width: 80%;
	margin: 10px 0;
	text-align: center;
	overflow: hidden;
}
.pictos-concept .pictos .picto .text {
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 1px;
	line-height: 140%;
	max-width: 80%;
	margin: 0;
	text-align: center;
	color: #2F2F2F;
	overflow: hidden;
}

.temoignage-classique {
	position: relative;
	z-index: 4;
	width: 100vw;
	max-width: 100%;
}

.page-template-template-culture .temoignage-classique, .page-template-template-audace .temoignage-classique {
	margin-bottom: 20vh;
}

.temoignage-classique .image {
	position: absolute;
	top: 0;
	left: 0;
	width: 47%;
	padding-top: 32%;
	overflow: hidden;
	background-color: #fff;
}

.temoignage-classique-2 .image {
	min-height: 70vh;
}

.temoignage-classique .image img {
	position: absolute;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}

.page-template-template-concept .temoignage-classique .image {
	position: absolute;
	left: 0;
	width: 47%;
	height: 30vw;
	max-height: 90%;
	overflow: hidden;
	padding-top: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.page-template-template-concept .temoignage-classique .image img {
	position: absolute;
  width: 101%;
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
  -o-object-position: top right;
     object-position: top right;
}

.temoignage-classique-2 .image img {
	-o-object-fit: contain;
	   object-fit: contain;
}

.temoignage-classique .content {
	background-color: var(--blue);
  margin-left: 25%;
  padding: 100px 5% 150px 25%;
  width: 45%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.temoignage-classique.yellow .content {
	background-color: var(--yellow);
}

.temoignage-classique .content p {
	font-family: "Lato";
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 140%;
  width: 80%;
  margin: 20px 0;
	color: #fff;
}
.temoignage-classique .content p span {
	font-family: "Pacifico";
}
.temoignage-classique .content p a {
	display: inline-block;
}
.temoignage-classique .content .text {
	font-size: 55px;
  font-weight: 800;
  line-height: 120%;
  text-transform: uppercase;
  width: 80%;
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
	color: #fff;
}
.temoignage-classique .content .guillemet:first-child {
	position: absolute;
  right: 103%;
  top: -15%;
  width: 100px;
  height: 100px;
}
.temoignage-classique .content .guillemet:last-child {
	position: absolute;
  left: 102%;
  bottom: -15%;
  width: 100px;
  height: 100px;
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}
.temoignage-classique-2 .content .guillemet:first-child {
	position: absolute;
  right: 52%;
  top: 10%;
  width: 100px;
  height: 100px;
}
.temoignage-classique-2 .content .guillemet:last-child {
	position: absolute;
	right: 5%;
	bottom: 10%;
	width: 100px;
	height: 100px;
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
	left: unset;
}
.temoignage-classique .content .guillemet img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
}
.temoignage-classique .text-content {
	width: 100%;
	overflow: hidden;
}
.temoignage-classique-2 {
	min-height: 60vh;
	margin-bottom: 10vh;
}
.temoignage-classique-2 .content {
	padding: 100px 5% 100px 50%;
	margin-left: 0;
}
.temoignage-classique-2 .content p {
	color: var(--blue);
	max-width: 550px;
}
.temoignage-classique-2 .image {
	top: 5%;
	left: unset;
	right: 52.5%;
	width: 42.5%;
  height: 105%;
	padding-top: 0;
  max-width: 800px;
}
.temoignage-classique-3::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 100vw;
	height: 100%;
	background-color: var(--yellow);
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}
.temoignage-classique-3 .image {
	width: 50%;
	right: 50%;
}
.temoignage-classique-3 .content {
	padding: 100px 0% 100px 55%;
}
.temoignage-classique-3 .content p {
	text-align: left;
}
.page-template-template-concept .temoignage-classique .content {
	min-height: 45vh;
}
.buttons-classique {
	-ms-flex-flow: wrap;
	    flex-flow: wrap;
	max-width: var(--maxWidth);
	margin: 40px 0;
}
.buttons-classique .button {
	margin: 10px;
}

.graphique-magasins {
	width: 100%;
	min-height: 50vh;
	background-color: #F2EDED;
	padding: 100px 0;
}
.graphique-magasins .barres {
	position: relative;
  z-index: 2;
	width: calc(100% - 50px);
	max-width: 950px;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	padding-left: 50px;
  padding-top: 50px;
	margin-top: 50px;
	min-height: 475px;
}
.graphique-magasins .barres .barre {
	position: relative;
	width: 30px;
	height: 0;
	background-color: var(--pink);
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	-webkit-box-shadow: 0 3px 12px 0 rgba(227,70,105,0.5);
	        box-shadow: 0 3px 12px 0 rgba(227,70,105,0.5);
}
.graphique-magasins .barres .barre.last {
	background-color: var(--yellow);
	-webkit-box-shadow: 0 3px 12px 0 rgba(241,187,37,0.5);
	        box-shadow: 0 3px 12px 0 rgba(241,187,37,0.5);
}
.graphique-magasins .barres .barre .new-barre-container {
	position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  overflow: hidden;
}
.graphique-magasins .barres .barre .new-barre {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 0;
	background-color: #EB7D96;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
}
.graphique-magasins .barres .barre.last .new-barre {
	background-color: #F5CF66
}
.graphique-magasins .barres .barre .addition {
	font-family: "Pacifico";
	position: absolute;
	bottom: calc(100% + 5px);
	left: 50%;
	width: 100%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	color: var(--blue);
	font-size: 14px;
}
.graphique-magasins .barres .barre .year {
	position: absolute;
	top: calc(100% + 5px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	font-size: 14px;
	font-family: "Lato";
}

.graphique-magasins h2 .title-1 {
	font-family: "Pacifico";
  font-size: 110px;
  font-weight: 400;
  color: var(--yellow);
  line-height: 0%;
  position: relative;
  z-index: 2;
  padding-top: 6%;
  padding-bottom: 10%;
}
.graphique-magasins h2 .title-2 {
	font-family: "Montserrat";
	font-size: 78px;
	font-weight: 900;
	color: var(--blue);
	text-transform: uppercase;
	line-height: 100%;
  padding-left: 190px;
}
.graphique-magasins .grad {
	position: absolute;
  z-index: -1;
	left: 0;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: column-reverse;
	        flex-direction: column-reverse;
	width: 100%;
}
.graphique-magasins .grad-step {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100px;
  width: 100%;
  border-bottom: 1px solid #CAC8D4;
}
.graphique-magasins .legends {
	margin-top: 50px;
  font-family: "Pacifico";
  font-size: 14px;
  color: var(--blue);
  width: calc(100% - 50px);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 950px;
	-ms-flex-flow: wrap;
	    flex-flow: wrap;
}
.graphique-magasins .legends div {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin-right: 10px;
}
.graphique-magasins .legends div div {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 0;
	margin-top: 5px;
}
.graphique-magasins .legends div div .color {
  width: 15px;
  height: 15px;
  border-radius: 100%;
	margin: 0;
  margin-right: 10px;
}
.desc-concept {
	position: relative;
}
.desc-concept-content {
  max-width: var(--maxWidth);
	margin: 70px 0;
}
.desc-concept .column, .desc-concept .numbers-column {
	width: 45%;
	margin: 0 2.5%;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.desc-concept .column:first-child {
	margin-top: 50px;
}
.desc-concept p {
	font-family: "Lato";
	font-size: 24px;
	font-weight: 300;
	letter-spacing: 1px;
	line-height: 140%;
	width: 52%;
	text-align: right;
	margin-top: 0;
	margin-bottom: 80px;
}
.desc-concept .numbers-column:last-child {
	margin-top: 75px;
}
.desc-concept .number {
	margin-top: 20px;
	margin-bottom: 50px;
}
.desc-concept .nbr {
	font-family: "Lato";
  font-size: 90px;
  font-weight: 800;
	color: var(--blue);
}
.desc-concept .number p {
	font-size: 30px;
  font-weight: 300;
  color: var(--blue);
  text-transform: uppercase;
  margin: 10px 0;
  text-align: center;
  overflow: hidden;
	width:100%;
}
.desc-concept .flower {
	position: absolute;
	z-index: 3;
	left: 0px;
	bottom: 30%;
	width: 35vw;
	height: 35vw;
	max-width: 600px;
	max-height: 600px;
	-webkit-transform: translateX(-50%) translateY(-50%);
	    -ms-transform: translateX(-50%) translateY(-50%);
	        transform: translateX(-50%) translateY(-50%);
	opacity: 0;
}
.desc-concept .flower svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.desc-concept .flower .schpouiks-3 {
	position: absolute;
	top: 10%;
  left: 110%;
	width: 15%;
	padding-top: 15%;
	-webkit-transform-origin: center;
	    -ms-transform-origin: center;
	        transform-origin: center;
	-webkit-transform: rotate(6deg);
	    -ms-transform: rotate(6deg);
	        transform: rotate(6deg);
}
.schpouiks-3 .schpouik {
	position: absolute;
	width: 30%;
	height: 100%;
	bottom: 0;
	left: 0;
	overflow: hidden;
}
.schpouiks-3 .schpouik:nth-child(1) {
	-webkit-transform-origin: bottom;
	    -ms-transform-origin: bottom;
	        transform-origin: bottom;
	-webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
}

.schpouiks-3 .schpouik:nth-child(2) {
	-webkit-transform-origin: bottom;
	    -ms-transform-origin: bottom;
	        transform-origin: bottom;
	-webkit-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	        transform: rotate(90deg);
}

.schpouiks-3 .schpouik:nth-child(3) {
	-webkit-transform-origin: bottom;
	    -ms-transform-origin: bottom;
	        transform-origin: bottom;
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}

.schpouiks-3 .schpouik:nth-child(4) {
	-webkit-transform-origin: bottom;
	    -ms-transform-origin: bottom;
	        transform-origin: bottom;
	-webkit-transform: rotate(270deg);
	    -ms-transform: rotate(270deg);
	        transform: rotate(270deg);
}
.desc-concept .flower .schpouiks-3 div div {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 75%;
	background-color: var(--pink);
	border-radius: 100px;
	-webkit-transform-origin: bottom;
	    -ms-transform-origin: bottom;
	        transform-origin: bottom;
	-webkit-transform: scaleY(0);
	    -ms-transform: scaleY(0);
	        transform: scaleY(0);
}

.trigger-bandeau {
	position: absolute;
  top: 50vh;
  left: 0;
  width: 100%;
  height: 50vh;
}

.objectif {
	background-color: var(--blueDuck);
	width: 100%;
}

.objectif-2 {
	padding-bottom: 100px;
}

.objectif .objectif-content {
	width: calc(100% - 80px);
	padding: 50px 40px;
	max-width: 1280px;
}

.objectif .objectif-content img.schema {
	width: 90%;
	max-width: 1200px;
  mix-blend-mode: multiply;
	margin: 50px 0;
}

.objectif h2 {
	max-width: calc(100% - 80px);
}

.objectif h2 .title-1 {
	font-family: "Lato";
	font-size: 35px;
	font-weight: 300;
	color: #fff;
	text-transform: uppercase;
	line-height: 100%;
}

.objectif h2 .title-2 {
	font-family: "Montserrat";
	font-size: 78px;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	line-height: 100%;
  -webkit-transform: translateX(10%);
      -ms-transform: translateX(10%);
          transform: translateX(10%);
}

.objectif h2 .title-3 {
	font-family: "Pacifico";
	font-size: 110px;
	font-weight: 400;
	color: var(--yellow);
	line-height: 0%;
	position: relative;
	z-index: 2;
	padding-top: 9%;
	padding-bottom: 10%;
}

.objectif .direction {
	width: 100%;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-top: 40px;
}

.objectif .direction .title {
	font-family: "Montserrat";
	font-size: 28px;
	font-weight: 300;
	color: var(--yellow);
	text-transform: uppercase;
	line-height: 80%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.objectif .direction .title span {
	font-size: 64px;
	font-weight: 900;
	line-height: 140%;
}

.objectif .direction .fleches {
  -webkit-transform: translateY(15px);
      -ms-transform: translateY(15px);
          transform: translateY(15px);
}

.objectif .direction .fleches .fleche {
	position: relative;
	width: 40px;
	height: 50px;
}

.objectif .direction .fleches .fleche img {
	position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 175%;
  height: 175%;
  -o-object-fit: contain;
     object-fit: contain;
}

.objectif .text-objectif {
	text-align: center;
	color: #fff;
}

.groupes {
  width: 100%;
  padding: 150px 0;
  background-image: url(images/logo-charte.svg);
  background-size: 120%;
  background-position: center;
  background-repeat: no-repeat;
}

.groupes-content {
	position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1060px;
  background-color: #fff;
  -webkit-box-shadow: 6px 6px 15px 0 rgba(0,0,0,0.22);
          box-shadow: 6px 6px 15px 0 rgba(0,0,0,0.22);
  padding: 75px 50px 75px 50px;
  margin: 0 20px;
}

.groupes img {
	width: 45%;
}

.groupes .groupes-list {
	width: 100%;
	-ms-flex-flow: wrap;
	    flex-flow: wrap;
	margin-top: 100px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.groupes .groupes-list .groupe {
	width: 30%;
	margin: 40px 1.5%;
}

.groupes .groupes-list .groupe .title {
	font-size: 38px;
	font-weight: 300;
	color: var(--blue);
	text-transform: uppercase;
	margin: 10px 0;
	text-align: center;
}

.groupes .groupes-list .groupe p {
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 1px;
	line-height: 140%;
	margin: 0;
	color: #2F2F2F;
	text-align: center;
	-moz-text-align-last: center;
	     text-align-last: center;
}

.groupes .groupes-list .groupe img {
	margin: 10px 0;
}

.temoignage-culture{
	position: relative;
	width: 100%;
	margin-bottom: 100px;
	margin-top: 50px;
	z-index: 3;
}

.temoignage-culture .temoignage-culture-content {
	position: relative;
  z-index: 2;
  width: calc(90% - 100px);
  max-width: 1080px;
  margin-right: 10%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 50px;
}

.temoignage-culture .temoignage-culture-content::after {
	content: '';
  position: absolute;
	z-index: -1;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: var(--blue);
}

.temoignage-culture h2 {
	max-width: calc(100% - 80px);
}

.temoignage-culture h2 .title-1 {
	font-family: "Lato";
	font-size: 35px;
	font-weight: 300;
	color: #fff;
	text-transform: uppercase;
	line-height: 100%;
}

.temoignage-culture h2 .title-2 {
	font-family: "Montserrat";
	font-size: 78px;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	line-height: 100%;
  -webkit-transform: translateX(10%);
      -ms-transform: translateX(10%);
          transform: translateX(10%);
}

.temoignage-culture h2 .title-3 {
	font-family: "Pacifico";
	font-size: 78px;
	font-weight: 400;
	color: var(--yellow);
	line-height: 0%;
	position: relative;
	z-index: 2;
	padding-top: 8%;
	padding-bottom: 4%;
	padding-left: 30%;
	width: 100%;
}
.temoignage-culture .text {
	position: relative;
	margin-bottom: 30px;
	margin-top: 50px;
}
.temoignage-culture .text .guillemet:first-child {
  position: absolute;
  right: 103%;
  top: 0%;
  width: 75px;
  height: 75px;
}
.temoignage-culture .text .guillemet:last-child {
	position: absolute;
  right: 15%;
  bottom: 0%;
  width: 75px;
  height: 75px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.temoignage-culture .text .guillemet img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
}
.temoignage-culture p {
	font-family: "Lato";
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 1px;
	line-height: 140%;
	width: 70%;
	color: #fff;
	margin: 0;
	text-align: left;
}
.temoignage-culture p span {
	font-family: "Pacifico";
}
.great-place .flower {
	position: absolute;
  z-index: 4;
}
.great-place .flower.pink {
	top: 30%;
	left: 75%;
	width: 70px;
	height: 70px;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.great-place .flower.blue {
	top: 5%;
	left: 60%;
	width: 40px;
	height: 40px;
	-webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
}
.great-place .flower .schpouiks-3 {
	position: absolute;
	top: 0;
  left: 0;
	width: 100%;
	padding-top: 100%;
	-webkit-transform-origin: center;
	    -ms-transform-origin: center;
	        transform-origin: center;
	-webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
}
.great-place .flower .schpouiks-3 div div {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 80%;
	background-color: var(--pink);
	border-radius: 100px;
	-webkit-transform-origin: bottom;
	    -ms-transform-origin: bottom;
	        transform-origin: bottom;
	-webkit-transform: scaleY(0);
	    -ms-transform: scaleY(0);
	        transform: scaleY(0);
}
.great-place .flower.blue .schpouiks-3 div div {
	background-color: var(--blue);
}

.parrallax-3 {
	padding-bottom: 7.5vh;
	padding-top: 20px;
}

.schpouik-voile {
	position: relative;
	z-index: 4;
	width: 100px;
}

.temoignage-vandbiste {
	position: relative;
	background-color: var(--yellow);
	padding: 100px 0;
	-ms-flex-flow: wrap;
	    flex-flow: wrap;
}

.temoignage-vandbiste .guillemet {
	position: absolute;
	top: 0;
	left: 10px;
	width: 100px;
	-webkit-transform: translateY(-40%);
	    -ms-transform: translateY(-40%);
	        transform: translateY(-40%);
}

.temoignage-vandbiste .guillemet:last-child {
	top: 90%;
	left: unset;
	right: 10px;
	-webkit-transform: translateY(-60%) rotate(180deg);
	    -ms-transform: translateY(-60%) rotate(180deg);
	        transform: translateY(-60%) rotate(180deg);
}

.temoignage-vandbiste .content {
	width: 40%;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	padding: 0 5%;
	min-width: 300px;
}

.temoignage-vandbiste .content p {
	color: var(--blue);
	margin: 10px 0;
	text-align: left;
	max-width: 100%;
}

.temoignage-vandbiste .content p span {
	font-family: "Pacifico";
}

.chiffres-vandbiste-content {
	position: relative;
	width: 100%;
	max-width: 1280px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	padding: 100px 0 50px 0;
	margin-bottom: 100px;
}

.chiffres-vandbiste-content .column {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	width: 50%
}

.chiffres-vandbiste-content .number {
	margin-top: 20px;
	margin-bottom: 50px;
	width: 50%
}

.chiffres-vandbiste-content .number:last-child {
	margin-top: 80px;
}

.chiffres-vandbiste-content .nbr {
	font-family: "Lato";
	font-size: 90px;
	font-weight: 800;
	color: var(--blueDuck);
}

.chiffres-vandbiste-content .nbr::after {
	content: '%';
}

.chiffres-vandbiste-content p {
	font-size: 28px;
  font-weight: 300;
  color: var(--blue);
  text-transform: uppercase;
  margin: 10px 0;
  text-align: center;
  overflow: hidden;
  width: 100%;
}

.chiffres-vandbiste-content .schpouiks {
	bottom: unset;
	top: 100%;
	-webkit-transform: translateX(-25%) rotate(135deg);
	    -ms-transform: translateX(-25%) rotate(135deg);
	        transform: translateX(-25%) rotate(135deg);
	width: 100px;
	height: 100px;
	padding: 0;
	left: 48.5%;
}

.reseau-col {
	width: 80%;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	padding: 100px 0;
}

.reseau-col .column {
	width: 50%;
}

.reseau-col .column:first-child {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.reseau-col .column:last-child {
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

.reseau-col .column .title {
	font-size: 50px;
	font-family: "Pacifico";
	color: var(--pink);
}

.reseau-col .column:last-child .title {
	text-align: right;
}

.reseau-col .column p {
	margin: 10px 0;
}

.reseau-col .column:first-child p {
	text-align: left;
}

.reseau-col .column:last-child p {
	text-align: right;
}

.reseau-col .big-pink-arrow {
	width: 120%;
	-webkit-transform: translateY(-20%);
	    -ms-transform: translateY(-20%);
	        transform: translateY(-20%);
}

.reseau-col .button {
	margin-top: 30px;
}

.schema {
	width: 100%;
}

.schema p {
	margin: 0;
}

.schema .esprit-content {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.schema .schema-image {
	width: 50%;
}

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

.schema .small {
	color: var(--blue);
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 900;
	max-width: 80%;
}
.schema .big {
	color: var(--yellow);
	text-transform: uppercase;
	font-size: 30px;
	font-weight: 900;
	max-width: 80%;
}

.schema .list {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	width: 50%;
}

.schema .list .element {
	width: 100%;
	margin: 30px 0;
}

.partenaires .list {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.schema .great-place .flower.blue {
	top: calc(90% - 40px);
  left: calc(96% - 40px);
  -webkit-transform: rotate(65deg);
      -ms-transform: rotate(65deg);
          transform: rotate(65deg);
}

.schema .great-place .flower.pink {
	top: 5%;
	left: 50%;
	-webkit-transform: rotate(35deg);
	    -ms-transform: rotate(35deg);
	        transform: rotate(35deg);
}

.schema .great-place::after {
	content: unset;
}

.schema .schema-result {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1092px;
	background-color: var(--blue);
	padding: 50px 50px;
	margin: 0 20px;
}

.schema .schema-result .list {
	width: 100%;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.schema .schema-result .list .small {
	color: #fff;
	font-size: 22px;
	text-align: center;
	max-width: 100%;
}

.schema .schema-result .list .big {
	text-align: center;
	max-width: 100%;
}

.schema .list-2 .big {
	font-size: 16px;
}

.siege {
	width: 100%;
}

.siege-content {
	position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 90%;
  padding: 10% 0;
  margin: 50px 0 100px 0;
}

.siege-content .text {
	width: 50%;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.siege-content .text h2 {
	text-transform: uppercase;
}

.siege-content .text p {
	text-align: left;
	margin: 0;
	margin-bottom: 20px;
}

.siege-content .image {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50vw;
	height: 100%;
}

.siege-content .image img {
	width: 100%;
	height: 90%;
	max-width: 800px;
	-o-object-fit: cover;
	   object-fit: cover;
}

.siege-content .image .background-yellow {
	position: absolute;
	z-index: -1;
	top: 10%;
	left: 10%;
	width: 100%;
	max-width: 800px;
	height: 90%;
	background-color: var(--yellow);
}

.process-siege {
	margin-top: 100px;
	width: 100%;
}

.process-siege-content {
	width: 100%;
	max-width: 1280px;
}

.process-siege h2 {
	font-family: "Montserrat";
  font-size: 78px;
  font-weight: 900;
  color: var(--blue);
  text-transform: uppercase;
  line-height: 100%;
  margin-bottom: 40px;
  margin-top: 0;
	text-align: center;
}

.process-siege .process-list {
	position: relative;
	width: 90%;
	max-width: 850px;
}

.process-siege .process-list .element {
	margin: 30px 0;
	width: 100%;
	-webkit-box-pack: left;
	    -ms-flex-pack: left;
	        justify-content: left;
}
.process-siege .process-list .number {
	position: relative;
	width: 100px;
	height: 100px;
	background-color: var(--yellow);
	border-radius: 100%;
}
.process-siege .process-list .number .nbr {
	position: absolute;
  top: 50%;
  left: 50%;
  font-size: 80px;
  font-family: "Pacifico";
  border-radius: 100%;
  color: #fff;
  -webkit-transform: translate(-50%,-55%);
      -ms-transform: translate(-50%,-55%);
          transform: translate(-50%,-55%);
}
.process-siege .process-list .text {
	margin-left: 20px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.process-siege .process-list .text .small {
	color: var(--blue);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 900;
}
.process-siege .process-list .text .big {
	color: var(--yellow);
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 900;
}

.process-siege .flower {
	position: absolute;
  z-index: 4;
}
.process-siege .flower.pink {
	top: 0%;
  left: 115%;
  width: 70px;
  height: 70px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.process-siege .flower.blue {
	top: 75%;
	left: 110%;
	width: 40px;
	height: 40px;
	-webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
}
.process-siege .flower .schpouiks-3 {
	position: absolute;
	top: 0;
  left: 0;
	width: 100%;
	padding-top: 100%;
	-webkit-transform-origin: center;
	    -ms-transform-origin: center;
	        transform-origin: center;
	-webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
}
.process-siege .flower .schpouiks-3 div div {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 80%;
	background-color: var(--pink);
	border-radius: 100px;
	-webkit-transform-origin: bottom;
	    -ms-transform-origin: bottom;
	        transform-origin: bottom;
	-webkit-transform: scaleY(0);
	    -ms-transform: scaleY(0);
	        transform: scaleY(0);
}
.process-siege .flower.blue .schpouiks-3 div div {
	background-color: var(--blue);
}

.avantages {
	width: 100%;
	margin: 100px 0 200px 0;
}

.avantages-content {
	position: relative;
	width: 100%;
	max-width: var(--maxWidth);
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	background-color: var(--blue);
	padding: 100px 0;
}

.avantages-2 .avantages-content {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 40px 0;
}

.avantages-2 .columns {
	position: relative;
	width: calc(100% - 100px);
  margin: 60px 0;
	padding: 0 50px;
}

.avantages .column {
	width: 50%;
}

.avantages-2 .image {
	width: calc(100% - 100px);
	padding: 0 50px;
}

.avantages-2 .image img {
	width: 100%;
}

.avantages h2 {
	width: 90%;
}

.avantages-2 h2 {
	width: auto;
	max-width: 90%;
}

.avantages h2 .title-1 {
	font-family: "Lato";
	font-size: 35px;
	font-weight: 300;
	color: #fff;
	text-transform: uppercase;
	line-height: 100%;
}

.avantages h2 .title-2 {
	font-family: "Montserrat";
	font-size: 78px;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	line-height: 100%;
  -webkit-transform: translateX(10%);
      -ms-transform: translateX(10%);
          transform: translateX(10%);
}

.avantages h2 .title-3 {
	font-family: "Pacifico";
	font-size: 110px;
	font-weight: 400;
	color: var(--yellow);
	line-height: 0%;
	position: relative;
	z-index: 2;
	padding-top: 3%;
	padding-bottom: 10%;
	padding-left: 30%;
}

.avantages .vagues-jaunes {
	position: absolute;
	width: 10vw;
	max-width: 200px;
	min-width: 100px;
}

.avantages .vagues-jaunes:first-child {
	position: absolute;
	bottom: 0;
	left: 0;
  -webkit-transform: translate(-50%,50%);
      -ms-transform: translate(-50%,50%);
          transform: translate(-50%,50%);
}

.avantages .vagues-jaunes:last-child {
	position: absolute;
	top: 0;
	right: 0;
	-webkit-transform: translate(50%,-50%);
	    -ms-transform: translate(50%,-50%);
	        transform: translate(50%,-50%);
}

.avantages .column ul {
	width: 90%;
	list-style: url("images/list-style.svg");
	margin: 0;
	padding: 0;
}

.avantages .column ul li {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	margin: 20px 0;
}

.avantages-2 .direction {
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.avantages-2 .direction .fleches {
  -webkit-transform: translateY(-40%);
      -ms-transform: translateY(-40%);
          transform: translateY(-40%);
}

.avantages-2 .direction .fleches .fleche {
	position: relative;
	width: 40px;
	height: 50px;
}

.avantages-2 .direction .fleches .fleche img {
	position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
      -ms-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
  width: 175%;
  height: 175%;
  -o-object-fit: contain;
     object-fit: contain;
}

.process-franchise {
	margin-top: 100px;
	width: 100%;
}
.process-franchise-content {
	position: relative;
	width: 100%;
	max-width: 1280px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	overflow: hidden;
}
.process-franchise .process-list {
	position: relative;
	width: 45%;
	padding: 0 2.5%;
	max-width: 850px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.process-franchise .process-list h2 {
	font-size: 30px;
	margin-bottom: 60px;
	text-transform: uppercase;
}
.process-franchise .process-list .element {
	margin: 15px 0;
	width: 100%;
	-webkit-box-pack: left;
	    -ms-flex-pack: left;
	        justify-content: left;
}
.process-franchise .process-list .number {
	position: relative;
	width: 48px;
	height: 48px;
	background-color: var(--yellow);
	border-radius: 100%;
}
.process-franchise .process-list .number .nbr {
	position: absolute;
  top: 50%;
  left: 50%;
  font-size: 38px;
  font-family: "Pacifico";
  border-radius: 100%;
  color: #fff;
  -webkit-transform: translate(-50%,-55%);
      -ms-transform: translate(-50%,-55%);
          transform: translate(-50%,-55%);
}
.process-franchise .process-list .text {
	margin-left: 20px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
  max-width: calc(100% - 68px);
}
.process-franchise .process-list .text .small {
	color: var(--blue);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 900;
}
.process-franchise .process-list .text .big {
	color: var(--yellow);
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 900;
}
.process-franchise .process-list .text .big span {
	font-family: "Lato";
	font-size: 16px;
}
.process-franchise .flower {
	position: absolute;
  left: -20px;
  bottom: 0;
  width: 15vw;
  height: 15vw;
  max-width: 200px;
  max-height: 200px;
}
.process-franchise .flower svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.process-franchise .schpouiks-2 {
	bottom: 120%;
}
.process-franchise .schpouiks-2 div div {
	background-color: var(--pink);
}

#arrow-to-top {
	position: absolute;
	bottom: 105%;
	right: 10px;
	width: 50px;
	height: 50px;
	background-color: #fff;
	-webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.3);
	        box-shadow: 0 0 5px 0 rgba(0,0,0,.3);
	font-size: 26px;
	font-weight: 700;
	cursor: pointer;
	z-index: 2;
}

.video-container {
	position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
}

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

.last-blog {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 90%;
	max-width: var(--maxWidth);
}

.last-blog article {
	position: relative;
	width: 30%;
	margin: 0 1.5%;
	height: 40vh;
}

.last-blog article a, .last-blog article img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.last-blog article img {
	-o-object-fit: cover;
	   object-fit: cover;
}

.last-blog article .filter {
  background-color: var(--yellow);
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.last-blog article .title {
	position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 75%;
  height: 90%;
  text-align: center;
  text-transform: uppercase;
  font-family: "Lato";
  font-size: 25px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
  -webkit-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
  opacity: 0;
}

.last-blog article .title .plus {
  position: relative;
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 2px solid #fff;
}

.last-blog article .title .plus div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 3px;
  background-color: #fff;
  border-radius: 100px;
}

.last-blog article .title .plus div:nth-child(1) {
  -webkit-transform: translate(-50%,-50%) rotate(0);
      -ms-transform: translate(-50%,-50%) rotate(0);
          transform: translate(-50%,-50%) rotate(0);
}
.last-blog article .title .plus div:nth-child(2) {
  -webkit-transform: translate(-50%,-50%) rotate(90deg);
      -ms-transform: translate(-50%,-50%) rotate(90deg);
          transform: translate(-50%,-50%) rotate(90deg);
}

.container-blog {
	margin-top: 100px;
}

.container-blog article {
	width: 90%;
	max-width: var(--maxWidth);
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin: 100px 0;
}

.container-blog article a {
	text-decoration: none;
}

.container-blog article .image {
	position: relative;
	width: 30%;
	padding-top: 30%;
}

.container-blog article .image::before {
	content:'';
	position: absolute;
	z-index: -1;
	top: -15%;
	right: 30%;
	width: 50vw;
	height: 100%;
	background-color: var(--yellow);
}

.container-blog article .image a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.container-blog article .container-content {
	width: 65%;
}

.container-blog article .container-content .content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.container-blog article .date {
	color: var(--yellow);
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 900;
}

.container-blog article h2 {
	color: var(--blue);
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 900;
	margin-bottom: 0;
}

.container-blog article .excerpt-link {
	font-family: "Lato";
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 1px;
	line-height: 140%;
	max-width: 80%;
	color: #2F2F2F;
	text-decoration: none;
	margin-bottom: 20px;
}

.pagination {
	width: 100%;
	margin-bottom: 100px;
}

.pagination .page-numbers {
	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;
	width: 40px;
	height: 40px;
	background-color: var(--blue);
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.pagination .page-numbers:hover {
	opacity: 0.6;
}

.pagination .page-numbers.current {
	background-color: var(--yellow);
}

.pagination .page-numbers.current:hover {
	opacity: 1;
}

.pagination .next {
	position: relative;
  bottom: 0;
  left: 0;
  -webkit-transform: unset;
      -ms-transform: unset;
          transform: unset;
}

.blog-page {
	min-height: calc(50vh - 100px);
}

.blog-header h1 {
	font-size: 98px;
}
.blog-header h1 #txt-2 {
	font-size: 145px;
}

.single #page {
	background-color: #F2EDED;
}

.single .bandeau-classique {
	background-size: cover!important;
	background-position: center!important;
	background-repeat: no-repeat!important;
	height: calc(100vh - 300px);
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}

.single .bandeau-classique .title h1 {
	font-size: 40px;
	margin: 0;
  line-height: 100%;
  font-weight: 900;
}

.single .date {
	color: var(--yellow);
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 900;
}

.single .desc-classique {
	position: relative;
	z-index: 3;
	-webkit-transform: translateY(-40vh);
	    -ms-transform: translateY(-40vh);
	        transform: translateY(-40vh);
	margin-bottom: -30vh;
}

.single .desc-classique-content {
	background-color: #fff;
  padding: 40px 60px;
  width: 100%;
  max-width: 1160px;
  -webkit-box-shadow: 6px 6px 15px 0 rgba(0,0,0,0.22);
          box-shadow: 6px 6px 15px 0 rgba(0,0,0,0.22);
}

.single .desc-classique-content::before {
	height: 0;
}

.single .desc-classique-content p {
	text-align: left;
	margin: 15px 0;
	max-width: 100%;
}

.single .desc-classique-content p, .single .desc-classique-content h2, .single .desc-classique-content h3 {
	width: 90%;
	max-width: 90%;
}

.single .desc-classique-content ul {
	width: calc(90% - 40px);
}

.single .desc-classique-content li {
	font-family: "Lato";
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 140%;
	width: 90%;
	max-width: 90%;
	text-align: left;
  color: #2F2F2F;
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.single .desc-classique-content a {
	color: var(--pink);
}

.single .desc-classique-content a.wp-block-button__link {
	background-color: var(--pink);
	color: #fff;
}

.single figure.wp-block-embed-youtube {
	width: 90%;
	margin: 40px 0;
}

.single figure.wp-block-embed-youtube iframe {
	max-height: 590px;
}

.wp-block-buttons {width: 90%; display: -webkit-box; display: -ms-flexbox; display: flex;}
.wp-block-buttons.alignleft {-webkit-box-pack: start;-ms-flex-pack: start;justify-content: flex-start;}
.wp-block-buttons.aligncenter {-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;display: flex;}
.wp-block-button.aligncenter {-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;display: flex;}
.wp-block-buttons.alignright {-webkit-box-pack: end;-ms-flex-pack: end;justify-content: flex-end;}
.share-container .share-button {
	padding: 20px 60px;
	background-color: #fff;
  -webkit-box-shadow: 6px 6px 15px 0 rgba(0,0,0,0.22);
          box-shadow: 6px 6px 15px 0 rgba(0,0,0,0.22);
}

.share-container .share-button p {
	color: var(--yellow);
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 900;
	margin-top: 5px;
}

.share-container .share-button .links .copy, .share-container .share-button .links a {
	margin: 0 10px;
}

.article-footer-container {
	position: relative;
	padding: 100px 0;
}

.article-footer-container::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 65%;
	background-color: #fff;
}

.article-footer-content-container {
	position: relative;
  width: 100%;
  max-width: var(--maxWidth);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--blue);
  padding: 60px 0;
	max-width: 1280px;
}

.article-footer-content-container h2 {
  max-width: calc(100% - 80px);
}

.article-footer-content-container h2 .title-1 {
	font-family: "Lato";
	font-size: 35px;
	font-weight: 300;
	color: #fff;
	text-transform: uppercase;
	line-height: 100%;
}

.article-footer-content-container h2 .title-2 {
	font-family: "Montserrat";
	font-size: 78px;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	line-height: 100%;
	-webkit-transform: translateX(10%);
	    -ms-transform: translateX(10%);
	        transform: translateX(10%);
}

.article-footer-content-container h2 .title-3 {
	font-family: "Pacifico";
  font-size: 110px;
  font-weight: 400;
  color: var(--yellow);
  line-height: 0%;
  position: relative;
  z-index: 2;
  padding-top: 3%;
  padding-bottom: 10%;
}

.article-footer-content-container .last-blog {
	margin: 40px 0;
}

/*the container must be positioned relative:*/
.autocomplete {
  position: relative;
  display: inline-block;
	width: 100%;
}

.accueil .search .autocomplete input {
	width: calc(100% - 40px);
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
	max-height: 220px;
	overflow: scroll;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9;
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}

@media only screen and (min-width: 1920px) {
	.somm-metier .content h1 {
		font-size: 90px;
	}
	.single .desc-classique {
		-webkit-transform: translateY(-50vh);
		    -ms-transform: translateY(-50vh);
		        transform: translateY(-50vh);
		margin-bottom: -40vh;
	}
}

@media only screen and (max-width: 1920px) {
	.accueil h1 {
		font-size: 5.5vw;
	}
	.accueil h1 #txt-2 {
		font-size: 6.5vw;
	}
	.page-template-template-accueil .bandeau-text.big {
		font-size: 2.6vw;
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 1440px) {
	.mobile-header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: var(--blue);
		-webkit-transform: translateX(100%);
		    -ms-transform: translateX(100%);
		        transform: translateX(100%);
	}
	.mobile-header .close {
		width: 40px;
		height: 40px;
		background-color: #fff;
		position: absolute;
		top: 10px;
		right: 10px;
		pointer-events: all;
		cursor: pointer;
	}
	.mobile-header .close div {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 75%;
		height: 3px;
		background-color: var(--blue);
		border-radius: 100px;
	}
	.burger {
		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;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		width: 30px;
		height: 24px;
		pointer-events: all;
		cursor: pointer;
	}
	.burger div {
		width: 100%;
		height: 4px;
		background-color: #fff;
		border-radius: 100px;
	}
	.mobile-header .close div:nth-child(1) {
		-webkit-transform: translate(-50%,-50%) rotate(45deg);
		    -ms-transform: translate(-50%,-50%) rotate(45deg);
		        transform: translate(-50%,-50%) rotate(45deg);
	}
	.mobile-header .close div:nth-child(2) {
		-webkit-transform: translate(-50%,-50%) rotate(-45deg);
		    -ms-transform: translate(-50%,-50%) rotate(-45deg);
		        transform: translate(-50%,-50%) rotate(-45deg);
	}
	.site-header .main-navigation {
		width: 95%;
		position: fixed;
		top: 50%;
		left: 0%;
		-webkit-transform: translate(100vw,-50%);
		    -ms-transform: translate(100vw,-50%);
		        transform: translate(100vw,-50%);
		height: 70vh;
		overflow-y: auto;
		overflow-x: hidden;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		pointer-events: all;
	}
	.site-header .main-navigation::-webkit-scrollbar {
		width: 10px;
	}
	.site-header .main-navigation::-webkit-scrollbar-track {
		background: #555;
		border-radius: 100px;
	}
	.site-header .main-navigation::-webkit-scrollbar-thumb {
		background: var(--yellow);
		border-radius: 100px;
	}
	.site-header .main-navigation::-webkit-scrollbar-thumb:hover {
		background: #6c6c6c;
	}
	.site-header .main-navigation .menu li {
		width: 100%;
		margin: 3px 0;
	}
	.site-header .main-navigation .menu li a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding: 10px 20px;
		background-color: #fff;
		color: var(--blue);
		opacity: 1!important;
		margin: 0!important;
	}
	.site-header .main-navigation .menu li a:hover {
		background-color: var(--yellow);
	}
	.site-header .main-navigation .menu {
		-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;
	}
	.site-header .second-navigation {
		position: fixed;
		bottom: 10px;
		right: 5%;
		width: 90%;
		-webkit-transform: translateX(100vw);
		    -ms-transform: translateX(100vw);
		        transform: translateX(100vw);
		top: unset;
		z-index: unset;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: row-reverse;
		        flex-direction: row-reverse;
	}
	.site-header .main-navigation .menu .sub-menu {
		display: none;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-ms-flex-line-pack: center;
		    align-content: center;
		position: relative;
		top: unset;
		left: unset;
		width: 90%;
		padding: 0;
		padding-left: 10%;
		max-height: unset;
		max-width: unset;
		-webkit-transform: unset;
		    -ms-transform: unset;
		        transform: unset;
		-webkit-transition: unset;
		-o-transition: unset;
		transition: unset;
		z-index: unset;
		-webkit-transform-origin: top right;
		    -ms-transform-origin: top right;
		        transform-origin: top right;
		height: unset;
		max-height: unset;
	}
	.site-header .main-navigation .menu .sub-menu.show-sub-menu {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.site-header .main-navigation .menu .sub-menu li:first-child {
		display: none;
	}
	.site-header .main-navigation .menu .sub-menu li {
		width: 100%;
		height: auto;
		pointer-events: all;
		padding: 0;
		margin: 0;
	}
	.site-header .main-navigation .menu li:hover .sub-menu,
	.site-header .main-navigation .menu li .sub-menu:hover {
		-webkit-transform: unset;
		    -ms-transform: unset;
		        transform: unset;
	}
	.site-header .social-medias a {
		width: 30px;
	}
	.site-header .social-medias a img {
		width: 100%;
	}
	/*.site-header .second-navigation {
		position: absolute;
		top: 100%;
		right: 0%;
		z-index: -2;
		flex-direction: row-reverse;
		width: 300px;
		max-width: 100%;
	}
	.site-header .main-navigation .menu li a {
		font-size: 12px;
	}
	.site-header .main-navigation .menu .sub-menu {
		width: calc(100% - 160px);
		padding-left: 80px;
		padding-right: 80px;
	}
	.site-header .main-navigation .menu .sub-menu li:first-child a {
		font-size: 2.5vw;
	}
	.site-header .main-navigation .menu .sub-menu {
		height: 40vh;
		max-height: 40vh;
	}
	.site-header .main-navigation .menu .sub-menu li:first-child {
		height: 40vh;
		width: auto;
	}
	.site-header .main-navigation {
		width: 80%;
	}*/
	.esprit {
		padding-top: 0;
		padding-bottom: 0;
	}
	.great-place {
		padding-bottom: 75px;
	}
	.page-template-template-conditions .great-place {
		padding-top: 50px;
	}
	.esprit .esprit-content {
    width: calc(65% - 50px);
    padding: 50px 30% 50px 50px;
	}
	.great-place .esprit-content {
		width: calc(100% - 70px);
		padding: 50px 20px 50px 50px;
	}
	.esprit .image {
		-webkit-transform: translateX(0%);
		    -ms-transform: translateX(0%);
		        transform: translateX(0%);
	}
	.esprit h2 {
		font-size: 5vw;
	}
	.esprit h2 .title-2, .esprit h2 .title-3 {
		font-size: 9vw;
	}
	.page-template-template-accueil .bandeau-text {
		font-size: 2vw;
	}
	.page-template-template-accueil .next.blue {
		margin-bottom: 25px;
		margin-top: 50px;
	}
	.decouvrir {
		padding-top: 0;
		padding-bottom: 0;
	}
	.page-template-template-audace .decouvrir {
		padding-top: 0;
		padding-bottom: 100px;
	}
	.decouvrir-content .image .flower {
		width: 10vw;
		height: 10vw;
	}
	.decouvrir h2 .title-1 {
		font-size: 3vw;
	}
	.decouvrir h2 .title-2 {
    font-size: 6vw;
	}
	.decouvrir h2 .title-3 {
    font-size: 9vw;
	}
	.decouvrir h3 {
		font-size: 2vw;
	}
	.rss-gallery {
		margin-top: 0;
		padding-top: 0;
	}
	.temoignage .text-content {
		font-size: 22px;
		line-height: 120%;
	}
}

@media only screen and (max-width: 1280px) {
	.bandeau-metier h1 {
		font-size: 7.5vw;
		max-width: 80%;
	}
	.rss-gallery h2 {
		font-size: 6vw;
	}
	.somm-metier-content {
		margin-top: 100px;
	}
	.bandeau-classique .title {
		font-size: 8vw;
	}
	.bandeau-classique .schpouiks:last-child, .bandeau-classique .schpouiks:first-child {
		width: 10vw;
		padding-top: 10vw;
	}
	.bandeau-metier .bandeau-text, .bandeau-classique .bandeau-text {
		font-size: 2.5vw;
	}
	.desc-classique-content .title h2.reverse .title-1 {
		font-size: 7vw;
	}
	.desc-classique-content .title h2.reverse .title-2 {
		font-size: 6vw;
		padding-left: 60px;
	}
	.chiffres-vandbiste-content p {
		font-size: 2.6vw;
	}
	.temoignage-culture .temoignage-culture-content {
		padding: 50px 50px 50px 10%;
	}
	.pictos-concept .pictos .picto h2 {
		font-size: 2.5vw;
	}
	.desc-classique .carte-reseau {
		top: 50%;
		left: 75%;
		width: 350px;
		height: 370px;
	}
	.desc-concept-content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.desc-concept-content .column {
		width: 95%;
	}
	.desc-concept .flower {
		bottom: calc(50% + 100px);
	}
	.desc-concept .column:last-child p {
		width: 90%;
		text-align: center;
	}
	.temoignage-classique-2 .image {
		height: 40%;
	}
	.graphique-magasins h2 .title-1 {
    font-size: 8vw;
	}
	.graphique-magasins h2 .title-2 {
    font-size: 6vw;
		padding-left:90px;
	}
	.graphique-magasins .barres {
		width: calc(100% - 150px);
	}
	.objectif h2 .title-1 {
		font-size: 4vw;
	}
	.objectif h2 .title-2 {
		font-size: 6vw;
	}
	.objectif h2 .title-3 {
		font-size: 9vw;
	}
	.article-footer-content-container h2 .title-1 {
		font-size: 4vw;
	}
	.article-footer-content-container h2 .title-2 {
		font-size: 6vw;
	}
	.article-footer-content-container h2 .title-3 {
		font-size: 9vw;
	}
	.objectif .direction .title {
		font-size: 3vw;
	}
	.objectif .direction .title span {
		font-size: 5vw;
	}
	.objectif .direction {
		position: relative;
	}
	.objectif .direction .fleches {
		position: absolute;
		bottom: 130%;
		left: 50%;
		-webkit-transform: translateX(-50%);
		    -ms-transform: translateX(-50%);
		        transform: translateX(-50%);
	}
	.objectif .direction .fleches .fleche {
		width: 3vw;
		height: 3vw;
	}
	.objectif .text-objectif {
		margin-bottom: 70px;
	}
	.avantages h2 .title-1 {
		font-size: 2.5vw;
	}
	.avantages h2 .title-2 {
		font-size: 5vw;
	}
	.avantages h2 .title-3 {
		font-size: 8vw;
	}
	.desc-metier h2 .title-1 {
		font-size: 6vw;
	}
	.desc-metier h2 .title-2 {
		font-size: 8vw;
	}
	.desc-metier h2 .title-3 {
		font-size: 5vw;
	}
	.temoignage-classique-2 .content .guillemet:first-child {
	  width: 80px;
	  height: 80px;
	}
	.temoignage-classique-2 .content .guillemet:last-child {
		position: absolute;
		right: 0%;
		bottom: 5%;
		width: 80px;
		height: 80px;
	}
	.single .desc-classique {
		-webkit-transform: translateY(-30vh);
		    -ms-transform: translateY(-30vh);
		        transform: translateY(-30vh);
		margin-bottom: -20vh;
	}
}

@media only screen and (max-width: 1000px) {
	.bandeau-classique {
		padding: 100px 0;
	}
	.page-template-template-blog .accueil {
		min-height: calc(45vh - 100px);
	}
	.accueil .last-blog {
		display: none;
	}
	.single .last-blog {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.single .last-blog article {
		width: 100%;
		margin-bottom: 30px;
	}
	.single .last-blog article .filter {
		opacity: 0.3
	}
	.single .last-blog article .title {
		opacity: 1;
		text-shadow: 0 0 5px #000;
	}
	.container-blog article {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		margin: 40px 0 80px 0;
	}
	.container-blog article .image {
		width: 100%;
		padding-top: 50%;
	}
	.container-blog article .image::before {
		width: 100%;
	}
	.container-blog article .container-content {
		width: 90%;
		margin-top: 30px;
	}
	.container-blog article h2 {
		font-size: 22px;
	}
	.page-template-template-reseau .temoignage-classique .image {
    width: 90%;
		top: -5%;
    right: 10%;
    height: 50vh;
    min-height: 200px;
	}
	.page-template-template-reseau .temoignage-classique .content {
		padding: 50vh 5% 50px 5%;
		width: 90%;
	}
	.page-template-template-reseau .temoignage-classique .content p {
		width: 100%;
		max-width: 100%;
	}
	.page-template-template-reseau .temoignage-classique-2 .content .guillemet:first-child {
		right: unset;
		left: 2%;
    top: 38vh;
	}
}

@media only screen and (max-width: 768px) {
	.desc-metier h2 .title-1 {
		font-size: 6vw;
	}
	.desc-metier h2 .title-2 {
		font-size: 7vw;
		padding-top: 3%;
		padding-bottom: 8%;
		padding-left: 10%;
		width: 100%;
	}
	.desc-metier h2 .title-3 {
		font-size: 4vw;
	}
	.desc-metier {
		padding-bottom: 10px;
	}
	.pictos-metier {
		padding: 50px 0;
	}
	.pictos-metier h2 {
		font-size: 38px;
	}
	.pictos-metier .pictos .picto {
		width: 90%;
		margin: 40px 1.5%;
	}
	.temoignage {
		margin-top: 150px;
	}
	.temoignage .image {
		width: 50%;
    height: auto;
    padding-top: 80%;
    -webkit-transform: translateY(-30%);
        -ms-transform: translateY(-30%);
            transform: translateY(-30%);
	}
	.temoignage .content {
		margin-left: 0;
		width: 80%;
		padding: 65vw 10% 150px 10%;
		min-height: unset;
	}
	.temoignage .content .text {
		width: 90%;
		-webkit-transform: translateX(0);
		    -ms-transform: translateX(0);
		        transform: translateX(0);
		font-size: 35px;
	}
	.page-template-template-accueil .bandeau-text.big {
		margin-bottom: 80px;
    letter-spacing: 10px;
	}
	.accueil .search {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		margin-top: 50px;
	}
	.accueil .search input[type="text"] {
		width: calc(100% - 40px);
	}
	.accueil .search input[type="submit"] {
		width: auto;
	}
	.page-template-template-accueil .bandeau-text {
		font-size: 20px;
		letter-spacing: 1px;
		padding: 15px;
	}
	.esprit .bandeau-text {
		position: absolute;
		top: 20px;
		left: 3%;
		max-width: 90%;
		font-size: 10px;
	}
	.esprit h2 .title-1 {
		margin-bottom: 5px;
	}
	.esprit .esprit-content {
		width: calc(100% - 40px);
		padding: 50px 30% 50px 50px;
		margin: 0;
	}
	.great-place .esprit-content {
		padding: 50px 20px 50px 50px;
	}
	.bandeau-metier .bandeau-text, .bandeau-classique .bandeau-text {
		font-size: 3vw;
	}
	.desc-classique-content h1 .title-1 {
		font-size: 15vw;
	}
	.desc-classique-content h1 .title-2 {
		font-size: 10vw;
		padding-left: 90px;
	}
	.desc-classique-content .pictos-concept .pictos {
		-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;
	}
	.desc-classique-content .pictos-concept .pictos .picto {
		width: 90%;
    margin: 40px 1.5%;
		min-width: 0;
	}
	.desc-classique-content .pink-arrow {
		width: 8vw;
		min-width: 0;
		max-width: 80px;
	}
	.temoignage-vandbiste .content {
		width: 90%;
		margin: 25px 0;
	}
	.chiffres-vandbiste-content {
		-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;
		margin-bottom: 200px;
	}
	.chiffres-vandbiste-content .column {
		width: 90%;
		-ms-flex-flow: wrap;
		    flex-flow: wrap;
	}
	.chiffres-vandbiste-content .number {
		min-width: 300px;
	}
	.chiffres-vandbiste-content .number:last-child {
		margin-top: 20px;
	}
	.chiffres-vandbiste-content p {
		font-size: 3.6vw;
	}
	.decouvrir-2 .decouvrir-content .image {
		min-height: 450px;
	}
	.decouvrir-2 .decouvrir-content .text {
		padding: 0;
		width: 50%;
	}
	.decouvrir-2 .decouvrir-content .text p {
		max-width: 100%;
	}
	.great-place .flower.pink {
		top: 10%;
		left: 80%;
	}
	.temoignage-culture h2 .title-2 {
		font-size: 7vw;
	}
	.temoignage-culture h2 .title-3 {
		font-size: 8vw;
	}
	.temoignage-culture p {
		width: 100%;
		max-width: 100%;
	}
	.temoignage-culture .text .guillemet:last-child {
		right: unset;
		left: 100%;
	}
	.pictos-concept .pictos .picto h2 {
		font-size: 5.5vw;
	}
	.temoignage-classique {
		margin-bottom: 0;
	}
	.page-template-template-culture .temoignage-classique, .page-template-template-audace .temoignage-classique {
		margin-bottom: 0;
	}
	.temoignage-classique .content {
		padding: 50vh 5% 50px 5%;
		width: 90%;
	}
	.temoignage-classique .content p {
		width: 100%;
		max-width: 100%;
	}
	.temoignage-classique .image {
    width: 90%;
		top: -5%;
    right: 10%;
    height: 50vh;
    min-height: 200px;
	}
	.temoignage-concept-responsive {
		margin-top: 150px;
	}
	.temoignage-concept-responsive .image {
		padding-top: 0;
		height: 80vh;
	}
	.page-template-template-concept .temoignage-classique .image {
		left: 5%;
		width: 90%;
		top: 5%;
		-webkit-transform: translateY(0);
		    -ms-transform: translateY(0);
		        transform: translateY(0);
	}
	.temoignage-concept-responsive .content {
		padding: 80vh 5% 50px 5%;
		margin-left: 0;
	}
	.page-template-template-concept .temoignage-concept-responsive .content {
		padding: 25vh 5% 50px 5%;
	}
	.groupes {
		padding: 50px 0;
	}
	.groupes .groupes-list {
		margin-top: 30px;
		-ms-flex-flow: wrap;
		    flex-flow: wrap;
	}
	.groupes .groupes-list .groupe {
		min-width: 425px;
	}
	.desc-classique .carte-reseau {
		top: 70%;
		left: 50%;
	}
	.page-template-template-reseau .desc-classique-content p {
		width: 100%;
		max-width: 100%;
	}
	.desc-concept-content {
		margin-top: 300px;
	}
	.graphique-magasins .barres .barre {
		width: 20px;
	}
	.graphique-magasins .barres .barre:nth-child(2n+0) .year {
		display: none;
	}
	.desc-concept .flower {
		bottom: calc(50% + 350px);
	}
	.page-template-template-reseau .desc-classique-content {
    width: calc(100% - 100px);
		padding: 0 50px;
		padding-bottom: 200px;
	}
	.desc-concept-content .column {
		-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;
	}
	.desc-concept-content .column .numbers-column {
		width: 100%;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.desc-concept .numbers-column:last-child {
		margin-top: 0;
	}
	.reseau-col {
		width: 90%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		padding: 40px 0;
	}
	.reseau-col .column {
		width: 100%;
	}
	.reseau-col .big-pink-arrow {
		width: 60%;
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
	}
	.page-template-template-conditions .desc-classique-content h2 {
		text-align: center;
	}
	.schema .great-place .flower.pink {
		display: none;
	}
	.schema .esprit-content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.schema .great-place .flower {
		display: none;
	}
	.schema .schema-image {
		width: 75%;
		margin-top: 50px;
	}
	.schema .list {
		width: 100%;
	}
	.schema .list .element {
		margin: 10px 0;
	}
	.schema .schema-result .list {
		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;
	}
	.schema .schema-result .list .element {
		max-width: 90%;
	}
	.siege-content {
		-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;
		padding: 0;
		padding-top: 10vh;
		margin-top: 50vh;
	}
	.siege-content .text, .siege-content .image {
		width: 100%;
	}
	.siege-content .image {
		top: unset;
		bottom: 90%;
		width: 100%;
		left: 0;
		height: 50vh;
	}
	.process-siege .process-list .number {
    width: 15vw;
    height: 15vw;
	}
	.process-siege .process-list .number .nbr {
		font-size: 11vw;
	}
	.process-siege .process-list .text {
		max-width: 65vw;
	}
	.process-siege .flower {
		display: none;
	}
	.process-siege h2 {
		font-size: 8vw;
	}
	.avantages-content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.avantages .column {
		width: 100%;
	}
	.avantages h2 .title-1 {
		font-size: 3vw;
	}
	.avantages h2 .title-2 {
		font-size: 6vw;
		-webkit-transform: translateX(5%);
		    -ms-transform: translateX(5%);
		        transform: translateX(5%);
	}
	.avantages h2 .title-3 {
		font-size: 9vw;
		padding-left: 60px;
	}
	.avantages h2 {
		width: unset;
		max-width: 90%;
	}
	.process-franchise-content {
		-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;
	}
	.process-franchise .process-list {
		width: 75%;
	}
	.process-franchise .process-list:last-child {
		margin-top: 100px;
	}
	.process-franchise .process-list h2 {
		margin-bottom: 20px;
		font-size: 26px;
	}
	.avant-apres .columns {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.avant-apres .direction {
    bottom: 46%;
    left: 83.5%;
    -webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) translateX(-50%) rotate(90deg);
            transform: translateY(-50%) translateX(-50%) rotate(90deg);
	}
	.avant-apres {
		margin-bottom: 50px;
	}
	.partenaires .esprit-content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
    width: calc(100% - 150px);
	}
	.partenaires .schema-image, .partenaires .schema-image img {
		width: 100%;
	}
	.temoignage-classique-2 .content .guillemet:first-child {
		right: unset;
		left: 2%;
    top: 38vh;
	}
	.picto-footer-2 {
		position: relative;
		left: 0;
		top: 0;
		height: 100px;
		width: 100%;
	}
	.picto-footer-2 img {
    -o-object-position: right;
       object-position: right;
	}
	.single .bandeau-classique {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	.single .desc-classique {
		-webkit-transform: translateY(0);
		    -ms-transform: translateY(0);
		        transform: translateY(0);
		margin-bottom: 60px;
	}
	.page-template-template-integrer-reseau .objectif-2 {
		padding-bottom: 40vw;
	}
	.single .desc-classique-content {
		padding: 40px 20px;
	}
}

/* @media only screen and (max-width: 550px) { */
@media only screen and (max-width: 625px) {
	.graphique-magasins .barres .barre {
		width: 15px;
	}
	.graphique-magasins .barres .barre:nth-child(4n+1) .year {
		display: none;
	}
}

/* @media only screen and (max-width: 425px) { */
@media only screen and (max-width: 600px) {
	.page-template-template-accueil .bandeau-text.big {
		font-size: 20px;
	}
	.site-header .logo {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		height: 80%;
		width: 20%;
		max-height: 40px;
	}
	.somm-metier {
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
	.somm-metier-content {
		padding-top: 90px;
		position: relative;
		z-index: 2;
		margin-top: 0;
	}
	.somm-metier .content {
		width: calc(100% - 100px);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 50px;
	}
	.somm-metier-content .bandeau-text {
		font-size: 20px;
		padding: 10px;
	}
	.somm-metier .content h1 {
		min-height: 60px;
		font-size: 7vw;
	}
	.somm-metier .content p {
    width: 100%;
    margin-top: 60px;
	}
	.somm-metier .image {
		width: 100%;
		height: 250px;
		top: 0;
		right: 0;
	}
	.somm-metier .image .flower {
		z-index: 2;
		right: -2%;
	}
	.bandeau-metier {
		min-height: 250px;
    padding: 50px 0 25px 0;
	}
	.bandeau-metier h1 {
		margin-top: 20px;
    margin-bottom: 0px;
	}
	.bandeau-metier .bandeau-text {
		font-size: 20px;
		padding: 10px;
	}
	.desc-metier-content::before {
		height: 0;
	}
	.desc-metier p {
		margin: 20px 0;
	}
	.desc-metier .hashtags {
		margin-top: 20px;
	}
	.accueil h1 #txt-1 {
		font-size: 38px;
	}
	.accueil h1 #txt-2{
		font-size: 48px;
		padding-left: 0;
	}
	.accueil .search input[type="text"] {
		font-size: 14px;
	}

	.accueil .search input::-webkit-input-placeholder {
		font-size: 14px;
	}

	.accueil .search input::-moz-placeholder {
		font-size: 14px;
	}

	.accueil .search input:-ms-input-placeholder {
		font-size: 14px;
	}

	.accueil .search input::-ms-input-placeholder {
		font-size: 14px;
	}

	.accueil .search input::placeholder {
		font-size: 14px;
	}
	.esprit .esprit-content {
		width: calc(100% - 40px);
    padding: 50px 20px 60vh 20px;
		margin: 0;
	}
	.great-place .esprit-content {
		padding: 50px 20px 50px 50px;
	}
	.esprit h2 {
		font-size: 9vw;
	}
	.esprit h2 .title-2, .esprit h2 .title-3 {
		font-size: 12vw;
	}
	.esprit .image {
		left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 50vh;
    width: 80%;
	}
	.esprit p {
		max-width: 100%;
	}
	.page-template-template-accueil .next {
		width: 100%;
	}
	.decouvrir {
		margin-top: 50px;
	}
	.page-template-template-audace .decouvrir {
		padding-bottom: 0;
	}
	.decouvrir-content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.page-template-template-audace .decouvrir-content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
	.page-template-template-audace .decouvrir-2.parrallax-3 .decouvrir-content {
		padding-bottom: 100px;
	}
	.decouvrir-content .image {
		width: 50%;
		height: 40vh;
	}
	.decouvrir .decouvrir-content .text {
		width: 85%;
    margin-top: 50px;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		text-align: left;
	}
	.decouvrir .decouvrir-content .text p {
		max-width: 100%;
	}
	.decouvrir .decouvrir-content .text h2 {
		width: 100%;
		margin-bottom: 0;
	}
	.decouvrir h2 .title-1 {
		font-size: 30px;
	}
	.decouvrir h2 .title-2 {
    font-size: 46px;
	}
	.decouvrir h2 .title-3 {
    font-size: 65px;
	}
	.decouvrir h3 {
		font-size: 4vw;
	}
	.rss-gallery-content {
		width: calc(85% - 40px);
    padding: 50px 20px;
	}
	.rss-gallery .gallery {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		-ms-grid-rows: auto 10px auto 10px auto 10px auto;
		grid-template-rows: auto auto auto auto;
		gap: 10px 10px;
		    grid-template-areas:
				"image-1"
				"image-2"
				"image-3"
				"image-4";
	}
	.rss-gallery h2 {
		font-size: 38px;
	}
	.temoignage .image {
		width: 80%;
		padding-top: 120%;
	}
	.temoignage .content {
		padding: 100vw 10% 150px 10%;
	}
	.bandeau-metier .bandeau-text, .bandeau-classique .bandeau-text {
		font-size: 4vw;
	}
	.pictos-concept .pictos .picto h2 {
		font-size: 8vw;
	}
	.desc-classique-content h2 {
		width: 80%;
	}
	.desc-classique-content h1 .title-2 {
		padding-left: 60px;
	}
	.chiffres-vandbiste-content p {
		font-size: 6.4vw;
	}
	.wp-block-columns {
		padding: 0 20px;
	}
	.page-template-template-culture .esprit h2 {
		margin-top: 0;
	}
	.great-place h2 .title-1 {
		font-size: 9vw;
	}
	.great-place .flower {
		display: none;
	}
	.great-place p {
		margin: 0;
	}
	.temoignage-culture h2 .title-1 {
		font-size: 6vw;
	}
	.decouvrir-2 .decouvrir-content .image {
		width: 100%;
	}
	.page-template-template-audace .decouvrir-content .image {
		margin-top: 100px;
	}
	.decouvrir-2 .decouvrir-content .image img {
		left: 20%;
		width: 90%;
		height: 90%;
	}
	.decouvrir-2 .decouvrir-content .text {
		width: 90%;
		padding: 0 5%;
		margin-top: 0;
	}
	.decouvrir-2 .decouvrir-content .text p {
		margin-top: 20px;
		margin-bottom: 20px;
		text-align: left;
	}
	.decouvrir-2.parrallax-2 .decouvrir-content:first-child {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.decouvrir-2.parrallax-2 .decouvrir-content .image, .decouvrir-2.parrallax-3 .decouvrir-content .image {
		width: 100%;
	}
	.decouvrir-2.parrallax-2 .decouvrir-content .image img {
    left: -20%;
    width: 90%;
	}
	.decouvrir-2.parrallax-3 .decouvrir-content .image img {
		left: 20%;
    width: 90%;
	}
	.decouvrir-2.parrallax-2 .decouvrir-content .text, .decouvrir-2.parrallax-3 .decouvrir-content .text {
		margin-top: 0;
		padding-top: 0;
	}
	.decouvrir-2.parrallax-2 {
		padding-bottom: 0;
	}
	.groupes .groupes-list .groupe {
		width: 90%;
		min-width: 0;
	}
	.desc-concept .flower {
		display: none;
	}
	.graphique-magasins {
		padding-bottom: 200px;
	}
	.graphique-magasins .barres {
		padding-top: 0;
		padding-left: 25px;
		width: calc(100% - 50px);
	}
	.graphique-magasins .barres .barre {
		width: 11px;
	}
	.graphique-magasins .barres .barre .addition {
		z-index: 10;
		font-size: 12px;
	}
	.desc-concept p {
		font-size: 18px;
	}
	.desc-concept .number p {
		font-size: 28px;
	}
	.desc-classique .carte-reseau {
		width: 300px;
		height: 320px;
	}
	.desc-concept-content {
		margin-top: 200px;
	}
	.schema .schema-result .list .small {
		font-size: 18px;
	}
	.schema .schema-result .list .big {
		font-size: 22px;
	}
	.process-siege .process-list .text .big {
		font-size: 22px;
	}
	.avantages h2 .title-1 {
		font-size: 20px;
	}
	.avantages h2 .title-2 {
		font-size: 30px;
		-webkit-transform: translateX(5%);
		    -ms-transform: translateX(5%);
		        transform: translateX(5%);
	}
	.avantages h2 .title-3 {
		font-size: 45px;
		padding-left: 60px;
	}
	.process-franchise .process-list {
		width: 90%;
	}
	.process-franchise .process-list .text .big {
		font-size: 22px;
	}
	.partenaires .esprit-content {
    width: calc(100% - 80px);
		padding: 20px 10px;
	}
	.partenaires .esprit-content .schema-image {
		margin-top: 50px;
	}
	.temoignage-culture {
		margin-bottom: 0;
	}
	.temoignage-culture .temoignage-culture-content {
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		margin-right: 0;
		width: calc(100% - 100px);
	}
	.reseau-col .column .title {
		line-height: 100%;
	}
	.page-template-template-franchise .desc-classique-content p {
		margin: 0 0 40px 0;
	}
	.process-franchise, .process-franchise .process-list:last-child {
		margin-top: 20px;
	}
	.process-franchise .flower {
		display: none;
	}
	.avantages-2 .image {
		padding: 0;
		width: 100%;
	}
	.objectif .direction .title {
		padding: 0 10px;
	}
	.objectif .objectif-content {
		width: calc(100% - 20px);
		padding: 30px 10px;
	}
	.objectif-2 {
		padding-bottom: 0;
	}
	.page-template-template-integrer-reseau .objectif-2 {
		padding-bottom: 40vw;
	}
	.bandeau-text {
		padding: 15px 30px 15px 30px;
	}
	.bandeau-classique .title {
		margin-top: 20px;
		margin-bottom: 30px;
	}
	.bandeau-page-modele {
		padding-top: 100px;
		height: calc(40vh - 150px);
	}
	.bandeau-page-modele h1 {
		font-size: 26px;
		margin-top: 0;
	}
	.desc-page-modele-content {
		width: calc(90% - 20px);
		padding: 0 20px;
	}
	.desc-page-modele-content::before {
		height: 10px;
	}
	.picto-footer {
		position: relative;
		left: 0;
		top: 0;
		height: 100px;
		width: 100%;
	}
	.picto-footer img {
    -o-object-position: right;
       object-position: right;
	}
	.image-1 {
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
	}
	.image-2 {
		-ms-grid-row: 3;
		-ms-grid-column: 1;
	}
	.image-3 {
		-ms-grid-row: 5;
		-ms-grid-column: 1;
	}
	.image-4 {
		-ms-grid-row: 7;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
	}
}

.wp-element-caption{
	text-align: center;
}
