@charset "UTF-8";

/* ------------------------------------------------------------------------------------ */
/* ------------------------------------- SECTIONS ------------------------------------- */
/* ------------------------------------------------------------------------------------ */

#section1{
	background-image: var(--img-1);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: right;
	transition: all 0.3s;
}
#section1 #papertop{
	height: 100%;
	width: 100%;
	background-image: var(--img-2);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: left;
	transition: all 0.3s;
}
#section2{
	background-image: var(--img-3);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: right;
	transition: all 0.3s;
}
#section3{
	background-image: var(--img-4);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: right;
	transition: all 0.3s;
}
#section4{
	background-image: var(--img-5);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: right;
	transition: all 0.3s;
}
#section4 #paperbot{
	height: 100%;
	width: 100%;
	background-image: var(--img-6);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: left;
	transition: all 0.3s;
}

.content {
	display: block;
	position: absolute;
	width: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}

main{
	opacity: 0;
	animation: MainDisplay 1s;
	animation-fill-mode: forwards;
}

@keyframes MainDisplay {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* ------------------------------------------------------------------------------------ */
/*-------------------------------------- Section1 --------------------------------------*/
/* ------------------------------------------------------------------------------------ */

#section1 .content{
	height: 100%;
	width: 100%;
	left: 50%;
}
.FrontName{
	position: absolute;
	height: 45%;
	width: 100%;
	top: 50%;
	transform: translate(0%, -55%);
}
.txt404{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.txt404 h1{
	font-size: 36em;
	-webkit-text-stroke: 4px var(--text-color);
}
.txt404 span{
	color: var(--text-color);
	font-family: "AvenirNextDemiItN";
	text-transform: uppercase;
	font-size: 2em;
	letter-spacing: 1.5em;
	position: absolute;
	top: 13%;
	left: 20%;
}
.BackLogo{
	position: absolute;
	height: 80%;
	width: 100%;
	top: 10%;
	z-index: -1;
	opacity: 0;
	animation: blury1 3s;
	animation-delay: 2s;
	animation-fill-mode: forwards;
}
.BackLogoBlur{
	position: absolute;
	height: 80%;
	width: 100%;
	top: 10%;
	z-index: -1;
	opacity: 0;
	animation: blury2 3s;
	filter: blur(100px);
	animation-delay: 0s;
	animation-fill-mode: forwards;
}
.BackLogo svg{
	-webkit-filter: url("#filter1");
	filter: url("#filter1");
}
.BackLogoBlur svg{
	-webkit-filter: url("#filter2");
	filter: url("#filter2");
}
svg.svg-filters {
	display: list-item;
}
@keyframes blury1 {
	from {
		filter: blur(100px);
		opacity: 0;
	}
	30% {
		filter: blur(30px);
		opacity: 0;
	}
	to {
		filter: blur(3px);
		opacity: 1;
	}
}@keyframes blury2 {
	from {
		filter: blur(1000px);
		opacity: 0;
	}
	30% {
		filter: blur(100px);
		opacity: 0;
	}
	to {
		filter: blur(100px);
		opacity: 1;
	}
}
.whitestroke{
	fill:none;
	stroke:	var(--text-color);
	stroke-width: 3;
	stroke-miterlimit: 10;
	stroke-dasharray: 800;
	animation: animate 7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes animate {
	0% {
		opacity: 0;
		stroke-dashoffset: 800;
	}
	50% {
		opacity: 0;
		stroke-dashoffset: 800;
	}
	100% {
		opacity: 1;
		stroke-dashoffset: 0;
	}
}
.white{
	fill:	var(--text-color);
	animation: blury 9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes blury {
	0% {
		opacity: 0;
	}
	70% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.Scrollnim{
	position: absolute;
	bottom: 0%;
	margin-bottom: 1px;
	width: var(--space-2x);
	height: 59px;
	overflow: hidden;
	left: 50%;
	animation: blury 10s cubic-bezier(0.22, 0.61, 0.36, 1);
	border-radius: 2px 2px 0px 0px;
}
.Scrollnim:before, .Scrollnim:after{
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: auto;
	top: 0;
	bottom: auto;
	width: 100%;
	height: 100%;
	background-color:	var(--text-color);
	border-radius: 2px;
}
.Scrollnim:before{
	height: 150%;
	-webkit-animation: ScrollGrnd 2s cubic-bezier(.77,0,.175,1) infinite;
	animation: ScrollGrnd 2s cubic-bezier(.77,0,.175,1) infinite;
}
.Scrollnim:after{
	height: 50%;
	-webkit-animation: ScrollPtit 2s cubic-bezier(.645,.045,.355,1) infinite;
	animation: ScrollPtit 2s cubic-bezier(.645,.045,.355,1) infinite;
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
}
@keyframes ScrollGrnd {
	0% {
		top: -155%;
	}
	100% {
		top: 155%;
	}
}
@keyframes ScrollPtit {
	0% {
		top: -105%;
	}
	100% {
		top: 105%;
	}
}

/* ------------------------------------------------------------------------------------ */
/*-------------------------------------- Section2 --------------------------------------*/
/* ------------------------------------------------------------------------------------ */

#section2 #title2{
	position: absolute;
	width: 50%;
	top: 17%;
	left: 40%;
	transform: translate(-50%,-50%);
}
#section2 h2{
	font-family: 'AvenirNextBoldIt';
	font-size: 3.5em;
	position: relative;
	text-align: right;
	transform: translate(2%, -60%);
	color:	 var(--text-color);
	text-shadow: 0 0 25px #00000080;

}
.slide .crea{
	width: 70%;
	height: 60%;
	display: block;
	margin: auto;
	top: 20%;
	position: relative;
}
.slide a{
	width: 100%;
	height: 100%;
	display: block;
	background-color: var(--bg-color);
	box-shadow: var(--shadow);
	transition: all 0.7s ease;
	border-radius: 8px;
}
.slide a:hover{
	transform: scale(1.02) translateY(-20px);
	box-shadow: var(--shadow-hover);
}
.is-mac .slide a:hover {
	box-shadow: var(--shadow);
}
.slide a img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	opacity: 0.7;
	transition: all 0.7s ease;
	filter: grayscale(0.3);
	border-radius: 8px;
}
.slide a:hover img{
	opacity: 0.9;
	filter: grayscale(0);
}

/* ------------------------------------------------------------------------------------ */
/*-------------------------------------- Section3 --------------------------------------*/
/* ------------------------------------------------------------------------------------ */

#section3 .content{
	left: 40%;
}
#section3 p{
	text-align: left;
	margin-top: 1em;
	margin-bottom: 1em;
}

/* ------------------------------------------------------------------------------------ */
/*-------------------------------------- Section4 --------------------------------------*/
/* ------------------------------------------------------------------------------------ */

#section4 .content{
	left: 40%;
}

form #mc_embed_signup_scroll{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 2em;
}
.wrap-input100 {
	width: 100%;
	position: relative;
	border-bottom: var(--border);
	margin-bottom: var(--space-5x);
	border-radius: var(--space-2x);
}
.rs1-wrap-input100 {
	width: calc((100% - 30px) / 2);
}
.label-input100 {
	font-size: 2.8em;
	color: var(--text-color);
	cursor: none;
	font-family: 'AvenirNextDemi';
	margin: var(--space-3x);
	display: block;
}
.input100 {
	display: block;
	width: calc(100% - 40px);
	background: transparent;
	font-size: 1.5rem;
	color: var(--text-color);
	padding: 16px;
	background-color: var(--text-color-10);
	border-radius: 8px 8px 0px 0px;
	border: solid var(--space-2x);
	border-color: #ffffff00;
}
.focus-input100 {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}
.focus-input100::before {
	content: "";
	display: block;
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: var(--space-2x);
	transition: all 0.4s;
	background: #e96852;
	box-shadow: 0px 0px 7px 0px rgba(255,96,78, 0.5);
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--text-color);
	transition: background-color 5000s ease-in-out 0s;
}
::selection{
	background-color: transparent !important;
}

input.input100 {
	height: 40px;
}
.textarea.input100 {
	min-height: 110px;
}
.input100:focus + .focus-input100::before {
	width: 100%;
}
.has-val.input100 + .focus-input100::before {
	width: 100%;
}

form .button {
	border-width: 0;
	justify-content: center;
	align-items: center;
	padding: 0 80px;
	min-width: 160px;
	height: 72px;
	font-size: 2em;
	color: var(--text-color);
	background-color: transparent;
	border: var(--border);
	transition: all 0.3s ease;
	border-radius: 8px;
}
form .button:hover {
	color: #e96852;
	background-color: transparent;
	border: var(--border);
	border-color: #e96852;
	box-shadow: 0px 0px 7px 0px rgba(255,96,78, 0.5), inset 0px 0px 7px 0px rgba(255,96,78, 0.5);
	text-shadow: 0 0 7px rgba(255,96,78, 0.5);
}
form .button{
	font-family: "AvenirNextDemi";
	letter-spacing: 0.3em;
}
::placeholder {
	color: #555555;
}
.divcta{
	margin-top: 2em;
}

#mc_embed_signup div#mce-responses {float:left; top:-1.4em; padding:0em .5em 0em .5em; overflow:hidden; width:90%; margin: 0 5%; clear: both;}
#mc_embed_signup div.response {margin:1em 0; padding:1em .5em .5em 0; font-weight:bold; float:left; top:-1.5em; z-index:1; width:80%;}
#mc_embed_signup #mce-error-response {display:none;}
#mc_embed_signup #mce-success-response {color:#529214; display:none;}
#mc_embed_signup label.error {display:block; float:none; width:auto; margin-left:1.05em; text-align:left; padding:.5em 0;}

#mc-embedded-subscribe {clear:both; width:auto; display:block;}
#mc_embed_signup #num-subscribers {font-size:1.1em;}
#mc_embed_signup #num-subscribers span {padding:.5em; border:1px solid #ccc; margin-right:.5em; font-weight:bold;}

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {display:inline-block; background-color:#e85c41; right: 0px; position: absolute; font-size:14px; font-weight:normal; z-index:1; color:	var(--text-color); padding: var(--space-3x) var(--space-4x); margin: 0px; margin-top: -1px; border-radius: 0px 0px var(--space-3x) var(--space-3x);}
#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {border:var(--space-2x) solid #e85c41;box-shadow: rgba(255, 96, 78, 0.5) 0px 0px 7px 0px, rgba(255, 96, 78, 0.5) 0px 0px 7px 0px inset;}

/* ------------------------------------------------------------------------------------ */
/*---------------------------------------- Modal ---------------------------------------*/
/* ------------------------------------------------------------------------------------ */

/* Overlay avec blur */

.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.20);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	z-index: 1000;
}

.modal-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

/* Modale */

.modal {
	background: rgb(0, 0, 0);
	width: calc(100% - 80px);
	max-width: 1400px;
	height: calc(100% - 80px);
	box-shadow: 0 20px 50px rgb(0, 0, 0);
	transform: translateY(20px) scale(0.90);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: var(--space-5x);
}

.modal-overlay.active .modal {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.modal-title {
	display: none;
}

.modal-section {
	text-align: center;
}

.modal-close {
	background: rgba(0, 0, 0, 0.20);
	border: none;
	color: #ffffff;
	width: 48px;
	height: 48px;
	border-radius: var(--space-4x);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s ease, color 0.15s ease, transform 0.3s ease;
	position: absolute;
	top: var(--space-4x);
	right: var(--space-4x);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	cursor: none;
	z-index: 100;
}

.modal-close:hover {
	background: rgba(0, 0, 0, 0.30);
	transform: rotate(90deg);
}

.modal-close svg {
	width: 22px;
	height: 22px;
}

.modal-close:hover {
	background: rgba(0, 0, 0, 0.30);
}

.modal-close:active {
	transform: scale(0.9);
}

/* Corps de modale scrollable */

.modal-body {
	overflow-y: auto;
	border-radius: var(--space-5x);
}

/* Contenu interne */

.modal-section img {
	width: 100%;
	display: block;
}

/* Bouton externe	*/

.external-link-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-3x);
	margin-top: var(--space-1x);
	margin-bottom: var(--space-8x);
	padding: var(--space-4x) var(--space-5x);
	border-radius: 999px;
	border: none;
	text-decoration: none;
	background: #0057ff;
	color: #ffff;
	font-size: 1em;
	font-weight: 600;
	transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.external-link-btn:hover {
	background: #003ecb;
}

.external-link-btn2 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-3x);
	margin-top: var(--space-1x);
	margin-bottom: var(--space-8x);
	padding: var(--space-4x) var(--space-5x);
	border-radius: 999px;
	border: none;
	text-decoration: none;
	color: #ffff;
	font-size: 1em;
	font-weight: 600;
	transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
	background: #4a5df9;
}

.external-link-btn2:hover {
	background: #4150f7;
}

/* Footer de modale */

.modal-footer {
	display: flex;
	justify-content: flex-end;
}

.scroll-top-btn {
	background: rgba(0, 0, 0, 0.20);
	border: none;
	color: #ffffff;
	width: 48px;
	height: 48px;
	border-radius: var(--space-4x);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s ease, color 0.15s ease, transform 0.3s ease;
	position: absolute;
	bottom: var(--space-4x);
	right: var(--space-4x);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	cursor: none;
}

.scroll-top-btn svg{
	width: 24px;
	height: 28px;
}

.scroll-top-btn:hover {
	background: rgba(0, 0, 0, 0.30);
	transform: translateY(-6px);
}

/* Scrollbar légère pour le corps de la modale */

.modal-body::-webkit-scrollbar {
	display: none;
}

.fake-scrollbar {
	position: absolute;
	top: var(--space-5x);
	bottom: var(--space-5x);
	right: -12px;
	width: 4px;
	border-radius: 4px;
	background: rgba(0, 0, 0, 1);
	pointer-events: none; /* ne bloque pas les clics sur le contenu */
}

.fake-thumb {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 4px;
	background: rgba(255, 255, 255, 1);
}

.video-wrapper {
	width: 100%;
	position: relative;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-width: 0px;
}

.wrapper1 {
	aspect-ratio: 70/41;
}
.wrapper2 {
	aspect-ratio: 35/19;
}
.wrapper3 {
	aspect-ratio: 14/9;
}
.wrapper4 {
	aspect-ratio: 7/6;
}

/* ------------------------------------------------------------------------------------ */
/*------------------------------------- Media Query ------------------------------------*/
/* ------------------------------------------------------------------------------------ */

@media (max-aspect-ratio: 1/1) {
	
}

@media screen and (max-width: 2520px) {

}

@media screen and (max-width: 2220px) {

}

@media screen and (max-width: 1920px) {
	.wrap-input100 {
		margin-bottom: 30px;
	}
	.label-input100 {
		font-size: 1.9em;
	}
	.input100 {
		border: solid var(--space-15x);
		border-color: #ffffff00;
		width: calc(100% - 38px);
	}
	.textarea.input100 {
		min-height: 100px;
	}
	form .button {
		border: var(--space-15x) solid	var(--text-color);
		font-size: 1.5rem;
	}
	#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {
		border: var(--space-15x) solid #e85c41;
	}
}

@media screen and (max-width: 1660px) {
	.Scrollnim {
	width: var(--space-15x);
	}
	.wrap-input100 {
		margin-bottom: 30px;
		border-bottom: var(--space-15x) solid	 var(--text-color);
		border-radius: var(--space-15x);
	}
	.label-input100 {
		font-size: 1.8em;
	}
	.input100 {
		border: solid var(--space-15x);
		border-color: #ffffff00;
		width: calc(100% - 38px);
	}
	.textarea.input100 {
		min-height: 80px;
	}
	form .button {
		border: var(--space-15x) solid	var(--text-color);
		font-size: 1.5rem;
	}
	#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {
		border: var(--space-15x) solid #e85c41;
	}
}

@media screen and (max-width: 1366px) {
	span.pretitre{
		font-size: 1.2em;
		padding-left: 10%;
	}
	#section2 h2{
		font-size: 2em;
	}
	.label-input100{
		font-size: 1.5rem;
	}
	.input100{
		font-size: 1.2rem;
	}
	form .button{
		font-size: 1.3rem;
		height: 50px;
	}
	.textarea.input100{
		min-height: 60px;
	}
}

@media screen and (max-width: 1280px) {

}

@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 768px) {
	#section2 h1{
		width: 80%;
		top: 18%;
		left: 50%;
	}
	.FrontName{
		transform: translate(0%, -50%);
	}
	span.pretitre{
		font-size: 0.8em;
		padding-left: 5%;
	}
	#section2 #title2 {
		position: absolute;
		width: 100%;
		top: 18%;
		left: 60%;
		transform: translate(-50%,-50%);
	}
	#section3 .content,#section4 .content {
		left: 50%;
		top: 50%;
	}
	.content {
		width: 85%;
	}
	form #mc_embed_signup_scroll {
		margin-top: 0.7em;
	}
	.divcta {
		margin-top: 1em;
	}
	.BackLogo,.BackLogoBlur {
		width: 60%;
		left: 20%;
	}
	.whitestroke{
		stroke-width: 5px;
	}
	.label-input100 {
		font-size: 1.3em;
		margin: var(--space-2x)!important;
	}
	.slide .crea{
		width: 80%;
		height: 55%;
	}
	.slide .crea {
		top: 20%;
	}
	.slide a img{
		filter: grayscale(0);
	}
	#section2 h2 {
		font-size: 1.5em !important;
	}

	.fp-controlArrow{
		padding: var(--space-3x) !important;
		bottom: 11.7%;
		z-index: 5;
	}
	.fp-controlArrow.fp-next{
		right: 15%;
		transform: translate(0,-12px)rotate(-45deg);
	}
	.fp-controlArrow.fp-prev{
		left: 15%;
		transform: translate(0,-12px)rotate(135deg);
	}
	.fp-controlArrow.fp-next:hover{
		transform: translate(0,-12px)rotate(-45deg);
	}
	.fp-controlArrow.fp-prev:hover{
		transform: translate(0,-12px)rotate(135deg);
	}
	.fp-slidesNav.bottom {
		bottom: 12% !important;
	}
	.rs1-wrap-input100{
		width: 100%;
	}
	.wrap-input100{
		margin-bottom: 10px;
	}
	.divcta{
		width: 100%;
	}
	form .button{
		padding: 0;
		width: 100%;
	}
	#mc-embedded-subscribe{
		width: 100%;
	}
	.input100{
		font-size: 1.2rem;
		height: 20px !important;
		padding: 10px !important;
		width: calc(100% - 24px) !important;
		border-radius: 4px 4px 0px 0px !important;
		border: solid var(--space-1x) !important;
		border-color: #ffffff00 !important;
	}
	form .button {
		height: 50px;
		font-size: 1.4rem;
	}
	.textarea.input100 {
		min-height: 80px;
	}
	.focus-input100::before {
		bottom: -2px;
		height: var(--space-1x);
	}
	#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {
		border: var(--space-1x) solid #e85c41 !important;
	}
	form .button {
		border-radius: 4px !important;
	}
	.modal {
		width: calc(100% - 0px);
		height: calc(100% - 0px);
		border-radius: 0;
	}
	.modal-body {
		border-radius: 0;
	}
	.fake-scrollbar {
		position: absolute;
		top: var(--space-4x);
		bottom: var(--space-4x);
		right: 6px;
	}
}