:root {

	--color-red-one: #BE3636;
	--color-red-two: #DF7777;
}

* {
	font-family: 'Oxanium';
	color: white;
	font-weight: 500;
	font-style: normal;
}

html {
	
}

body {
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,1);
	background-image: url('./../src/fond2.jpg');
	background-repeat: no-repeat;
	background-size: 100vw 100vh;
	overflow: hidden;
	text-align: center;
	padding: 0;
	margin: 0;
}

h1 {
	font-size: 1.4em;
	display: inline-block;
	padding: 0;
	margin: 0 auto;
	text-align: left;
	width: 98%;
	text-shadow: 0 0 3px #A51717, 0 0 9px #BE3636, 0 0 18px #DF7777;
	margin-top: .5em;
	border-bottom: dotted 2px #BE3636;
}

h2 {
	font-size: 1.0em;
	font-style: italic;
	text-indent: 20px;
	display: inline-block;
	width: 100%;
	margin: 0;
	padding: 0;
	background: rgba(255,255,255,.9);
	background: linear-gradient(90deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.9) 25%, rgba(255,255,255,0) 100%);
	color: red;
	font-variant: small-caps;
	font-weight: 700;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

h3 {
	font-size: .7em;
}

h4 {
	font-size: .7em;
	text-align: justify;
}

/* Scrollbar */

	/* width */
	::-webkit-scrollbar {
		width: 7px;
	}

	/* Track */
	::-webkit-scrollbar-track {
		background: rgba(0,0,0,0);
	}

	/* Handle */
	::-webkit-scrollbar-thumb {
		background: var(--color-red-one);
		border-radius: 7px;
	}

	/* Handle on hover */
	::-webkit-scrollbar-thumb:hover {
		background: var(--color-red-two);
	}

/* --- */

	#corps {
		display: inline-block;
		margin: 0 auto;
		width: 75vw;
		height: 95vh;
		background: rgba(0,0,0,.9);
		border: solid 1px #660000;
		border-radius: 15px;
		padding: 0;
		margin-top: 2.5vh;
		box-shadow: 0 0 5px #A20D0D;
		box-shadow: 0 0 25px #DE6161;
	}

		#menu {
			width: 100%;
			font-size: 1.3em;
			padding-top: 1vh;
		}

			#menu .boutons_menu {
				display: inline-block;
				border: solid 1px #660000;
				border-radius: 7px;
				box-shadow: 0 0 3px #A20D0D;
				box-shadow: 0 0 10px #DE6161;
				width: 12vw;
				cursor: pointer;
				transition: 0.2s;
				font-variant: small-caps;
				text-decoration: none;
				color: white;
				background: #000;
				padding: .5vh 0 .3vh 0 ;
			}

				#menu .boutons_menu:hover {
					box-shadow: 0 0 3px #A20D0D;
					box-shadow: 0 0 25px #DE6161;
				}

			#menu .espace_menu {
				display: inline-block;
				width: 2vw;
				font-size: 0;
			}

		#content {
			display: inline-block;
			width: 100%;
			height: 93%;
			position: relative;
			top: 1vh;
			padding: 0;
		}

			#content #variable {
				display: inline-block;
				width: 69%;
				height: 100%;
				position: absolute;
				top: 0;
				left: 0;
				margin: 0;
				padding: 0 10px;
				font-size: 1.4em;
				text-align: left;
				overflow-y: auto;
				overflow-x: hidden;
			}

				#content #variable p {
					text-align: justify;
				}

				#content #variable a, #content #variable a:visited {
					color: white;
					text-decoration: underline;
					text-shadow: 0 0 3px #A51717, 0 0 9px #BE3636, 0 0 18px #DF7777;
				}

				#content #variable #image_container {
					width: 100%;
					text-align: center;
				}

				#content #variable #image_container #image_container_active {
					max-width: 90%;
					border-radius: 3%;
					box-shadow: 0 0 3px #A20D0D;
					box-shadow: 0 0 10px #DE6161;
				}

				#content #variable #image_container #image_container_mini {
					width: 90%;
					height: 43px;
					vertical-align: middle;
					max-width: 100%;
					overflow-x: auto;
					overflow-y: hidden;
					text-align: center;
					background: linear-gradient(90deg, rgba(0,0,0,0) 10%, rgba(255,255,255,.6) 50%, rgba(0,0,0,0) 90%);
					margin: 0 auto;
				}

					#content #variable #image_container #image_container_mini .mini_img {
						width: 35px;
						height: 35px;
						margin: 0 5px;
						margin-top: 4px;
						cursor: pointer;
						border-radius: 3%;
						box-shadow: 0 0 3px rgba(255,0,0,.6);
					}

					#content #variable #image_container #image_container_mini .mini_img:hover {
						box-shadow: 0 0 3px rgba(255,255,255,.6);
					}

				#content #variable .table_prestations {
					width: 100%;
				}

					#content #variable .table_prestations td {
						width: 50%;
					}

						#content #variable .table_prestations td ul {
							list-style-type: none;
							font-size: .8em;
						}

							#content #variable .table_prestations td ul li::before {
								content: "> ";
								color: red;
							}

				#content #variable #contact_form {
					padding: 5px;
					text-align: center;
				}

					#content #variable #contact_form input {
						width: 30%;
						height: 2em;
						border-radius: 7px;
						outline: none;
						border: solid 1px rgba(0,0,0,.3);
						font-size: .9em;
						margin-bottom: 2px;
						text-indent: 2px;
						color: #555;
					}

					#content #variable #contact_form input:focus {
						border: solid 1px rgba(255,0,0,.8);
					}

				#content #variable #contact_message {
					padding: 5px;
					text-align: center;
				}

					#content #variable #contact_message textarea {
						color: #555;
						font-size: .8em;
						border-radius: 7px;
						outline: none;
						border: solid 1px rgba(0,0,0,.3);
						resize: none;
					}

					#content #variable #contact_message textarea:focus {
						border: solid 1px rgba(255,0,0,.8);
					}

					#content #variable #loi_info_libertes {
						display: inline-block;
						width: 66%;
						margin: 0 auto;
						font-size: .65em;
						text-align: justify;
					}

				#content #variable #contact_message button {
					color: white;
					background: black;
					border: solid 1px #660000;
					border-radius: 7px;
					box-shadow: 0 0 3px #A20D0D;
					box-shadow: 0 0 10px #DE6161;
					font-size: 1em;
					padding: 0 20px;
					margin: 0 10px;
					margin-bottom: 10px;
					cursor: pointer;
				}

					#content #variable #contact_message button:hover {
						border: solid 1px #662222;
						box-shadow: 0 0 3px #A32C2C;
						box-shadow: 0 0 5px #DF9999;
					}

					#content #variable #contact_message button:active {
						border: solid 1px #662222;
						box-shadow: 0 0 3px #A32C2C;
						box-shadow: 0 0 10px #DF9999;
					}

				#content #variable #contact_message #divCaptcha {
					padding: 0;
					margin: 0;
					height: 10px;
				}

				#content #variable #contact_message #divCaptcha #captchaResponse {
					width: 260px;
					text-align: center;
					font-size: .7em;
					color: #555;
					border-radius: 7px;
					outline: none;
					border: solid 1px rgba(0,0,0,.3);
				}

				#content #variable #contact_message #divCaptcha #captchaResponse:focus {
					border: solid 1px rgba(255,0,0,.8);
				}

				input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { /* Chrome, Safari, Edge, Opera */
				  -webkit-appearance: none;
				  margin: 0;
				}

				input[type=number] { /* Firefox */
				  -moz-appearance: textfield;
				}

				#content #variable .texte_mentions_legales {
					font-size: .7em;
					width: 95%;
				}

				#content #variable .h2_mentions_legales {
					width: 95;
				}

			#content #fixe {
				display: inline-block;
				width: 30%;
				height: 100%;
				position: absolute;
				top: 0;
				left: 70%;
				border: none;
				margin: 0;
			}

				#content #fixe #adresse {
					display: block;
					text-align: center;
					width: 100%;
					margin: 0 auto;
					font-size: 1.5em;
					margin-top: 2.5em;
					margin-bottom: 2em;
				}

					#content #fixe #adresse #entete {
						font-size: 2.5em;
						text-shadow: 0 0 3px #A51717, 0 0 9px #BE3636, 0 0 18px #DF7777;
					}

				#content #fixe #lien_contact {
					text-decoration: none;
					font-style: italic;
					font-variant: small-caps;
					font-size: 2em;
					color: white;
					background: #000;
					border: solid 1px #660000;
					border-radius: 7px;
					box-shadow: 0 0 3px #A20D0D;
					box-shadow: 0 0 10px #DE6161;
					padding: 1vh 2vh;
					transition: 0.2s;
				}

					#content #fixe #lien_contact:hover {
						box-shadow: 0 0 3px #A20D0D;
						box-shadow: 0 0 25px #DE6161;
					}

				#content #fixe #web_images {
					margin-top: 3em;
				}

					#content #fixe #web_images img {
						max-width: 90%;
						border-radius: 3%;
						box-shadow: 0 0 3px #A20D0D;
						box-shadow: 0 0 10px #DE6161;
					}

						#content #fixe #web_images img:nth-child(2), #content #fixe #web_images img:nth-child(3), #content #fixe #web_images img:nth-child(4) {
							display: none;
						}

				#content #fixe #informations {
					position: absolute;
					bottom: 0;
					width: 100%;
				}