@charset "utf-8";
/* CSS Document */

/** ARCHIVE
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-flow: row wrap;
**/

* {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
  }
  
body{
	margin:0px;
	padding:0px;
	font-family:'Source code pro', verdana, calibri, serif, arial, time new roman, Geneva, sans-serif;
	font-size:13px;
	color:#3f3f53;
}

.container-btn-menu{
	position: fixed;
	width: 100px;
	height: 80px;
	top: -40px;
	left: 50%;
	background: rgba(30, 30, 30, 0.6);
	border-radius: 50%;
	box-shadow: 4px 4px 4px #555;
	cursor: pointer;
}

.container-btn-menu:hover{
	
}

.typo-btn-menu{
	text-align: center;
	color: #fff;
	font-family: arial;
	font-size: 24px;
	line-height: 60px;
}
/***************/
.container-content-menu{
	position: fixed;
	top: 80px;
	width: 100%;
	background: rgba(60, 60, 60, 0.8);
	box-shadow: 2px 4px 4px #666;
}

.typo-btn-content-menu{
	position: relative;
	left: 20px;
	display: block;
	margin: 5px 0px;
	padding: 5px 20px;
	text-decoration: none;
	color: #fff;
	font-size: 20px;
	font-family: arial;
}

.typo-btn-content-menu:hover{
	background: #fff;
	color: #666;
	opacity: 0.8;
}

/*****************************/
/*****     MENU OURS     *****/
/*****************************/

.container-ours-prt{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
	align-items: center;
	margin: 0px auto;
	padding: 10px 40px;
	text-align: center;
	background: #000;
}

.container-ours-chld{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	margin: 0px auto;
	padding: 10px 40px;
	text-align: center;
}

.btn-legal{
	margin-right: 10px;
	padding: 5px 10px;
	text-decoration: none;
	font-family: calibri;
	font-size: 15px;
	font-weight: bold;
	color: #eee;
}

.btn-reseau{
	margin-left: 10px;
}

.btn-legal:hover{
	border-radius: 5px;
	color: #666;
}

.btn-reseau:hover{
	box-shadow: 0px 0px 20px #fff;
}

.sign{
	margin-top: 10px;
	text-decoration: none;
	margin: 5px 0px;
	font-family: calibri;
	font-size: 14px;
	color: #fff;
	text-align: center;
}

.sign:hover{
	opacity: 0.6;
}

/**
@media screen and (max-width:780px){
	.menu-mobile{
		display:block;
		color:#FFF;
		background-color:#3f3f53;
		text-align:center;
		padding:12px 0px;
	}
	nav ul{
		display:none;
	}
	nav ul li, nav ul li a{
		width:100%;
		text-align:center;
	}
	nav ul li a, nav ul li:hover a{
		padding:10px 0px;
	}
	nav li:hover .submenu{
		display:block;
		position:static;
	}
}
**/