@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root{
	--color: #343434;
	--background: #1e4351;
}

*{
	box-sizing: border-box;
}

html, body{
	margin: 0;
	padding: 0;
	font-family: "Montserrat", sans-serif;
	font-variant-numeric: lining-nums tabular-nums;
	color: #FFF;
	background: var(--background);
	text-align: center;
}

.background_icon{
	position: fixed;
	top: 0;
	z-index: 1;
}

a{
	color: #FFF;
}

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: 60px;
	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;
	text-align: left;
	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{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.card-click{
	border: 5px solid;
}



.grille{
	border-collapse:collapse;
}

.grille th{
	background: #e4b000;
}

.grille th, .grille td{
	border:1px solid;
	padding:6px;
	min-width:20px;
}







.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;
}





.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;
}

.images img{
	width: auto;
	max-height: var(--grid_img);
}

.inline{
	display: inline-block;
}

.flex{
	display: flex;
	align-items: center;
	justify-content: center;
}

.green{
	color: #99ff99;
}

.border{
	border: 1px solid;
	padding: 8px;
	margin: 16px auto;
}

.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;
}

select{
	padding: 4px;
	border-radius: 10px;
}





input[type=submit], .btn{
	background: #FFF;
	color: #000;
	min-width: 125px;
	padding: 10px;
	border: 0;
	transition: 0.3s;
	font: inherit;
	cursor: pointer;
	-webkit-appearance: none;
}

input[type=submit]:hover, .btn:hover{
	background: #b5b5b5;
}

form.contact{
	display: flex;
	justify-content: center;
}


a.btn{
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: #000;
}



.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;
}





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;
}






.inputFile{
	display: none;
}

.file-select-button{
	border: 1px solid;
	border-radius: 10px;
	padding: 4px 14px;
	cursor: pointer;
}

.btn-small + .file-select-button{
	padding: 0 8px;
}

.file-select-button:hover{
	background: #dadada;
}

.file-select-name{
	display: block;
	margin-top: 16px;
}










.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__body{
		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;
	}
	
}
