/* Scss Document */
html {
	scroll-behavior: smooth;
}
@font-face {
	font-family: gothic;
	src:url("/styles/GOTHIC.TTF");	
}
@font-face {
	font-family: gothicBold;
	src:url("/styles/GOTHICB.TTF");	
}
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	background-color: black;
	font-family: gothic;
}
body > .content {
	width: 100%;
	margin: auto;
	transition: width 2s;
}
@media (max-width:479px) {
	body > .content {
		width: 320px;
	}
}
@media (min-width:480px) and (max-width:959px) {
	body > .content {
		width: 640px;
	}
}
@media (min-width:960px) {
	body > .content {
		width: 1280px;
	}	
}

header {
	background-color: #ffef00;
	width: 100%;
	height: auto;
	position: relative;
	overflow: visible;
	z-index: 88;
}

header > .content {
	display: block;
	width: 100%;
	
}
#logo {
	display: block;
	width: 202px;
	transition: margin-left 2s;
	padding: 10px;
}
#logo img {
	width: 100%;
}
@media (max-width:959px) {
	#logo {
		margin-left: auto;
		margin-right: auto;
	}
}
@media (min-width:960px) {
	#logo {
		margin-left: 40px;
		margin-right: auto;
	}
}

#menu {
	font-size: 18px;
}
#menu a {
	text-decoration: none;
	color: black;
}
header ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
header li {
	
}
@media (max-width:959px) {
	#menu > li > #rubrique  {
		display: block;
	}
	#menu > li:hover > #rubrique  {
		display: block;
	}
	#menu > li > a {
		display: none;
	}
	#menu a {
		display: block;
		width: 100%;
		padding: 15px 10px;
		text-align: center;
		background-color: rgba(255,255,255,0.3);
	}
	#menu a:hover {
		background-color: rgba(255,255,255,0.8);
	}
	#menu {
		border: solid 1px rgba(255,255,255,0.5);
		margin: 10px 0;
	}
	#rubrique {
		border-top:  solid 1px rgba(255,255,255,0.5);
	}
}
@media (min-width:960px) {
	header .ombre {
		position: absolute;
		width: 250px;
		height: 50px;
		background-color: #000000;
		border-radius: 25px;
		box-shadow: 0 2px 20px #000000;
		top:48px;
		left: 600px;
		transform: scaleX(2);
	}
	#logo, #menu {
		display: inline-block;
		vertical-align: middle;
	}
	#menu {
		position: relative;
		background-color: #ffef00;
		margin-left: 50px;
	}
	#menu > li > a {
		display: none;
	}
	#rubrique li {
		display: inline-block;		
	}
	#rubrique a {
		display: block;		
		padding: 15px 15px;
	}
	#rubrique a:hover {
		color: white;
		transition: color 0.5s;
	}
	
}


.langue {
	cursor: pointer;
}


@media (min-width:960px) {
	.langue {
		position: relative;		
	}
	.langue > ul {
		position: absolute;
		background-color: #ffff90;
		box-shadow: 0 0 2px 2px #ffef00;
		display: block;
		opacity: 0;
		transition: opacity 0.5s;
		display: none;
	}
	.langue:hover > ul {
		opacity: 1;
		display: block;
	}
	.langue a {
		padding: 2px 5px;
		width: 150px;
		text-align: center;
	}
}


footer {
	background-color: #feed05;
	padding: 50px 0;
}
footer a {
	text-decoration: none;
	color: #000000;
}
footer > p {
	text-align: center;
	margin: 0 auto;
}
footer > p > span {
	font-size: 12px;
}

/*
.test > div {
	width: 250px;
	height: 125px;
	background-color: white;
	border-bottom-left-radius: 250px;
	border-bottom-right-radius: 250px;
	clip-path:inset(100px 0 0 0);
}*/
.viewer-label {
    display:none;
}
