/*
Theme Name: SoHappy Theme Astra Gutenberg
Theme URI: https://www.sohappy-studio.com
Author: Agence So'Happy
Author URI: hhttps://www.sohappy-studio.com
Description: Astra child theme
Template: astra
License: GNU General Public License v3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Version: 1.0.0
*/
/******************************/
/********** Variables CSS *****/
/******************************/
:root {
	--main-color: var(--ast-global-color-0, #006a78);
	--sub-color: var(--ast-global-color-1, #e3eef0);
	--third-color: var(--ast-global-color-2, #52b8ca);
    --white : #fff;
	--grey: #C7C6C6;
	--black : #000;
    
	--arial : "Arial Narrow", Arial, sans-serif;
	--raleway:'Raleway', var(--arial);
	--gotham: 'Gotham Rounded', var(--raleway);
	--source-serif-4: 'Source Serif 4', var(--raleway);
}

/* --------------- GENERAL ---------------- */
html {
	font-size: 62.5%;
	margin: 0!important;
	padding: 0;
	width: 100vw;
	height: unset;
	overflow-x: hidden;
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
	font-size: 1.5rem;
	font-family: var(--gotham);
	color: #000;

}
#wpadminbar {
	opacity: .7;
}

h1, .entry-content h1, body :is(.is-h1) {
	font-family: var(--gotham);
	text-align: center;
	font-size: 8rem;
	line-height: 1.1;
	margin-bottom: 0.6lh;
	color: var(--white);
	font-weight: 500;
}
h2, .entry-content h2, body :is(.is-h2) {
	font-family: var(--gotham);
	font-size: 6rem;
	line-height: 1.1;
	margin-bottom: 0.6lh;
	font-weight: 500;

}
h3, .entry-content h3, body :is(.is-h3) {
	font-family: var(--gotham);
	font-size: 5rem;
	line-height: 1.1;
	margin-bottom: 0.6lh;
	font-weight: 500;
}
h4, .entry-content h4, body :is(.is-h4) {
	font-family: var(--source-serif-4);
	font-size: 2.3rem;
	line-height: 1.1;
	margin-bottom: 0.6lh;
	font-weight: 500;
}
h5, .entry-content h5, body :is(.is-h5) {
	font-family: var(--source-serif-4);
	font-size: 1.9rem;
	line-height: 1.1;
	margin-bottom: 0.6lh;
	font-weight: 500;
}
.big-text, .entry-content .big-text {
	font-size: 9.5rem;
	font-weight: 300;
}

/* définit un style commun pour les paragraphes */
p, a, ul li {
	font-family: var(--gotham);
	font-weight: 300;
	line-height: 1.3;
	font-size: 2rem;
}
p, .entry-content p {
	margin-bottom: 0.6lh;

}
p a, .entry-content li a {
	padding-bottom: 2px;
	border-bottom: var(--main-color) dotted 1px;
	text-decoration: none!important;
	color: inherit;
	font-weight: inherit;
}
.entry-content p a, .entry-content li a {
	color: var(--main-color);
	
}
.entry-content p a:hover, .entry-content li a:hover, .entry-content h4 a:hover{
	color: var(--main-color);
	border-bottom-color: var(--main-color);
}

p a:hover {
	color: var(--main-color);
}

strong {
	font-weight: 500;
}
em {
    font-style: italic;
}
.color-black {
	color: var(--black);
}
.color-white {
	color: var(--white);
}

/*********BOUTON**********/
.wp-block-button .wp-element-button {
	display: block;
	padding: 7px 15px;
	background-color: transparent;
	border: 1px solid var(--main-color);
	border-radius: 50px;
	box-sizing: border-box;
	line-height: 1.2;
	font-size: 1.6rem;
	color: var(--main-color);
	font-family: var(--gotham);
	font-weight: 500;
	text-decoration: none!important;

	transition: all .2s ease-out;
}
.wp-block-button .wp-element-button:hover {
	color: var(--white);
	background-color: var(--main-color);
	border: 1px solid var(--main-color);
	border-radius: 50px;
}

body .has-ast-global-color-0-background-color .wp-block-button .wp-element-button {
	border-color: var(--white);
	color: var(--white);
}
body .has-ast-global-color-0-background-color .wp-block-button .wp-element-button:hover {
	border-color: var(--white);
	background-color: var(--white);
	color: var(--main-color);
}


/****************************/
/**********SPECIFIC**********/
/****************************/
.FlexContainer {
	display: flex!important;
	flex-flow: row wrap;
}
.ContainerFlex {
	display: flex;
	flex-flow: column;
}
.center-row {
	display: flex!important;
	flex-flow: row wrap;
	align-items: center;
}
.align-center-row {
	align-items: center;
}
.justify-center-row {
	justify-content: center;
}
.align-end-row {
	align-items: flex-end!important;
}
.justify-end-row {
	justify-content: end;
}
.justify-between-row {
	justify-content: space-between;
}
.justify-around-row {
	justify-content: space-around;
}
/* enlève la marge interne*/
.no-padding {
	padding: 0!important;
}
/* enlève la marge externe*/
.no-margin {
	margin: 0!important;
}
/* bouton non cliquable */
.no-click {
	pointer-events: none;
	cursor: none;
}
/* sections en fullwidth */
.fullwidth {
	width: 100%!important;
	max-width: 100%!important;
}
.fullheight {
	height: 100%!important;
	max-height: 100%!important;
}
/* Centre le background et remplit la div */
.full-background-fit {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
/* cache le after et le before */
.no-after:after {
	visibility: hidden!important;
}
.no-before:before {
	visibility: hidden!important;
}
.no-desktop {
	display: none!important;
}
@media (max-width: 980px) {
	.no-desktop {
		display: unset!important;
	}
	.no-tablet {
		display: none!important;
	}
}
@media (max-width: 768px) {
	.no-tablet {
		display: unset!important;
	}
	.no-mobile {
		display: none!important;
	}
}
.min-width {
	width: 60%!important;
	margin: auto;
}

.text_image {
	height: 2.5rem;
	padding: 0 10px;
}
.img-zoom, .img-zoom * {
	overflow: hidden;
}
.img-zoom img {
	transition: all .5s ease-out;
}
.img-zoom:hover img {
	transform: scale(1.1);
}

/****************************/
/********** HEADER **********/
/****************************/
body:is(.scroll0, .mob_scroll0) #masthead {
	opacity: 1;
	transform: translateY(0);
}
#masthead {
	position: fixed!important;
	top: 0;
	width: 100%;
	z-index: 500;
	background-color: var(--white);
	-webkit-box-shadow: 0px 5px 20px 0px #00000060; 
	box-shadow: 0px 5px 20px 0px #00000060;

	opacity: 0;
	transform: translateY(-100%);
	transition: all .2s ease-out;
}
#masthead .ast-site-identity {
	padding: 10px 0;
}
#masthead .main-header-menu {
	--link-padding: 20px;
	gap: 20px;
}
#masthead .main-header-menu li a.menu-link {
	position: relative;
	text-align: center;
	color: var(--main-color);
	text-transform: uppercase;
	padding: 5px var(--link-padding);
	font-size: 1.7rem;
}
#masthead .main-header-menu li a.menu-link::before, #masthead .main-header-menu li a.menu-link::after {
	position: absolute;
	display: block;
	content: "";
	height: 1px;
	width: calc(100% - 2 * var(--link-padding));

	background-color: var(--main-color);
	bottom: 0;
}
#masthead .main-header-menu li a.menu-link::before {
	display: none;
	bottom: unset;
	top: 0;
}
#masthead .main-header-menu li.current-menu-item a.menu-link {
	font-weight: 700;
}
#masthead .main-header-menu li.no-header {
	display: none!important;
}
#main-header {
	position: relative;
	box-sizing: border-box;
	background-color: var(--sub-color);
	padding: calc(var(--masthead-height) * 2) 20px 300px 20px;

	overflow: hidden;
}
#main-header.header-page {
	padding-bottom: 100px;
}
#main-header .header-thumb {
	--offset : 50px;
	position: absolute;
	width: 100%;
	height: calc(100% + var(--offset));
	object-fit: cover;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all .5s ease-in-out .2s;
	pointer-events: none;
}
body.jq-init #main-header .header-thumb {
	opacity: 1;
	transform: translateY(calc(var(--offset) * -1));
}
#main-header .header-overlay {
	position: absolute;
	display: block;
	width: 100%;
	height: 0%;
	bottom: 0;
	left: 0;
	background: linear-gradient(0deg, #000 0%, #ffffff00 100%);
	pointer-events: none;
	opacity: .5;
	transition: all .5s ease-in-out .4s;
	z-index: 1;
}
body.jq-init #main-header .header-overlay {
	height: 70%;

}
#main-header .header-data {
	position: relative;
	min-height: 400px;
	z-index: 2;
}
#main-header.header-page .header-data {
	min-height: 400px;
}
#main-header .header-logo {
	margin-bottom: 40px;
}
#main-header .header-title {
	text-shadow: 0 0 10px #00000080;
}
/****************************/
/********** CONTENT *********/
/****************************/
.slide_up, .slide_down, .slide_right, .slide_left {
	opacity: 0; /*ANIMATION GSAP*/
}

/******* HAS-OVERLAP *******/
.has-overlap-top {
	--overlap-margin-top : 100px;
	z-index: 5;
}
.has-overlap-top.has-overlap-margin {
	margin-top: var(--overlap-margin-top)!important;
}
.has-overlap-bottom {
	--overlap-margin-bottom : 100px;
	z-index: 5;
}
.has-overlap-bottom.has-overlap-margin {
	margin-bottom: var(--overlap-margin-bottom)!important;
}

body .is-serif {
	font-family: var(--source-serif-4)!important;
}
body .is-sans-serif {
	font-family: var(--gotham)!important;
}
body .is-light-weight {
	font-weight: 300!important;
}
body .is-highlight-word {
	max-width: 100%;
	width: max-content;
	font-size: 4rem;
	font-weight: 500;
}
/******* LINK BANNER *******/
body a.wp-block-sohappy-linked-group-block {
	text-decoration: none!important;
}

body .link-banner {
	transition: all .2s ease-out;
	background-position: center center!important;
}
body .link-banner p {
	position: relative;
	width: max-content;
	display: block;
	border-radius: 50px;
	font-family: var(--gotham);
	font-weight: 500;
	padding: 7px 40px 7px 20px;
	transition: all .2s ease-out;
}
body .link-banner p::after {
	position: absolute;
	content: "";
	display: block;
	height: 1lh;
	width: 20px;
	background-color: var(--main-color);
	top: 50%;
	right: 10px;
	transform: translate(0, -50%);
	mask: url('./assets/svg/picto_arrow.svg') no-repeat center / contain;
	transition: all .3s ease-out;
}
body .link-banner:hover p::after {
	background-color: var(--white);
}
body .link-banner p.has-ast-global-color-0-background-color::after {
	background-color: var(--white);
}
body .link-banner:hover {
	transform: translateY(-20px);
	-webkit-box-shadow: 0px 5px 20px 0px #00000060; 
	box-shadow: 0px 5px 20px 0px #00000060;
}
body .link-banner:hover p {
	background-color: var(--main-color)!important;
	color: var(--white)!important;
}


.check-marks .wp-block-group > figure {
	flex-shrink: 0;
}



.timeline-slider .slick-list {
  overflow: visible !important;
}
.timeline-slider {
  cursor: grab;
}
.timeline-slider .slick-slide {
	position: relative;
}
.timeline-slider .slick-slide::after {
	position: absolute;
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	background-color: var(--main-color);
	mask: url('./assets/svg/picto_arrow.svg') no-repeat center / contain;
	-webkit-mask: url('./assets/svg/picto_arrow.svg') no-repeat center / contain;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
}
.timeline-slider .slick-track {
	display: flex;
	align-items: center;
}
.partners-slider .slick-slide {
	padding: 0 30px;
	box-sizing: border-box;
	display: inline-block;
    vertical-align: middle;
    float:none;
}
.partners-slider .slick-slide img {
	width: 100%!important;
	object-fit: contain;
	object-position: center center;
}


.slick-slider-dot {
	position: relative;
	padding-bottom: 30px;
	box-sizing: border-box;
}
.slick-slider-dot > div {
	border-radius: 20px;
}
.slick-slider-dot .slick-dots {
	position: absolute;
	display: flex;
	justify-content: center;
	width: max-content;
	list-style: none;
	padding: 0;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
}
.slick-slider-dot .slick-dots li {
	margin: 0 5px;
	line-height: 0;
}
.slick-slider-dot .slick-dots li button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--white);
	opacity: .5;
	border: none;
	padding: 0;
	font-size: 0;
	transition: all .2s ease-out;
	transform-origin: center center;
}
.slick-slider-dot .slick-dots li.slick-active button {
	scale: 1.3;
	opacity: 1;
}

.infinite-scroll {
	width: 100%;
	overflow: hidden;
}
.infinite-scroll .scroll-container {
	display: flex;
	will-change: transform;
	width: max-content!important;
}
@keyframes scroll-left {
	0% {
    	transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-50%, 0, 0);
	}
}

body.jq-init .infinite-scroll .scroll-container {
	animation: scroll-left 20s linear infinite;
}
.infinite-scroll.scroll-right .scroll-container {
	animation-direction: reverse;
}
.infinite-scroll .scroll-container > * {
	opacity: 0;
	transition: all .5s ease-out;
}
body.jq-init .infinite-scroll .scroll-container > * {
	opacity: 1;
	/* transition: none; */
}
.infinite-scroll .scroll-container figure img {
	transform: translateZ(0); /*swaps rendering to GPU, preventing jittering*/
}
.infinite-scroll .scroll-container p strong {
	font-weight: 700;
}

.accordeon-item {
	transition: all .2s ease-out;
}
.accordeon-item .accordeon-content {
	height: 0;
	overflow: hidden;
	transition: height .3s ease-out;
}
.accordeon-item.open .accordeon-content {
	height: var(--content-height);
}
.accordeon-item .accordeon-title {
	transition: all .2s ease-out;
	cursor: pointer;
}
.accordeon-item .accordeon-title * {
	color: var(--white);
	font-weight: 400!important;
}
.accordeon-item .accordeon-title > *:last-child {
	position: relative;
	padding-right: 70px;
}
.accordeon-item .accordeon-title > *:last-child::after {
	position: absolute;
	content: "";
	display: block;
	width: 40px;
	height: 120%;
	background-color: var(--white);
	mask: url('./assets/svg/picto_arrow.svg') no-repeat center / contain;
	top: -10%;
	right: 0;
	transition: all .2s ease-out;
}
.accordeon-item.open .accordeon-title > *:last-child::after {
	transform: rotate(90deg);
}
body .entry-content .fts-instagram-wrapper {
	border-radius: 20px;
}
.wp-block-list {
	list-style: none;
}
.wp-block-list li {
	position: relative;
}
.wp-block-list li:not(:has(> *)) {
	margin-bottom: .4lh;
}
.wp-block-list li::before {
	position: absolute;
	content: "";
	display: block;
	width: 20px;
	height: 1lh;
	font-size: inherit;
	background-color: currentColor;
	mask: url('./assets/svg/picto_arrow.svg') no-repeat center / contain;
	left: -5px;
	top: 0;
	transform: translateX(-100%);
}
/* CONTACT FORM 7 */
.CForm {
	width: 100%;
	gap: 20px;
}
.CForm .CF-full {
	width: 100%;
}
.CForm .CF-half { width: calc(50% - 10px); }
.CForm .CF-onethird { width: calc(33% - 10px); }
.CForm .CF-twothird { width: calc(66% - 10px); }
.CForm .CF-onequarter {	width: calc(25% - 10px); }
.CForm .CF-threequarter { width: calc(75% - 10px); }

.CForm input, .CForm textarea {
	font-size: 1.5rem;
	border-radius: 20px;
}
.CForm input:focus, .CForm textarea:focus {
	padding: 16px 20px;
	border: 1px solid var(--main-color)!important;
}
.CForm .CF-highlight {
	color: var(--main-color);
	font-weight: 800;
}

.CForm .CF-checkbox .wpcf7-checkbox {
	display: flex;
	flex-wrap: wrap;
}
.CForm .CF-checkbox .wpcf7-list-item {
	margin: 0 0 5px 1%;
	width: 32%;
	min-width: 250px;
}
.CForm .CF-radio .wpcf7-radio {
	display: block;
}
.CForm .CF-radio .wpcf7-list-item {
	margin: 0 0 5px 1%;
	width: 99%;
}
.CForm .wpcf7-not-valid {
	border: 1px solid #dc3232;
}
.CForm .wpcf7-not-valid-tip {
	position: absolute;
	font-size: 1rem;
	bottom: 0;
	transform: translate(0,80%);
}
.CForm .CF-number label > span {
	width: 150px;
	display: block;
}
.CForm .CF-textarea .wpcf7-textarea  {
	resize: vertical;
}

.CForm .CF-hr {
	position: relative;
}
.CForm .CF-hr h3 {
	display: inline-block;
	padding-right: 20px;
	margin: 0;
	background-color: var(--white);
}
.CForm .CF-hr::before {
	position: absolute;
	content: "";
	display: block;

	width: 100%;
	height: 2px;
	background-color: var(--main-color);

	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	z-index: -1;
}

#cmplz-document p, #cmplz-document li, #cmplz-document td, .editor-styles-wrapper .cmplz-unlinked-mode p, .editor-styles-wrapper .cmplz-unlinked-mode li, .editor-styles-wrapper .cmplz-unlinked-mode td, #cmplz-document, .editor-styles-wrapper .cmplz-unlinked-mode {
	font-size: 2rem;
}
#cmplz-document, .editor-styles-wrapper .cmplz-unlinked-mode {
	max-width: 1300px;
}
/****************************/
/***********FOOTER***********/
/****************************/
#main-footer .main-menu {
	--border-weight: 1px;
	display: grid;
	grid-template-rows: repeat(3, 1fr);
	grid-auto-flow: column;
	gap: 0 10px;
}
#main-footer .main-menu li {
	width: 100%;
	border: var(--border-weight) solid var(--main-color);
	border-width: var(--border-weight) 0 0 0;
}
/* #main-footer .main-menu li:last-child, #main-footer .main-menu li:nth-child(3n) {
	border-width: var(--border-weight) 0 var(--border-weight) 0;
} */
#main-footer .main-menu li a.menu-link {
	text-transform: uppercase;
	padding-left: 0;
	width: 100%;
}
#main-footer .main-menu li a.menu-link:hover {
	transform: translateX(10px);
}
#main-footer .footer-menu li a.menu-link {
	font-size: 1.6rem;
	position: relative;
}
#main-footer .footer-menu li:not(:last-child) a.menu-link::after {
	position: absolute;
	display: inline;
	content: "-";
	right: 0;
	top: 50%;
	transform: translate(50%, -50%);
}

/****************************/
/********DESKTOP ONLY********/
/****************************/
@media (min-width: 981px) {
	
}
/****************************/
/**********TABLETTE**********/
/****************************/
@media (max-width: 980px) {
	#wpadminbar {
		display: none;
	}
	h1, .entry-content h1, body :is(.is-h1) {
		font-size: 6rem;

	}
	h2, .entry-content h2, body :is(.is-h2) {
		font-size: 4.5rem;
	}
	h3, .entry-content h3, body :is(.is-h3) {
		font-size: 3.7rem;
	}
	h4, .entry-content h4, body :is(.is-h4) {
		font-size: 2.2rem;
	}
	h5, .entry-content h5, body :is(.is-h5) {
		font-size: 1.9rem;
	}
	.big-text, .entry-content .big-text {
		font-size: 7rem;
	}
	body .is-highlight-word {
		font-size: 3rem;
	}

	#masthead .menu-toggle {
		position: relative;
		transform: translateY(-10px);
	}
	#masthead .menu-toggle:focus {
		border: none!important;
		outline: none!important;
	}
	#masthead .menu-toggle svg {
		scale: 1.3;
	}
	#masthead .menu-toggle::after {
		position: absolute;
		content: "MENU";
		font-size: 1.2rem;
		width: max-content;
		height: 1lh;
		text-transform: uppercase;
		color: var(--main-color);
		bottom: 0px;
		left: 50%;
		transform: translate(-50%, 50%);
		pointer-events: none;
	}
	#masthead .menu-toggle.toggled::after {
		content: "FERMER";
	}
	#masthead .main-header-menu {
		padding: 20px;
		max-width: 300px;
		margin: auto;
		gap: 0;
	}
	#masthead .main-header-menu li a.menu-link {
		padding: 15px 20px;
	}
	#masthead .main-header-menu li:first-child a.menu-link::before {
		display: block;
	}
	#masthead .ast-mobile-header-content {
		display: block!important;
		transition: all .3s ease-out;
	}
	body:not(.ast-main-header-nav-open) #masthead .ast-mobile-header-content {
		opacity: 0;
		pointer-events: none;
		transform: translateY(-50px);
	}
	#main-header {
		padding: calc(var(--masthead-height) * 2) 20px;
	}
	#main-header .header-logo {
		height: 300px;
	}
	#main-header.header-page .header-data {
		min-height: 300px;
	}
	
	
	body .link-banners {
		flex-wrap: wrap!important;	
	}
	body .link-banners > * {
		width: calc(50% - 5px) !important;
		flex-basis: unset !important;
		flex-grow: unset !important;
	}
	/* if has an odd children count, the last one is 100% */
	body .link-banners > :last-child:nth-child(odd) {
		width: 100% !important;
	}
	body .link-banner {
		min-height: 300px!important;
	}

	body .timeline-slider .slick-slide .wp-block-columns {
		flex-direction: column;
	}
	body .timeline-slider .slick-slide .wp-block-columns > * {
		max-width: 400px;
	}
	body .timeline-slider .slick-slide figure {
		float: none;
		clear: both;
		margin: auto;
	}
	body .timeline-slider .slick-slide figure img {
		width: 200px!important;
	}
	body .timeline-slider .slick-slide * {
		text-align: center!important;
		margin-left: auto!important;
		margin-right: auto!important;
	}

	#main-footer .main-menu {
		display: grid;
		grid-template-rows: unset;
		grid-template-columns: 1fr;
		grid-auto-flow: row;
		gap: 0 10px;
	}
	#main-footer .footer-menu li a.menu-link {
		text-align: center;
	}

}
/****************************/
/*********SMARTPHONE*********/
/****************************/
@media (max-width: 768px) { 
	/**********SPECIFIC**********/
	.is-mobile-center, .is-mobile-center * {
		text-align: center;
    }
    .is-mobile-left, .is-mobile-left * {
		text-align: left;
    }
    .is-mobile-fullwidth {
		width: 100%!important;
    }
	.no-mobile-border {
		border: none;
    }
    .no-mobile-margin {
		margin: 0!important;
    }
    .no-mobile-padding {
		padding: 0!important;
    }
	.is-mobile-flex-row figure {
		flex-shrink: 0!important;
	}
    .is-mobile-reverted {
		flex-direction: column-reverse;
        flex-wrap: nowrap !important;
    }
	.is-mobile-justify-center {
		justify-content: center !important;
	}
	.is-mobile-align-center {
		align-items: center !important;
	}
	.is-mobile-wrap {
		flex-wrap: wrap!important;
	}
	/****************************/
	h1, .entry-content h1, :is(.is-h1) {
		font-size: 4rem;
	}
	h2, .entry-content h2, :is(.is-h2) {
		font-size: 3.5rem;
	}
	h3, .entry-content h3, :is(.is-h3) {
		font-size: 3.3rem;
	}
	h4, .entry-content h4, :is(.is-h4) {
		font-size: 2.2rem;
	}
	h5, .entry-content h5, :is(.is-h5) {
		font-size: 1.9rem;
	}
	.big-text, .entry-content .big-text {
		font-size: 5rem;
	}
	body .is-highlight-word {
		font-size: 2.7rem;
	}

	#main-header {
		padding: calc(var(--masthead-height) * 1.4) 20px;
	}
	#main-header .header-logo {
		height: 150px;
	}

	/* CONTACT FORM 7 */
	.CForm .CF-half, .CForm .CF-onethird, .CForm .CF-twothird, .CForm .CF-onequarter, .CForm .CF-threequarter  {
		width: calc(100% - 10px);
	}

	.CForm .CF-checkbox .wpcf7-list-item {
		width: 99%;
	}

	.timeline-slider .slick-slide::after {
		right: 50%;
		top: unset;
		bottom: -10px;
		transform: translate(50%, 100%);
	}

	body .link-banner {
		min-height: 200px!important;
	}
	body .link-banner  p {
		font-size: 1.6rem;
	}

	body .circuit-eau img {
		height: 70vh!important;
		width: 100%!important;
		object-fit: contain;
	}
	#main-footer .main-menu li a.menu-link {
		text-align: center;
	}
	#main-footer .footer-menu {
		flex-direction: column;
	}
	#main-footer .footer-menu li:not(:last-child) a.menu-link::after {
		display: none;
	}
}
@media (max-width: 480px) {

}
/****************/
/** KEYFRAMES ***/
/****************/