@font-face {
	font-family: 'AccentGraphic';
	font-style: bold;
	font-weight: 800;
	src: url(AGBold.woff2) format('woff2');
}

:root {
	--fondMarque: white;
	--texteMarque: black;
	--accentMarque: #E44F2A;
}

* {
	box-sizing: border-box;
}

html {
	color: var(--texteMarque);
	background-color: var(--fondMarque);
}

body {
	margin: 0;
	overflow: hidden;
	font-family: 'Open sans', sans-serif;
	font-size: 2vh;
}

.animation_chargement {
	width: 3.5em;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto 0 auto;
}
.animation_chargement div {
	width: 0.8em;
	height: 0.8em;
	border-radius: 50%;
	background-color: #FFF;
	animation: fade 0.8s ease-in-out alternate infinite;
}
.animation_chargement div:nth-of-type(1) {
	animation-delay: -0.4s;
}
.animation_chargement div:nth-of-type(2) {
	animation-delay: -0.2s;
}

@keyframes fade {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes tourne {
	from {
		transform: rotate(-15deg);
	}
	to {
		transform: rotate(15deg)
	}
}

@keyframes flotte {
	from {
		transform: rotate(-1deg);
	}
	to {
		transform: rotate(3deg);
	}
}
.flotte {
	animation: flotte;
	animation-duration: 10s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

#progression {
	position: absolute;
	display: none;
	bottom: 0;
	right: 0;
	height: 1px;
	width: 10%;
	background-color: #E44F2A;
	transition: none;
	z-index: 15;
}
#progression.go {
	width: 0%;
	transition: width linear 5s;
}

#chargement > div, #erreur_critique > div, #association > div {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 200%;
	text-align: center;
	color: white;
	background-color: #262626;
}
#association > div > * {
	padding: 0 1em;
}
#association .code_assoc {
	font-size: 400%;
}

#erreur_critique pre {
	font-size: 80%;
	color: #888;
}

section.sequence {
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	margin: 0 auto;
	display: none;
	position: absolute;
	background: var(--fondMarque)
}
.entete {
	position: relative;
	height: 16vh;
	display: flex;
	align-items: center;
	color: var(--texteMarque);
	background-color: var(--fondMarque);
	border-style: solid;
	border-color: var(--texteMarque);
	border-width: 0 0 3px 0;
	font-size: 2vw;
}

.entete img {
	object-fit: scale-down;
	height: 100%;
	max-width: 20%;
}
.entete h1 {
	height: 100%;
	flex-grow: 1;
	font-family: AccentGraphic;
	font-weight: bold;
	text-align: center;
	margin: 0;
	/* lui-même en flex pour aligner verticalement le span créé par autofit */
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
}

.affichage {
	width: 100%;
	height: calc( 100% - 16vh );
	overflow: hidden;
	position: relative;
}

.carousel {
	position: relative;
	width: 100%;
	height: 100%;
	padding:0; margin:0;
	list-style: none;
}
.carousel li {
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateX(100%) scale(.5,.5);
	transition: transform 800ms linear;
	transition-delay: 0;
}
.carousel .vue {
	transform: translateX(0) scale(1,1);
	transition-delay: 200ms;
}
.carousel .passee {
	transform: translateX(-100%) scale(.5,.5);
}
.carousel img.plus-haut {
	height: 100%;
	width: auto;
}
.carousel img.plus-large {
	height: auto;
	width: 100%;
}

.carousel h3 {
	position: absolute;
	z-index: 2;
	top: 100%;
	left: 0;
	width: 100%;
	margin: 0;
	text-align: center;
	transform: translateY(0);
	transition: transform 800ms linear;
}
.carousel .vue h3 {
	transform: translateY(-100%);
}

.carousel h3 span {
	padding: 15px;
	background-color: rgba(0,18,36,0.6);
	color: white;
	font-family: 'Open sans', sans-serif;
	font-size: 2.5vh;
	font-family: bold;
	max-width: 70%;
	display: inline-block;
	border-radius: 15px 15px 0 0;
	font-variant-caps: all-petite-caps;
}

/* Séquence agenda */

@keyframes glisse_gauche {
	from {
		/* Etat initial */
	}
	to {
		transform: translateX(0vw);
	}
}

.sequence-agenda .evenements {
	position: absolute;
	height: 100%;
	width: 100%;
}
.sequence-agenda .evenements > div {
	display: flex;
	margin: 1vw;
	animation-name: glisse_gauche;
	animation-duration: .25s;
	animation-timing-function: linear;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
.sequence-agenda .evenements > div:nth-child(1) {
	transform: translateX(100vw);
	animation-delay: .5s;
}
.sequence-agenda .evenements > div:nth-child(2) {
	transform: translateX(-100vw);
	animation-delay: .7s;
}
.sequence-agenda .evenements > div:nth-child(3) {
	transform: translateX(100vw);
	animation-delay: .9s;
}
.sequence-agenda .evenements .date {
	width: 25vw;
	flex-shrink: 0;
	margin: 1vw;
}
.sequence-agenda .evenements .date.fixe ,
.sequence-agenda .evenements .date.flip .front {
	font-size: 200%;
}

.sequence-agenda .evenements .date .back {
	display: flex;
	justify-content: center;
	align-items: center;
}
.sequence-agenda .evenements .date img {
	max-height: 100%;
	max-width: 100%;
	object-fit: scale-down;
	border: 5px solid var(--accentMarque);
	border-radius: 10px;
}
.sequence-agenda .evenements .texte {
	font-size: 150%;
	margin: 0;
	padding: 1vw;
	flex-grow: 1;
	height: 100%;
	border-radius: 2vw;
	border: 1px solid var(--texteMarque);
	color: var(--texteMarque);
	background: var(--fondMarque);
	display: flex;
	flex-direction: column;
	position: relative;
}
.sequence-agenda .evenements .titre {
	display: block;
	font-weight: bold;
	color: var(--accentMarque);
	margin-bottom: .5em;
	font-variant: small-caps;
	letter-spacing: .1em;
}

.sequence-agenda .evenements .descriptif {
	display: block;
	flex-grow: 1;
	display: flex;
	align-items: center;
	white-space: pre-line;
	font-size: 40%;
}
.sequence-agenda .calendar {
	background-color: var(--texteMarque);
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
}
.sequence-agenda .calendar .mois {
	color: var(--fondMarque);
	background: var(--accentMarque);
	text-transform: capitalize;
	text-align: center;
	font-weight: bold;
}

.sequence-agenda .calendar .jour i {
	font-size: 40%;
	margin: auto 10px;
	vertical-align: middle;
	font-style: normal;
	font-weight: normal;
}

.sequence-agenda .evenements .horaires {
	display: block;
	position: absolute;
	right: 4vw;
	top: -.5vw;
	height: 25%;
	width: 40%;
	text-align: right;
	font-size: 50%;
}
.sequence-agenda .evenements .horaires span {
	background-color: var(--texteMarque);
	color: var(--fondMarque);
	border-radius: 1vw;
	padding: .2vh .8em;
}

.sequence-agenda .calendar .jour {
	flex-grow: 1;
	text-align: center;
	font-weight: bold;
	color: var(--fondMarque);
}

/* Séquence horaires */

section.sequence-horaires {
	background: var(--fondMarque);
}

.sequence-horaires .plan {
	display: flex;
}
.sequence-horaires .date {
	width: 10vw;
	min-width: 6em;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
}

.sequence-horaires .date_jour {
	color: var(--accentMarque);
	font-size: 1.5vw;
}
.sequence-horaires .jour_semaine {
	text-align: center;
	text-transform: capitalize;
}
.sequence-horaires .jour_mois {
	text-align: center;
	font-size: 300%;
	line-height: 1em;
	font-weight: bold;
}
.sequence-horaires .mois {
	text-align: center;
}

.sequence-horaires .ouvertures {
	padding: 1em 0;
	color: var(--texteMarque);
	background-color: var(--fondMarque);
	border-color: var(--accentMarque);
	border-style: solid;
	border-width: 0 1px 0 1px;
	height: 7em;
	margin: 1em 5px;
	border-radius: 10px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
}

.sequence-horaires .ouvertures.special:before {
	content: "!";
	font-family: AccentGraphic;
	color: black;
	background: yellow;
	border-radius: 50%;
	position: absolute;
	text-align: center;
	width: 2em;
	height: 2em;
	top: -.5em;
	left: calc( 50% - 1em );
	font-size: 1.1em;
	font-weight: bold;
	animation: tourne 0.8s ease-in-out alternate infinite;
}
.sequence-horaires .ouvertures.ferme {
	background: transparent;
	border-color: transparent;
	color: transparent;
}
.sequence-horaires .ouvertures.ferme.special {
	background-color: var(--accentMarque);
	color: var(--fondMarque);
	text-align: center;
	font-weight: bold;
}
.sequence-horaires .ouvertures.special:not(.ferme) {
	color: var(--accentMarque);
}

.sequence-horaires .ouvertures b,
.sequence-horaires .ouvertures i {
	display: inline;
	text-align: center;
}
.sequence-horaires .ouvertures b.de,
.sequence-horaires .ouvertures b.a {
	font-size: 1.4em;
}
.sequence-horaires .ouvertures b.de:before,
.sequence-horaires .ouvertures b.a:before {
	font-weight: normal;
	font-size: 60%;
}
.sequence-horaires .ouvertures b.a:before {
	content: " à ";
}

.sequence-horaires .calendrier-lunaire {
	height: 12vw;
}
.sequence-horaires img.lune {
	object-fit: contain;
	width: 100%;
	height: 6vw;
	margin-bottom: 2vw;
}

.sequence-horaires .cl-jours {
	display: flex;
	height: 3em;
	justify-content: center;
	align-items: center;
}
.sequence-horaires .cl-jours img.jour {
	width: 4vw;
	height: 4vw;
}

.gadget-meteo {
	text-align: center;
	padding: 10px;
	margin: 10px;
	background: #0005;
	text-shadow: 1px 1px black;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	min-height: 6vw;
}
.gadget-meteo .symbole {
	display: inline-block;
	/* background-image: url(images/symboles_meteo.png); */
	background-size: auto 6vw ;
	height: 6vw;
	width: 6vw;
	flex-grow: 0;
}
.gadget-meteo .temperatures {
	font-size: 2vw;
}
.gadget-meteo .min {
	display: block;
	font-size: 100%;
	line-height: 1em;
	color: #8686E8;
}
.gadget-meteo .max {
	display: block;
	font-size: 120%;
	line-height: 1em;
	color: #F28080;
}
.gadget-meteo .min:after,
.gadget-meteo .max:after {
	content: "°c";
	font-size: 60%;
}

.meteo-symbole-clearsky_day { background-position: -000% }
.meteo-symbole-clearsky_night { background-position: -100% }
.meteo-symbole-clearsky_polartwilight { background-position: -200% }
.meteo-symbole-cloudy { background-position: -300% }
.meteo-symbole-fair_day { background-position: -400% }
.meteo-symbole-fair_night { background-position: -500% }
.meteo-symbole-fair_polartwilight { background-position: -600% }
.meteo-symbole-fog { background-position: -700% }
.meteo-symbole-heavyrainandthunder { background-position: -800% }
.meteo-symbole-heavyrain { background-position: -900% }
.meteo-symbole-heavyrainshowersandthunder_day { background-position: -1000% }
.meteo-symbole-heavyrainshowersandthunder_night { background-position: -1100% }
.meteo-symbole-heavyrainshowersandthunder_polartwilight { background-position: -1200% }
.meteo-symbole-heavyrainshowers_day { background-position: -1300% }
.meteo-symbole-heavyrainshowers_night { background-position: -1400% }
.meteo-symbole-heavyrainshowers_polartwilight { background-position: -1500% }
.meteo-symbole-heavysleetandthunder { background-position: -1600% }
.meteo-symbole-heavysleet { background-position: -1700% }
.meteo-symbole-heavysleetshowersandthunder_day { background-position: -1800% }
.meteo-symbole-heavysleetshowersandthunder_night { background-position: -1900% }
.meteo-symbole-heavysleetshowersandthunder_polartwilight { background-position: -2000% }
.meteo-symbole-heavysleetshowers_day { background-position: -2100% }
.meteo-symbole-heavysleetshowers_night { background-position: -2200% }
.meteo-symbole-heavysleetshowers_polartwilight { background-position: -2300% }
.meteo-symbole-heavysnowandthunder { background-position: -2400% }
.meteo-symbole-heavysnow { background-position: -2500% }
.meteo-symbole-heavysnowshowersandthunder_day { background-position: -2600% }
.meteo-symbole-heavysnowshowersandthunder_night { background-position: -2700% }
.meteo-symbole-heavysnowshowersandthunder_polartwilight { background-position: -2800% }
.meteo-symbole-heavysnowshowers_day { background-position: -2900% }
.meteo-symbole-heavysnowshowers_night { background-position: -3000% }
.meteo-symbole-heavysnowshowers_polartwilight { background-position: -3100% }
.meteo-symbole-lightrainandthunder { background-position: -3200% }
.meteo-symbole-lightrain { background-position: -3300% }
.meteo-symbole-lightrainshowersandthunder_day { background-position: -3400% }
.meteo-symbole-lightrainshowersandthunder_night { background-position: -3500% }
.meteo-symbole-lightrainshowersandthunder_polartwilight { background-position: -3600% }
.meteo-symbole-lightrainshowers_day { background-position: -3700% }
.meteo-symbole-lightrainshowers_night { background-position: -3800% }
.meteo-symbole-lightrainshowers_polartwilight { background-position: -3900% }
.meteo-symbole-lightsleetandthunder { background-position: -4000% }
.meteo-symbole-lightsleet { background-position: -4100% }
.meteo-symbole-lightsleetshowers_day { background-position: -4200% }
.meteo-symbole-lightsleetshowers_night { background-position: -4300% }
.meteo-symbole-lightsleetshowers_polartwilight { background-position: -4400% }
.meteo-symbole-lightsnowandthunder { background-position: -4500% }
.meteo-symbole-lightsnow { background-position: -4600% }
.meteo-symbole-lightsnowshowers_day { background-position: -4700% }
.meteo-symbole-lightsnowshowers_night { background-position: -4800% }
.meteo-symbole-lightsnowshowers_polartwilight { background-position: -4900% }
.meteo-symbole-lightssleetshowersandthunder_day { background-position: -5000% }
.meteo-symbole-lightssleetshowersandthunder_night { background-position: -5100% }
.meteo-symbole-lightssleetshowersandthunder_polartwilight { background-position: -5200% }
.meteo-symbole-lightssnowshowersandthunder_day { background-position: -5300% }
.meteo-symbole-lightssnowshowersandthunder_night { background-position: -5400% }
.meteo-symbole-lightssnowshowersandthunder_polartwilight { background-position: -5500% }
.meteo-symbole-partlycloudy_day { background-position: -5600% }
.meteo-symbole-partlycloudy_night { background-position: -5700% }
.meteo-symbole-partlycloudy_polartwilight { background-position: -5800% }
.meteo-symbole-rainandthunder { background-position: -5900% }
.meteo-symbole-rain { background-position: -6000% }
.meteo-symbole-rainshowersandthunder_day { background-position: -6100% }
.meteo-symbole-rainshowersandthunder_night { background-position: -6200% }
.meteo-symbole-rainshowersandthunder_polartwilight { background-position: -6300% }
.meteo-symbole-rainshowers_day { background-position: -6400% }
.meteo-symbole-rainshowers_night { background-position: -6500% }
.meteo-symbole-rainshowers_polartwilight { background-position: -6600% }
.meteo-symbole-sleetandthunder { background-position: -6700% }
.meteo-symbole-sleet { background-position: -6800% }
.meteo-symbole-sleetshowersandthunder_day { background-position: -6900% }
.meteo-symbole-sleetshowersandthunder_night { background-position: -7000% }
.meteo-symbole-sleetshowersandthunder_polartwilight { background-position: -7100% }
.meteo-symbole-sleetshowers_day { background-position: -7200% }
.meteo-symbole-sleetshowers_night { background-position: -7300% }
.meteo-symbole-sleetshowers_polartwilight { background-position: -7400% }
.meteo-symbole-snowandthunder { background-position: -7500% }
.meteo-symbole-snow { background-position: -7600% }
.meteo-symbole-snowshowersandthunder_day { background-position: -7700% }
.meteo-symbole-snowshowersandthunder_night { background-position: -7800% }
.meteo-symbole-snowshowersandthunder_polartwilight { background-position: -7900% }
.meteo-symbole-snowshowers_day { background-position: -8000% }
.meteo-symbole-snowshowers_night { background-position: -8100% }
.meteo-symbole-snowshowers_polartwilight { background-position: -8200% }

/* Sequence pub */

.sequence-pub .visuel {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: contain;
	background: var(--fondMarque);
	color: var(--fondMarque);
}

.sequence-pub-video .visuel {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: contain;
	background: var(--fondMarque);
	color: var(--fondMarque);
}

/* Séquence beaux jardins */

.sequence-galerie .affichage > .slideshow {
	margin: 1vh 2vw 1vh 2vw;
	height: calc( 100% - 2vh );
	width:  calc( 100% - 4vw );
}
.sequence-galerie .legende {
	position: absolute;
	bottom: 0vh;
	background-color: var(--fondMarque);
	color: var(--texteMarque);
	padding: .2em .5em;
	font-size: 75%;
	font-style: italic;
}
.sequence-galerie .fond {
	position: absolute;
	background-color: var(--fondMarque);
	border-radius: 0 2vh 2vh 0;
	border-color: var(--accentMarque);
	border-style: solid;
	border-width: 1px 1px 1px 0;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: .5
}
.sequence-galerie .infos {
	position: absolute;
	z-index: 2;
	max-width: 40vw;
	bottom: 3vh;
	left: 0;
	color: var(--texteMarque);
	height: auto;
	padding: .5vh 1vh 1vh 1vh;
	font-size: 130%;
}
.sequence-galerie .logo {
	position: absolute;
	width: 10vh;
	top: 2vh;
}
.sequence-galerie .texte {
	position: relative;
	margin-left: 11vh;
}
.sequence-galerie .titreGalerie {
	text-align: left;
	font-family: 'Open sans', sans-serif;
	font-weight: bold;
	font-size: 120%;
}
.sequence-galerie .detailGalerie {
	white-space: pre-line;
	font-size: 80%;
}
.sequence-galerie .carte {
	position: absolute;
	z-index: 2;
	bottom: 3vh;
	right: 3vh;
	width: 25vh;
	height: 25vh;
	overflow: hidden;
	border-radius: 2vh;
}
.sequence-galerie .carte img {
	object-fit: cover;
	width: 100%;
}

/* Séquence plantes/animaux */

.sequence-pstatiques .affichage > .slideshow {
	margin: 1vh 2vw;
	height: calc( 100% - 2vh );
	width:  calc( 100% - 4vw );
}

.sequence-pstatiques .legende {
	position: absolute;
	bottom: 5vh;
	height: auto;
	padding: .5vh 1vw 1vh 1vw;
	font-size: 170%;
	color: var(--texteMarque);
}
.sequence-pstatiques .legende > .fond {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--fondMarque);
	border-color: var(--accentMarque);
	border-style: solid;
	border-width: 1px;
	border-radius: 2vh;
	opacity: .7;
	z-index: 0;
}
.sequence-pstatiques .legende > * {
	position: relative;
}
.sequence-pstatiques .legende .logo {
	width: 5vw;
	vertical-align: top;
	margin-right: .5em;
}


/* Séquence mosaique */

.sequence.sequence-mosaique {
	background: black;
}

.sequence-mosaique .case {
	height: 20%;
	width: 20%;
	position: absolute;
	top: 0%;
	left: 0%;
	overflow: hidden;
	z-index: 0;
	border: 2px solid var(--texteMarque);
	background-color: var(--fondMarque);
	color: var(--texteMarque);
}
.sequence-mosaique .case:nth-child(5n+1) { left: 0%; }
.sequence-mosaique .case:nth-child(5n+2) {	left: 20%; }
.sequence-mosaique .case:nth-child(5n+3) { left: 40%; }
.sequence-mosaique .case:nth-child(5n+4) {	left: 60%; }
.sequence-mosaique .case:nth-child(5n+5) {	left: 80%; }
.sequence-mosaique .case:nth-child(n+6):nth-child(-n+10) { top: 20%; }
.sequence-mosaique .case:nth-child(n+11):nth-child(-n+15) { top: 40%; }
.sequence-mosaique .case:nth-child(n+16):nth-child(-n+20) { top: 60%; }
.sequence-mosaique .case:nth-child(n+21) { top: 80%; }

.sequence-mosaique .logo,
.sequence-mosaique .anime {
	text-align: center;
	z-index: 1;
}
.sequence-mosaique .anime {
	display: flex;
	align-items: center;
	justify-content: center;
}
.sequence-mosaique .logo {
	top: 25%;
	left: 25%;
	width: 50%;
	height: 50%;
}
.sequence-mosaique .logoClient {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.sequence-mosaique .logo,
.sequence-mosaique .logoClient {
	position: absolute;
	object-fit: scale-down;
}
.sequence-mosaique #date {
	font-size: 150%;
}
.sequence-mosaique #callun {
	font-size: 120%;
}
.sequence-mosaique #callun img {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	object-fit: scale-down;
	z-index: -1;
	opacity: .7;
}
.sequence-mosaique .image {
	opacity: 1;
	transition-property: top, left, opacity;
	transition-duration: 1s;
	transition-timing-function: ease;
}
.sequence-mosaique .image.wait {
	top: 40%;
	left: 40%;
	opacity: 0;
}
.sequence-mosaique .image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sequence-mosaique .image > div {
	width: 100%;
	height: 100%;
}
.sequence-mosaique .image .front img {
	background-color: #006239;
}
.sequence-mosaique .image .back img {
	background-color: #E44F2A;
}

.sequence-mosaique .anime {
	transition: transform ease-in-out 800ms, border-color linear 800ms;
}
.sequence-mosaique .anime.next {
	z-index: 2;
}
.sequence-mosaique .anime.bd.go {
	transform: translate(50%,50%) scale(2, 2);
}
.sequence-mosaique .anime.hg.go {
	transform: translate(-50%,-50%) scale(2,2);
}

/* Séquence conseil */

.sequence-conseil aside {
	height:100%;
	width: 20%;
	padding: 10px;
}
.sequence-conseil aside .autofit {
	display: flex;
	align-items: center;
	justify-content: center;
}
.sequence-conseil .vignette {
	width: calc( 100% - 20px );
	height: calc( 33% - 20px );
	margin: 20px 10px;
	text-align: center;
	font-size: 100%;
	font-family: "Open Sans", sans-serif;
	color:white;
}
.sequence-conseil .date {
	background-color: var(--texteMarque);
	color: var(--fondMarque);
	border-radius: 20px;
	padding: 15px;
	height: 100%;
	text-transform: capitalize;
}
.sequence-conseil .calendrier-lunaire {
	background-color: var(--texteMarque);
	color: var(--fondMarque);
	border-radius: 20px;
	padding: 15px;
	height: 100%;
}
.sequence-conseil .fete,
.sequence-conseil .dicton {
	background-color: var(--accentMarque);
	color: var(--fondMarque);
	border-radius: 20px;
	height: 100%;
}

.sequence-conseil .conseil {
	position: absolute;
	top: 2vh;
	height: calc(100% - 6vh);
	left: calc(20% + 2vw);
	width: calc(80% - 4vw);
	background: transparent;
	font-size: 2.5vh;
}
.sequence-conseil .sous-titre {
	width: 100%;
	height: 12vh;
	text-align: center;
	margin: 0;
	color: var(--accentMarque);
}

.sequence-conseil .conseil > div {
	margin-top: 3vh;
	height: calc(100% - 15vh);
	width: 100%;
	text-align: left;
}
.sequence-conseil .conseil > div > span {
	display: inline-block;
}
.sequence-conseil .conseil > div > span:after {
	clear: both;
	content: "";
	display: table;
}

.sequence-conseil .illustration {
	height: 100%;
	width: 100%;
	border-radius: 20px;
	object-fit: cover;
}

.sequence-conseil .texte {
	display: inline;
	color: var(--texteMarque);
	white-space: pre-line;
	text-align: left;
	font-weight: lighter;
}


