/*
 * !!! It is useless to edit this file,
 * as it's the result of a concatenation process.
 * You need to set WP_ALLOW_MULTISITE to development in order to edit any of the sources files.
 */

/* animated-leaves.css */

.transition-leaves__container {

	opacity: 1;
	transition: opacity .5s ease-in-out;
	z-index: var(--wp--custom--z-index--transition);
	position: fixed;

}

.transition-leaves__container--transiting {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.transition-leaf {
	position: fixed;
	top: 100%;
	left: 0;
	right: 0;
	bottom: 0;

}

.transition-leaf:nth-child(even) {
	background-color: var(--wp--custom--color--cua--bg--400);
}

.transition-leaf:nth-child(odd) {
	background-color: var(--wp--preset--color--base);
}

/* last one has a loader in background image */
.transition-leaf:last-child {
	background-image: var(--loader);
	background-size: 2rem;
	background-position: center;
	background-repeat: no-repeat;
}

.transition-leaf--ascending {
	top: 0;
	animation: .75s ascending-desktop var(--wp--custom--easing--dynamic);
	border-radius: 0;
	width:300vw;
	left: -100vw;
}

@media screen and (max-width: 800px) {
	.transition-leaf--ascending {
		animation: 1s ascending-smartphone var(--wp--custom--easing--dynamic);
	}
}

.transition-leaves__container--fadeout {
	opacity: 0;
}

@keyframes ascending-smartphone {
	0% {
		top: 100%;
		width:200vw;
		left: -50vw;
		border-radius: 150% 150% 0 0;
	}
	50% {
		width:200vw;
		left: -50vw;
	}
	100% {
		width:300vw;
		left: -100vw;
		border-radius: 0;
	}
}

@keyframes ascending-desktop {
	0% {
		top: 100%;
		width:100vw;
		left: 0vw;
		border-radius: 250% 250% 0 0;
	}
	50% {
		width:150vw;
		left: -25vw;
	}
	100% {
		width:300vw;
		left: -100vw;
		border-radius: 0;
	}
}

/* animated-mask.css */

.masked {
	overflow: hidden;
	display: inline-block;
}

.masked > * {
	margin: 0;
	top: 2rem;
	position: relative;
	opacity: 0;
}

.animated-unmask > * {
	opacity: 1;
	top: 0;
	animation: 1s unmask var(--wp--custom--easing--dynamic);
}

.animated-already-unmask > * {
	opacity: 1;
	top: 0;
	animation: none;
}

@keyframes unmask {
	from {
		opacity: 0;
		top: 2rem;
	}
	to {
		opacity: 1;
		top: 0;
	}
}

/* body.css */

:root {
	--loader--black: url('data:image/svg+xml,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" width="24" height="24" stroke="%232A2C2B" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" name="loader" class="undefined standard standard-loader-2"><path d="M21 12a9 9 0 1 1-6.219-8.56"><animateTransform attributeName="transform" type="rotate" from="0 12 12" to="360 12 12" dur="0.6s" repeatCount="indefinite"></animateTransform></path></svg>');
	--loader--white: url('data:image/svg+xml,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" width="24" height="24" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" name="loader" class="undefined standard standard-loader-2"><path d="M21 12a9 9 0 1 1-6.219-8.56"><animateTransform attributeName="transform" type="rotate" from="0 12 12" to="360 12 12" dur="0.6s" repeatCount="indefinite"></animateTransform></path></svg>');
	--loader: var(--loader--black);
	--wp--custom--color--cua--bg--800: #98D4B2;
	--wp--custom--color--cua--bg--100: #D6F6E1;
}
html {
	background-image: var(--loader--white);
	background-color: var(--wp--preset--color--base);
	background-repeat: no-repeat;
	background-position: center;
	height: 100vh;
	scroll-behavior: smooth;
}

body {
	display: flex;
	align-items: flex-start;
	opacity: 0;
	scroll-behavior: smooth;
	background-color: var(--wp--preset--color--base);
	overflow: hidden;
}

body.bg--loaded {
	opacity: 1;
	transition: opacity 1s ease-in-out;
	background-color: var(--wp--custom--color--cua--bg--100);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

/* body.bg--loaded::before {
	content: '';
	background-image: url(../images/background.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: block;
	position: fixed;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: calc( (100vw - 100vh * 4988/3164) / 2);
	height: 100vh;
	width: calc( 100vh * 4988/3164);
	margin: auto;
} */

@media all and (max-width: 900px) {
	body {
		flex-direction: column;
		overflow: auto;
	}
}

/* button.css */

.button {
	background-color: white;
	color: var(--wp--preset--color--primary);

	border-radius: var(--wp--custom--border--radius--m);
	border: 1px solid var(--wp--preset--color--primary);

	padding: var(--wp--preset--spacing--10) var(--wp--preset--spacing--40);

	font-size: var(--wp--preset--font-size--l);
	font-weight: 500;
	font-family: var(--wp--preset--font-family--default);

	width: fit-content;

	text-transform: uppercase;
	text-decoration: none!important;

	transition: all .25s;

	display: flex;
	align-items: baseline;

	line-height: 150%;
}

.button:hover {
	color: var(--wp--custom--color--tertiary--500);
	cursor: pointer;
}

.button-menu-open {
	padding-right: var(--wp--preset--spacing--20)
}

.button-menu-open::after {
	content: '';
	aspect-ratio: 1;
	margin-left: var(--wp--preset--spacing--10);
	height: var(--wp--preset--font-size--l);
	display: block;
	position: relative;
	top: .15rem;

	background-color: currentColor;
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWVsbGlwc2lzLXZlcnRpY2FsIj48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxIi8+PGNpcmNsZSBjeD0iMTIiIGN5PSI1IiByPSIxIi8+PGNpcmNsZSBjeD0iMTIiIGN5PSIxOSIgcj0iMSIvPjwvc3ZnPg==);

	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWVsbGlwc2lzLXZlcnRpY2FsIj48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxIi8+PGNpcmNsZSBjeD0iMTIiIGN5PSI1IiByPSIxIi8+PGNpcmNsZSBjeD0iMTIiIGN5PSIxOSIgcj0iMSIvPjwvc3ZnPg==);
}

.button-menu-close { margin-top: var(--wp--preset--spacing--60) }

/* canvas.css */

canvas {
	position: fixed;
	z-index: var(--wp--custom--z-index--canvas);
	top: 0;
	left: 0;
}

/* content-footer.css */

.content:not(.content--fadein) .content-footer { display: none }

.content-footer {
	background-color: var(--wp--preset--color--base);
	/* border-top: 1px solid var(--wp--custom--color--cua--bg--800); */
}

.content-footer a {
	transition: all .2s;
}

.content-footer a:hover {
	transform: scale(1.1);
	opacity: .8;
}

.footer__container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	position: relative;
	padding-top: var(--wp--preset--spacing--90);
	padding-bottom: calc( var(--wp--preset--spacing--90) * 2 );
}

.footer__logo-container > a {
	margin-left: 1.35rem;
}

.footer__column {
	flex: 1;
}

.footer__list {
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--20);
}

.footer-social__list {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1rem;
}

.footer-social__link {
	display: block;
	width: 2rem;
	height: 2rem;
	background-color: var(--wp--custom--color--cua--bg--800);
	border-radius: 2rem;
	overflow: hidden;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 50%;
}

.footer__link {
	color: var(--wp--preset--color--contrast);
	text-decoration: none;
}

.footer-social__link > span {
	text-indent: -50rem;
	display: block;
}

.footer-social__link--fb {
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.33073 8.99992H10.9974L11.6641 6.33325H9.33073V4.99992C9.33073 4.31325 9.33073 3.66659 10.6641 3.66659H11.6641V1.42659C11.4467 1.39792 10.6261 1.33325 9.7594 1.33325C7.9494 1.33325 6.66406 2.43792 6.66406 4.46658V6.33325H4.66406V8.99992H6.66406V14.6666H9.33073V8.99992Z' fill='%230F695F'%3E%3C/path%3E%3C/svg%3E");
}

.footer-social__link--in {
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.6276 3.33327C4.62743 3.68689 4.48678 4.02596 4.23661 4.27588C3.98643 4.52581 3.64723 4.66611 3.2936 4.66593C2.93998 4.66576 2.60091 4.52511 2.35099 4.27494C2.10107 4.02477 1.96076 3.68556 1.96094 3.33193C1.96111 2.97831 2.10176 2.63924 2.35193 2.38932C2.60211 2.1394 2.94132 1.99909 3.29494 1.99927C3.64856 1.99944 3.98763 2.14009 4.23755 2.39026C4.48747 2.64044 4.62778 2.97965 4.6276 3.33327ZM4.6676 5.65327H2.00094V13.9999H4.6676V5.65327ZM8.88094 5.65327H6.2276V13.9999H8.85427V9.61994C8.85427 7.17993 12.0343 6.95327 12.0343 9.61994V13.9999H14.6676V8.71327C14.6676 4.59993 9.96094 4.75327 8.85427 6.77327L8.88094 5.65327Z' fill='%230F695F'%3E%3C/path%3E%3C/svg%3E");
}

.footer-social__link--x {
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.3319 5.925L13.5437 0H12.3087L7.78327 5.14459L4.16883 0H0L5.46574 7.77954L0 13.9928H1.2351L6.01406 8.55994L9.83117 13.9928H14L8.3316 5.925H8.3319ZM6.64026 7.84808L6.08647 7.07341L1.68013 0.909309H3.57717L7.13314 5.88394L7.68693 6.6586L12.3093 13.1249H10.4122L6.64026 7.84837V7.84808Z' fill='%230F695F'%3E%3C/path%3E%3C/svg%3E");
}

.footer-social__link--yt {
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.0733 4.66341C13.0226 4.46475 12.8786 4.31475 12.7139 4.26875C12.4226 4.18675 11.0026 4.00008 8.0026 4.00008C5.0026 4.00008 3.58394 4.18675 3.28994 4.26875C3.12727 4.31408 2.98327 4.46408 2.93194 4.66341C2.85927 4.94608 2.66927 6.13075 2.66927 8.00008C2.66927 9.86941 2.85927 11.0534 2.93194 11.3374C2.9826 11.5354 3.1266 11.6854 3.2906 11.7307C3.58394 11.8134 5.0026 12.0001 8.0026 12.0001C11.0026 12.0001 12.4219 11.8134 12.7153 11.7314C12.8779 11.6861 13.0219 11.5361 13.0733 11.3367C13.1459 11.0541 13.3359 9.86675 13.3359 8.00008C13.3359 6.13341 13.1459 4.94675 13.0733 4.66341ZM14.3646 4.33208C14.6693 5.52008 14.6693 8.00008 14.6693 8.00008C14.6693 8.00008 14.6693 10.4801 14.3646 11.6681C14.1953 12.3247 13.6999 12.8414 13.0726 13.0161C11.9333 13.3334 8.0026 13.3334 8.0026 13.3334C8.0026 13.3334 4.07394 13.3334 2.9326 13.0161C2.3026 12.8387 1.80794 12.3227 1.6406 11.6681C1.33594 10.4801 1.33594 8.00008 1.33594 8.00008C1.33594 8.00008 1.33594 5.52008 1.6406 4.33208C1.80994 3.67541 2.30527 3.15875 2.9326 2.98408C4.07394 2.66675 8.0026 2.66675 8.0026 2.66675C8.0026 2.66675 11.9333 2.66675 13.0726 2.98408C13.7026 3.16141 14.1973 3.67741 14.3646 4.33208ZM6.66927 10.3334V5.66675L10.6693 8.00008L6.66927 10.3334Z' fill='%230F695F'%3E%3C/path%3E%3C/svg%3E");
}

.footer__button-top {
	position: fixed;
	bottom: 3rem;
	font-size: 0;
	color: var(--wp--preset--color--primary);
	text-decoration: none;
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	gap: var(--wp--preset--spacing--20);
	margin-right: 80px;
	font-weight: 700;
	appearance: none;
	border: none;
	background-color: transparent;
	transition: all 0.3s ease-in-out;
	opacity: 0;
	pointer-events: none;
	cursor: pointer;
}

.footer__button-top--active {
	pointer-events: all;
	opacity: 1;
}

.footer__button-top::before {
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.15107 0.751382C9.61971 0.282743 10.3795 0.282743 10.8482 0.751382L19.2483 9.15156C19.717 9.62019 19.717 10.38 19.2483 10.8486C18.7797 11.3173 18.0199 11.3173 17.5512 10.8486L11.1996 4.49704V18.4003C11.1996 19.063 10.6624 19.6003 9.99961 19.6003C9.33686 19.6003 8.79959 19.063 8.79959 18.4003V4.49704L2.44798 10.8486C1.97935 11.3173 1.21953 11.3173 0.750893 10.8486C0.282254 10.38 0.282254 9.62019 0.750893 9.15156L9.15107 0.751382Z' fill='white'/%3E%3C/svg%3E");
	background-color: var(--wp--preset--color--primary);
	width: 2rem;
	height: 2rem;
	padding: 5px;
	border-radius: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 900;
	text-decoration: none !important;
}

@media all and (max-width: 900px) {
	.footer__button-top {
		display: none;
	}
}

@media screen and (max-width: 782px) {
	.footer__container {
		flex-direction: column;
		align-items: start;
		gap: var(--wp--preset--spacing--50)
	}
}

/* content-highlight.css */

.ra24-content__item.highlight-white {
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url("data:image/svg+xml,%3Csvg width='516' height='256' viewBox='0 0 516 256' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M495.422 0.00456715C506.689 0.00461894 515.822 11.0185 515.822 24.6047L515.821 231.4C515.821 244.986 506.688 256 495.421 256L20.4 255.999C9.13328 255.999 -0.000133914 244.985 1.47259e-09 231.399L0.00105412 114.454C0.0117497 107.223 1.39601 100.082 4.0569 93.5309C6.71779 86.9797 10.591 81.1767 15.4055 76.5281L87.3214 12.037C92.7937 6.73168 107.626 -0.185291 114.78 0.00379432L495.422 0.00456715Z' fill='white'/%3E%3C/svg%3E%0A");
	text-align: right;
	aspect-ratio: 2;
	margin: calc( 1.5 * var(--wp--preset--spacing--90)) 0;
}

.ra24-content__item.highlight-white p {
	padding: var(--wp--preset--spacing--60);
}

.ra24-content__item.highlight-white p > strong {
	padding-bottom: 0;
}

.ra24-content__item.highlight-white p:not(:first-of-type) {
	background-color: white;
	border-radius: var(--wp--custom--border--radius--sm);
	padding-top: 0;
}

.highlight-white.icon { position: relative }

.highlight-white.icon::before {
	width: 10rem;
	height: 6rem;
	position: absolute;
	top: -4rem;
	right: 0;
}

.ra24-content__item.highlight-white p {
	font-size: var(--wp--preset--font-size--l);
	color: var(--wp--preset--color--primary);
}

.highlight-white b {
	color: var(--wp--preset--color--secondary);
	font-size: var(--wp--preset--font-size--xxxl);
	font-weight: 100;
	line-height: 2rem;
	padding-top: 1rem;
	display: inline-block;
}

.highlight-white b span {
	font-size: 1.75rem;
}

.highlight-green .ra24-column {
	background-color: var(--wp--preset--color--primary);
	border-radius: var(--wp--custom--border--radius--sm);
	padding: var(--wp--preset--spacing--60);
	padding-top: var(--wp--preset--spacing--90);
	margin-bottom: var(--wp--preset--spacing--90);
	margin-top: var(--wp--preset--spacing--70);
	position: relative;

	opacity: 0;
	transform: scale(.9);
	transition: opacity 1s, transform .5s;
}

.highlight-green.--fadein .ra24-column {
	transform: scale(1);
	opacity: 1;
}

.highlight-green .ra24-column::before {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 2000'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23ff735f;stroke-width:0px;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1228.93,1579.87h-659.71c-101.57,0-184.22-82.63-184.22-184.2v-654.13c0-101.57,82.65-184.2,184.22-184.2h77.26c8.29,0,15,6.71,15,15s-6.71,15-15,15h-77.26c-85.05,0-154.22,69.17-154.22,154.2v654.13c0,85.03,69.17,154.2,154.22,154.2h659.71c8.29,0,15,6.71,15,15s-6.71,15-15,15Z'/%3E%3Cpath class='cls-1' d='M1476.02,882.49c-8.29,0-15-6.71-15-15v-125.95c0-85.03-69.17-154.2-154.22-154.2h-77.87c-8.29,0-15-6.71-15-15s6.71-15,15-15h77.87c101.57,0,184.22,82.63,184.22,184.2v125.95c0,8.29-6.71,15-15,15Z'/%3E%3Cpath class='cls-1' d='M1114.17,587.34h-352.35c-8.29,0-15-6.71-15-15s6.71-15,15-15h352.35c8.29,0,15,6.71,15,15s-6.71,15-15,15Z'/%3E%3Cpath class='cls-1' d='M1162.43,897.31h-603.63c-8.29,0-15-6.71-15-15s6.71-15,15-15h603.63c8.29,0,15,6.71,15,15s-6.71,15-15,15Z'/%3E%3Cpath class='cls-1' d='M705.75,724.55c-8.29,0-15-6.71-15-15v-274.42c0-8.29,6.71-15,15-15s15,6.71,15,15v274.42c0,8.29-6.71,15-15,15Z'/%3E%3Cpath class='cls-1' d='M1170.28,724.55c-8.29,0-15-6.71-15-15v-274.42c0-8.29,6.71-15,15-15s15,6.71,15,15v274.42c0,8.29-6.71,15-15,15Z'/%3E%3Cpath class='cls-1' d='M1123.76,1502.7c-8.91,0-17.75-2.8-25.31-8.28-13.36-9.68-19.92-25.77-17.14-42l28.89-169.13-122.58-119.99c-11.75-11.5-15.88-28.35-10.81-43.97,5.1-15.66,18.43-26.87,34.75-29.25l169.13-24.67,75.5-153.55c7.27-14.82,22.06-24.05,38.64-24.05h.03c16.55,0,31.38,9.21,38.67,24.05h.03l75.44,153.55,169.13,24.67c16.32,2.39,29.65,13.59,34.75,29.25,5.07,15.63.94,32.48-10.81,43.97l-122.55,119.97,28.89,169.16c2.75,16.23-3.81,32.33-17.17,42-13.39,9.71-30.82,10.96-45.47,3.22l-150.91-79.67-150.91,79.67c-6.39,3.37-13.3,5.04-20.19,5.04ZM1294.85,917.82h-.03c-2.43,0-8.5.7-11.72,7.28l-78.98,160.63c-2.17,4.44-6.39,7.51-11.28,8.22l-176.95,25.81c-7.27,1.07-9.78,6.55-10.55,8.86-.76,2.3-1.93,8.17,3.25,13.24l128.2,125.48c3.52,3.44,5.13,8.39,4.31,13.24l-30.21,176.89c-1.23,7.15,3.19,11.23,5.16,12.66,1.58,1.14,7.24,4.48,13.89.98l157.91-83.36c4.39-2.31,9.61-2.31,14,0l157.91,83.36c6.74,3.56,12.28.15,13.86-.97,1.96-1.42,6.42-5.51,5.19-12.67l-30.2-176.89c-.82-4.85.79-9.8,4.31-13.24l128.17-125.48c5.19-5.07,4.01-10.94,3.25-13.24-.76-2.31-3.28-7.79-10.55-8.86l-176.95-25.81c-4.89-.7-9.11-3.79-11.31-8.22l-78.93-160.62c-3.31-6.77-9.84-7.29-11.75-7.29Z'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: repeat;
	display: block;
	content: '';
	height: 8rem;
	width: 8rem;
	position: absolute;
	top: -4rem;
	left: 0;
}

.highlight-green .ra24-column .ra24-content__item {
	margin-bottom: 0;
	position: relative;
}

.highlight-green .ra24-column .ra24-content__item a,
.highlight-green .ra24-column .ra24-content__item p {
	color: var(--wp--preset--color--base);
}

/* .highlight-green .ra24-column .ra24-content__item img {
	border-radius: var(--wp--custom--border--radius--sm);
} */

.highlight-green .ra24-column .ra24-content__item h2 {
	color: var(--wp--preset--color--secondary);
	font-weight: 100;
	font-size: var(--wp--preset--font-size--xxxl);
	position:absolute;
	bottom: 3rem;
	left: 5rem;
	margin-bottom: 0
}

.highlight-green .ra24-column .ra24-content__item h2::after {
	display: none;
}

@media screen and (max-width: 800px) {
	.highlight-green .ra24-column .ra24-content__item h2 { bottom: 4rem }
}

/* content-icons.css */

.icon::before {
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	vertical-align: middle;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.icon--bed::before {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Calque_1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 326.43 198.11'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23ff735f;stroke-linecap:round;stroke-linejoin:round;stroke-width:6px;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M278.7,92.58H50.2V23.39c0-6.88,5.57-12.45,12.45-12.45h203.6c6.88,0,12.45,5.57,12.45,12.45v69.19Z'/%3E%3Cpolyline class='cls-1' points='120.07 144.79 23.78 144.79 23.78 171.33 305.12 171.33 305.12 144.79 246.76 144.79'/%3E%3Cpath class='cls-1' d='M285.91,144.79c10.61,0,19.2-8.6,19.2-19.2v-13.81c0-10.61-8.6-19.2-19.2-19.2H42.99c-10.61,0-19.2,8.6-19.2,19.2v13.81c0,10.61,8.6,19.2,19.2,19.2'/%3E%3Cpath class='cls-1' d='M147.84,92.58v-17.99c3.21-.6,5.64-3.41,5.64-6.79,0-3.82-3.1-6.92-6.92-6.92h-67.1c-3.82,0-6.92,3.1-6.92,6.92,0,3.38,2.43,6.19,5.64,6.79v17.99'/%3E%3Cpath class='cls-1' d='M250.72,92.58v-17.99c3.21-.6,5.64-3.41,5.64-6.79,0-3.82-3.1-6.92-6.92-6.92h-67.1c-3.82,0-6.92,3.1-6.92,6.92,0,3.38,2.43,6.19,5.64,6.79v17.99'/%3E%3Cline class='cls-1' x1='149.45' y1='144.79' x2='220.06' y2='144.79'/%3E%3Cline class='cls-1' x1='50.2' y1='186.95' x2='50.2' y2='171.33'/%3E%3Cline class='cls-1' x1='278.7' y1='171.33' x2='278.7' y2='186.95'/%3E%3Cline class='cls-1' x1='10.24' y1='186.95' x2='318.66' y2='186.95'/%3E%3C/svg%3E");
}

.icon--coins::before {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Calque_1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 326.43 198.11'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23ff735f;stroke-linecap:round;stroke-linejoin:round;stroke-width:5.86px;%7D%3C/style%3E%3C/defs%3E%3Cg id='euro_coins'%3E%3Ccircle class='cls-1' cx='202.89' cy='121.91' r='61.5'/%3E%3Cpath class='cls-1' d='M220.46,148.27c-5.86,5.86-14.64,5.86-14.64,5.86-11.27,0-20.5-9.23-20.5-20.5v-23.43c0-11.27,9.23-20.5,20.5-20.5,0,0,8.79,0,14.64,5.86'/%3E%3Cline class='cls-1' x1='176.53' y1='113.13' x2='205.82' y2='113.13'/%3E%3Cline class='cls-1' x1='176.53' y1='130.7' x2='205.82' y2='130.7'/%3E%3Cpath class='cls-1' d='M158.96,54.56h-55.64V22.34c0-1.62,1.31-2.93,2.93-2.93h108.36c1.62,0,2.93,1.31,2.93,2.93v20.5'/%3E%3Cline class='cls-1' x1='120.89' y1='34.06' x2='120.89' y2='54.56'/%3E%3Cline class='cls-1' x1='144.32' y1='34.06' x2='144.32' y2='54.56'/%3E%3Cpath class='cls-1' d='M129.68,89.7h-38.07c-1.62,0-2.93-1.31-2.93-2.93v-29.29c0-1.62,1.31-2.93,2.93-2.93h11.71'/%3E%3Cline class='cls-1' x1='106.25' y1='69.2' x2='106.25' y2='89.7'/%3E%3Cline class='cls-1' x1='129.68' y1='69.2' x2='129.68' y2='89.7'/%3E%3Cpolyline class='cls-1' points='123.82 124.84 103.32 124.84 103.32 89.7'/%3E%3Cline class='cls-1' x1='120.89' y1='104.34' x2='120.89' y2='124.84'/%3E%3Cpath class='cls-1' d='M132.61,159.98h-46.86c-1.62,0-2.93-1.31-2.93-2.93v-29.29c0-1.62,1.31-2.93,2.93-2.93h17.57'/%3E%3Cline class='cls-1' x1='100.39' y1='139.48' x2='100.39' y2='159.98'/%3E%3Cline class='cls-1' x1='123.82' y1='139.48' x2='123.82' y2='159.98'/%3E%3C/g%3E%3C/svg%3E");
}

.icon--map::before {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Calque_1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 326.43 198.11'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23ff735f;stroke-linecap:round;stroke-linejoin:round;stroke-width:5.04px;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M178.71,53.19c.9-11.4-8.54-20.84-19.94-19.94-8.97.71-16.23,7.97-16.94,16.94-.9,11.4,8.54,20.84,19.94,19.94,8.97-.71,16.23-7.97,16.94-16.94Z'/%3E%3Cpath class='cls-1' d='M193.42,75.22h.07l-33.23,46.77-33.16-46.77h-.07c-5.1-7.21-7.99-16.28-7.4-26.05,1.32-21.76,19.88-38.72,41.67-38.17,22.01.55,39.66,18.54,39.66,40.69,0,8.81-2.81,16.95-7.47,23.53h-.07Z'/%3E%3Cline class='cls-1' x1='160.27' y1='166.4' x2='160.27' y2='162.7'/%3E%3Cline class='cls-1' x1='160.27' y1='144.2' x2='160.27' y2='140.5'/%3E%3Cline class='cls-1' x1='119.56' y1='166.4' x2='119.56' y2='162.7'/%3E%3Cline class='cls-1' x1='119.56' y1='144.2' x2='119.56' y2='140.5'/%3E%3Cline class='cls-1' x1='119.56' y1='121.99' x2='119.56' y2='118.29'/%3E%3Cline class='cls-1' x1='119.56' y1='99.79' x2='119.56' y2='96.09'/%3E%3Cline class='cls-1' x1='200.97' y1='166.4' x2='200.97' y2='162.7'/%3E%3Cline class='cls-1' x1='200.97' y1='144.2' x2='200.97' y2='140.5'/%3E%3Cline class='cls-1' x1='200.97' y1='121.99' x2='200.97' y2='118.29'/%3E%3Cline class='cls-1' x1='200.97' y1='99.79' x2='200.97' y2='96.09'/%3E%3Cpolyline class='cls-1' points='215.77 60.35 245.38 70.19 245.38 181.2 200.97 166.4 160.27 181.2 119.56 166.4 75.16 181.2 75.16 70.19 104.76 60.35'/%3E%3C/svg%3E");
}

.icon--path::before {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Calque_1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 326.43 198.11'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23ff735f;stroke-linecap:round;stroke-linejoin:round;stroke-width:5.29px;%7D%3C/style%3E%3C/defs%3E%3Ccircle class='cls-1' cx='206.88' cy='91.29' r='19.42' transform='translate(-12.03 34.6) rotate(-9.29)'/%3E%3Cpath class='cls-1' d='M113.66,118.48h-31.07c-6.44,0-11.65,5.22-11.65,11.65s5.22,11.65,11.65,11.65h62.14c6.44,0,11.65,5.22,11.65,11.65s-5.22,11.65-11.65,11.65h-30.24c-6.44,0-11.65,5.22-11.65,11.65s5.22,11.65,11.65,11.65h92.38'/%3E%3Cpath class='cls-1' d='M206.88,48.57c23.61,0,42.72,19.11,42.72,42.72,0,9.24-2.95,17.79-7.85,24.7h-.08.08l-34.88,49.09-34.88-49.09h0c-4.89-6.91-7.85-15.46-7.85-24.7,0-23.61,19.11-42.72,42.72-42.72Z'/%3E%3Cpath class='cls-1' d='M137.66,49.58h.08l-.16.23-23.92,45.36-23.92-45.36-.16-.23h.08l.08.23c0-.08-.08-.16-.08-.23h-.08c-1.94-3.73-3.11-8.08-3.11-12.66,0-14.99,12.2-27.19,27.19-27.19s27.19,12.2,27.19,27.19c0,4.58-1.17,8.93-3.11,12.66h-.08c0,.08-.08.16-.08.23l.08-.23Z'/%3E%3Ccircle class='cls-1' cx='113.66' cy='36.91' r='11.65'/%3E%3C/svg%3E");
}

.icon--share::before {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Calque_1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 326.43 198.11'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23ff735f;stroke-linecap:round;stroke-linejoin:round;stroke-width:5px;%7D%3C/style%3E%3C/defs%3E%3Cg id='express_delivery'%3E%3Cpath class='cls-1' d='M97.97,130.16l-18.43-18.43c-1.09-1.09-1.09-2.85,0-3.94l5.54-5.54'/%3E%3Cpath class='cls-1' d='M134.05,53.28l37.62-37.62c1.09-1.09,2.85-1.09,3.94,0l47.41,47.41c3.09,3.09,4.83,7.28,4.82,11.65v30.87c0,4.37-1.74,8.56-4.83,11.65l-67.01,67.01c-1.09,1.09-2.85,1.09-3.94,0l-43.1-43.1'/%3E%3Cline class='cls-1' x1='95.61' y1='91.72' x2='123.51' y2='63.82'/%3E%3Cpath class='cls-1' d='M216.86,80.74l-9.04,9.04c-1.07,1.07-1.07,2.81,0,3.88l17.28,17.28'/%3E%3Cline class='cls-1' x1='93.31' y1='53.28' x2='98.8' y2='53.28'/%3E%3Cpolyline class='cls-1' points='115.27 53.28 134.49 53.28 148.22 53.28'/%3E%3Cline class='cls-1' x1='74.09' y1='91.72' x2='159.2' y2='91.72'/%3E%3Cline class='cls-1' x1='137.24' y1='130.15' x2='82.33' y2='130.15'/%3E%3Cline class='cls-1' x1='65.86' y1='130.15' x2='57.62' y2='130.15'/%3E%3C/g%3E%3C/svg%3E");
}

.icon--validation::before {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Calque_1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 326.43 198.11'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23ff735f;stroke-linecap:round;stroke-linejoin:round;stroke-width:4.68px;%7D%3C/style%3E%3C/defs%3E%3Ccircle class='cls-1' cx='197.56' cy='141.48' r='37.16' transform='translate(-27.22 49.17) rotate(-13.28)'/%3E%3Cpolyline class='cls-1' points='175.77 141.99 191.36 157.57 220.01 128.92'/%3E%3Cpath class='cls-1' d='M150.57,157.42h-48.41c-4.34,0-7.86-3.52-7.86-7.86V61.24c0-3.89,1.55-7.62,4.3-10.38l32.35-32.35c1.47-1.47,3.47-2.3,5.56-2.3h60.04c4.34,0,7.86,3.52,7.86,7.86v68.02'/%3E%3Cpolyline class='cls-1' points='114 55.16 133.26 55.16 133.26 35.91'/%3E%3Cline class='cls-1' x1='156.18' y1='117.74' x2='115.89' y2='117.74'/%3E%3Cline class='cls-1' x1='182.39' y1='93.92' x2='115.89' y2='93.92'/%3E%3Cline class='cls-1' x1='183.22' y1='75.94' x2='115.89' y2='75.94'/%3E%3C/svg%3E");
}

.icon--valorization::before {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Calque_1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 326.43 198.11'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23ff735f;stroke-linecap:round;stroke-linejoin:round;stroke-width:4.68px;%7D%3C/style%3E%3C/defs%3E%3Ccircle class='cls-1' cx='197.56' cy='141.48' r='37.16' transform='translate(-27.22 49.17) rotate(-13.28)'/%3E%3Cpolyline class='cls-1' points='175.77 141.99 191.36 157.57 220.01 128.92'/%3E%3Cpath class='cls-1' d='M150.57,157.42h-48.41c-4.34,0-7.86-3.52-7.86-7.86V61.24c0-3.89,1.55-7.62,4.3-10.38l32.35-32.35c1.47-1.47,3.47-2.3,5.56-2.3h60.04c4.34,0,7.86,3.52,7.86,7.86v68.02'/%3E%3Cpolyline class='cls-1' points='114 55.16 133.26 55.16 133.26 35.91'/%3E%3Cline class='cls-1' x1='156.18' y1='117.74' x2='115.89' y2='117.74'/%3E%3Cline class='cls-1' x1='182.39' y1='93.92' x2='115.89' y2='93.92'/%3E%3Cline class='cls-1' x1='183.22' y1='75.94' x2='115.89' y2='75.94'/%3E%3C/svg%3E");
}

.icon--weight::before {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Calque_1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 326.43 198.11'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%239b9b9b;stroke:%23ff735f;stroke-miterlimit:10;stroke-width:3px;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M163.03,15.89c-14.39.02-26.04,11.7-26.02,26.09,0,4.11.96,8.01,2.67,11.46.04.09.05.2.01.29-.05.14-.19.23-.33.23l-33.31.04h.02s-.02,0-.02,0h-.02c-3.03,0-5.71,1.94-6.67,4.82l-37.91,114.16c-.71,2.15-.35,4.5.97,6.34,1.32,1.83,3.45,2.92,5.71,2.91l190.2-.22s.01,0,.02,0l.04-.03-.03.03c2.25-.01,4.37-1.1,5.68-2.93,1.32-1.83,1.68-4.19.96-6.34l-38.17-114.07c-.96-2.87-3.65-4.81-6.68-4.8l-33.33.04c-.12,0-.24-.06-.3-.17-.07-.1-.07-.24-.02-.35,1.7-3.46,2.64-7.36,2.64-11.47-.02-14.39-11.7-26.04-26.09-26.02h0ZM164.51,56.1h-.42c-.28.02-.56.03-.85.04.28,0,.57-.02.85-.04h0s-.96,0-.96,0v.07c.47,0,.93-.03,1.39-.07h0ZM163.03,18.1c13.17-.02,23.85,10.65,23.87,23.81,0,5.34-1.74,10.26-4.7,14.24h.03v-.02s.03.01.03.01h-.03s37.9-.03,37.9-.03c2.06,0,3.89,1.31,4.54,3.27l38.17,114.07c.49,1.46.25,3.06-.65,4.31-.9,1.25-2.34,1.99-3.88,1.99l-190.2.22c-1.54,0-2.98-.74-3.88-1.98-.9-1.25-1.15-2.85-.66-4.31l37.9-114.16c.65-1.96,2.47-3.28,4.54-3.28l37.93-.04c-2.97-3.97-4.73-8.89-4.73-14.23-.02-13.17,10.65-23.85,23.81-23.87h0ZM163.03,18.1'/%3E%3Cpath class='cls-1' d='M163.05,29.96c6.62,0,11.99,5.35,12,11.97,0,6.62-5.35,11.99-11.97,12-6.62,0-11.99-5.35-12-11.97,0-6.62,5.35-11.99,11.97-12h0ZM163.04,27.71c-7.86,0-14.23,6.39-14.22,14.25,0,7.86,6.39,14.23,14.25,14.22,7.86,0,14.23-6.39,14.22-14.25,0-7.86-6.39-14.23-14.25-14.22h0ZM163.04,27.71'/%3E%3C/svg%3E");
}

.icon-calender::before {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 2000'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23ff735f;stroke-width:0px;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M1228.93,1579.87h-659.71c-101.57,0-184.22-82.63-184.22-184.2v-654.13c0-101.57,82.65-184.2,184.22-184.2h77.26c8.29,0,15,6.71,15,15s-6.71,15-15,15h-77.26c-85.05,0-154.22,69.17-154.22,154.2v654.13c0,85.03,69.17,154.2,154.22,154.2h659.71c8.29,0,15,6.71,15,15s-6.71,15-15,15Z'/%3E%3Cpath class='cls-1' d='M1476.02,882.49c-8.29,0-15-6.71-15-15v-125.95c0-85.03-69.17-154.2-154.22-154.2h-77.87c-8.29,0-15-6.71-15-15s6.71-15,15-15h77.87c101.57,0,184.22,82.63,184.22,184.2v125.95c0,8.29-6.71,15-15,15Z'/%3E%3Cpath class='cls-1' d='M1114.17,587.34h-352.35c-8.29,0-15-6.71-15-15s6.71-15,15-15h352.35c8.29,0,15,6.71,15,15s-6.71,15-15,15Z'/%3E%3Cpath class='cls-1' d='M1162.43,897.31h-603.63c-8.29,0-15-6.71-15-15s6.71-15,15-15h603.63c8.29,0,15,6.71,15,15s-6.71,15-15,15Z'/%3E%3Cpath class='cls-1' d='M705.75,724.55c-8.29,0-15-6.71-15-15v-274.42c0-8.29,6.71-15,15-15s15,6.71,15,15v274.42c0,8.29-6.71,15-15,15Z'/%3E%3Cpath class='cls-1' d='M1170.28,724.55c-8.29,0-15-6.71-15-15v-274.42c0-8.29,6.71-15,15-15s15,6.71,15,15v274.42c0,8.29-6.71,15-15,15Z'/%3E%3Cpath class='cls-1' d='M1123.76,1502.7c-8.91,0-17.75-2.8-25.31-8.28-13.36-9.68-19.92-25.77-17.14-42l28.89-169.13-122.58-119.99c-11.75-11.5-15.88-28.35-10.81-43.97,5.1-15.66,18.43-26.87,34.75-29.25l169.13-24.67,75.5-153.55c7.27-14.82,22.06-24.05,38.64-24.05h.03c16.55,0,31.38,9.21,38.67,24.05h.03l75.44,153.55,169.13,24.67c16.32,2.39,29.65,13.59,34.75,29.25,5.07,15.63.94,32.48-10.81,43.97l-122.55,119.97,28.89,169.16c2.75,16.23-3.81,32.33-17.17,42-13.39,9.71-30.82,10.96-45.47,3.22l-150.91-79.67-150.91,79.67c-6.39,3.37-13.3,5.04-20.19,5.04ZM1294.85,917.82h-.03c-2.43,0-8.5.7-11.72,7.28l-78.98,160.63c-2.17,4.44-6.39,7.51-11.28,8.22l-176.95,25.81c-7.27,1.07-9.78,6.55-10.55,8.86-.76,2.3-1.93,8.17,3.25,13.24l128.2,125.48c3.52,3.44,5.13,8.39,4.31,13.24l-30.21,176.89c-1.23,7.15,3.19,11.23,5.16,12.66,1.58,1.14,7.24,4.48,13.89.98l157.91-83.36c4.39-2.31,9.61-2.31,14,0l157.91,83.36c6.74,3.56,12.28.15,13.86-.97,1.96-1.42,6.42-5.51,5.19-12.67l-30.2-176.89c-.82-4.85.79-9.8,4.31-13.24l128.17-125.48c5.19-5.07,4.01-10.94,3.25-13.24-.76-2.31-3.28-7.79-10.55-8.86l-176.95-25.81c-4.89-.7-9.11-3.79-11.31-8.22l-78.93-160.62c-3.31-6.77-9.84-7.29-11.75-7.29Z'/%3E%3C/svg%3E");
}

/* content-logo.css */

.content__logo-container a {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: var(--wp--preset--color--primary);
	font-weight: 600;
	gap: .5rem;
	width: 3rem;
	align-items: center;
	transition: scale .2s;
	scale: 1;
}

.content__logo-container a:hover {
	scale: 1.1;
}

.content__logo-container a img { width: 100% }

/* content-navigation.css */

.content-nav {
	display: flex;
	justify-content: space-between;
	padding: var(--wp--preset--spacing--80) 0;
}

.content-nav__link {
	color: var(--wp--preset--color--primary);
	text-decoration: none;
	text-decoration: none;
	transition: .25s transform;
}

.content-nav__link:hover {
	transform: scale(1.05)
}

.content-nav__link-close {
	display: flex;
	flex-direction: column;
	text-transform: uppercase;
	align-items: center;
	gap: var(--wp--preset--spacing--20);
}

.content-nav__link-close::before {
	content: '×';
	text-decoration: none;
	color: var(--wp--preset--color--base);
	background-color: var(--wp--custom--color--cua--bg--800);
	border-radius: 100%;
	width: 2rem;
	height: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 900;
	text-decoration: none !important;
	font-size: 2rem;
	align-items: first baseline;
	line-height: 110%;
}

/* content.css */

/* .content {
	opacity: 0;
	transition: all .5 ease-in-out;
	position: absolute;
	z-index: var(--wp--custom--z-index--content);

	--chevron--top: 10rem;
}

.content::before {
	z-index: -1;
	position: absolute;
	bottom: 0;
	left:0;
	right: 0;
	top: calc( var(--chevron--top) + 10rem );
	background-color: #E6E6E6;
	content: '';
	display: block;
} */

.content-header__logo-container {
	position: absolute;
	top: var(--wp--preset--spacing--50);
	left: var(--wp--preset--spacing--60);
	z-index: -1;
}

.ra24-page__container {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 100vw;
	height: 100vh;
	background-color: var(--wp--preset--color--base);
	overflow-y: scroll;
}

.ra24-page__container::before, 
.ra24-page__container::after {
	content: '';
	position: absolute;
	top: 0;
	left: -150px;
	height: 500px;
	width: 20%;
	background-image: url('../images/ligne-bleu-haut.svg');
	background-position: top left;
	background-size: contain;
	background-repeat: no-repeat;
	pointer-events: none;
	z-index: 2;
}

.ra24-page__container::after {
	position: fixed;
	top: auto;
	bottom: 0;
	left: auto;
	right: 0;
	background-image: url('../images/ligne-bleu-bas.svg');
	background-position: bottom right;
	z-index: 0;
}

.ra24-page {
	display: flex;
	flex-direction: column;
	max-width: 50%;
	padding: 0 40px 400px 40px;
	transition: all 0.2s ease-in-out;
	z-index: 1;
}

.ra24-page::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 265px;
	background-image: url('../images/grid.svg');
	background-position: top center;
	opacity: 0.05;
	pointer-events: none;
}

/* .ra24-page::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	height: 500px;
	width: 30%;
	background-image: url('../images/ligne-bleu-bas.svg');
	background-position: bottom right;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 1;
} */

.page__header {
	position: relative;
	height: 200px;
	padding-top: 130px;
}

.page__header span {
	position: absolute;
	top: 100px;
	left: 0;
	padding: 0 15px;
	font-size: var(--wp--preset--font-size--xl);
	color: var(--wp--preset--color--primary);
	border: 1px solid var(--wp--preset--color--primary);
	border-radius: 20px;
}

.page__header__subtitle {
	font-size: var(--wp--preset--font-size--xl);
}

.page__header__chapters {
	padding: 0;
	margin-left: 20px;
	color: var(--wp--preset--color--primary);
}

.page__header__chapters li {
	margin-bottom: 8px;
}

.page__header__chapters a {
	color: var(--wp--preset--color--primary);
	font-weight: 800;
	font-size: var(--wp--preset--font-size--xl);
}

.page__title {
	font-weight: 900;
	color: #00B0DA;
	font-size: var(--wp--preset--font-size--xxxl);
}

.ra24-row {
	display: flex;
	flex-direction: column;
	padding-top: 60px;
}

.ra24-row.--indent {
	padding-left: calc(2 * var(--wp--preset--spacing--90));
}

.ra24-column {
	flex: 1;
	max-width: 100%;
}

.content--fadein {
	opacity: 1;
	background: var(--wp--preset--color--base);
	transition: all .5 ease-in-out;

	min-height: 100vh;
	min-width: 100vw;

	top: 0;
	left: 0;
}

.ra24-content__item {
	margin: 0 0 var(--wp--preset--spacing--90) 0;
}

.ra24-content__item.--fadein {
	transform: scale(1);
	opacity: 1;
}

.ra24-content__item p {
	margin: 0;
	margin-bottom: 1rem;
	color: var(--wp--preset--color--contrast);
}

.ra24-content__item.chapo h2 {
	font-weight: 400;
	text-align: center;
	font-size: calc( 1.5 * var(--wp--preset--font-size--xxxl) );
	color: var(--wp--preset--color--primary);
	margin: var(--wp--preset--spacing--90) auto;
	max-width: 42rem;
}

.ra24-content__item.chapo p {
	font-weight: 800;
	font-size: var(--wp--preset--font-size--xl);
	color: var(--wp--preset--color--primary);
	max-width: 35rem;
}

.ra24-page h2 {
	font-weight: 800;
	font-size: var(--wp--preset--font-size--xxl);
	color: var(--wp--preset--color--primary);
}

.ra24-content__item h3 {
	color: var(--wp--preset--color--primary);
}

.ra24-page h2::after {
	content: '';
	display: block;
	width: 5rem;
	height: .5rem;
	background-color: var(--wp--preset--color--secondary);
	margin-top: var(--wp--preset--spacing--60);
}

.ra24-content__item.chapo-video {
	margin: 0;
}

.ra24-content__item img {
	width: 100%;
	max-width: 800px;
	object-fit: contain;
}

.ra24-content__item img:not(.--nomask) {
	mask-image: url("data:image/svg+xml,%3Csvg width='301' height='200' viewBox='0 0 301 200' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M281 0.00373333C292.046 0.0037753 301 8.95814 301 20.0039L300.999 180C300.999 191.046 292.044 200 280.999 200L20.0002 199.999C8.95444 199.999 0.000119817 191.045 0.00025154 179.999L0.0012884 93.0523C0.0118092 87.1733 1.37345 81.3675 3.99086 76.0414C6.60827 70.7152 10.4182 65.9973 15.154 62.218L85.8948 9.7862C91.2776 5.47292 105.867 -0.150633 112.905 0.00309466L281 0.00373333Z' fill='%23FF735F'/%3E%3C/svg%3E%0A");
	mask-position: center;
	mask-size: contain;
	mask-repeat: no-repeat;
	/* aspect-ratio: 3/2; */
	object-fit: cover;
}

.ra24-content__item img.--nomask { border-radius: var(--wp--custom--border--radius--sm) }

.ra24-content__item .wp-caption {
	max-width: 100%;
}

.highlight-green.--has-image {
	position: relative;
}

.highlight-green.--has-image img {
	position: absolute;
	right: 0;
	top: -5rem;
	width: 10rem;
}

.highlight-green.--has-image p {
	width: 26rem;
}

.ra24-content__item iframe {
	width: 100%;
	aspect-ratio: 16/9;
	border-radius: var(--wp--custom--border--radius--sm);
	background-color: var(--wp--custom--color--cua--bg--400);
	background-image: var(--loader--white);
	background-position: center;
	background-repeat: no-repeat;
}

.ra24-content__item iframe.--pdf {
	aspect-ratio: 21/29.7;
}

@media screen and (max-width: 800px) {
	.ra24-row.--indent {
		padding-left: 0;
	}
	.ra24-content__item {
		margin: var(--wp--preset--spacing--40) 0;
	}
	.ra24-content__item.highlight-white:first-child {
		margin-top: var(--wp--preset--spacing--90);
	}
	.ra24-page__container { width: 90% }
	.content__chevron { top: 15rem }
	.ra24-page__container .page__title {
		margin-bottom: 0;
		text-align: left;
	}
	.ra24-content__item.chapo > h2 {
		font-size: var(--wp--preset--font-size--xxxl);
		text-align: left;
	}
	.ra24-row {
		flex-direction: column;
	}
	.ra24-content__item:not(.chapo) > p {
		padding-left: 0;
		margin-left: 0;
	}

	.highlight-green.--has-image img {
		display: none;
	}

	.highlight-green.--has-image p {
		width: auto;
	}

}

@media all and (max-width: 900px) {
	.page__header span {
		position: relative;
		top: auto;
	}

	.ra24-page {
		max-width: 90%;
		padding: 0 20px 100px 20px;
		margin: 0 !important;
	}
	
	.ra24-page__container {
		height: auto;
	}

	.ra24-page__container::before, 
	.ra24-page__container::after{
		display: none;
	}
}

@media all and (max-width: 600px) {
	.page__header {
		height: auto;
		padding-top: 40px;
	}
}

/* logo.css */

.site-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

/* .site-title span {
	padding: 0 10px;
	font-size: var(--wp--preset--font-size--xxxl);
	font-weight: 400;
	color: var(--wp--preset--color--base);
	background-color: #00B0DA;
}

.site-title b {
	font-weight: 900;
} */

.site-title__container {
	opacity: 0;
	transition: opacity 3s ease-in-out .25s;
}

.bg--loaded .site-title__container {
	/* position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0; */
	min-width: calc(100vw - 480px);
    min-height: 100vh;
	z-index: var(--wp--custom--z-index--title);

	display: flex;
	justify-content: flex-end;

	background-image: url('../images/img-accueil.jpg');
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 1;
}

.bg--loaded .site-title__container h1 {
	width: 45rem;
	margin-top: 15%;
	position: relative;
	top: 0;
	animation: nintendo 5s cubic-bezier(0, 0.25, 0, 1);
}

.bg--loaded .site-title__container img {
	width: 100%;
	max-width: 400px;
	max-height: 70%;
	height: auto;
	margin-bottom: 50px;
	object-fit: contain;
}

.site-title__container--already-open {
	opacity: 1;
	h1 {
		top: 0!important;
		animation: none!important;
	}
}

@media all and (max-width: 900px) {

	.bg--loaded .site-title__container {
		min-width: 100vw !important;
		justify-content: center;
	}

	.bg--loaded .site-title__container h1 {
		width: 100%;
	}
}

@keyframes nintendo {
	0% { top: -75% }
	100% { top: 0 }
}

/* menu.css */

.menu__container {
	/*position: absolute;
	top: 0;
	left: 0;
	right: 0;*/
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	transition: all 1s var(--wp--custom--easing--dynamic);
	z-index: var(--wp--custom--z-index--menu);
}

.menu__nav {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	text-align: center;
}

.menu__list {
	position: relative;
	display: flex;
	justify-content: flex-end;
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	z-index: 2;
}

.menu__item {
	height: calc(100vh - 2px);
	background-color: var(--wp--preset--color--base);
	border: 1px solid var(--wp--custom--color--primary--500);
	cursor: pointer;
}

.menu__item--active {
	position: fixed;
}

.menu__item--initial {
	position: fixed;
	top: 0;
	left: 0;
	background-color: var(--wp--custom--color--primary--500);
}

.menu__link {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 20px;
	text-align: left;
	text-decoration: none;
	font-size: var(--wp--preset--font-size--s);
	color: var(--wp--custom--color--primary--500);
	transition: all 0.3s ease-in-out;
}

.menu__link img {
	max-width: 15rem;
	margin-bottom: 1rem;
}

.menu__item:hover .menu__link {
	color: var(--wp--custom--color--tertiary--500);
}

.menu__item--initial .menu__link {
	color: var(--wp--preset--color--base);
}

.menu__link__text {
	transform: rotate(-180deg) translateY(4.5rem);
    writing-mode: tb-rl;
}

.menu__sommaire {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 70%;
	height: 100%;
	padding: 0 15%;
	background-color: var(--wp--preset--color--base);
	opacity: 0;
	transition: all 0.3s ease-in-out;
	pointer-events: none;
	overflow: scroll;
	z-index: 3;
}

.menu__sommaire--active {
	opacity: 1;
	pointer-events: all;
}

.menu__sommaire::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 300px;
	background-image: url('../images/grid.svg');
	background-position: top center;
	opacity: 0.05;
	z-index: -1;
}

.menu__top {
	position: fixed;
	top: 0;
	right: 480px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 5px;
	padding: 20px;
	margin: 0;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.menu__top li {
	padding: 0;
	list-style: none;
}

.menu__top--sommaire {
	position: relative;
	top: auto;
	right: auto;
	justify-content: space-between;
	width: 100%;
	padding: 20px 0;
}

.menu__sommaire__img {
	max-height: 200px;
	margin:  10px;
	object-fit: contain;
}

.menu__sommaire__list {
	display: flex;
    flex-direction: column;
	padding: 0;
	margin: 50px 0;
	font-size: 20px;
	text-align: left;
}

.menu__sommaire__list li {
	padding: 0;
	list-style: none;
}

.menu__sommaire__item {
	margin-bottom: 20px;
	cursor: pointer;
}

.menu__sommaire__item .menu__sommaire__item__link {
	display: flex;
	gap: 20px;
	text-decoration: none;
	color: var(--wp--custom--color--primary--500);
	transition: all 0.3s ease-in-out;
}

.menu__sommaire__item .menu__sommaire__item__link:hover {
	color: var(--wp--custom--color--tertiary--500);
}

.menu__sommaire__item__link__number {
	min-width: 25px;
}

.menu__sommaire__item__link__text {
	font-weight: 900;
}

.menu__sommaire__item__link__subitems {
	max-height: 0;
	padding-top: 0;
	padding-left: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.menu__sommaire__item__link__subitems--active {
	max-height: 500px;
	padding-top: 10px;
}

.menu__sommaire__item__link__subitems li {
	list-style: disc;
}

.menu__sommaire__item__link__subitems a {
	text-decoration: none;
	color: var(--wp--custom--color--primary--500);
}

.menu__sommaire__item__link__subitem {
	margin-left: 20px;
	margin-bottom: 5px;
}

.menu__sommaire__item__link__subitem__link:hover {
	color: var(--wp--custom--color--tertiary--500);
	transition: all 0.3s ease-in-out;
}

.menu__sommaire__item__link__text__content {
	display: flex;
}

.menu__sommaire__item__link__text__content::after {
	content: ">";
	display: flex;
	justify-content: center;
	width: 30px;
	transform: rotate(90deg);
	transition: transform 0.3s ease-in-out;
}

.menu__sommaire__item__link--active .menu__sommaire__item__link__text__content::after {
	transform: rotate(-90deg);
}

.menu__sommaire__social {
	margin-top: 10px;
	font-size: 14px;
	font-weight: 900;
	color: var(--wp--custom--color--primary--500);
}

.menu__sommaire__social__list {
	display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 0;
	margin-top: 1rem;
    list-style-type: none;
}

.menu__container--closed {
	bottom: 100%;
	opacity: 0;
}

.menu__container--closed > * { display: none }

.menu__container--open {
	bottom: 0;
	opacity: 1;
}

.menu__button-open {
	position: fixed;
	top: var(--wp--preset--spacing--80);
	right: var(--wp--preset--spacing--80);
	z-index: var(--wp--custom--z-index--menu);
}

.menu__top__link {
	text-decoration: none;
	text-transform: none;
	font-size: var(--wp--preset--font-size--xs);
	color: var(--wp--custom--color--primary--500);
	border-color: var(--wp--custom--color--primary--500);
	align-items: center;
}

.menu__top__link--main-site,
.menu__top__link--close {
	padding-left: 10px;
}

.menu__top__link--main-site::before,
.menu__top__link--close::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='16' viewBox='0 0 15 16' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.11629 1.25665C7.34198 1.08112 7.65802 1.08112 7.88371 1.25665L13.5087 5.63165C13.661 5.75006 13.75 5.93213 13.75 6.125V13C13.75 13.4973 13.5525 13.9742 13.2008 14.3258C12.8492 14.6775 12.3723 14.875 11.875 14.875H3.125C2.62772 14.875 2.15081 14.6775 1.79917 14.3258C1.44754 13.9742 1.25 13.4973 1.25 13V6.125C1.25 5.93213 1.33905 5.75006 1.49129 5.63165L7.11629 1.25665ZM6.25 13.625H8.75V8.625H6.25V13.625ZM10 13.625V8C10 7.65482 9.72018 7.375 9.375 7.375H5.625C5.27982 7.375 5 7.65482 5 8V13.625H3.125C2.95924 13.625 2.80027 13.5592 2.68306 13.4419C2.56585 13.3247 2.5 13.1658 2.5 13V6.43068L7.5 2.54179L12.5 6.43068V13C12.5 13.1658 12.4342 13.3247 12.3169 13.4419C12.1997 13.5592 12.0408 13.625 11.875 13.625H10Z' fill='%230F695F'/%3E%3C/svg%3E");	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	content: '';
	display: inline-block;
	width: 15px;
    height: 15px;
	margin-right: var(--wp--preset--spacing--10);
}

.menu__top__link--close::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='17' viewBox='0 0 18 17' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.41883 3.61609C4.6856 3.34932 5.11811 3.34932 5.38488 3.61609L9.00049 7.2317L12.6161 3.61609C12.8829 3.34932 13.3154 3.34932 13.5821 3.61609C13.8489 3.88286 13.8489 4.31538 13.5821 4.58215L9.96655 8.19775L13.5821 11.8134C13.8489 12.0801 13.8489 12.5126 13.5821 12.7794C13.3154 13.0462 12.8829 13.0462 12.6161 12.7794L9.00049 9.16381L5.38488 12.7794C5.11811 13.0462 4.6856 13.0462 4.41883 12.7794C4.15206 12.5126 4.15206 12.0801 4.41883 11.8134L8.03443 8.19775L4.41883 4.58215C4.15206 4.31538 4.15206 3.88286 4.41883 3.61609Z' fill='%230F695F'/%3E%3C/svg%3E");
}

@media screen and (max-width: 800px) {
	.menu__button-open {
		top: var(--wp--preset--spacing--40);
		right: var(--wp--preset--spacing--40);
	}
}

@media all and (max-width: 900px) {
	.menu__container {
		height: 0;
	}

	.menu__list {
		display: none;
	}

	.menu__top {
		right: 0 !important;
		justify-content: space-between;
		width: calc(100% - 40px);
	}

	.menu__sommaire {
		width: 90%;
		padding: 0 5%;
	}
}

@media all and (max-width: 600px) {
	.menu__sommaire::before {
		height: 265px;
	}
	
	.menu__sommaire__img {
		max-height: 175px;
	}

	.menu__sommaire__list {
		margin: 20px 0;
	}

	.menu__top__link--close {
		padding: var(--wp--preset--spacing--10);
		font-size: 0;
	}

	.menu__top__link--close::before {
		margin: 0;
	}
}