*,
*::before,
*::after {
  box-sizing: border-box;
}
:root {
	--color-black: rgba(0,0,0,1);
	--color-white: rgba(255,255,255,1);
	--color-orange: rgba(247,83,0,1);
	--color-red: rgba(255,0,4,1);
	--color-charcoal: rgba(15,15,15,1);
	--color-muted: rgba(180,180,180,1);
	--rgb-black: 0,0,0;
	--rgb-white: 255,255,255;
	--rgb-orange: 247,83,0;
}
html {
	background: var(--color-black);
}
html,
body {
	font-family: "Milano Sans", sans-serif;
	height: 100%;
	cursor: auto;
	scroll-behavior: smooth;
}
html.premium-scroll-active,
html.premium-scroll-active body {
	scroll-behavior: auto;
	overscroll-behavior-y: none;
}
html.premium-scroll-active {
	scrollbar-width: thin;
	scrollbar-color: rgba(var(--rgb-orange),.75) rgba(var(--rgb-black),.95);
}
html.premium-scroll-active::-webkit-scrollbar {
	width: 10px;
}
html.premium-scroll-active::-webkit-scrollbar-track {
	background: rgba(var(--rgb-black),.95);
}
html.premium-scroll-active::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, rgba(var(--rgb-orange),.95), rgba(var(--rgb-white),.42));
	border: 3px solid rgba(var(--rgb-black),.95);
	border-radius: 999px;
}
body {
	background: var(--color-black);
	opacity: 1;
	transition: 3s opacity;
}
body.fade-out {
	opacity: 0;
	transition: none;
	filter: blur(70px);
}
body.custom-cursor-active {
	cursor: none;
}
body.custom-cursor-active a,
body.custom-cursor-active button,
body.custom-cursor-active input[type="submit"] {
	cursor: none;
}
body.custom-cursor-active input:not([type="submit"]),
body.custom-cursor-active textarea,
body.custom-cursor-active select {
	cursor: text;
}
a {
	font-family: "Milano Sans", sans-serif;
	font-weight: bolder;
	letter-spacing: 4px;
	font-size: 19px;
	color: var(--color-white);
	text-decoration: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 2px solid var(--color-orange);
	outline-offset: 4px;
}
.skip-link {
	position: fixed;
	top: 16px;
	left: 16px;
	padding: 10px 14px;
	color: var(--color-black);
	background: var(--color-white);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-12px);
	transition: opacity .2s ease, transform .2s ease;
	z-index: 10000;
}
.skip-link:focus-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

@media screen and (max-width: 992px) {
	a {
		font-size: 13px;
		letter-spacing: 0;
	}
}









/*------------------title------------------*/
.title {
	font-family: "Milano Sans", sans-serif;
	font-weight: lighter;
	font-size: clamp(28px, 4.4vw, 72px);
	letter-spacing: -.2vw;
	color: var(--color-orange);
	margin: 0;
	padding-bottom: 10px;
	text-align: center;
	text-transform: uppercase;
}
@media screen and (max-width: 992px) {
	.title {
		font-size: clamp(24px, 8vw, 48px);
		letter-spacing: -.4vw;
	}
}
.text {
	font-family: "Milano Sans", sans-serif;
	font-weight: lighter;
	font-size: 19px;
	letter-spacing: 2px;
	color: var(--color-white);
	width: 70%;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 992px) {
	.text {
		font-size: 13px;
		letter-spacing: -.04px;
	}
}




/*------------------home------------------*/
.home {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	text-align: center;
}
.association {
	position: absolute;
	top: calc(50% - 48px);
	left: 1vh;
	text-align: left;
	font-size: 30px;
	letter-spacing: 20px;
	color: var(--color-orange);
	text-transform: uppercase;
	z-index: 1;
}
@media screen and (max-width: 992px) {
	.association {
		top: calc(50% - 36px);
		left: 1vh;
		font-size: 4vw;
		letter-spacing: 2vw;
	}
}
.home_background {
	width: 100%;
	height: 115%;
	max-height: none;
	object-fit: cover;
	position: absolute;
	top: -7.5%;
	left: 0;
	z-index: 0;
}
@media screen and (max-width: 992px) {
	.home_background {
		max-width: 100%;
		height: 115%;
	}
}
.home_title {
	position: absolute;
	font-family: "Milano Sans", sans-serif;
	font-weight: lighter;
	font-size: 6vh;
	letter-spacing: 1vh;
	margin: 0;
	text-transform: uppercase;
	color: var(--color-white);
	top: 50%;
	left: 1vh;
	z-index: 1;
}
@media screen and (max-width: 992px) {
	.home_title {
		font-size: 3.5vh;
		letter-spacing: 8px;
		text-align: left;
	}
}
.sub_title {
	position: relative;
	z-index: 2;
	text-align: center;
	margin: 7vh auto 2vh;
	font-size: 4vh;
	letter-spacing: .2px;
	color: var(--color-orange);
	text-transform: uppercase;
}
@media screen and (max-width: 992px) {
	.sub_title {
		margin: 5vh auto 1.5vh;
		font-size: 2vh;
		letter-spacing: 3px;
	}
}





/*------------------home text------------------*/
.nous_sommes {
	position: relative;
	z-index: 1;
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	padding: 10vh;
	margin-top: 0;
	margin-bottom: 10vh;
    background-color: var(--color-white);
}
@media screen and (max-width: 992px) {
  .nous_sommes  {
	  width: 95%;
	  margin-left: auto;
	  margin-right: auto;
	  margin-top: 0;
	  margin-bottom: 5vh;
	  padding: 20px;
    }
}
.nous_sommes .text {
	font-size: 35px;
	color: var(--color-black);
	text-align: center;

}
@media screen and (max-width: 992px) {
  .nous_sommes .text {
	  font-size: 15px;
	  letter-spacing:-.04px;
	  padding: 1vh;
    }
}





/*------------------solutions------------------*/
.solutions {
    position: relative;
	width: 100%;
 	height: 100vh;
 	overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
@media screen and (max-width: 992px) {
  .solutions {
	  min-height: 100vh;
	  height: auto;
	  margin-top: 2vh;
	  padding-bottom: 5vh;
    }
}
@media screen and (max-width: 992px) {
  .solutions .text{
	  font-size: 13px;
	  width: 95%;
    }
}
.solutions_video {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#solutions_video {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	filter: brightness(1);
}
@media screen and (max-width: 992px) {
  #solutions_video {
	  max-width: 100%;
	  height: 100%;
    }
}







/*-----------------strategie -----------------*/
.strategie {
    position: relative;
    width: 100%;
    height: 100vh;
	padding-top: 10vh;
	padding-bottom: 10vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,.7);
}
@media screen and (max-width: 992px) {
  .strategie {
	  min-height: 100vh;
	  height: auto;
	  padding-top: 5vh;
	  padding-bottom: 5vh;
    }
}
.strategie .text{
    margin-left: auto;
    margin-right: auto;
	flex-direction: column;
    align-items: center;

}

@media screen and (max-width: 992px) {
  .strategie .text{
	  font-size: 13px;
	  width: 95%;
    }
}





/*-----------------discuter-----------------*/
.discuter {
    text-align: center;
    min-width: 100%;
    height: auto;
	padding-top: 10vh;
	padding-bottom: 10vh;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
	background-color: rgba(0,0,0,0.3);
}
@media screen and (max-width: 992px) {
  .discuter {
	  min-height: 100vh;
    }
}
.discuter_background {
	display: block;
	width: min(24.5vw, 609px);
	height: auto;
	margin: 0 auto;
	object-fit: contain;
}
@media screen and (max-width: 992px) {
  .discuter_background{
	  width: min(42vw, 294px);
    }
}
.discuter .text {
    color: var(--color-white);
}
.social {
    padding-top: 5vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
}
.social div {
    display: flex;
    align-items: center;
}
.mail a {
	transition: color 0.2s ease-in-out;
}
.mail a:hover {
	color: var(--color-muted);
}
.whatsapp a,
.youtube a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 7px;
}
.whatsapp img,
.youtube img {
	filter: grayscale(100%);
	transition: filter 0.25s ease;
}
.whatsapp a:hover img,
.youtube a:hover img {
	filter: none;
}
.social img {
	display: block;
	width: auto;
	height: 50px;
	object-fit: contain;
}
@media screen and (max-width: 992px) {
  .social img {
	  height: 20px;
    }
}






/*------------------message------------------*/
.message {
	text-align: center;
    color: var(--color-black);
    width: 100%;
    height: 100vh;
	margin: 5vh;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 992px) {
  .message {
	  min-height: 100vh;
	  height: auto;
	  font-size: 13px;
	  }
}
.message .text {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	width: 80%;
	padding: 5vh;
	color: var(--color-black);
	background-color: rgba(255,255,255,.7);
}
@media screen and (max-width: 992px) {
  .message .text {
	  margin-top: 5vh;
	  font-size: 12px;
	  width: 95%;
	  padding: 3vh;
    }
}
.message_video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
#message_video {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
	filter: brightness(1.4);
    z-index: -1;
}
.message a,
.message .video-link {
    color: var(--color-black);
}
.message a:hover,
.message .video-link:hover {
	color: var(--color-red);
}
.message img {
	display: inline-block;
	width: 20px;
	height: auto;
	margin-left: 5px;
	margin-right: 5px;
	object-fit: contain;
	vertical-align: middle;
}
.message picture {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	padding-bottom: 3px;
	vertical-align: middle;
	line-height: 1;
	overflow: visible;
}
.message span {
	font-size: 12px;
	line-height: 1.6;
}
@media screen and (max-width: 992px) {
  .message span {
	  font-size: 10px;
	  line-height: 1.7;

    }
}
.logo img{
	width: 250px;
	height: auto;
	padding: 3vh;
	object-fit: contain;
}
@media screen and (max-width: 992px) {
  .logo img {
	  width: 100px;
	  height: auto;
	padding: 1vh;
    }
}




/*---------------------------sign---------------------------*/
.sign {
    font-family: "Milano Sans", sans-serif;
    font-size: 24px;
    color: var(--color-charcoal);
    background-color: rgba(255,255,255,0);
    padding: 20px 10% 50px;
    text-align: left;
    line-height: 1;
}
@media (max-width: 992px) {
  .sign{
	  font-size: 16px;
  	  padding: 20px 20px 35px;
	}
}
.sign_link {
	position: relative;
	display: inline-flex;
	padding: 0;
	color: inherit;
	text-decoration: none;
	z-index: 11;
}
.sign_mark {
	display: inline-block;
	font-size: 64px;
	font-weight: 100;
	line-height: 1;
	white-space: nowrap;
}
.sign_hover_card {
	position: absolute;
	left: 0;
	bottom: calc(100% + 16px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: 190px;
	min-height: 190px;
	padding: 16px;
	box-sizing: border-box;
	color: var(--color-white);
	background-color: rgba(15,15,15,.92);
	font-size: 14px;
	line-height: 1.08;
	text-align: left;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(14px) scale(.92);
	transform-origin: bottom left;
	transition: opacity .38s ease, visibility .38s ease, transform .48s ease;
}
.sign_link:hover .sign_hover_card,
.sign_link:focus-visible .sign_hover_card {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}




/*------------------footer------------------*/
.footer {
	text-align: center;
	height: auto;
	width: 100%;
	background-color: var(--color-white);
}
.footer .text {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	text-align: center;
	color: var(--color-orange);
	padding: 10vh;
}
@media screen and (max-width: 992px) {
  .footer .text {
	  width: 100%;
	  padding: 5vh;
    }
}





/*--------------------donation button------------------------*/
.donation {
	font-size: 14px;
    top: 45%;
    transform: translate(0, -50%) rotate(90deg);
    transform-origin: left center;
    text-align: center;
    height: auto;
    width: 180px;
    right: -150px;
    color: var(--color-white);
	background-color: var(--color-orange);
    text-transform: uppercase;
	position: fixed;
	opacity: 0;
	transition: opacity 0.3s ease-in-out, color 0.25s ease, background-color 0.25s ease;
    z-index: 1;
}
.donation:hover {
    color: var(--color-orange);
	background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
    .donation {
		top: 40%;
		width: 160px;
    }
}
.donation.visible {
  opacity: 1;
}




/*-------------------------modal------------------------------*/
.overlayModal {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: opacity .2s;
	visibility: hidden;
	opacity: 0;
	z-index: 999;
	overflow-y: scroll;
	color: var(--color-black);
}
.overlayModal .cancel {
	position: absolute;
	width: 100%;
	height: 100%;
	cursor: default;
}
.overlayModal:target {
	visibility: visible;
	opacity: 1;
}
.modal_text {	
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    margin: auto;
    padding: 4vh 5px 8vh; 
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100vh;
    position: relative;
	color: var(--color-black);
}
.modal_text img {
	text-align: center;
	width: auto;
	height: auto;
	max-width: 100%;
	margin-top: 20px;
	margin-bottom: 18px;
	object-fit: contain;
	box-shadow: 12px 10px 34px -8px rgba(0,0,0,0.85);
}
.donation-qr {
	max-height: min(34vh, 260px);
}
.donation-slip {
	max-height: min(30vh, 220px);
}
@media screen and (max-width: 768px) {
    .modal_text img {
		margin-top: 10px;
		margin-bottom: 10px;
    }

	.donation-qr {
		max-height: 140px;
	}

	.donation-slip {
		max-height: 110px;
	}
}
.modal_text .text {	
	height: auto;
	overflow: auto;
	padding-top: 0;
	padding-bottom: 5vh;
}
.donation-modal-title {
	margin-top: 0;
	margin-bottom: 7vh;
	padding-bottom: 0;
}
.donation-label,
.pdf-help {
	color: var(--color-black);
}
.pdf-help {
	display: block;
	font-size: 50%;
	margin-bottom: 30px;
}
.donation-thanks {
	margin-top: 7vh;
}

@media screen and (max-width: 768px) {
	.modal_text {
		padding-top: 3vh;
	}

	.donation-thanks {
		margin-top: 4vh;
	}

	.donation-modal-title {
		margin-bottom: 4vh;
	}
}

/*--------------modal videos footer-----------------*/
.video-link {
	display: block;
	margin: 20px auto;
	padding: 0;
	border: 0;
	color: inherit;
	background: none;
	font: inherit;
	font-size: 20px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255, 0.9);
	backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    background: none;
}
.modal-content video {
    width: 100%;
    height: auto;
	box-shadow: 0px 0px 64px 10px rgba(0,0,0,0.49);
}





/*--------------btn close--------------*/
.donation-close,
.video-close {
    background-color: rgba(255,255,255,0.00);
    border: 0;
    cursor: pointer;
	width: 65px;
    height: 65px;
	padding: 5px;
	display: inline-block;
    transition: transform 0.4s;
    z-index: 1001;
	text-decoration: none;
}
.donation-close {
	position: absolute;
	top: 20px;
	right: 20px;
}
.video-close {
	position: fixed;
	left: 13px;
	top: 10px;
}
@media (max-width: 768px) {
  .donation-close,
  .video-close {
      top:20px;
      width: 35px;
      height: 35px;
  }
}
.donation-close:hover,
.video-close:hover {
    transform: scale(1.4);
}
.donation-close::before,
.donation-close::after,
.video-close::before,
.video-close::after {
  	content: '';
	position: absolute;
	height: 1px;
	width: 60px;
	top: 50%;
	left: -1%;
	}
@media (max-width: 768px) {
  .donation-close::before,
  .donation-close::after,
  .video-close::before,
  .video-close::after {
      width: 35px;
      height: 0.5px;
	  top: 15px;
  }
}
.donation-close::before,
.video-close::before {
	background:#000000;
    transform: rotate(45deg);
}
.donation-close::after,
.video-close::after {
	background:#000000;
   transform: rotate(-45deg);
}



/*------------------cursor---------------*/
.cursor {
	border: 1px solid;
	color: var(--color-orange);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 9999;
	transition: background-color 0.2s ease, border-color 0.2s ease;
	pointer-events: none;
	will-change: transform, opacity;
}
.cursor.hovered {
	background-color: rgba(247,83,0,.6);
	border: 0;
}
.cursor.hidden {
	opacity: 0 !important;
}
@media (max-width: 992px) {
	.cursor {
		display: none;
	}
}



/*-------------------------message page--------------------------*/
.message_page {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	margin: -30px;
	height: 110%;
	text-align: center;
	background-color: var(--color-white);
}



/*-----------------------------form-----------------------------*/
.form {
	width: 60%;
    margin-left: auto;
    margin-right: auto;
	margin-top: 30px;
}
.honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
@media screen and (max-width: 768px) {
    .form {
 		width: 95%;
	}
}
.submit {	 
	margin-top: 10px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	text-transform: uppercase;
}
input {
	padding: 10px;
	text-align: left;    
    box-sizing: border-box;	
	outline: none;	
}
input[type="submit"] {
	font-family: "Milano Sans", sans-serif;
    font-size: 25px;
	letter-spacing: 10px;
	color: var(--color-white);
	border: 0.5px solid var(--color-white);
	transition: all 0.2s ease-in-out 0.2s;
	display: inline-block;
    width: 100%;
	text-transform: uppercase;
    cursor: pointer;
	background-color: rgba(255,255,255,.00);
}
@media screen and (max-width: 768px) {
    input[type="submit"] {
	  font-size: 13px;
	  padding: 7px;
	}
}
input[type="submit"]:hover {
	color: var(--color-black);
	border-color: rgba(255,255,255,0);
	background-color:var(--color-white);
}
input[type=text],
input[type=email],
input[type=tel],
textarea {
    width: 100%;
    height: 50px;
	padding: 15px;
    resize: vertical;
    font: inherit;
	font-size: 16px;
    border: none;
    color: var(--color-white);
    background-color: rgba(78,78,78,0.2);
}
@media screen and (max-width: 768px) {
	input[type=text],
	input[type=email],
	input[type=tel],
	textarea {
		width: 100%;
		height: 30px;		
		font-size: 13px;
	}
}
.underline::after {
    display: block;
    content: '';
    width: 0;
    height: 6px;
    border-top: solid .05px var(--color-white);
    transition: .2s ease-in;
}
.underline:hover::after,
.underline:focus::after {
    width: 100%;
    border-color: var(--color-white);
}
