@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,300;1,400;1,500;1,600;1,700;1,900&display=swap');

/* Styles commun à tous les sites cimes. */

body {
	font-family: 'Barlow', sans-serif;
	margin: 0;
	padding: 0;
	font-size: 1.3rem;
}

/* Définition des couleurs de la charte graphique 2022. */
:root {
  --couleur-pri-1: #B4FFCA;
  --couleur-pri-2: #2D4D59;
  --couleur-pri-3: #030F12;
  --couleur-sec-1: #FFDA56;
  --couleur-sec-2: #05084E;
  --couleur-sec-3: #6CB1C0;
}

/* Personnalisation des styles par défaut Materialize. */
nav {
	background-color: black;
}
nav a.brand-logo img {
	height: 3rem;
	margin-left: 50px;
	margin-top: 10px;
}
nav ul {
	margin-right: 50px;
}
nav ul a {
	font-weight: bold;
}

footer.page-footer {
	background-color: #efeeee;
	color: black;
}
footer.page-footer a {
	color: black;
}
.page-footer .footer-copyright {
	background-color: black;
	font-size: 1rem;
}
.footer-copyright {
	text-align: center;
}

.row {
	margin: 0;
}

h1 {
	font-weight: 400;
}
h2 {
	font-weight: 600;
}
h3 {
	font-weight: 500;
	font-size: 1.8rem;
}

ul.content {
	margin-top: 0;
}
ul.content li {
	list-style-type: disc;
	margin-left: 40px;
	text-align: left;
}

/* Styles menus déroulants NAV */
nav ul.dropdown-content {
	width: auto!important;
	height: auto!important;
	background-color: black;
}
nav ul.dropdown-content li>a {
	color: white;
}
nav ul.dropdown-content li>a:hover {
	color: var(--couleur-sec-1);
	background-color: var(--couleur-sec-2);
}
