@charset "utf-8";

*, ::before, ::after {
	box-sizing: border-box;
}

body {
	padding: 0;
	margin: 5vh auto;
	width: 93vw;
	height:auto;
	color: #444;
	font-size: 2.5vmax;
	line-height: 3vmax;
	scroll-behavior: smooth; /* Un peu de douceur dans ce monde de brutes */
	overflow-x: hidden;
	font-family: 'Nunito', Verdana, sans-serif;
	display: flex;
	flex-direction: column;
	background: #d6d6d6;
}

#app {overflow-x: hidden;}
#page-container {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	background: #fff;
	box-shadow: -30px 30px 8px -18px #bbb;
}

header#main-header {
	width: 100%;
	min-height: 40vh;
	background: url('../topo-jaune.svg'), url('../img/abstract.jpg'), linear-gradient(to right,rgba(30, 75, 115, 1),rgba(0, 0, 0, .8));
	background-position-x: 0%, 0%, 0%;
	background-position-y: 0%, 0%, 0%;
	background-repeat: repeat, repeat, repeat;
	background-size: auto, auto, auto;
	background-position: left, center;
	background-repeat: no-repeat, no-repeat;
	background-size: cover, cover;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-bottom: 1em;
}

#page-container .navbar {
	width: 80vw;
	margin: auto;
	padding: 5em 0 1em 0;
}

.base-page header {
	margin-bottom: 2em;
	border-bottom: 1px solid #ccc;
	width: 100%;
}

body main {
	min-height: 60vh;
	display: flex;
	flex-direction: column;
	margin: 2em auto;
}

body #header {
	background:#333;
	color:#f1f1f1;
	display: flex;
	flex-direction: column;
	height: auto;
}

section {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

article {
	width: 100%;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	padding: 1em;
	margin: 2em 0;
}


a {
	color: #17e6b6;
	text-decoration: none;
	background-color: transparent;
	text-decoration: underline;
}
a:hover, a:visited:hover {
	color: #02ffac;
	text-decoration: none;
}
a:visited {
	color: #02ffac;
}
section a {
	color: #b21aff;
}
section a:visited {
	color: #b22bff;
}
h1 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	margin-bottom: 1em;
	color: #444;
	letter-spacing: normal;
}
#main-header h1 {
	color: #FCE4EC;
	letter-spacing: .2em;
	font-size: 6vmax;
	line-height: 10vmax;
}
h2, h3 {
	font-family: 'Montserrat', sans-serif;
	color: rgb(68, 68, 68);
	font-weight: 300;
}


.text-primary {
	color: #3490dc;
	font-size: 3vmax;
}


.btn {
	color: #fff;
	font-weight: 400;
	border: 0;
	font-family: inherit;
	width: auto;
	display: inline-block;
	padding: .3em 2em;
	line-height: 2em;
	text-align: center;
	margin-bottom: .5em;
	margin-right: .2em;
	max-width: 300px;
	border-radius: 0;
	font-size: inherit;
	text-decoration: none;
	background: linear-gradient(222deg, #6534ff, #d30fff);
	background-size: 400% 400%;
	animation: 22s ease infinite;
}
input.btn, button.btn {
	cursor: pointer;
}
a.btn:visited {
	color: #fff;
}
a.btn:hover {
	color: #02ffac;

}
.btn-link, a.btn:visited {
	background: transparent;
	text-decoration: underline;
}
a.btn-link:visited {
	color: inherit;
}
a.btn-link:hover {
	color:inherit;
	text-decoration: none;
}
a.btn-danger:hover {
	color:red;
}
.list-btn {
	list-style: none;
	padding-left: 0;
	display: flex;
	flex-direction: column;
	margin-top: 1em;
}
.list-btn li {
	margin-right: 0;
	margin-top: 1em;
}

section.base-page {
	width: 80vw;
	margin: 0 auto;
	flex-direction: column;
}

section.duo {
	flex-direction: column;
}
section.duo aside {
	width: 100%;
}
section.duo article {
	padding: 0;
	margin: 0;
}
section.form-center {
	width: 80vw;
	flex-direction: column;
	margin: auto;
}


/* FORM */
form {
	margin: 1em 0;
}
form.form-column {
	display: flex;
	flex-direction: column;
}
.form-inline .form-group {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	min-width: 100%;
}
.form-inline {
	display: flex;
	justify-content: flex-start;
	flex-flow: row wrap;
	align-items: baseline;
}

/* Table */
.table {
	width: 100%;
	margin-bottom: .8em;
	color: inherit;
}
table {
	border-collapse: collapse;
}
.table th, .table td {
	padding: .4em;
	vertical-align: top;
	border-top: 1px solid #dee2e6;
}
.table form {
	margin: 0;
}



.form-buttons {
	margin-top: 1em;
}
.form-control {
	margin-bottom: 1em;
	font-size: inherit;
	line-height: inherit;
	border:none;
	width: auto;
	height: auto;
	padding:0;
}
.form-check {
	padding-left: 0;
	margin-top: 1em;
}
select {
	word-wrap: normal;
	margin-bottom: 2em;
	border: 0;
	outline: none;
}
label {
	margin-bottom: 0;
}
input, button, input[type="file"] {
	outline: none;
}
input[type="submit"], input[type="file"] {
	cursor: pointer;
}
input[type="submit"]:hover, input[type="file"]:hover {
	background: #01bfb2;
	color: #fff;
}
input {
	border: none;
}
textarea {
	border: 1px solid #ccc;
}
input, textarea, select {
	border-bottom: 2px solid #01bfb2;
	width: 90%;
	font-family: 'Nunito Sans', Verdana, sans-serif;
	color: #333;
	font-size: inherit;
	margin-bottom: 2em;
	box-sizing: border-box;
}
input:focus:invalid {
	outline: none;
	box-shadow: 1px 2px 2px red;
}
.hidden {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	width: 1px;
}
.checkbox {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-content: baseline;
	align-items: baseline;
}
.checkbox input {
	width: auto;
}



#mapid {
	height: 300px;
}


/* Fil d'ariane */
#breadcrumb {
	padding-left: 1.5em;
	background-color: #333;
	/* display: none; */
}
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	padding: 1em 0;
	list-style: none;
	border-radius: 0;
	margin-bottom: 0;
	background: #333;
	line-height: 2em;
}
ol, ul, dl {
	margin-top: 0;
}
.breadcrumb-item + .breadcrumb-item {
	padding-left: .5em;
}
.breadcrumb-item + .breadcrumb-item::before {
	display: inline-block;
	padding-right: .5em;
}
li.breadcrumb-item + .breadcrumb-item::before {
	color:  #ccc;
	content: ">";
}
li.breadcrumb-item:last-child {
	display: none;
}


.notification {
	width: 100%;
	padding: .5em 1em;
	border-left: 4px solid #F86A53;
	margin: 1em 0;
}
.is-success {
	background: #9C21FF;
	color: #fff;
}


ul.pagination {
	margin: 1em 0;
	list-style: none;
	padding-left: 0;
	display: flex;
}
ul.pagination li {
	margin: 0;
	background: #444;
}
ul.pagination li:hover {
	background: #333;
}
ul.pagination li.active {
	background: #20d8ac;
	color:#fff;
}
ul.pagination li a {
	padding: 1em 2em;
}
ul.pagination li a:visited {
	color:#fff;
}
.page-item.disabled .page-link {
	color: #fff;
	pointer-events: none;
	cursor: auto;
	background-color:transparent;
	border-color:transparent;
}
.page-item.active .page-link {
	z-index: 3;
	color: #fff;
	background-color:transparent;
	border-color:  transparent;
}
.page-link {
	position: relative;
	display: block;
	padding: 1em;
	margin-left: -1px;
	line-height: 1.25;
	color: #3490dc;
	background-color: transparent;
	border: 0;
	border-top-color: currentcolor;
	border-right-color: currentcolor;
	border-bottom-color: currentcolor;
	border-left-color: currentcolor;
}
.page-link:hover {
	z-index: 2;
	background-color: transparent;
	border-color: transparent;
}



/* Main navigation */
.navbar ul li a {
	color: #00ffdb;
}
#main-header h1 a {
	color: #FCE4EC;
}
.navbar {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.navbar ul {
	list-style: none;
	padding-left: 0;
	color:
	#00ffdb;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}
.navbar ul li, .navbar ul li {
	position: relative;
	text-align: center;
	margin: .3em 0;
	line-height: 6vmax;
}
.navbar ul::after, .navbar ul::after {
	content: "";
	display: table;
	clear: both;
}
.navbar span.label_menu, .navbar span.label_menu {
	display: block;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	padding: 10px 0px;
}
.navbar .sous {
	display: none;
	position: relative;
	width: 100%;
	z-index: 9999;
}
.navbar > ul li:hover .sous {
	display: block;
}
.sous li{
	float: none;
	width: 100%;
	text-align: left;
}
.sous a{
	border-bottom: none;
}
.sous a:hover{
	border-bottom: none;
}
.deroulant > span.label_menu::after {
	content:" ▼";
	font-size: 12px;
}

/* Navigation footer - mentions légales */
footer {
	padding: 1em 2em 1em 1em;
	background: #333;
	color: #ffffff;
}
footer a {
	/* color: #ffffff; */
}
footer a:visited {
	/* color: #e1e1e1; */
}
footer nav#legal ul {
	list-style: none;
	padding-left: 1em;
	line-height: 2.5em;
}




/* ********************

RESPONSIVE

******************** */
@media (orientation: landscape) and (min-width: 960px) {
	/* Tablet */
	body {
		font-size: 1.5vmax;
		line-height: 2vmax;
	}
	body main {
		margin: 3em auto;
	}
	body, .navbar-brand {
		font-size: 1.2vmax;
	}
	section {
		flex-direction: row;
		justify-content: space-around;
	}
	section.base-page {
		width: 80vw;
	}
	section.duo aside {
		width: 40%;
	}
	section.duo {
		flex-direction: row;
	}
	#main-header h1 {
		font-size: 4vmax;
		line-height: 8vmax;
	}
	article {
		width: 40%;
	}
	.form-inline .form-group {
		min-width: 30vw;
	}
	.list-btn {
		flex-direction: row;
		align-items: center;
	}
	.list-btn li {
		margin-right: 1em;
		margin-top:0;
	}
	/* Fil d'ariane */
	#breadcrumb  {
		display: block;
		background-color: #333;
	}
	#breadcrumb ol {
		flex-direction: row;
		padding-left: 4.5em;
	}
	#breadcrumb li:first-child::before {
		content: "";
		margin: 0;
	}
	li.breadcrumb-item:last-child {
		color: #ccc;
		display: block;
	}

	.navbar ul {
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: center;
	}
	.navbar li {
		width: auto;
		padding: 0 1em;
	}
	.navbar li span {
		display:inline-block;
	}
	/* Main navigation */
	.navbar .sous {
		display: flex;
		align-items: baseline;
	}
	.navbar > ul li:hover .sous {
		display: flex;
	}
	.navbar ul li {
		margin: .2em 0;
		line-height: inherit;
	}
	.navbar span.label_menu, .navbar span.label_menu {
		display: none;
	}
	section.form-center {
		width: 30vw;
	}
	.text-primary {
		font-size: inherit;
	}
	/* Navigation footer - mentions légales */
	footer {
		padding: 1em 2em 1em 1em;
	}
	footer nav#legal {
		width: 80vw;
		margin: auto;
	}
	footer nav#legal ul {
		padding-left: 0;
		line-height: 1.5em;
	}
}


@media (max-width: 959px) {
	.table thead {
		display: none;
	}
	.table tr{
		display: block;
		margin-bottom: 40px;
	}
	.table td {
		display: block;
	}

	.table td:before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
	}
	.table th, .table td {
		/* border-top: 0; */
	}
}


@media (orientation: landscape) and (min-width: 480px) and (max-width: 959px) {
	/* Tablet */
	section.base-page {
		width: 70vw;
	}
	#breadcrumb  {
		display: block;
	}
	.text-primary {
		font-size: inherit;
	}
}

@media (orientation: portrait) and (min-width: 480px) and (max-width: 959px) {
	/* Tablet */
	body, .navbar-brand {
		font-size: 2vmax;
	}
	#breadcrumb  {
		display: block;
		padding-left: 3em;
		font-size: 1.5vmax;
	}
	.form-inline .form-group {
		min-width: 100%;
	}
	.list-btn {
		flex-direction: row;
		align-items: baseline;
	}
	.text-primary {
		font-size: inherit;
	}
}


@media (min-width: 960px) and (max-width: 1279px) {
	/* Tablet and small screen */
	body {
		width: 80vw;
		font-size: 1.5vmax;
		line-height: 2vmax;
	}
	#page-container .navbar {
		width: 60vw;
		margin: auto;
		padding: 5em 0 1em 0;
	}
	section.base-page {
		width: 60vw;
	}
	#breadcrumb ol {
		flex-direction: row;
		padding-left: 9em;
	}
	footer nav#legal {
		width: 60vw;
		margin: auto;
	}
}


@media (min-width: 1919px) and (max-width: 2559px) {
	/* Medium and large screen */
	body {
		width: 80vw;
		font-size: 1vmax;
		line-height: 2vmax;
	}
	#page-container .navbar {
		width: 60vw;
		margin: auto;
		padding: 5em 0 1em 0;
	}
	#main-header h1 {
		font-size: 3vmax;
		line-height: 6vmax;
	}
	section.base-page {
		width: 60vw;
	}
	#breadcrumb ol {
		flex-direction: row;
		padding-left: 9em;
	}
	footer nav#legal {
		width: 60vw;
		margin: auto;
	}
}


@media (min-width: 2560px) {
	/* HD 4K device */
	body {
		width: 80vw;
		font-size: 1.5vmax;
		line-height: 2.5vmax;
	}
	#page-container .navbar {
		width: 60vw;
		margin: auto;
		padding: 5em 0 1em 0;
	}
	#main-header h1 {
		font-size: 3vmax;
	}
	h2 {
		font-size: 2vmax;
	}
	section.base-page {
		width: 60vw;
	}
	#breadcrumb ol {
		flex-direction: row;
		padding-left: 5.5em;
	}
	.breadcrumb-item + .breadcrumb-item {
		padding-left: .5em;
	}
	.breadcrumb-item + .breadcrumb-item::before {
		padding-right: .5em;
	}
	footer nav#legal {
		width: 60vw;
		margin: auto;
	}
}
