/*définition des éléments de la page*/
@font-face
{
	font-family: "CaviarDreams";
	src: url("Police/CaviarDreams.ttf") format("truetype"),
		url("Police/CaviarDreams.woff") format("woff"),
		url("Police/CaviarDreams.woff2") format("woff2");
}

/*Les éléments du menu*/
.kossi
{
    display:flex;
	flex-direction:space-around;
    background-color:white;
	border-bottom:1px solid white;
    box-shadow:2px 3px 4px gray;
}
nav
{
	margin:0em auto;
	width:100%;
	background-color:white;
	position:sticky;
	top:0em;
}
nav ul
{
	list-style-type:none;
}
nav ul li
{
	float:left;
	width:75%;
	text-align:center;
	position:relative;
}
nav ul::after
{
	content:"";
	display:table;
	clear:both;
}
nav a
{
	display:block;
	text-decoration:none;
	color:black;
	border-bottom:2px solid transparent;
	padding:10px 0px;
}
nav a:hover
{
    color:orange;
	border-bottom:2px solid gold;	
}
.sous
{
	display: none;
	box-shadow:0px 1 px 2 px #CCC;
	background-color: white;
	
}
.sous1
{
	display: none;
	box-shadow:0px 1 px 2 px #CCC;
	background-color: white;
	
}
nav > ul li:hover .sous
{
	display:block;
	background-color:#f1f1f1;
}
nav > ul li:hover .sous1
{
	display:block;
	background-color:white;
}
.sous li
{
	float:none;
	width:100%;
	text-align:left;
}
.sous1 li
{
	float:none;
	width:100%;
	text-align:left;
}

.sous a
{
	padding:10px;
	border-bottom:none;
}
.sous a:hover
{
	border-bottom:none;
	background-color:rgba( 200,200,200,0.1);
	color:red;
}
.sous1 a:hover
{
	border-bottom:none;
	background-color:rgba( 200,200,200,0.1);
	color:blue;
}
.deroulant
{
	content:"";
	font-size:12px;
	text-align:center;
}
.sous
{
	display:none;
	box-shadow:0px 1px 2px #CCC;
	background-color:white;
	width:100%;
	z-index:1000;
}
.sous1
{
	display:none;
	box-shadow:0px 1px 2px #CCC;
	background-color:white;
	width:100%;
	z-index:1000;
}

/*menu logo*/
nav img
{
	width:135px;
	height:60px;

}