@charset "UTF-8";

main {
	min-height: calc(100vh - var(--header-height) - var(--nav-height) - 40px);
	background-image: url('../pictures/logo-short-light-opacity75.png');
	background-size: 1000px;
	background-position: 50% calc(var(--header-height) + var(--nav-height) + 40px);
	background-repeat: no-repeat;
	background-attachment: fixed;
	margin-top: calc(var(--header-height) + var(--nav-height) + 40px);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	letter-spacing: 0.1em;
}

section {
	margin-left: 40px;
	margin-right: 40px;
	margin-top: 20px;
	margin-bottom: 20px;
	max-width: 1100px;
	border: 1px solid var(--color-grey-1);
	border-radius: 20px 70px 5px;
	box-shadow: 5px 5px 5px var(--color-grey-2);
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	transition:all 1s allow-discrete;
}
.whoAmIFirstChoice {
	text-align: center;
}
.whoAmIFirstChoose {
	display: inline-block;
	width: 300px;
	border: 1px solid var(--color-grey-1);
	border-radius: 5px;
	margin: 0 10px;
	padding: 5px 10px;
	font-family: "Mancho";
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
}
#whoAmIFirstChoosePerso {
	background: var(--color-orange2);
}
#whoAmIFirstChoosePro {
	background: var(--color-blue1);
}

.hide {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
	font-size: 0;
	opacity: 0;
	border: none;
	h1 {
		margin: 0;
		padding: 0;
		font-size: 0;
	}
	a { display: none;}
	img {
		display: none;
	}
	span {
		border: none;
		padding: 0;
		font-size: 0;
		margin:  0;
	}
	.innerBox, p, div, ul, span, img, a, h1 {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 0;
		display: none;
	}
}

.rdvDiv {
	position: relative;
	display: inline-block;
}
.tooltip {
	position: absolute;
	z-index: 100;
	width: max-content;
	background: var(--color-grey-1);
	border-radius: 10px;
	padding: 10px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s, visibility 0.2s;
}
.TTT {
	top: 80%;
	left: 50%;
	transform: translateX(-50%);
}
p.rdvLink:hover + div.TTT {
	opacity: 1;
	visibility: visible;
}
@media screen and (max-height: 1200px) {
	main {
		background-size: 900px;
	}
}
@media screen and (max-height: 1100px) {
	main {
		background-size: 800px;
	}
}
@media screen and (max-width: 1000px) {
	main {
		background-size: 900px;
	}
}
@media screen and (max-height: 1000px) {
	main {
		background-size: 700px;
	}
}
@media screen and (max-width: 900px) {
	main {
		background-size: 800px;
	}
	.whoAmIFirstChoose {
		margin: 10px 10px;d
	}
}
@media screen and (max-height: 900px) {
	main {
		background-size: 600px;
	}
}
@media screen and (max-width: 800px) {
	main {
		background-size: 700px;
	}
}
@media screen and (max-height: 800px) {
	main {
		background-size: 500px;
	}
}
@media screen and (max-width: 700px) {
	main {
		background-size: 600px;
	}
	html {
		font-size: 18px;
	}
}
@media screen and (max-height: 700px) {
	main {
		background-size: 400px;
	}
	html {
		font-size: 18px;
	}
}
@media screen and (max-width: 600px) {
	main {
		background-size: 500px;
	}
	html {
		font-size: 16px;
	}
}
@media screen and (max-height: 600px) {
	main {
		background-size: 300px;
	}
	html {
		font-size: 16px;
	}
}
@media screen and (max-width: 500px) {
	main {
		background-size: 400px;
	}
	html {
		font-size: 14px;
	}
}
@media screen and (max-height: 500px) {
	main {
		background-size: 200px;
	}
	html {
		font-size: 14px;
	}
}
@media screen and (max-width: 400px) {
	main {
		background-size: 300px;
	}
	html {
		font-size: 12px;
	}
}
@media screen and (max-height: 400px) {
	main {
		background-size: 200px;
	}
	html {
		font-size: 12px;
	}
}
