#menu_desktop{display: flex;}
#menu_mobile{display: none;}

.wp-block-buttons{
	gap:20px;
}

.button-base,
.wp-block-button a{
	display: inline-block;
	color: #fff;
	font-size: 1em;
	line-height: 1.3em;
	padding: 12px 25px;
	background: #A3B18A;
	margin-top: 30px;
	border-radius: 5px;
	letter-spacing: 0em;
	text-transform: uppercase;
	font-weight: 700;
	font-family: "DM Sans", sans-serif;
	transition: all .3s;
}

.button-base::after,
.wp-block-button a::after {
	content: '';
	display: inline-block;
	margin-left: 10px;
	width: 14px;
	height: 12px;
	background: url(../img/arrow-right.svg) no-repeat center / contain;
}

.button-base:hover,
.wp-block-button a:hover{
	background: #D2B48C;
}

.wrap_content{
	max-width: 1500px;
	margin: auto;
	padding: 0 10px;
}

.wrap_small_content{
	max-width: 1200px;
	margin: auto;
	padding: 0 10px;
}

.has-small-font-size {
	font-size: 16px !important;
	font-family: "DM Sans", sans-serif;
}

.liste-base{
	margin-bottom: 10px;
}

.liste-base li{
	margin-bottom: 10px;
	color: #222;
	font-weight: 400;
	font-size: 1em;
	line-height: 1.6em;
}

.liste-base li::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	background: #A3B18A;
	margin-right: 6px;
	position: relative;
	top: -2px;
	transform: rotate(45deg);
}

i{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}

#content-main p{
	font-weight: 300;
}

#content-main p strong{
	font-weight: 600;
}

#content-main p:not(:last-of-type){
	margin-bottom: 30px;
}

.pt20{padding-top: 20px !important;}
.pt30{padding-top: 30px !important;}
.pt40{padding-top: 40px !important;}
.pt60{padding-top: 60px !important;}
.pt80{padding-top: 80px !important;}
.pt100{padding-top: 100px !important;}
.pt120{padding-top: 120px !important;}
.pt140{padding-top: 140px !important;}
.pt160{padding-top: 160px !important;}
.pt180{padding-top: 180px !important;}
.pt200{padding-top: 200px !important;}
.pt220{padding-top: 220px !important;}

.pb20{padding-bottom: 20px !important;}
.pb30{padding-bottom: 30px !important;}
.pb40{padding-bottom: 40px !important;}
.pb60{padding-bottom: 60px !important;}
.pb80{padding-bottom: 80px !important;}
.pb100{padding-bottom: 100px !important;}
.pb120{padding-bottom: 120px !important;}
.pb140{padding-bottom: 140px !important;}
.pb160{padding-bottom: 160px !important;}
.pb180{padding-bottom: 180px !important;}
.pb200{padding-bottom: 200px !important;}
.pb220{padding-bottom: 220px !important;}

.mt20{margin-top: 20px !important;}
.mt30{margin-top: 30px !important;}
.mt40{margin-top: 40px !important;}
.mt60{margin-top: 60px !important;}
.mt80{margin-top: 80px !important;}
.mt100{margin-top: 100px !important;}
.mt120{margin-top: 120px !important;}
.mt140{margin-top: 140px !important;}
.mt160{margin-top: 160px !important;}
.mt180{margin-top: 180px !important;}
.mt200{margin-top: 200px !important;}
.mt220{margin-top: 220px !important;}

.mb0{margin-bottom: 0 !important;}
.mb10{margin-bottom: 10px !important;}
.mb20{margin-bottom: 20px !important;}
.mb30{margin-bottom: 30px !important;}
.mb40{margin-bottom: 40px !important;}
.mb60{margin-bottom: 60px !important;}
.mb80{margin-bottom: 80px !important;}
.mb100{margin-bottom: 100px !important;}
.mb120{margin-bottom: 120px !important;}
.mb140{margin-bottom: 140px !important;}
.mb160{margin-bottom: 160px !important;}
.mb180{margin-bottom: 180px !important;}
.mb200{margin-bottom: 200px !important;}
.mb220{margin-bottom: 220px !important;}

/* HEADER *//* HEADER *//* HEADER *//* HEADER */
/* HEADER *//* HEADER *//* HEADER *//* HEADER */
/* HEADER *//* HEADER *//* HEADER *//* HEADER */

#header-main{
	position: absolute;
	padding: 60px 0;
	background: #fff;
	border-bottom: 1px solid #A3B18A;
	text-align: center;
	z-index: 9999;
	height: 150px;
	left: 0;
	right: 0;
	top: 0;
	transition: all ease-in-out .8s;
}

#header-main.isOpen{
	background: #F2F6EB;
	border-color: #d9d9d9;
}


@keyframes topMenu {
	0%{
		top: -65px;
		opacity: 0;
	}
	100%{
		top: 0;
		opacity: 1;
	}
}

#header-main.sticky {
	position: fixed;
	top: 0;
	background: #fff;
	box-shadow: 0 4px 30px 0 rgba(0,0,0,.1);
	animation: topMenu .3s forwards;
}

.logo-header{
	position: absolute;
	left: 140px;
	top: 28px;
	width: 222px;
	height: auto;
	transition: all ease-in-out .8s;
}

.logo-header img{
	display: block;
	width: 100%;
	height: auto;
}

#menu_centre ul{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0 70px;
}

#menu_centre ul li a{
	font-weight: 600;
	font-size: .8em;
	color: #222;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	transition: all .3s;
}

#menu_centre ul li a:hover,
#menu_centre ul li.current_page_item a,
#menu_centre ul li.current-menu-ancestor a{
	color: #A3B18A;
}

.right_menu{
	position: absolute;
	right: 140px;
	top: 60px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 40px;
	transition: all ease-in-out .8s;
}

.right_menu span{
	font-weight: 600;
	font-size: .8em;
	color: #222;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all .3s;
}

.right_menu span:hover{
	color: #A3B18A;
}

#header-main.isOpen .right_menu span{
	color: #D2B48C;
}

#header-main::before{
	content:'';
	display: block;
	width: 100%;
	height: 0%;
	position: fixed;
	left: 0;
	top: 150px;
	background: #000;
	opacity: 0;
	z-index: -1;
	transition: all ease-in-out .8s;
}

#header-main.sticky::before{
	top: 90px;
}

#header-main.isOpen::before {
	height: calc(100% - 150px);
	opacity: .3;
}

#header-main.sticky.isOpen::before {
	height: calc(100% - 90px);
}

.wrap_menu_burger{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.burger{
	position: relative;
	width: 13px;
	height: 6px;
	margin-right: 10px;
}

.barre{
	width: 100%;
	height: 2px;
	background: #222;
	position: absolute;
	left: 0;
	transform: rotate(0deg);
	transition: all .3s;
}

.wrap_menu_burger:hover .barre{
	background: #A3B18A;
}

.barre1{
	top: 0;
}

.barre2{
	bottom: 0;
}

#header-main.isOpen .barre{
	background: #D2B48C;
}

#header-main.isOpen .barre1{
	transform: rotate(45deg);
	top: 2px;
}

#header-main.isOpen .barre2{
	transform: rotate(-45deg);
	bottom: 2px;
}

.wpml-ls-legacy-list-horizontal a,
.wpml-ls-legacy-list-horizontal {
	padding: 0;
}

#menu_centre ul li{
	position: relative;
}

#menu_centre ul li.menu-item-has-children{
	position: relative;
}

#menu_centre ul li.menu-item-has-children > a{
	cursor: pointer;
}

#menu_centre ul li.menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 10px;
	height: 6px;
	background: url(../img/chevron-down.svg) no-repeat center / contain;
	position: absolute;
	left: -8px;
	right: 0;
	margin: auto;
	bottom: -15px;
}

#menu_centre ul li.menu-item-has-children ul.sub-menu {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: 50px;
	background: #fff;
	z-index: 999;
	border-radius: 2px;
	overflow: hidden;
	width: 280px;
	transform: translateX(-30%);
}

#menu_centre ul li.menu-item-has-children ul.sub-menu li a{
	font-size: 18px;
	text-transform: none;
	font-weight: 500;
	letter-spacing: 0;
	font-family: "Cormorant Infant", serif;
	display: block;
	width: 100%;
	padding: 15px 5px;
	border-bottom: 1px solid #A3B18A;
	color:#222;
	background: #F2F6EB;
	transition: all .3s;
}

#menu_centre ul li.menu-item-has-children ul.sub-menu li.current-menu-item a{
	border-color: #354E41;
	color: #354E41;
}

#menu_centre ul li.menu-item-has-children ul.sub-menu li a:hover,
#menu_centre ul li.menu-item-has-children ul.sub-menu li.current-menu-item a:hover{
	background: #354E41;
	color: #fff;
	border-color: #354E41;
}

#menu_centre ul li.menu-item-has-children ul.sub-menu li.current-menu-item a::before{
	display: none;
}

.wrap_nav_open {
	position: absolute;
	left: 0;
	right: 0;
	top: -550px;
	background: #F2F6EB;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 50px;
	padding: 80px 15%;
	transition: all ease-in-out .8s;
}

.isOpen .wrap_nav_open{
	top: 150px;
}

#header-main.sticky.isOpen .wrap_nav_open{
	top: 90px;
}

.wrap_nav_open > div{
	width: 33%;
	text-align: left;
}

.titre_nav_open{
	text-transform: uppercase;
	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	color: #aaa;
	margin-bottom: 25px;
}

.wrap_nav_open ul li{
	margin-bottom: 15px;
}

.wrap_nav_open ul li a{
	color: #222;
	font-family: "Cormorant Infant", serif;
	font-size: 1.4em;
	line-height: 1.3em;
	transition: all .3s;
}

.wrap_nav_open ul li a:hover,
.wrap_nav_open ul li.current_page_item a{
	color: #A3B18A;
}

.reseaux_header{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 15px;
	margin: 30px 0 10px 0;
}

.instagram{
	width: 24px;
	height: 24px;
	background: url(../img/reseaux/instagram-noir.svg) no-repeat center / contain;
}

.facebook{
	width: 24px;
	height: 24px;
	background: url(../img/reseaux/facebook-noir.svg) no-repeat center / contain;
}

.mariagenet{
	width: 111px;
	height: 20px;
	background: url(../img/reseaux/mariages-net-noir.svg) no-repeat center / contain;
}

.second_menu_open span{
	color: #aaa;
	font-size: .8em;
	display: inline-block;
	margin: 0 10px;
}

.second_menu_open a{
	color: #aaa;
	font-size: .8em;
	transition: all .3s;
}

.second_menu_open a:hover{
	color: #354E41;
}

#header-main.sticky{
	padding: 30px 0;
	height: 90px;
}

#header-main.sticky .logo-header {
	width: 140px;
	height: auto;
	top: 14px;
}

#header-main.sticky .right_menu {
	top: 30px;
}

/* HOME *//* HOME *//* HOME *//* HOME */
/* HOME *//* HOME *//* HOME *//* HOME */
/* HOME *//* HOME *//* HOME *//* HOME */

#content-main{
	padding-top: 150px;
}

.wrap_top_home{
	text-align: center;
	position: relative;
	z-index: 10;
}

.wrap_top_home::before{
	content:'';
	display: block;
	width: 100%;
	height: 70px;
	background: #A3B18A;
	opacity: 0.1;
	position: absolute;
	left: 0;
	top: 18px;
	z-index: -1;
}

h1{
	text-transform: uppercase;
	font-size: 6.3em;
	color: #A3B18A;
	line-height: 1em;
	letter-spacing: 0.05em;
}

h1 span {
	font-family: "Hamilton-Script", cursive !important;
	color: #514E4F;
	text-transform: none;
	display: block;
	font-size: .7em;
	letter-spacing: 0;
	line-height: .8em;
	margin-top: -10px;
}

.wrap_top_home h1 {
	margin-bottom: 60px;
	display: inline-block;
	background: #fafafa;
	padding: 0 80px;
	line-height: .8em;
}

.wrap_top_home h1 em{
	font-size: .65em;
	display: block;
}

.wrap_top_home p{
	line-height: 1.6em;
	font-size: 1.2em;
	font-weight: 400;
}

.wrap_top_home p:not(:last-of-type){
	margin-bottom: 30px;
}

.img-fixed {
	position: relative;
	height: 740px;
	clip-path: inset(0);
}

.img-full {
	max-width: 100%;
	height: 740px;
}

.img-full img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.img-fixed img {
	object-fit: cover;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.image_top_home{
	max-width: 1500px;
	margin: auto;
	position: relative;
	overflow: hidden;
	border-radius: 0 0 10px 10px;
}

.image_top_home::before {
	content: '';
	display: block;
	width: 60px;
	height: 60px;
	background: #fafafa;
	position: absolute;
	left: -45px;
	top: 0px;
	transform: rotate(-45deg);
	z-index: 10;
}

.image_top_home::after {
	content: '';
	display: block;
	width: 60px;
	height: 60px;
	background: #fafafa;
	position: absolute;
	right: -45px;
	top: 0px;
	transform: rotate(-45deg);
	z-index: 10;
}

.image_top_home img{
	display: block;
	width: 100%;
	height: auto;
}

.image_top_home > div::before {
	content: '';
	display: block;
	width: 90%;
	height: 14px;
	background: url(../img/border-blanc.svg) repeat-x;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: 30px;
	z-index: 10;
}

.nom_maries{
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	bottom: 30px;
}

.nom_maries::before {
	content: '';
	display: block;
	width: calc(45% - 50px);
	height: 14px;
	background: url(../img/border-blanc.svg) repeat-x;
	position: absolute;
	left: 5%;
	bottom: 10px;
	z-index: 10;
}

.nom_maries::after {
	content: '';
	display: block;
	width: calc(45% - 50px);
	height: 14px;
	background: url(../img/border-blanc.svg) repeat-x;
	position: absolute;
	right: 5%;
	bottom: 10px;
	z-index: 10;
}

.nom_maries img{
	width: 23px;
	height: 12px;
	object-fit: contain;
	margin: 0 auto 10px auto;
}

.nom_maries p{
	color: #fff;
	font-family: "Cormorant Infant", serif;
	font-size: 1.2em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	line-height: 1.3em;
	transition: all .3s;
}

.nom_maries p::after{
	content:'';
	display: block;
	width: 29px;
	height: 40px;
	background: url(../img/bouchon-blanc.svg) no-repeat center / contain;
	margin: 30px auto 0 auto;
}

.wrap_slider_avis{
	max-width: 96%;
	margin: auto;
	text-align: center;
}

.liste_avis{
	margin-top: 60px;
}

.note_google{
	width: 97px;
	height: 69px;
	background: url(../img/note-google.svg) no-repeat center / contain;
	margin: 0px auto 30px auto;
}

html[lang="en-US"] .note_google{
	background: url(../img/note-google-en.svg) no-repeat center / contain;
}

.wrap_slider_avis > div > p{
	text-transform: uppercase;
	font-size: 14px;
	font-family: "DM Sans", sans-serif;
	letter-spacing: 0.24em;
	line-height: 1.4em;
	color: #000;
	margin-bottom: 20px;
}

.item-avis-slide{
	padding: 50px;
	border-radius: 10px;
	background: #fff;
	height: 100%;
}

.note_avis{
	width: 89px;
	height: 12px;
	background: url(../img/etoiles-avis.svg) no-repeat left / contain;
	margin-bottom: 30px;
}

.titre_avis{
	color: #354E41;
	font-family: "Cormorant Infant", serif;
	font-size: 1.6em;
	font-weight: 300;
	line-height: 1em;
	margin-bottom: 15px;
	text-align: left;
}

.content_avis p{
	text-align: left;
	font-size: .9em;
	line-height: 1.2em;
}

.nom_avis {
	text-align: left;
	text-transform: uppercase;
	font-size: 12px;
	font-family: "DM Sans", sans-serif;
	letter-spacing: 0.24em;
	line-height: 1.4em;
	color: #000;
	margin-bottom: 20px;
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid #f2f2f2;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 0 !important;
}

.nom_avis img{
	width: auto;
	height: 14px;
	object-fit: contain;
}

.wrap_bloc_vert{
	padding: 100px 0;
	position: relative;
	z-index: 10;
	overflow: hidden;
}

.wrap_bloc_vert::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: url(../img/bg_feuille.png) no-repeat center / cover;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: 0px;
	z-index: -1;
	mix-blend-mode: darken;
	opacity: 0.05;
}

h2{
	text-transform: uppercase;
	font-size: 2.5em;
	color: #A3B18A;
	line-height: 1.3em;
	margin-bottom: 30px;
	letter-spacing: 0.05em;
	position: relative;
}

h2:not(.titre_noborder)::before {
	content: '';
	display: block;
	width: 180px;
	height: 1px;
	background: #A3B18A;
	position: absolute;
	left: -200px;
	top: 22px;
}

h2 span,
.surtitre {
	font-family: "Hamilton-Script", cursive !important;
	color: #514E4F;
	text-transform: none;
	display: block;
	font-size: .8em;
	letter-spacing: 0;
	line-height: .6em;
	position: absolute;
	left: 0;
	top: -35px;
}

.surtitre{
	position: static;
	margin-bottom: 10px;
	font-size: 1.6em;
	line-height: 1.3em;
}

.surtitre_center{
	text-align: center;
}

.wrap_bloc_vert h2 span{
	color: #fff;
}

.wrap_bloc_vert h2::before{
	left: -420px;
	width: 400px;
}

.wrap_bloc_vert p,
.wrap_bloc_vert li{
	color: #fff;
}

.wrap_bloc_vert p a{
	color: #D2B48C;
}

.wp-block-columns,
.wp-block-media-text{
	gap: 120px;
}

.wp-block-media-text__media picture{
	display: block;
	width: 100%;
	height: 100%;
}

.wrap_bloc_vert .bloc-image{
	position: relative;
	z-index: 10;
}

.wrap_bloc_vert .bloc-image::before{
	content:'';
	display: block;
	width: 100%;
	height: 80%;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
	background: #fff;
	border-radius: 5px;
}

.wrap_bloc_vert .bloc-image::after{
	content:'';
	display: block;
	width: 69px;
	height: 100px;
	position: absolute;
	right: 45px;
	top: -55px;
	z-index: -1;
	background: url(../img/bulle-champagne-vert.svg) no-repeat center / contain;
}

.wrap_bloc_vert .bloc-image figure{
	padding: 0 20px 20px 20px;
}

.wrap_bloc_vert .bloc-image img{
	border-radius: 5px;
	overflow: hidden;
}

.liste_services{
	position: relative;
	width: 100%;
}

.liste_services h2{
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	color: #fff;
	top: 60px;
	font-size: 2.5em;
	text-align: center;
	z-index: 10;
}

.swiperServices{
	width: 100%;
	height: 800px;
}

.swiperServices .swiper-slide{
	position: relative;
	z-index: 20;
}

.swiperServices .swiper-slide::before{
	content:'';
	display: block;
	width: 100%;
	height: 50%;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;
	opacity: .5;
	background: linear-gradient(
		to top,
		#594429 0%,
		rgba(210, 180, 140, 0) 100%
	);
}

.item-services-slide img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wrap_pagination_fraction{
	position: absolute;
	left: 55px;
	bottom: 55px;
	z-index: 20;
}

.swiperServices .swiper-pagination {
	position: static;
	font-size: 2em;
	color: #fff;
	font-family: "Cormorant Infant", serif;
	font-weight: 300;
}

.swiperServices .swiper-pagination .swiper-pagination-current{
	font-size: 2em;
	color: #D2B48C;
}

.wrap_navigation_slider {
	position: absolute;
	right: 55px;
	bottom: 45px;
	z-index: 20;
	display: flex;
	align-items: center;
	gap: 0;
	justify-content: flex-end;
}

.wrap_navigation_slider > div {
	position: static;
	margin: 0 !important;
}

.swiperServices .swiper-button-next .swiper-navigation-icon,
.swiperServices .swiper-button-prev .swiper-navigation-icon {
	display: none !important;
}

.swiperServices .swiper-button-next {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #D2B48C url(../img/arrow-right.svg) no-repeat center / 16px;
}

.swiperServices .swiper-button-prev {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #D2B48C url(../img/arrow-right.svg) no-repeat center / 16px;
	transform: rotate(180deg);
}

.wrap_info_slider_services{
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	bottom: 45px;
	z-index: 20;
	width: calc(100% - 440px);
	text-align: center;
}

.wrap_info_slider_services h3{
	font-size: 1.8em;
	line-height: 1.3em;
	font-family: "Cormorant Infant", serif;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #fff;
	font-weight: 400;
	margin-bottom: 30px;
}

.button-base.button-services{
	background: #D2B48C;
	width: 500px;
	margin: 0;
}

.button-base.button-services:hover{
	background: #A3B18A;
}

.button-base.button-services::after{
	display: none;
}

.flex-services{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.border_services {
	width: 100%;
	height: 14px;
	background: url(../img/border-blanc.svg) repeat-x;
}

.relative{
	position: relative;
	z-index: 20;
}

.lignes_vertes{
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -1;
	width: 100%;
	height: 497px;
	background: url(../img/lignes-vertes.svg) repeat;
	top: 40px;
}

.img_encadre{
	width: 630px;
	height: 580px;
	margin: auto;
	padding: 40px 50px;
	background: #fff;
	border-radius: 5px;
}

.img_encadre > div{
	border: 1px solid #D2B48C;
	padding: 15px;
	border-radius: 5px;
}

.img_encadre > div img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wrap_big_quote{
	max-width: 900px;
	margin: auto;
}

.wrap_big_quote blockquote::before{
	content:'';
	display: block;
	width: 53px;
	height: 40px;
	background: url(../img/quote-in-vert.svg) no-repeat center / contain;
	margin: 0 auto 20px auto;
}

.wrap_big_quote blockquote p{
	font-family: "Cormorant Infant", serif;
	font-size: 2.5em;
	color: #222;
	line-height: 1.4em;
	font-weight: 400;
}

.wrap_big_quote blockquote p em{
	font-style: italic;
}

.wrap_big_quote blockquote p strong{
	font-weight: 400 !important;
	color: #A3B18A;
}

blockquote cite{
	text-transform: uppercase;
	font-size: 14px;
	font-family: "DM Sans", sans-serif;
	letter-spacing: 0.24em;
	line-height: 1.4em;
	color: #000;
	margin-top: 50px;
}

blockquote cite img {
	height: 14px;
	width: auto;
	object-fit: contain;
	margin-right: 8px;
	position: relative;
	bottom: -1px;
}

.wp-block-media-text > .wp-block-media-text__content {
	padding: 100px 0 !important;
}

.wp-block-media-text.is-image-fill-element > .wp-block-media-text__media img{
	border-radius: 5px;
	overflow: hidden;
}

.wrap_confiance{
	max-width: 90%;
	margin: 0 auto 100px auto;
}

.wrap_confiance h2{
	text-align: center;
	margin-bottom: 80px;
}

.wrap_confiance h2::before{
	content:'';
	display: block;
	width: 1px;
	height: 180px;
	margin: 0 auto 40px auto;
	background: #A3B18A;
	position: static;
}

.item-confiance{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 25px;
	flex-basis: 100%;
	flex-grow: inherit;
}

.item-confiance img{
	display: block;
	width: 100px;
	height: 78px;
	object-fit: contain;
	object-position: center;
}

.item-confiance p{
	text-transform: uppercase;
	font-size: 14px;
	font-family: "DM Sans", sans-serif;
	letter-spacing: 0.24em;
	line-height: 1.4em;
	color: #000;
	width: calc(100% - 100px);
}

/* FOOTER *//* FOOTER *//* FOOTER *//* FOOTER */
/* FOOTER *//* FOOTER *//* FOOTER *//* FOOTER */
/* FOOTER *//* FOOTER *//* FOOTER *//* FOOTER */

#footer-main{
	background: linear-gradient(145deg, #1F2D26 0%, #2A3F34 100%);
	padding: 50px 50px 30px 50px;
	position: relative;
	z-index: 10;
}

#footer-main::after{
	content:'';
	display: block;
	width: 100%;
	height: 100%;
	background: url(../img/grain-footer.png) no-repeat center / cover;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

.row-footer-1 {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 220px;
	margin-bottom: 25vh;
}

.col-footer-2{
	text-align: right;
}

.col-footer-2 a{
	color: #fff;
	font-family: "Cormorant Infant", serif;
	font-size: 1.5em;
	line-height: 1.3em;
	transition: all .3s;
}

.col-footer-2 a:hover{
	color: #A3B18A;
}

.col-footer-2 a.tel_footer{
	font-size: 3em;
	margin-bottom: 10px;
}

.row-footer-2{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.left_footer_2 p{
	color: #fff;
	font-family: "Cormorant Infant", serif;
	font-size: 2.2em;
	line-height: 1.3em;
}

.left_footer_2 p::after{
	content:'';
	display: inline-block;
	width: 20px;
	height: 28px;
	background: url(../img/bouchon-vert.svg) no-repeat center / contain;
	margin-left: 12px;
	position: relative;
	bottom: -3px;
}

.right_footer_2{
	text-align: right;
}

.reseaux_footer{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
	margin-bottom: 20px;
}

.reseaux_footer .instagram{
	background: url(../img/reseaux/instagram.svg) no-repeat center / contain;
}

.reseaux_footer .facebook{
	background: url(../img/reseaux/facebook.svg) no-repeat center / contain;
}

.reseaux_footer .mariagenet{
	background: url(../img/reseaux/mariages-net.svg) no-repeat center / contain;
}

.wrap_menu_footer ul{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0 50px;
}

.wrap_menu_footer ul li a{
	text-transform: uppercase;
	font-size: .8em;
	color: #fff;
	line-height: 1.3em;
	font-family: "DM Sans", sans-serif;
	transition: all .3s;
}

.wrap_menu_footer ul li a:hover{
	color: #A3B18A;
}

#footer-main hr{
	margin: 40px 0 30px 0;
	border-color: #fff;
	border-bottom: none;
	opacity: .2;
}

.bottom_footer{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.bottom_footer a{
	color: #fff;
	opacity: .5;
	cursor: pointer;
	text-transform: uppercase;
	font-size: .8em;
	color: #fff;
	line-height: 1.3em;
	font-family: "DM Sans", sans-serif;
	transition: all .3s;
}

.bottom_footer span{
	color: #fff;
	opacity: .5;
	display: inline-block;
	margin: 0 15px;
}

.bottom_footer a:hover{
	opacity: 1;
}

.left_bottom_footer{
	display: flex;
	align-items: center;
}

.left_bottom_footer ul li a{
	opacity: .9;
}

/* PAGE *//* PAGE *//* PAGE *//* PAGE */
/* PAGE *//* PAGE *//* PAGE *//* PAGE */
/* PAGE *//* PAGE *//* PAGE *//* PAGE */

.wrap_top_page{
	position: relative;
	width: 100%;
	padding: 400px 10px 80px 10px;
	z-index: 10;
	text-align: center;
}

.wrap_top_page img{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	object-fit: cover;
}

.wrap_top_page h1{
	font-size: 2.5em;
	color: #fff;
}

.lines_top_page{
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	bottom: 0;
	width: 415px;
	height: 55px;
	background: url(../img/deco-bottom-hero.svg) no-repeat bottom / contain;
}

.intro_page{
	border-bottom: 1px solid rgba(163, 177, 138, .1);
	padding: 0 20px 100px 20px;
	text-align: center;
}

.intro_page p{
	font-family: "Cormorant Infant", serif;
	max-width: 740px;
	margin: auto;
	font-size: 1.3em;
	letter-spacing: -0.03em;
}

.intro_page p strong{
	font-weight: 600;
}

.intro_page .wp-block-buttons{
	margin-top: 10px;
}

.wrap_col_presentation{
	gap: 0 !important;
}

.wrap_col_presentation .wp-block-column{
	padding: 10px 15px;
	border-left: 3px solid #D2B48C;
}

.wrap_col_presentation p{
	font-size: 14px;
	font-family: "DM Sans", sans-serif;
	line-height: 1.4em;
	font-weight: 300;
}

.wrap_col_presentation p.titre_colonne{
	text-transform: uppercase;
	letter-spacing: 0.24em;
	font-weight: 600;
	color: #000;
}

.img-fixed.img-top90 img{
	object-position: center 90px;
}

.cta_encadre{
	max-width: 1150px;
	margin: auto;
	padding: 65px 90px;
	background: #fff;
	border-radius: 5px;
}

.cta_encadre > div{
	border: 1px solid #D2B48C;
	padding: 50px 15px;
	border-radius: 5px;
	text-align: center;
}

.content_cta_encadre{
	margin: auto;
	max-width: 600px;
}

.cta_encadre h2::before{
	display: none;
}

.cta_encadre .surtitre{
	font-size: 1.6em;
	line-height: 1em;
}

.border-verticale{
	width: 1px;
	height: 180px;
	margin: auto;
	position: relative;
	top: -30px;
	background: #A3B18A;
}

.wp-block-columns.wrap_col_services{
	gap: 40px;
}

.wrap_col_services .wp-block-column{
	background: #fff;
	padding: 25px 35px 55px 35px;
	border-radius: 5px;
	position: relative;
}

.wrap_col_services .wp-block-column h3{
	border-radius: 5px;
	background: #354E41;
	color: #fff;
	padding: 30px 15px;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 30px;
	font-weight: 700;
	letter-spacing: 0.05em;
	font-size: 1.3em;
	font-family: "DM Sans", sans-serif;
}

.wrap_col_services .wp-block-column > p strong{
	font-weight: 600;
	font-size: 1em;
	margin-bottom: 20px;
	display: block;
	text-align: center;
}

.wrap_col_services .wp-block-column ul{
	padding: 0 6px;
}

.wrap_col_services .wp-block-column ul li,
.liste-check li{
	margin-bottom: 20px;
	color: #888;
	font-weight: 300;
	font-size: 1em;
	line-height: 1.6em;
}

.wrap_col_services .wp-block-column ul li::before,
.liste-check li::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url(../img/list-check.svg) no-repeat center / contain;
	margin-right: 6px;
	position: relative;
	top: 2px;
}

.wrap_col_services .wp-block-column .wp-block-buttons{
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	justify-content: center;
	bottom: -20px;
}

.wrap_col_services .wp-block-column .wp-block-buttons a{
	margin: 0 !important;
}

.wrap_col_polaroid {
	background: #fff;
	padding: 120px 0 80px 0;
	gap: 40px 0 !important;
	display: block !important;
	position: relative;
	padding-left: 60%;
}

.wrap_col_polaroid h2{
	font-size: 2em;
	margin-bottom: 40px;
}

.wrap_col_polaroid h2::before{
	display: none;
}

.col_polaroid_texte{
	padding: 0 40px 0 0;
}

.col_polaroid_img {
	position: relative;
	left: -10%;
	bottom: -80px;
	position: absolute;
	width: 66%;
	height: 100%;
}

.col_polaroid_img figure {
	display: block;
	width: 100%;
	height: 100%;
}

.col_polaroid_img picture {
	display: block;
	width: 100%;
	height: 100%;
}

.col_polaroid_img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.item-etape{
	position: relative;
	padding-left: 42px;
}

.item-etape:not(:last-of-type){
	margin-bottom: 30px;
}

.item-etape span{
	display: block;
	width: 30px;
	height: 30px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 5px;
	background: #354E41;
	position: absolute;
	left: 0;
	top: -2px;
}

.titre_etape{
	margin-bottom: 12px !important;
	text-transform: uppercase;
	letter-spacing: 0.24em;
	font-weight: 600;
	color: #000;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 400 !important;
}

.item-etape p{
	font-size: .8em;
	color: #222;
	line-height: 1.6em;
	font-weight: 300;
}

/* SANS BANNIERE *//* SANS BANNIERE *//* SANS BANNIERE *//* SANS BANNIERE */
/* SANS BANNIERE *//* SANS BANNIERE *//* SANS BANNIERE *//* SANS BANNIERE */
/* SANS BANNIERE *//* SANS BANNIERE *//* SANS BANNIERE *//* SANS BANNIERE */

.wrap_top_sansbanniere{
	max-width: 1200px;
	margin: auto;
	padding: 80px 0 60px 0;
	text-align: center;
}

.wrap_top_sansbanniere h1 {
	font-size: 4em;
	margin-bottom: 20px;
}

.wrap_item_temoignages{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px 2%;
	padding-bottom: 100px;
}

.wrap_item_temoignages .item-avis-slide{
	width: 49%;
	height: auto;
}

/* CONTACT *//* CONTACT *//* CONTACT *//* CONTACT */
/* CONTACT *//* CONTACT *//* CONTACT *//* CONTACT */
/* CONTACT *//* CONTACT *//* CONTACT *//* CONTACT */

.wrap_map iframe{
	width: 100% !important;
}

#content-main p a,
#content-main ul:not(.liste-actus) li a{
	color: #A3B18A;
	border-bottom: 1px solid #A3B18A;
}

.page-id-19 .wp-block-columns{
	gap: 40px;
}

/* formulaire */
.wpcf7-form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.wpcf7 {
	max-width: 100%;
	margin: auto;
	width: 100%;
	background: #fff;
	padding: 30px;
	border-radius: 5px;
	position: relative;
	z-index: 10;
}

.wpcf7 label {
	width: 48%;
	margin: 0 0 10px 0;
	font-size: .8em;
	text-transform: uppercase;
	line-height: 1.8em;
	letter-spacing: .5px;
	font-weight: 500;
	display: block;
	padding-bottom: 5px;
	border-bottom: 1px solid #FFF7F2;
	font-family: "DM Sans", sans-serif;
}

.label100{
	width: 100% !important;
}

.wpcf7 input {
	width: 100%;
	padding: 8px 15px;
	background: #f5f5f5;
	border: none;
	margin-top: 10px;
	color: #222;
	font-family: "DM Sans", sans-serif;
	font-size: 1em;
	line-height: 1.3em;
}
.wpcf7 select {
	width: 100%;
	padding: 8px 15px;
	background: #f5f5f5;
	border: none;
	margin-top: 10px;
	color: #222;
	font-family: "DM Sans", sans-serif;
	font-size: 1em;
	line-height: 1.3em;
}
.wpcf7 label.textarea-label{
	width: 100%;
}
.wpcf7 textarea {
	width: 100%;
	height: 120px;
	resize: none;
	background: #f5f5f5;
	border: none;
	color: #222;
	padding: 8px 15px;
	margin-top: 10px;
	font-family: 'Poppins', sans-serif;
	font-size: 1em;
	line-height: 1.3em;
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder{
	color: #888;
}
.wpcf7 input.wpcf7-submit {
	display: inline-block;
	color: #fff;
	font-size: 1.3em;
	line-height: 1.3em;
	font-weight: 700;
	padding: 12px;
	text-align: center;
	background: #A3B18A;
	border-radius: 5px;
	cursor: pointer;
	transition: all .3s;
}
.wpcf7 input.wpcf7-submit:hover {color: #fff; background: #024C50;}
.wpcf7-not-valid-tip {
	color: #dc3232;
	font-size: .8em;
	font-weight: normal;
	display: block;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	padding: 20px;
	text-align: center;
}
.wpcf7 form.sent .wpcf7-response-output {
	border-color: #FFF7F2;
	width: 100%;
	padding: 40px 20px;
	background: #FFF7F2;
	color: #1E1E1E;
	text-align: center;
	border-bottom: 10px solid #A3B18A;
}
.wpcf7 .wpcf7-acceptance label {
	width: 100%;
	margin: 2% 0 20px 0;
	padding-bottom: 0;
	text-align: left;
	text-transform: none;
	letter-spacing: 0;
	display: block;
	border: none;
}

.wpcf7 .wpcf7-acceptance input {
	width: 15px !important;
	height: 15px !important;
	padding: 0;
	margin: 0 8px -1px 0;
	border: 1px solid #DBDBDB;
}

.gap{gap:70px;}

.choix-jours label{
	width: auto;
	display: inline-block;
}

.choix-jours input{
	width: auto;
	display: inline-block;
}

.wpcf7 label.label100{
	width: 100%;
}

/* FAQ *//* FAQ *//* FAQ *//* FAQ */
/* FAQ *//* FAQ *//* FAQ *//* FAQ */
/* FAQ *//* FAQ *//* FAQ *//* FAQ */

/* ACCORDION */

.accordion {
	width: 100%;
	text-align: left;
}

.accordion .item-accordion{
	position: relative;
	border-bottom: 1px solid #D9D9D9;
	gap: 0;
}

.accordion .item-accordion.activeBorder{
	border-color: #354E41;
}

.accordion h2 {
	position: relative;
	display: block;
	padding: 20px 50px 20px 30px;
	background: #fff;
	color: #222;
	font-size: 1em;
	line-height: 1.3em;
	font-family: "DM Sans", sans-serif;
	cursor: pointer;
	margin-bottom: 0;
	letter-spacing: 0;
	text-transform: none;
	width: 100%;
	font-weight: 400;
	transition: all .3s;
}

.accordion h2::before{
	display: none;
}

.accordion h2.active,
.accordion h2:hover{
	background: #354E41;
	color: #fff;
}

.accordion h2::after {
	content: "\f329";
	font-family: "Font Awesome 7 Pro";
	font-weight: 900;
	display: block;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%) rotate(0deg);
	transition: all .3s;
}

.accordion h2:hover::after{
	background: url(../img/chevron-left-blanc.svg) no-repeat center / contain;
	transform: translateY(-50%) rotate(-90deg);
}

.accordion h2.active::after{
	transform: translateY(-50%) rotate(-180deg);
	background: url(../img/chevron-left-blanc.svg) no-repeat center / contain;
}

/* submenu */

.accordion .contenu_faq {
	display: none;
	background: #fff;
	padding: 20px 30px 30px 30px;
}

.accordion .contenu_faq p {
	display: block;
	font-size: 1em;
	margin-bottom: 10px;
}

.accordion .contenu_faq p:last-of-type{
	margin: 0;
}

/* fin accordion */

/* BLOG */

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

.wrap_actus{
	text-align: center;
	position: relative;
	z-index: 10;
}

.wrap_actus > a{
	text-transform: uppercase;
	color: #aaa;
	letter-spacing: 0.18em;
	font-weight: 700;
	font-size: .7em;
}

.liste-actus{
	margin-top: 30px;
	padding-bottom: 90px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 60px 1%;
}

.liste-actus li{
	width: 32%;
}

.liste-actus li > a::before{
	content:'';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: 0;
	background: #354E41;
	opacity: 0;
	pointer-events: none;
	transition: all .3s;
}

.liste-actus li > a:hover::before{
	opacity: .4;
}

.liste-actus li > a::after {
	content: '';
	display: inline-block;
	width: 30px;
	height: 30px;
	background: url(../img/arrow-right.svg) no-repeat center / contain;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: 50%;
	opacity: 0;
	transform: translateY(-50%);
	transition: all .3s;
}

.liste-actus li > a:hover::after{
	opacity: 1;
}

.liste-actus li img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.liste-actus li > a {
	display: inline-block;
	position: relative;
	height: 320px;
	display: block;
}

.contenu_actus{
	margin-top: 20px;
	padding: 0px 10px;
	text-align: left;
}

.contenu_actus > span{
	display: block;
	margin-bottom: 10px;
	font-size: .6em;
	line-height: 1.3em;
	letter-spacing: 0.3em;
	color: #A3B18A;
	text-transform: uppercase;
}

.contenu_actus h3{
	font-size: 1em;
	line-height: 1.3em;
	font-family: "Cormorant Infant", serif;
	letter-spacing: 0.02em;
	color: #222;
	font-weight: 400;
	margin-bottom: 10px;
}

.contenu_actus p{
	font-size: .85em;
}

/* PAGES */

.col_autre_event{
	gap: 20px;
}

.col_autre_event .wp-block-column{
	background: #F2F2F2;
}

.col_autre_event .wp-block-column img{
	display: block;
	width: 100%;
	height: 320px;
	object-fit: cover;
}

.col_autre_event .wp-block-column p{
	padding: 12px;
}

.intro_page.intro_autre_event {
	border-bottom: none;
	padding: 0 20px;
	text-align: center;
}

.col_autre_event .wp-block-column .wp-block-buttons > .wp-block-button{
	width: 100%;
	display: block;
	padding: 5px;
}

.col_autre_event .wp-block-column .wp-block-button a{
	margin-top: 0;
	width: 100%;
	border-radius: 0;
}

/* histoire *//* histoire *//* histoire *//* histoire */
/* histoire *//* histoire *//* histoire *//* histoire */
/* histoire *//* histoire *//* histoire *//* histoire */

.item-histoire-slide {
	max-width: 1500px;
	margin: auto;
	min-height: 600px;
	position: relative;
	overflow: hidden;
	z-index: 20;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0 0 10px 10px;
}

.item-histoire-slide picture{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.item-histoire-slide::before {
	content: '';
	display: block;
	width: 60px;
	height: 60px;
	background: #fff;
	position: absolute;
	left: -45px;
	top: 0px;
	transform: rotate(-45deg);
	z-index: 10;
}

.item-histoire-slide::after {
	content: '';
	display: block;
	width: 60px;
	height: 60px;
	background: #fff;
	position: absolute;
	right: -45px;
	top: 0px;
	transform: rotate(-45deg);
	z-index: 10;
}

/*  */

.histoire-border-top{
	content: '';
	display: block;
	width: 90%;
	height: 14px;
	background: url(../img/border-blanc.svg) repeat-x;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: 30px;
	z-index: 10;
}

.histoire-bouchon {
	content: '';
	display: block;
	width: 26px;
	height: 34px;
	background: url(../img/bouchon-blanc.svg) no-repeat center / contain;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	bottom: 22px;
}

.histoire-border-bottom-left {
	content: '';
	display: block;
	width: calc(45% - 36px);
	height: 14px;
	background: url(../img/border-blanc.svg) repeat-x;
	position: absolute;
	left: 5%;
	bottom: 30px;
	z-index: 10;
}

.histoire-border-bottom-right {
	content: '';
	display: block;
	width: calc(45% - 36px);
	height: 14px;
	background: url(../img/border-blanc.svg) repeat-x;
	position: absolute;
	right: 5%;
	bottom: 30px;
	z-index: 10;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
	bottom: -50px;
}

.liste_avis{
	position: relative;
}

.swiper-pagination .swiper-pagination-bullet{
	background: #E9E9E9;
	border-radius: 3px;
	transform: rotate(0deg);
	opacity: 1;
	width: 10px;
	height: 10px;
	transition: all .3s;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
	background: #D2B48C;
	border-radius: 3px;
	transform: rotate(45deg);
	opacity: 1;
}

/*  */

.item-histoire-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	opacity: .6;
}

.item-histoire-slide .wrap_content_histoire .content_histoire picture{
	position: static;
}

.item-histoire-slide .wrap_content_histoire .content_histoire img{
	width: 120px;
	height: auto;
	position: static;
	object-fit: contain;
	opacity: 1;
}

.wrap_content_histoire{
	max-width: 80%;
	margin: auto;
	text-align: center;
	position: relative;
	z-index: 30;
	padding: 60px 0;
}

.wrap_content_histoire p{
	color: #fff;
	font-size: .9em;
	line-height: 1.6em;
}

.wrap_content_histoire h3{
	display: inline-block;
	color: #fff;
	background: #A3B18A;
	padding: 14px 25px;
	min-width: 580px;
	margin: 0 auto 30px auto;
	text-transform: uppercase;
	font-size: 1.4em;
	letter-spacing: 0.05em;
	border-radius: 5px;
	font-family: "Cormorant Infant", serif;
}

.date_histoire{
	display: inline-block;
	color: #fff;
	font-family: "Hamilton-Script", cursive !important;
	text-transform: none;
	display: block;
	font-size: 3.2em;
	letter-spacing: -0.01em;
	line-height: .6em;
	margin-bottom: 10px;
}

.date_histoire::before{
	content:'';
	display: inline-block;
	width: 20px;
	height: 1px;
	background: #fff;
	margin-right: 12px;
	position: relative;
	top: -11px;
}

.date_histoire::after{
	content:'';
	display: inline-block;
	width: 20px;
	height: 1px;
	background: #fff;
	margin-left: 12px;
	position: relative;
	top: -11px;
}

/* SINGLE *//* SINGLE *//* SINGLE *//* SINGLE */
/* SINGLE *//* SINGLE *//* SINGLE *//* SINGLE */
/* SINGLE *//* SINGLE *//* SINGLE *//* SINGLE */

.img_single{
	max-width: 300px;
	margin: 0 auto 20px auto;
}

.img_single img{
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

#single-presentation h1{
	font-size: 1.8em;
	margin-bottom: 60px;
}

/* -- */

#page-mentions .titre_mentions{
	font-size: 2em;
}

#page-mentions h2{
	font-size: 1.4em;
}

#page-mentions h2::before{
	display: none;
}

.cf7-cf-turnstile{
	margin-left: auto;
	margin-right: auto;
}





/* Forcer img 100 de haut depuis WP 6.9 */
.wp-block-media-text{align-items: stretch;}
.wp-block-media-text.is-image-fill-element > figure.wp-block-media-text__media{align-self: stretch;position: relative;overflow: hidden;height: 100%;min-height: 250px;}
.wp-block-media-text.is-image-fill-element > figure.wp-block-media-text__media picture{display: block;width: 100%;height: 100%;}
.wp-block-media-text.is-image-fill-element > figure.wp-block-media-text__media img{position: absolute;inset: 0;width: 100%;height: 100%;object-fit: cover;display: block;}
/* ------------------------------------ */

/* --- */

.retour{
	display: block;
	width: 100%;
	clear: both;
}

/* 

	font-family: "Hamilton-Script", cursive !important;
	font-family: "DM Sans", sans-serif;
	font-family: "Cormorant Infant", serif;
	
	Vert foncé: #354E41
	Vert clair: #A3B18A
	Or: #D2B48C
	
*/
