@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;400;700;800&display=swap');

:root{
	--color: #343434;
	--background: #1e4351;
	--primary: #db674a;
}

html, body{
	margin: 0;
	padding: 0;
	font-family: 'Raleway', sans-serif;
	color: #FFF;
	background: var(--background);
}

.background_icon{
	position: fixed;
	top: 0;
	z-index: 1;
}

a{
	color: #000;
}

small{
	font-size: 12px;
	vertical-align: top;
}

#principal{
	z-index: 2;
	position: relative;
}

header{
	display: flex;
	align-items: center;
	justify-content: center;
}

header img{
	width: 100%;
}

.header__body, .header__logo{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 20px;
	margin: 20px 0;
}

.header__body h1{
	margin-top: 48px;
	margin-bottom: 0;
}

.header__body h2{
	margin: 0;
	font-size: 16px;
}

.menu ul{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	list-style-type: none;
}

.menu ul a{
	display: block;
	margin: 0px 0px;
	padding: 0px 20px;
	line-height: 40px;
	position: relative;
	transition: .3s;
	color: #FFF;
	text-decoration: none;
	white-space: nowrap;
}

.menu ul a:before{
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	transition: .3s;
	border-bottom: 4px solid;
}

.menu ul a:hover:before{
	width: 100%;
}

.container, .container img{
	max-width: 1100px;
	width: 100%;
	margin: auto;
	text-align: center;
}

.container a:hover{
	color: grey;
	transition: .2s;
}


.grid{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	grid-gap: 25px;
}

.card{
	border: 1px solid;
	border-radius: 4px;
	padding: 10px;
	color: var(--color);
	background: #FFF;
	box-shadow: 9px 16px 15px rgba(0,0,0,.1), 3px 3px 0 rgba(0,0,0,.1);
}

.card-full{
	grid-column-end: span 2;
}

.card li, .actucard li{
	list-style-type: square;
	text-align: left;
}

.card hr{
	width: 90%;
	border-color: var(--color);
}

a.card{
	text-decoration: none;
}

.card .images{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 10px;
}

.images img{
	width: auto;
	height: var(--grid_img);
	margin: 4px;
}






.puces{
	margin: 0;
	padding: 0;
}

.puces li{
	list-style: none;
	display: grid;
	grid-template-columns: 24px 1fr;
	text-align: left;
}

.puces li::before{
	content: '';
	background-color: red;
	mask-image: url("images/puces.svg");
	-webkit-mask-image: url("images/puces.svg");
	display: flex;
	align-items: center;
	width: 16px;
	height: 16px;
}





.table{
	margin: auto;
	border: 1px solid;
	border-collapse: collapse;
	text-align: center;
}

.table th{
	background: #000;
	border: 1px solid;
	padding: 10px;
}

.table td{
	border: 1px dashed;
	padding: 10px;
	vertical-align: top;
}




.card-click{
	border: 5px solid;
}

.actucard{
	position: relative;
	height: 306px;
}

.card-inversed{
	display: inline-flex;
	text-align: left;
	border: 4px solid var(--background);
	padding: 10px;
	margin-bottom: 30px;
}

.actucard li{
	margin-left: -28px;
	margin-bottom: 5px;
	padding-bottom: 5px;
	border-bottom: 1px dashed #000;
}

.actucard li:first-child{
	padding-top: 5px;
	border-top: 1px dashed #000;
}

.actucard a{
	text-decoration: none;
	color: #FFF;
}

.actucard__body{
	text-align: left;
	position: absolute;
	left: 0;
	top: 0;
	background: rgb(21 12 0 / 0.8);
	padding: 8px 18px;
	height: 100%;
	overflow: hidden;
	animation: test 1s ease;
	box-sizing: border-box;
}

@keyframes test{
	0%{
		height: 0;
		 /*transform: scaleY(0); */
	}
	100%{
		height: 100%;
		/* transform: scaleY(1); */
	}
}

.imgfirst img{
	object-fit: contain;
	max-height: 250px;
	width: auto;
	margin: 10px;
}

.imgfirst__right{
	flex-direction: row-reverse;
}

.imgfirst{
	display: flex;
	align-items: center;
	justify-content: center;
}

.inline{
	display: inline-block;
}

.flex{
	display: flex;
	align-items: center;
	justify-content: center;
}

.center{
	text-align: center;
}

.justify{
	text-align: justify;
}

.margin{
	margin: 30px;
}

.mb{
	margin-bottom: 10px!important;
}

.nomargin{
	margin: 5px;
}

.padding{
	padding: 20px;
}

.hidden{
	display: none;
}

label.checkbox{
	display: block;
}

.immersions{
	display: inline-flex;
	margin-top: 10px;
	padding-top: 30px;
	border-top: 1px solid #000;
}

.immersions table{
	margin-bottom: 20px;
}

.immersions input[type=date], .immersions select{
	width: 150px;
	box-sizing: border-box;
}

input[type=submit], .btn{
	background: #e0e0e0;
	min-width: 125px;
	padding: 10px;
	border: 0;
	transition: 0.3s;
	font: inherit;
	cursor: pointer;
}

input[type=submit]:hover, .btn:hover{
	background: #b5b5b5;
}

form.contact{
	display: flex;
	justify-content: center;
}

.btn-big{
	text-decoration: none;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 2px solid var(--color);
	border-radius: 30px;
	padding: 10px 80px;
	margin-bottom: 20px;
	color: var(--color);
	background: #FFF;
	transition: .3s;
	box-shadow: 9px 16px 15px rgba(0,0,0,.1), 3px 3px 0 rgba(0,0,0,.1);
}

.btn-big .title{
	font-size: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.btn-big svg{
	width: 80px;
	height: 80px;
}

.btn-big:hover{
	background: var(--color);
	color: #FFF!important;
}

.contact__body label{
	display: block;
	margin-top: 10px;
}

.contact__body input[type=text], .contact__body textarea{
	display: block;
	text-align: left;
	width: 500px;
	border-radius: 4px;
	border: 1px solid #ccc;
	padding: 6px 12px;
	margin-top: 4px;
	box-sizing: border-box;
}

select{
	padding: 2px 4px;
	width: 100%;
}

.youtube iframe{
	width: 100%;
	height: 300px;
}

footer{
	margin-top: 50px;
	background: var(--color);
	color: #FFF;
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer a{
	/*display: flex;*/
	align-items: center;
	color: #FFF;
	text-decoration: none;
}

.footer:nth-child(1){
	margin-right: 200px;
}

.footer:nth-child(2){
	margin-left: 200px;
}

.footer svg{
	width: 30px;
	margin-right: 10px;
	transition: .3s;
}

.footer svg:hover{
	transform: scale(1.4);
}



.youtube{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	height: 300px;
}

.youtube img{
	position: absolute;
}

.youtube .icon{
	width: 80px;
	z-index: 3;
}

.disciplines{
	display: flex;
	justify-content: center;
	border-collapse: collapse;
	padding-bottom: 10px;
}

.disciplines th, .disciplines td{
	border: 1px solid;
	padding: 6px;
}

.disciplines tr:nth-child(2n+1){
	background: #e0e0e0;
}



.resultats{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}



@keyframes progress {
	0% {
		stroke-dasharray: 0 100;
	}
}

.circle-svg {
	display: block;
	margin: 10px auto;
	max-height: 100px;
}

.circle-svg text {
	text-align:center;
	color:black;
	font-size:10px
}

.circle-svg path.percent {
	stroke: #6f6fff;
	fill: none;
	stroke-width: 2.8;
	// stroke-linecap: round;
	animation: progress 1s ease-out forwards;
}

.circle-svg path.around {
	stroke: #c4c4c4;
	fill: none;
	stroke-width: 2.8;
}




.menu-mobile{
	display: none!important;
}

@media only screen and (max-width: 1150px){
	
	section{
		padding: 15px;
	}
	
	.actucard{
		height: auto;
	}
	
	.actucard__body{
		display: none;
	}
	
	.footer{
		margin: 0 100px!important;
	}

}

@media only screen and (max-width: 890px){
	
	.header__logo{
		display: none;
	}
	
	.card-full{
		grid-column-end: auto;
	}
	
	.youtube{
		max-width: 500px;
		width: 100%;
		margin: auto;
	}
	
	.footer{
		margin: 0 50px!important;
	}
	
	.immersions{
		display: block;
	}

}

@media only screen and (max-width: 700px){
	
	.hidden-mobile, .imgfirst img{
		display: none;
	}
	
	.break{
		display: block;
	}
	
	.header__body{
		text-align: center;
	}
	
	.header__body h1{
		margin-top: 0;
	}
	
	.menu{
		border: 2px solid;
		margin-top: 20px;
		padding: 2px 20px;
	}
	
	.menu ul{
		display: none;
	}
	
	.menu li{
		float: none;
		display: block;
	}
	
	.menu-mobile{
		display: flex!important;
		justify-content: center;
		-ms-align-items: center;
		align-items: center;
		color: #FFF;
		cursor: pointer;
		padding: 2px 20px;
	}
	
	.menu-mobile span{
		margin-left: 10px;
	}
	
	.grid{
		display: flex;
		flex-direction: column;
		grid-gap: 0!important;
	}
	
	.card{
		margin-bottom: 25px;
	}
	
	.images img{
		max-width: 100%;
	}
	
	footer{
		text-align: center;
		display: flex;
		flex-direction: column;
	}
	
	.footer{
		margin: 4px!important;
	}
	
	.contact__body input[type=text], .contact__body textarea{
		width: 100%;
	}

}


@media screen and (-webkit-min-device-pixel-ratio:0) {

	.background_icon{
		animation: none!important;
	}
	
}
