/* ===============================================
// ###############################################
// ### OLLOWEB - CSS PAGE ACCUEIL ################
// ###############################################
// ===============================================
// ### HISTORIQUE DE VERSION #####################
// ===============================================
// 25/04/2023 : Ajout de prise en charge des videos
// 04/04/2023 : Correction du style des brèves pour l'alignement de visuel
// 07/02/2023 : Création du css
// ===============================================
// ###############################################
// ===============================================
*/
/* ===============================================
// ###############################################
// ### GROS PLAN #################################
// ###############################################
// ===============================================
*/
.gros-plan {
	display: block;
	position: relative;
	float: none;
	padding-bottom: 40px;
}
@media screen and (max-width: 580px) {
	.gros-plan {
		padding-bottom: 80px;
	}
}
.gros-plan-cadre {
	display: block;
	position: relative;
	float: none;
}
.gros-plan-element {
	display: block;
	position: relative;
	float: none;
}
.gros-plan-element figure {
	display: flex;
	position: relative;
	float: none;
	justify-content: flex-start;
	align-items: flex-end;
	width: 100%;
}
.gros-plan-element figure picture {
	width: 100%;
}
.gros-plan-element figure img {
	display: block;
	position: relative;
	float: none;
	width: 100%;
	height: auto;
}
.gros-plan-element figure figcaption {
	display: flex;
	position: absolute;
	float: none;
	flex-direction: column;
	align-items: flex-start;
	margin-left: 80px;
	margin-bottom: 80px;
	max-width: 50%;
	transition: margin var(--theme_transition);
	padding: 40px;
	backdrop-filter: blur(2px);
	background-color: rgba(var(--theme_couleur_noir),0.3);
	border-radius: 3px;
}
@media screen and (max-width: 1024px) {
	.gros-plan-element figure figcaption {
		margin-left: 40px;
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 640px) {
	.gros-plan-element figure figcaption {
		max-width: 100%;
		margin-right: 40px;
	}
}
@media screen and (max-width: 580px) {
	.gros-plan-element figure figcaption {
		margin-left: 20px;
		margin-right: 20px;
		margin-bottom: 20px;
		padding: 20px;
	}
}

.gros-plan-nom {
	display: block;
	position: relative;
	float: none;
	text-align: left;
	padding-bottom: 20px;
}
@media screen and (max-width: 480px) {
	.gros-plan-nom {
		padding-bottom: 0px;
	}
}
.gros-plan-nom h2 {
	padding: 0px;
	margin: 0px;
	color: rgb(var(--theme_couleur_blanc));
	text-shadow: 0px 0px 5px rgba(var(--theme_couleur_noir),0.5);
}
.gros-plan-nom h3 {
	padding: 0px;
	margin: 0px;
	font-weight: 500;
	color: rgb(var(--theme_couleur_1));
	text-shadow: 0px 0px 3px rgba(var(--theme_couleur_noir),0.3);
}
.gros-plan-resume {
	display: block;
	position: relative;
	float: none;
	text-align: left;
	width: 80%;
	color: rgb(var(--theme_couleur_blanc));
	text-shadow: 0px 0px 5px rgba(var(--theme_couleur_noir),0.5);
}
@media screen and (max-width: 640px) {
	.gros-plan-resume {
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	.gros-plan-resume {
		display: none;
	}
}
.gros-plan-resume p {
	padding: 0px;
	margin: 0px;
}
@media screen and (max-width: 580px) {
	.gros-plan-resume {
		display: none;
	}
}
.gros-plan-bouton {
	display: flex;
	position: relative;
	float: none;
	padding-top: 30px;
}
@media screen and (max-width: 580px) {
	.gros-plan-bouton {
		padding-top: 10px;
	}
}
.gros-plan-bouton a {
	display: block;
	position: relative;
	float: none;
	top: 8px;
	left: 8px;
	font-size: 16px;
	cursor: pointer;
	user-select: none;
	text-decoration: none;
	padding-top: 8px;
	padding-right: 16px;
	padding-bottom: 8px;
	padding-left: 16px;
	color: rgb(var(--theme_bouton_1_couleur_contenu));
	background-color: rgb(var(--theme_bouton_1_couleur_fond));
	border: 1px solid rgb(var(--theme_bouton_1_couleur_fond));
	border-radius: var(--theme_bouton_1_arrondi);
	transition: box-shadow var(--theme_transition),font-size var(--theme_transition);
}
@media screen and (max-width: 768px) {
	.gros-plan-bouton a {
		font-size: 15px;
	}
}
@media screen and (max-width: 580px) {
	.gros-plan-bouton a {
		font-size: 14px;
	}
}
@media screen and (max-width: 360px) {
	.gros-plan-bouton a {
		padding-top: 6px;
		padding-right: 14px;
		padding-bottom: 6px;
		padding-left: 14px;
		font-size: 13px;
	}
}
.gros-plan-bouton a:hover {
	/*box-shadow: 0px 0px 0px var(--theme_bouton_1_halo) rgba(var(--theme_bouton_1_couleur_fond_survol),0.2);*/
	background-color: rgb(var(--theme_bouton_1_couleur_fond_survol));
	border: 1px solid rgb(var(--theme_bouton_1_couleur_contour_survol));
	color: rgb(var(--theme_bouton_1_couleur_contenu_survol));
}
.gros-plan-bouton span{
	display: block;
	position: relative;
	float: none;
	border: 2px solid rgb(var(--theme_couleur_2));
}
.gros-plan-element adress {
	display: block;
	position: absolute;
	float: none;
	right: 20px;
	bottom: 20px;
	font-size: 13px;
	color: rgb(var(--theme_couleur_noir));
}
@media screen and (max-width: 580px) {
	.gros-plan-element adress {
		bottom: -17px;
		right: 15px;
	}
}
.gros-plan-element adress a {
	color: rgb(var(--theme_couleur_noir));
	user-select: none;
	text-decoration: underline;
	cursor: pointer;
}
.gros-plan-element adress a:hover {
	color: rgb(var(--theme_couleur_1));
	text-decoration: none;
}
.gros-plan-cadre .owl-controls {
	top: auto;
	bottom: 40px;
}
@media screen and (max-width: 580px) {
	.gros-plan-cadre .owl-controls {
		bottom: -40px;
	}
}
.gros-plan-cadre .owl-page span {
	display: block;
	/*width: 11px;*/
	width: 25px;
	height: 8px;
	/*border-radius: 20px;*/
	border-radius: 0px;
	background-color: rgb(var(--theme_bouton_1_couleur_fond));
	border: 0px solid rgb(var(--theme_bouton_1_couleur_contour));
	margin-right: 6px;
	margin-left: 6px;
	transition-property: border,box-shadow,background-color;
	transition-duration: 0.2s;
	transition-timing-function: ease-in-out;
}
.gros-plan-cadre .owl-page span:hover {
	background-color: rgb(var(--theme_bouton_1_couleur_fond_survol));
	border: 0px solid rgb(var(--theme_bouton_1_couleur_contour_survol));
	box-shadow: 0px 0px 0px 3px rgba(var(--theme_bouton_1_couleur_contour_survol),0.3);
}
.gros-plan-cadre .owl-page.active span {
	background-color: rgb(var(--theme_bouton_2_couleur_fond));
	border: 0px solid rgb(var(--theme_bouton_2_couleur_contour));
}
@media screen and (max-width: 580px) {
	.gros-plan-cadre .owl-page span {
		height: 6px;
		border: 1px solid rgb(var(--theme_bouton_1_couleur_contour));
	}
	.gros-plan-cadre .owl-page span:hover {
	border: 1px solid rgb(var(--theme_bouton_1_couleur_contour_survol));
	}
	.gros-plan-cadre .owl-page.active span {
		border: 1px solid rgb(var(--theme_bouton_2_couleur_contour));
	}
}
/* ===============================================
// ###############################################
// ### PAGE UNIQUE ###############################
// ###############################################
// ===============================================
*/
.pages {
	display: block;
	position: relative;
	float: none;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	transition: background-size var(--theme_transition);
}
@media screen and (max-width: 768px) {
	.pages {
		background-size: auto 180% ;
	}
}
.page {
	display: flex;
	position: relative;
	float: none;
	align-items: center;
	margin: auto;
	padding-left: 160px;
	padding-right: 160px;
	padding-top: 60px;
	padding-bottom: 60px;
	transition: padding var(--theme_transition);
}
@media screen and (max-width: 1366px) {
	.page {
		padding-right: 60px;
		padding-left: 60px;
	}
}
@media screen and (max-width: 1280px) {
	.page {
		padding-right: 20px;
		padding-left: 20px;
	}
}
@media screen and (max-width: 1024px) {
	.page {
		padding-right: 20px;
		padding-left: 20px;
	}
}
@media screen and (max-width: 768px) {
	.page {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media screen and (max-width: 580px) {
	.page {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media screen and (max-width: 767px) {
	.page {
		flex-direction: column;
	}
}
.page.gauche .visuel {
	order: 1;
}
.page.gauche .detail {
	order: 2;
	text-align: left;
}
.page.droit .visuel {
	order: 2;
}
@media screen and (max-width: 767px) {
	.page.droit .visuel {
		order: 1;
	}
}
.page.droit .detail {
	order: 1;
	text-align: right;
}
@media screen and (max-width: 767px) {
	.page.droit .detail {
		order: 2;
		text-align: left;
	}
}
.page .visuel {
	display: block;
	position: relative;
	float: none;
	padding: 40px;
	width: 50%;
	flex-grow: 1;
	transition: width var(--theme_transition);
}
@media screen and (max-width: 768px) {
	.page .visuel {
		width: 50%;
	}
}
@media screen and (max-width: 767px) {
	.page .visuel {
		width: 100%;
	}
}
@media screen and (max-width: 580px) {
	.page .visuel {
		padding: 20px;
	}
}
.page .visuel a {
	display: block;
	position: relative;
	float: none;
}
.page .visuel a figure {
	display: block;
	position: relative;
	float: none;
}
.page .visuel a figure img, .page .visuel a figure video {
	display: block;
	position: relative;
	float: none;
	width: 100%;
	height: auto;
}
.page .visuel a figure figcaption {
	display: flex;
	position: absolute;
	float: none;
	right: -40px;
	bottom: -40px;
}
@media screen and (max-width: 580px) {
	.page .visuel a figure figcaption {
		right: -20px;
		bottom: -20px;
	}
}
.page .visuel a figure figcaption div {
	display: block;
	position: relative;
	float: none;
}
.page .visuel a figure figcaption div:first-of-type {
	background-color: rgb(var(--theme_couleur_1));
	width: 3px;
	margin-right: 20px;
}
.page .visuel a figure figcaption div:last-of-type {
	background-color: rgb(var(--theme_couleur_1));
	text-transform: uppercase;
	color: rgb(var(--theme_couleur_blanc));
	padding: 20px;
	text-align: center;
}

.page .detail {
	display: flex;
	position: relative;
	float: none;
	padding: 40px;
	flex-direction: column;
	width: 50%;
	flex-grow: 1;
	transition: width var(--theme_transition);
}
@media screen and (max-width: 768px) {
	.page .detail {
		width: 50%;
	}
}
@media screen and (max-width: 767px) {
	.page .detail {
		width: 100%;
		padding-top: 5px;
	}
}
@media screen and (max-width: 580px) {
	.page .detail {
		padding: 20px;
	}
}
.page .detail .etiquette {
	display: block;
	position: relative;
	float: none;
	color: rgb(var(--theme_couleur_1));
	text-transform: uppercase;
}
.page .detail .nom {
	display: block;
	position: relative;
	float: none;
}
.page .detail .nom h2 {
	display: block;
	position: relative;
	float: none;
	margin: 0px;
	padding-top: 10px;
}
.page .detail .nom h2 a {
	text-decoration: none;
	color: rgb(var(--theme_couleur_noir));
}
.page .detail .nom h2 a:hover {
	color: rgb(var(--theme_couleur_1));
}
.page .detail .resume {
	display: block;
	position: relative;
	float: none;
	color: rgb(var(--theme_couleur_gris_moyen_fonce));
	line-height: 1.5em;
}
.page .detail .lien {
	display: block;
	position: relative;
	float: none;
}
.page .detail .lien a {
	display: flex;
	position: relative;
	float: none;
	color: rgb(var(--theme_couleur_2));
	user-select: none;
	-webkit-user-select: none;
	text-decoration: none;
	cursor: pointer;
	align-items: center;
	font-weight: bold;
}
.page .detail .lien a:hover > span:last-of-type{
	margin-left: 8px;
}
.page .detail .lien a span:last-of-type {
	display: block;
	position: relative;
	float: none;
	width: 9px;
	height: 17px;
	background-image: url("../../graphisme/fleche-lien-page.svg");
	background-repeat: no-repeat;
	background-position: center center;
	margin-left: 5px;
	transition: margin var(--theme_transition);
}
/* ===============================================
// ###############################################
// ### CHAPITRE ##################################
// ###############################################
// ===============================================
*/

.chapitres {
	display:block;
	position: relative;
	float: none;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 120% auto;
	transition: background-size var(--theme_transition);
}
@media screen and (max-width: 1600px){
	.chapitres {
		background-size: 180% auto;
	}
}
@media screen and (max-width: 1440px){
	.chapitres {
		background-size: 200% auto;
	}
}
@media screen and (max-width: 1366px){
	.chapitres {
		background-size: auto 130%;
	}
}
.chapitres-cadre {
	display: flex;
	position: relative;
	float: none;
	flex-wrap: wrap;
	padding-top: 80px;
	padding-bottom: 80px;
	padding-left: 180px;
	padding-right: 180px;
	margin: auto;
	transition: padding var(--theme_transition);
	align-items: flex-start;
}
@media screen and (max-width: 1366px){
	.chapitres-cadre {
		padding-left: 100px;
		padding-right: 100px;
	}
}
@media screen and (max-width: 1280px){
	.chapitres-cadre {
		padding-left: 40px;
		padding-right: 40px;
	}
}
@media screen and (max-width: 1024px){
	.chapitres-cadre {
		padding-left: 40px;
		padding-right: 40px;
	}
}
@media screen and (max-width: 768px){
	.chapitres-cadre {
		padding-left: 40px;
		padding-right: 40px;
	}
}
@media screen and (max-width: 580px){
	.chapitres-cadre {
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 20px;
		padding-bottom: 20px;
	}
}
.chapitre {
	display: flex;
	float: none;
	position: relative;
	flex-grow: 1;
	flex-wrap: wrap;
	width: 100%;
}
.chapitre-visuel {
	display: block;
	float: none;
	position: relative;
	flex-grow: 1;
	padding: 20px;
}
.chapitre-visuel figure, .chapitre-visuel figure video {
	display: block;
	float: none;
	position: relative;
}
.chapitre-visuel figure a {
	display: block;
	float: none;
	position: relative;
}
.chapitre-visuel figure img, .chapitre-visuel figure video {
	display: block;
	float: none;
	height: auto;
	width: 100%;
	position: relative;
}
.chapitre-visuel figure figcaption {
	display: block;
	float: none;
	position: relative;
	font-size: 14px;
	padding-top: 5px;
	padding-right: 30px;
}
.chapitre-visuel-zoom-bouton {
	display: flex;
	float: none;
	position: absolute;
	cursor: pointer;
	background-color: rgb(var(--theme_bouton_1_couleur_fond));
	border-radius: 22px;
	transition-property: box-shadow,background-color;
	transition-duration: 0.2s;
	transition-timing-function: ease-in-out;
	height: 22px;
	width: 22px;
	border: 2px solid rgb(var(--theme_bouton_1_couleur_contenu));
	box-sizing: border-box;
	justify-content: center;
	align-items: center;
	right: 5px;
	top: 10px;
}
.chapitre-visuel-zoom-bouton:hover {
	background-color: rgb(var(--theme_bouton_1_couleur_fond_survol));
	box-shadow: 0px 0px 0px 4px rgb(var(--theme_bouton_1_couleur_fond_survol));
	border: 2px solid rgb(var(--theme_bouton_1_couleur_contenu_survol));
}
.chapitre-visuel-zoom-bouton div {
	background-color: rgb(var(--theme_bouton_1_couleur_contenu));
	display: block;
	float: none;
	height: 2px;
	width: 10px;
	position: absolute;
}
.chapitre-visuel-zoom-bouton div:first-of-type {
	transform: rotate(90deg);
}
.chapitre-visuel-zoom-bouton:hover> div {
	background-color: rgb(var(--theme_bouton_1_couleur_contenu_survol));
}
.chapitre-visuel figure a.chapitre-document-zoom-bouton {
	display: flex;
	float: none;
	position: absolute;
	cursor: pointer;
	background-color: rgb(var(--theme_bouton_1_couleur_fond));
	border-radius: 22px;
	transition-property: box-shadow,background-color;
	transition-duration: 0.2s;
	transition-timing-function: ease-in-out;
	height: 22px;
	width: 22px;
	border: 2px solid rgb(var(--theme_bouton_1_couleur_contenu));
	box-sizing: border-box;
	justify-content: center;
	align-items: center;
	right: 5px;
	top: 10px;
}
.chapitre-visuel figure a.chapitre-document-zoom-bouton:hover {
	background-color: rgb(var(--theme_bouton_1_couleur_fond_survol));
	box-shadow: 0px 0px 0px 4px rgb(var(--theme_bouton_1_couleur_fond_survol));
	border: 2px solid rgb(var(--theme_bouton_1_couleur_contenu_survol));
}
.chapitre-pictogramme-document {
	fill: rgb(var(--theme_bouton_2_couleur_contenu));
}
.chapitre-texte {
	display: block;
	float: none;
	position: relative;
	flex-grow: 1;
	padding: 20px;
	border-radius: 20px;
}
.chapitre-texte-nom {
	margin-top: 0px;
	padding-top: 10px;
}
.chapitres.blanc .chapitre-texte-nom {
	color: rgb(var(--theme_couleur_1));
}
@media screen and (max-width: 767px){
	.chapitre-texte-nom {
		margin-top: 0px;
	}
}

.chapitre-texte-etiquette {
	color: rgb(var(--theme_couleur_1));
	text-transform: uppercase;
}
.chapitres.blanc .chapitre-texte-etiquette {
	color: rgb(var(--theme_couleur_blanc));
	text-transform: uppercase;
}

.chapitre-descriptif {
	display: block;
	float: none;
	position: relative;
	color: rgb(var(--theme_couleur_gris_moyen_fonce));
}
.chapitres.blanc .chapitre-descriptif {
	color: rgb(var(--theme_couleur_blanc));
}
.chapitre-descriptif a {
	color: rgb(var(--theme_couleur_noir));
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: rgb(var(--theme_couleur_gris_moyen));
}
.chapitres.blanc .chapitre-descriptif a {
	color: rgb(var(--theme_couleur_blanc));
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: rgb(var(--theme_couleur_blanc));
}
.chapitre-descriptif a:hover {
	border-bottom-color: rgb(var(--theme_couleur_blanc));
	color: rgb(var(--theme_couleur_1));
}
.chapitres.blanc .chapitre-descriptif a:hover {
	border-bottom-color: rgb(var(--theme_couleur_1));
}
.chapitre-descriptif h1, .chapitre-descriptif h2 {
	font-size: 28px;
	margin-top: 0px;
	transition: font-size var(--theme_transition);
}
.chapitre-descriptif h3, .chapitre-descriptif h4 {
	font-size: 23px;
	margin-top: 0px;
	transition: font-size var(--theme_transition);
}
.chapitre-descriptif p, .chapitre-descriptif li {
	font-size: 21px;
	line-height: 1.5em;
	transition: font-size var(--theme_transition);
	letter-spacing: 0.03em;
}
@media screen and (max-width: 1366px){
	.chapitre-descriptif h1, .chapitre-descriptif h2 {
		font-size: 26px;
	}
	.chapitre-descriptif h3, .chapitre-descriptif h4 {
		font-size: 22px;
	}
	.chapitre-descriptif p, .chapitre-descriptif li {
		font-size: 20px;
	}
}
@media screen and (max-width: 1280px){
	.chapitre-descriptif h1, .chapitre-descriptif h2 {
		font-size: 24px;
	}
	.chapitre-descriptif h3, .chapitre-descriptif h4 {
		font-size: 21px;
	}
	.chapitre-descriptif p, .chapitre-descriptif li {
		font-size: 19px;
	}
}
@media screen and (max-width: 1024px){
	.chapitre-descriptif h1, .chapitre-descriptif h2 {
		font-size: 22px;
	}
	.chapitre-descriptif h3, .chapitre-descriptif h4 {
		font-size: 20px;
	}
	.chapitre-descriptif p, .chapitre-descriptif li {
		font-size: 18px;
	}
}
@media screen and (max-width: 768px){
	.chapitre-descriptif h1, .chapitre-descriptif h2 {
		font-size: 20px;
	}
	.chapitre-descriptif h3, .chapitre-descriptif h4 {
		font-size: 19px;
	}
	.chapitre-descriptif p, .chapitre-descriptif li {
		font-size: 17px;
	}
}
@media screen and (max-width: 767px){
	.chapitre-descriptif h1, .chapitre-descriptif h2 {
		margin-top: 15px;
	}
	.chapitre-descriptif h3, .chapitre-descriptif h4 {
		margin-top: 15px;
	}
}
@media screen and (max-width: 580px){
	.chapitre-descriptif h1, .chapitre-descriptif h2 {
		font-size: 18px;
	}
	.chapitre-descriptif h3, .chapitre-descriptif h4 {
		font-size: 18px;
	}
	.chapitre-descriptif p, .chapitre-descriptif li {
		font-size: 16px;
	}
}
@media screen and (max-width: 380px){
	.chapitre-descriptif h1, .chapitre-descriptif h2 {
		font-size: 16px;
	}
	.chapitre-descriptif h3, .chapitre-descriptif h4 {
		font-size: 17px;
	}
	.chapitre-descriptif p, .chapitre-descriptif li {
		font-size: 15px;
	}
}
@media screen and (max-width: 320px){
	.chapitre-descriptif h1, .chapitre-descriptif h2 {
		font-size: 15px;
	}
	.chapitre-descriptif h3, .chapitre-descriptif h4 {
		font-size: 16px;
	}
	.chapitre-descriptif p, .chapitre-descriptif li {
		font-size: 14px;
	}
}
.chapitre-descriptif blockquote {
	border: 2px solid rgb(var(--theme_couleur_1));
	margin-top: 40px;
	margin-right: 0px;
	margin-bottom: 40px;
	margin-left: 0px;
	transition: padding var(--theme_transition);
	padding-top: 20px;
	padding-right: 40px;
	padding-bottom: 20px;
	padding-left: 40px;
}
@media screen and (max-width: 580px) {
	.chapitre-descriptif blockquote {
		padding: 20px;
	}
}
.chapitre-bouton {
	display: flex;
	float: none;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-right: 40px;
	position: relative;
}

.chapitre-bouton span {
	display: block;
	position: relative;
	float: none;
	border: 2px solid rgb(var(--theme_couleur_noir));
}
.chapitres.blanc .chapitre-bouton span {
	display: block;
	position: relative;
	float: none;
	border: 2px solid rgb(var(--theme_couleur_1));
}
.chapitre-bouton:last-of-type {
	padding-right: 0px;
}
.chapitre-bouton a {
	font-size: 15px;
	color: rgb(var(--theme_bouton_2_couleur_contenu));
	background-color: rgb(var(--theme_bouton_2_couleur_fond));
	display: block;
	float: none;
	top: 8px;
	left: 8px;
	padding-top: 12px;
	padding-right: 18px;
	padding-bottom: 12px;
	padding-left: 18px;
	position: relative;
	cursor: pointer;
	user-select: none;
	border-radius: var(--theme_bouton_2_arrondi);
	transition: box-shadow var(--theme_transition);
	text-decoration: none;
}
.chapitres.blanc .chapitre-bouton a{
	color: rgb(var(--theme_couleur_noir));
	background-color: rgb(var(--theme_couleur_blanc));
}
@media screen and (max-width: 768px){
	.chapitre-bouton a {
		font-size: 14px;
		padding-top: 10px;
		padding-right: 16px;
		padding-bottom: 10px;
		padding-left: 16px;
	}
}
.chapitre-bouton a:hover {
	box-shadow: 0px 0px 0px var(--theme_bouton_2_halo) rgba(var(--theme_bouton_2_couleur_fond_survol),0.2);
}
.chapitres.blanc .chapitre-bouton a:hover {
	box-shadow: 0px 0px 0px var(--theme_bouton_2_halo) rgba(var(--theme_couleur_blanc),0.2);
}




.chapitre-categories {
	display: block;
	position: relative;
	float: none;
}
.chapitre-categories ul {
	display: flex;
	position: relative;
	float: none;
	padding: 0px;
	margin: 0px;
	list-style-type: none;
	margin: 10px;
	flex-wrap: wrap;
}
.chapitre-categories ul li {
	display: block;
	position: relative;
	float: none;
	padding: 10px;
	width: 100%;
	max-width: 25%;
	transition: max-width var(--theme_transition);
}
@media screen and (max-width: 1280px) {
	.chapitre-categories ul li {
		max-width: 50%;
	}
}
@media screen and (max-width: 580px) {
	.chapitre-categories ul li {
		max-width: 100%;
	}
}
.chapitre-categorie {
	display: flex;
	position: relative;
	float: none;
	border: 2px solid rgb(var(--theme_couleur_gris_clair));
	padding: 20px;
	flex-direction: column;
	transition: box-shadow var(--theme_transition);
	height: 100%;
	justify-content: space-between;
}
.chapitre-categorie:hover {
	box-shadow: 0px 0px 15px rgba(var(--theme_couleur_noir),0.2);
}
.chapitre-categorie-cadre {
	display: block;
	position: relative;
	float: none;
}
.chapitre-categorie-visuel {
	display: flex;
	position: relative;
	float: none;
}
.chapitre-categorie-visuel figure {
	display: block;
	position: relative;
	float: none;
}
.chapitre-categorie-visuel figure img {
	display: block;
	position: relative;
	float: none;
	width: 100%;
	height: auto;
	max-height: 50px;
}
.chapitre-categorie-nom {
	display: block;
	position: relative;
	float: none;
}
.chapitre-categorie-nom h3 {
	text-transform: uppercase;
	font-weight: 300;
	margin-top: 0px;
}
.chapitre-categorie-resume {
	display: block;
	position: relative;
	float: none;
	color: rgb(var(--theme_couleur_gris_moyen_fonce));
}
.chapitre-categorie-resume p {
	text-align: justify;
}
.chapitre-categorie-lien {
	display: block;
	position: relative;
	float: none;
}
.chapitre-categorie-lien a {
	display: flex;
	position: relative;
	float: none;
	color: rgb(var(--theme_couleur_2));
	user-select: none;
	-webkit-user-select: none;
	text-decoration: none;
	cursor: pointer;
	align-items: center;
	font-weight: bold;
}
.chapitre-categorie-lien a:hover > span:last-of-type{
	margin-left: 8px;
}
.chapitre-categorie-lien a span:last-of-type {
	display: block;
	position: relative;
	float: none;
	width: 9px;
	height: 17px;
	background-image: url("../../graphisme/fleche-lien-page.svg");
	background-repeat: no-repeat;
	background-position: center center;
	margin-left: 5px;
	transition: margin var(--theme_transition);
}
.chapitre-images {
	display: block;
	position: relative;
	float: none;
	width: 100%;
	max-width: 100%;
	padding: 10px;
}
.chapitre-images-liste {
	display: grid;
	float: none;
	position: relative;
	padding: 0px;
	margin: 0px;
	list-style-type: none;
	grid-template-columns: 20% 60% 20%;
}
@media screen and (max-width: 1024px) {
	.chapitre-images-liste {
		grid-template-columns: 50% 50%;
	}
}
.chapitre-images-item-centre {
	display: block;
	position: relative;
	float: none;
	margin: 10px;
	grid-area: 1/2/3/2;
}
@media screen and (max-width: 1024px) {
	.chapitre-images-item-centre {
		grid-area: 1/1/2/4;
	}
}
.chapitre-images-item-centre figure {
	display: block;
	position: relative;
	float: none;
}
.chapitre-images-item-centre figure img {
	display: block;
	position: relative;
	float: none;
	width: 100%;
	height: auto;
}
.chapitre-images-item-centre figure figcaption {
	display: flex;
	position: absolute;
	float: none;
	bottom: 0px;
	left: 0px;
	width: 100%;
	flex-direction: column;
}
.chapitre-images-item-centre figure figcaption div.legende-cadre{
	display: block;
	position: relative;
	float: none;
	padding: 15px;
	background-color: rgba(var(--theme_couleur_blanc), 0.8);
	backdrop-filter: blur(2px);
	opacity: 0;
	transition: opacity var(--theme_transition);
}
.chapitre-images-item-centre figure:hover div.legende-cadre {
	opacity: 1;
}
.chapitre-images-item-centre figure figcaption div.legende-cadre div {
	font-size: 15px;
	color: rgb(var(--theme_couleur_noir));
	font-weight: 300;
}
@media screen and (max-width: 1280px) {
	.chapitre-images-item-centre figure figcaption div.legende-cadre div {
	font-size: 14px;
	}
}
@media screen and (max-width: 1024px) {
	.chapitre-images-item-centre figure figcaption div.legende-cadre div {
	font-size: 13px;
	}
}
@media screen and (max-width: 768px) {
	.chapitre-images-item-centre figure figcaption div.legende-cadre div {
	font-size: 12px;
	}
}
@media screen and (max-width: 580px) {
	.chapitre-images-item-centre figure figcaption div.legende-cadre div {
	font-size: 11px;
	}
}
.chapitre-images-item-centre figure figcaption div.legende-cadre div:first-of-type {
	font-size: 14px;
	color: rgb(var(--theme_couleur_1));
	text-transform: uppercase;
	font-weight: 500;
}
@media screen and (max-width: 1024px) {
	.chapitre-images-item-centre figure figcaption div.legende-cadre div:first-of-type {
	font-size: 13px;
	}
}
@media screen and (max-width: 768px) {
	.chapitre-images-item-centre figure figcaption div.legende-cadre div:first-of-type {
	font-size: 12px;
	}
}
.chapitre-images-item-cote {
	display: block;
	float: none;
	position: relative;
	border-radius: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 110%;
	margin: 10px;
}
@media screen and (max-width: 1024px) {
	.chapitre-images-item-cote {
		background-size: auto 130%;
		height: 300px;
	}
}
@media screen and (max-width: 768px) {
	.chapitre-images-item-cote {
		background-size: auto 130%;
		height: 250px;
	}
}
@media screen and (max-width: 640px) {
	.chapitre-images-item-cote {
		background-size: auto 120%;
		height: 200px;
	}
}
@media screen and (max-width: 460px) {
	.chapitre-images-item-cote {
		background-size: auto 110%;
		height: 150px;
	}
}
@media screen and (max-width: 1024px) {
	.chapitre-images-liste li:nth-of-type(2) {
		grid-area: 3/1/3/2;
	}
}
@media screen and (max-width: 1024px) {
	.chapitre-images-liste li:nth-of-type(3) {
		grid-area: 3/2/3/4;
	}
}
@media screen and (max-width: 1024px) {
	.chapitre-images-liste li:nth-of-type(4) {
		grid-area: 4/1/4/2;
	}
}
@media screen and (max-width: 1024px) {
	.chapitre-images-liste li:nth-of-type(5) {
		grid-area: 4/2/4/4;
	}
}
.chapitre-images-item-cote .legende{
	display: flex;
	position: absolute;
	float: none;
	bottom: 0px;
	left: 0px;
	width: 100%;
	flex-direction: column;
}
.chapitre-images-item-cote .legende-cadre{
	display: block;
	position: relative;
	float: none;
	padding: 15px;
	background-color: rgba(var(--theme_couleur_blanc), 0.8);
	backdrop-filter: blur(2px);
	opacity: 0;
	transition: opacity var(--theme_transition);
}
.chapitre-images-item-cote:hover .legende-cadre {
	opacity: 1;
}
.chapitre-images-item-cote .legende div.legende-cadre div {
	font-size: 15px;
	color: rgb(var(--theme_couleur_noir));
	font-weight: 300;
}
@media screen and (max-width: 1280px) {
	.chapitre-images-item-cote .legende div.legende-cadre div {
	font-size: 14px;
	}
}
@media screen and (max-width: 1024px) {
	.chapitre-images-item-cote .legende div.legende-cadre div {
	font-size: 13px;
	}
}
@media screen and (max-width: 768px) {
	.chapitre-images-item-cote .legende div.legende-cadre div {
	font-size: 12px;
	}
}
@media screen and (max-width: 580px) {
	.chapitre-images-item-cote .legende div.legende-cadre div {
	font-size: 11px;
	}
}
.chapitre-images-item-cote .legende div.legende-cadre div:first-of-type {
	font-size: 14px;
	color: rgb(var(--theme_couleur_1));
	text-transform: uppercase;
	font-weight: 500;
}
@media screen and (max-width: 1024px) {
	.chapitre-images-item-cote .legende div.legende-cadre div:first-of-type {
	font-size: 13px;
	}
}
@media screen and (max-width: 768px) {
	.chapitre-images-item-cote .legende div.legende-cadre div:first-of-type {
	font-size: 12px;
	}
}
.chapitre-galerie .chapitres-cadre {
	display: block;
}
.chapitre-galerie .chapitre {
	display: block;
}

.chapitre-visuel-galerie {
	display: block;
	position: relative;
	float: none;
	padding-bottom: 40px;
	transition: padding var(--theme_transition);
}
.chapitre-visuel-galerie .chapitre-visuel {
	display: flex;
	float: none;
	position: relative;
	padding: 20px;
	justify-content: center;
}
.chapitre-visuel-galerie .chapitre-visuel figure {
	display: block;
	float: none;
	position: relative;
}

.chapitre-visuel-galerie .chapitre-visuel figure img {
	display: block;
	float: none;
	position: relative;
	width: 100%;
	height: auto;
	max-width: 160px;
}

.chapitre-visuel-galerie .owl-controls {
	top: auto;
}
.chapitre-visuel-galerie .owl-page span {
	display: block;
	width: 25px;
	height: 6px;
	border-radius: 0px;
	background-color: rgb(var(--theme_bouton_1_couleur_fond));
	border: 1px solid rgb(var(--theme_bouton_1_couleur_contour));
	margin-right: 6px;
	margin-left: 6px;
	transition-property: border,box-shadow,background-color;
	transition-duration: 0.2s;
	transition-timing-function: ease-in-out;
}
.chapitre-visuel-galerie .owl-page span:hover {
	background-color: rgb(var(--theme_bouton_1_couleur_fond_survol));
	border: 1px solid rgb(var(--theme_bouton_1_couleur_contour_survol));
	box-shadow: 0px 0px 0px 3px rgba(var(--theme_bouton_1_couleur_contour_survol),0.3);
}
.chapitre-visuel-galerie .owl-page.active span {
	background-color: rgb(var(--theme_bouton_2_couleur_fond));
	border: 1px solid rgb(var(--theme_bouton_2_couleur_contour));
}








/* ===============================================
// ###############################################
// ### ARTICLES ##################################
// ###############################################
// ===============================================
*/
.articles {
	display: block;
	position: relative;
	float: none;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	transition: background-size var(--theme_transition);
}
@media screen and (max-width: 768px) {
	.articles {
		background-size: auto 180% ;
	}
}
.article {
	display: flex;
	position: relative;
	float: none;
	padding-bottom: 40px;
	padding-left: 180px;
	padding-right: 180px;
	transition: padding var(--theme_transition);
	flex-wrap: wrap;
}
@media screen and (max-width: 1366px) {
	.article {
		padding-right: 160px;
		padding-left: 160px;
	}
}
@media screen and (max-width: 1280px) {
	.article {
		padding-right: 120px;
		padding-left: 120px;
	}
}
@media screen and (max-width: 1024px) {
	.article {
		padding-right: 80px;
		padding-left: 80px;
	}
}
@media screen and (max-width: 768px) {
	.article {
		padding-left: 60px;
		padding-right: 60px;
	}
}
@media screen and (max-width: 580px) {
	.article {
		padding-left: 20px;
		padding-right: 20px;
	}
}
.article article {
	display: block;
	position: relative;
	float: none;
	transition: width var(--theme_transition);
}
.articles.deux article {
	width: 50%;
}
.articles.trois article {
	width: 33.33333333%;
}
@media screen and (max-width: 480px) {
	.articles.deux article {
		width: 100%;
	}
}
@media screen and (max-width: 767px) {
	.articles.trois article {
		width: 50%;
	}
	.articles.trois article:first-of-type{
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	.articles.trois article {
		width: 100%;
	}
}
.article article .visuel {
	display: block;
	position: relative;
	float: none;
	padding: 20px;
}
.article article .visuel a {
	display: block;
	position: relative;
	float: none;
}
.article article .visuel a figure {
	display: block;
	position: relative;
	float: none;
}
.article article .visuel a figure img, .article article .visuel a figure video {
	display: block;
	position: relative;
	float: none;
	width: 100%;
	height: auto;
}
.article article .detail {
	display: flex;
	position: relative;
	float: none;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 5px;
	padding-bottom: 20px;
	flex-direction: column;
}
.article article .detail .nom {
	display: block;
	position: relative;
	float: none;
}
.article article .detail .nom h2 {
	display: block;
	position: relative;
	float: none;
	margin: 0px;
}
.article article .detail .nom h2 a {
	text-decoration: none;
	color: rgb(var(--theme_couleur_noir));
}
.article article .detail .nom h2 a:hover{
	color: rgb(var(--theme_couleur_1));
}
.article article .detail .resume {
	display: block;
	position: relative;
	float: none;
}

