@charset "UTF-8"; /*

===================================================

	Squelette Oshiage



=== Table of contents =============================

    - Variables
    – Core Import
    – Font
    - Color
    - Layout
    - Utility
    - SPIP
    - Plugins
    - Menu
    - Pages

    Viewport (https://getbootstrap.com/docs/4.2/layout/overview)
	- @media (min-width: 576px) { ... } // Small devices (landscape phones, 576px and up)
	- @media (min-width: 768px) { ... }	// Medium devices (tablets, 768px and up)
	- @media (min-width: 992px) { ... } // Large devices (desktops, 992px and up)
	- @media (min-width: 1200px) { ... } // Extra large devices (large desktops, 1200px and up)


*/
/* Variable
=================================================== */

/* les variables dynamiques sont déplacées dans le fichier style_cfg_oshiage.css */


/* Core Import
=================================================== */
body {
   
	color: var(--black);
	font-family: 'Poppins','verdana', 'Verdana', sans-serif;
}

a {
	color: var(--primary-color);
	transition: all .5s;
}

a.discret {
	color: var(--black);
	text-decoration: underline;
}

a:hover {
	color: var(--primary-color-hover);
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	line-height: initial;
	/* overides bootstrap */
}

img {
	max-width: 100%;
	height: auto;
}

/* Font
=================================================== */
/*
 kit google en local
 https://google-webfonts-helper.herokuapp.com/fonts/poppins?subsets=latin
*/
/* poppins-400 regular - latin */
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	src: local(''), url('./font/poppins-v20-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('./font/poppins-v20-latin-regular.woff') format('woff');
	/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* poppins-500 medium - latin */
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	src: local(''), url('./font/poppins-v20-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('./font/poppins-v20-latin-500.woff') format('woff');
	/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* poppins-600 semibold- latin */
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	src: local(''), url('./font/poppins-v20-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('./font/poppins-v20-latin-600.woff') format('woff');
	/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* poppins-700 bold - latin */
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	src: local(''), url('./font/poppins-v20-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('./font/poppins-v20-latin-700.woff') format('woff');
	/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* Color
=================================================== */
.white {
	color: var(--white) !important;
}

.bg-white {
	background-color: var(--white) !important;
}

/* Layout
=================================================== */
/* body
----------------------------------*/
body {
	background-image: url(../img/shape-1.png);
	background-position: right -130px top 90px;
	background-size: 753px;
	background-repeat: no-repeat;
	min-height: 100vh;
}

body.page-homepage {
	background: var(--white);
}

@media (max-width: 992px) {
	body {
		background-size:80%;
	}
}

/* header
----------------------------------*/
.header {
	position: relative;
}

/* header > header-search 
----------------------------------*/
.header-search {
	height: 100vh;
	width: 100%;
	background-color: var(--primary-color);
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 1s ease;
	transform: translate(0,-120vh);
	z-index: 5;
}

.header-search.unfold {
	transform: translate(0,0);
}

.header-search-untrigger {
	cursor: pointer;
	filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(158deg) brightness(103%) contrast(103%);
}

.search-form {
	position: relative;
	margin: 0;
	border-bottom: 1px solid #fff;
	width: 70%;
}

.search {
	border: none;
	padding: 0.5rem 4rem 0.5rem 1rem;
	margin: 0 2rem 0 0;
	color: var(--white);
	background-color: transparent;
	font-size: 2rem;
	min-width: 12rem;
	width: calc(100% - 3rem);
}

.search:focus {
	outline: none;
	/* accessibilite mal */
}

/* moteur de recherche dans le corps de page */
.article-search .search {
	background-color: var(--primary-color-light);
	color: var(--black);
	border-radius: 1rem;
}

.article-search .search-submit {
	filter: invert(15%) sepia(10%) saturate(610%) hue-rotate(286deg) brightness(93%) contrast(96%);
}

/* 
  on vire le bouton cancel du input pour eviter l'ambiguite avec le bouton qui ferme la modale
  https://stackoverflow.com/questions/19655250/is-it-possible-to-disable-input-time-clear-button
*/
input.search::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

.search::placeholder {
	color: #ffffff8f;
	opacity: 1;
}

.search-submit {
	width: 1.5rem;
	height: 1.5rem;
	position: absolute;
	top: 1.25rem;
	right: 1rem;
}

/* header-search > rwd */
@media (max-width: 992px) {
	.search {
		padding:0.25rem;
		font-size: 1rem;
	}

	.search-submit {
		top: 0;
	}

	.header-search-untrigger {
		position: absolute;
		top: 1rem;
		right: 1rem;
	}
}

/* header > menu */
.panel-wrapper {
	/*border: 1px solid red;*/
}

.menu-logo-wrapper {
	margin: .75rem 0;
}

.header-search-rwd {
	display: none;
}

/* header > logo */
.menu-trigger {
	display: none;
}

.header-logo {
	position: relative;
}

.header-logo img {
	width: 238px;
}

.header-logo strong, .header-logo em {
	display: none;
}

/* Menu > RWD */
@media (max-width: 992px) {
	/* suppression de la grid bootstrap */ .header .container, .header .row, .header .col-lg-3 {
		margin:0 !important;
		padding: 0 !important;
		max-width: inherit;
	}

	.menu-logo-wrapper {
		width: 100%;
	}

	.header-logo {
		max-width: 140px;
		margin: 0.5rem;
	}

	.header-logo em {
		display: none;
	}

	.menu-panel {
		height: 100vh;
		width: 100%;
		background-color: var(--primary-color);
		position: absolute;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		transition: all .8s ease;
		transform: translate(0,-120vh);
		/**/
		z-index: 5;
	}

	.menu-panel.unfold {
		transform: translate(0,0);
	}

	.menu-trigger {
		display: block;
		background-color: inherit;
		border: none;
		font-size: 2rem;
		position: absolute;
		right: 1rem;
		top: 1rem;
		cursor: pointer;
	}

	.button-burger-trigger:hover {
		var(--white); }

	.button-burger-untrigger {
		color: var(--white);
	}

	.button-burger-untrigger:hover {
		color: var(--white);
	}

	/* on affiche le formu de recherche  */
	.header-search-rwd {
		display: block;
		width: 100%;
		margin-bottom: rem;
		order: 3;
	}

	.header-search-rwd .search-form {
		width: 80%;
		margin: auto;
	}
}

/* header > rezo */
.rezo-links {
	list-style: none;
	padding: 0;
	margin: 0.5rem 0 0.25rem 0;
	display: flex;
	justify-content: flex-end;
}

@media (max-width: 992px) {
	.rezo-links {
		order:5;
	}

	.rezo-links a {
		color: #fff;
	}

	.rezo-links a:hover {
		color: #ffffffbd;
	}
}

.rezo-links a {
	margin-left: .75rem;
	font-size: 1.25rem;
}

/* header > nav */
.menu-nav {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 1rem;
}

.menu-nav-1 {
	justify-content: flex-end;
	margin-bottom: 1.28rem;
}

.menu-links {
	width: 100%;
	margin: 0;
	padding: 0;
}

.menu-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	height: 100%;
}

.menu-link-a {
	margin-right: 2rem;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--black);
}

.menu-link:last-child a {
	margin-right: 1rem;
}

.menu-link-a:hover, .menu-link-a--on {
	color: var(--primary-color);
	text-decoration: none;
}

@media (max-width: 992px) {
	.menu-nav ul {
		flex-wrap:wrap;
	}

	.nav-links {
		flex-grow: 1;
		margin-bottom: 2rem;
		width: 100%;
		order: 3;
	}

	.menu-link {
		width: 100%;
		text-align: center;
	}

	.menu-link:last-child a {
		margin-right: inherit;
	}

	.menu-link-a {
		display: inline-block;
		margin: 0 0 1rem 0;
		color: var(--white);
	}

	.menu-link-a:hover, .menu-link-a--on {
		color: var(--primary-color-hover);
	}
}

.button-search {
	border: 0;
	background-color: inherit;
	cursor: pointer;
}

@media (max-width: 992px) {
	.button-search {
		display:none;
	}
}

.button-search:hover {
	filter: invert(22%) sepia(21%) saturate(5629%) hue-rotate(325deg) brightness(91%) contrast(99%);
	; }

/* footer
----------------------------------*/
.footer {
	padding: 2rem 0 1.5rem 0;
	font-size: .875rem;
}

/* footer > footer-item */
.footer-item {
	margin-bottom: 1rem;
}

.footer-item-1 img {
	margin-bottom: 1rem;
}

.footer-item h3 {
	font-size: 1.375rem;
	font-weight: 600;
	margin-top: .5rem;
}

.footer-item h4 {
	font-size: .875rem;
	font-weight: 700;
	margin-top: .5rem;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin-bottom: 2rem;
}

.footer-link a {
	color: #2e2629;
}

/* footer > copyright */
.footer-copyrights {
	border-top: 1px solid #d5d7d9;
	padding: 2.5rem .5rem 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.footer-copyrights a {
	margin-left: 3rem;
	font-size: 0.75rem;
}

@media (max-width: 768px) {
	.footer-copyrights {
		display:block;
	}

	.footer-copyrights a {
		padding: 0;
		text-decoration: underline;
		display: block;
		margin: 0 0 .5rem 0;
	}
}

.go-top {
	display: block;
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: -50px;
	right: 20px;
	transition: all 1s ease;
	z-index: 2;
}

.go-top.show {
	bottom: 20px;
}

/* Utility
=================================================== */
.uppercase {
	text-transform: uppercase;
}

.right {
	float: right;
}

.left {
	float: left;
}

.center {
	text-align: center;
}

.spacer, .clear {
	clear: both;
}

.liner-bottom {
	border-bottom: 1px solid #aaa;
	padding-bottom: 0.5rem;
	margin-bottom: 1.5rem;
}

/*** bouton ***/
.bouton {
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	text-align: center;
	text-decoration: none !important;
	background-color: var(--primary-color);
	color: #fff !important;
	padding: 0.5rem 2rem;
	margin: 0;
	border-radius: 1.5rem;
	font-weight: 500;
	transition: all .2s ease;
}

.bouton--small {
	font-size: .875rem;
	padding: 0.25rem 1.25rem;
	font-weight: 400;
}

.bouton--white {
	border: 1px solid var(--white);
}

.bouton--black {
	color: var(--black) !important;
	border: 1px solid var(--black);
	background-color: var(--white);
}

.bouton:hover {
	background-color: var(--primary-color-hover);
	text-decoration: none;
	color: #fff;
}

.bouton--white:hover {
	border: 1px solid var(--primary-color-hover) !important;
}

.bouton--black:hover {
	color: var(--white) !important;
	border: 1px solid var(--primary-color-hover) !important;
}

/* SPIP
=================================================== */
/* admin a gauche */
.spip-admin-bloc, .spip-admin-float {
	left: 2%;
}

/* pour pouvoir cliquer dessous notamment le menu ... */
.spip-admin-float {
	pointer-events: none;
}

.spip-admin-float a {
	pointer-events: auto;
}

.bugajaxie {
	display: none;
}

.spip_code {
	font-family: monospace;
	color: #b4b1b1;
	background-color: #454545;
	padding: 0 .25rem;
	margin: 0 0.25rem;
	border: 1px solid #d3d2d2;
}

hr.spip {
	clear: both;
}

/* en version block multiligne, le separer du reste du flux texte */
div.spip_code {
	margin: 1rem 0;
}

textarea.spip_cadre {
	color: #ededed;
	background: #414141;
	margin: 1rem 0;
	padding: 1rem;
	border-radius: 0.25rem;
	width: 100% !important;
}

blockquote.spip, blockquote.spip_poesie {
	margin: 2rem 0;
	padding: 1.5rem;
	width: 100%;
	background-color: var(--primary-color);
	color: var(--white);
	border-radius: 1rem;
}

h2 + blockquote.spip {
	margin-top: 0
}

blockquote.spip_poesie {
	background-color: initial;
	color: var(--black);
	font-size: 1.5rem;
	font-weight: 500;
	padding: initial;
}

@media (max-width: 992px) {
	blockquote.spip_poesie {
		font-size: 1rem;
	}
}

blockquote.spip_poesie a {
	color: #F2EFE8;
	text-decoration: underline;
}

blockquote.spip p:first-child, blockquote.spip_poesie p:first-child {
	margin-bottom: 0;
}

blockquote.spip .article-h2, blockquote.spip_poesie .article-h2 {
	display: block;
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-size: 1.25rem;
}

blockquote.spip .article-h2::before, blockquote.spip_poesie .article-h2::before {
	content: none;
}

table.spip {
	margin-bottom: 1rem;
	min-width: 50%;
}

table.spip th, table.spip td {
	padding: .4rem .6rem;
}

table.spip tr {
	border-top: 1px solid var(--gray-light);
}

table.spip tbody tr:last-child {
	border-bottom: 1px solid var(--gray-light);
}

table.spip th {
	background-color: var(--primary-color-light);
}

ul.spip {
	list-style: none;
	margin: 0 0 1rem 0;
	padding: 0 0 0 .8rem;
}

ul.spip ul {
	list-style: none;
	margin: 0;
}

ul.spip li::before {
	content: "•";
	color: var(--primary-color);
	margin-right: 0.25rem;
}

/* Document (version 2021.12.12 - compat SPIP 4 et <figure> - happy birthday mieko  */
.spip_documents {
	margin: 0;
	max-width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	/*border:1px solid red;*/
}

.spip_documents a.spip_out {
	background: transparent !important;
	text-decoration: none!important;
	border: 0px #fff !important;
}

/* pour eviter les bordures sur lien img [<img1>->url] */
.spip_documents_left {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 0.8em;
}

.spip_documents_right {
	float: right;
	margin-left: 1.5em;
	margin-bottom: 0.8em;
}

@media (max-width: 1100px) {
	.spip_documents_left, .spip_documents_right {
		float:none;
		margin: 1rem 0;
	}
}

.spip_documents_center {
	display: block !important;
	float: none;
	text-align: center;
	margin: .8rem auto;
}

.spip_doc_titre, .spip_doc_descriptif {
	clear: both;
	font-size: 0.875rem;
	margin: -.5rem auto 0 auto;
	text-align: center;
}

.spip_doc_titre + .spip_doc_descriptif {
	margin-top: 0;
}

img.spip_logos {
	margin: 10px;
}

/* formulaire spip */
.formulaire_spip {
}

.formulaire_spip label {
	display: block;
	margin-top: 1rem;
}

.formulaire_spip .text, .formulaire_spip input.text:hover, .formulaire_spip input.text:focus, .formulaire_spip textarea {
	padding: 0.5rem;
	font-size: .9rem;
	background-color: #f3f3f3;
	width: 100%;
	border: none;
	border-radius: 2px;
}

.formulaire_spip .submit {
	margin: 1rem 0;
	padding: 1rem 2rem;
	background-color: #1d1d1b;
	border: none;
	color: #fff;
	font-weight: 500;
	cursor: pointer;
}

.formulaire_spip .submit:hover {
	background-color: #6a6a6a;
}

legend {
	font-size: 1.2rem;
	font-weight:600;	
	position:relative;
	margin-bottom:1.5rem;
}

.formulaire_spip legend:after {
	content:" ";
	position:absolute;
	width:8rem;
	bottom:-.8rem;
	left:0;
	border-bottom:10px solid #5B5EA6;
}

fieldset.previsu {
	padding: 1rem 1rem 0 1rem;
	background-color: #ffd8aa;
	border-radius: 4px;
	margin-bottom: 2em;
}

fieldset.previsu legend {
	background-color: #f39325;
	padding: 0 -0 0 1rem;
	margin: 0 0 0 -1rem;
	max-width: 25rem;
}

.erreur_message {	
	color: #d00;
	display: block;
}

.reponse_formulaire {
	margin: 1rem 0;
	padding: 1rem;
}

.reponse_formulaire_ok {
	background-color: #b1ffd1;
}

.reponse_formulaire_erreur {
	background-color: #ffacac;
}

.formulaire_spip ul, .formulaire_spip li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.spip_surligne {
	background: yellow;
}

/* pagination compatible SPIP 4.0 */
.pagination {
	width: 100%;
	margin: 1rem 0;
	padding: 1rem 0;
	font-size: 1.25em;
	font-weight: 700;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	/*background-color: #f1f6eb;*/
	color: #4e6065;
}

.pagination-core {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	flex-grow: 1;
}

.pagination-items {
	list-style: none;
	display: flex;
	align-items: center;
	flex-grow: 1;
	margin: 0;
	padding: 0;
}

.pagination-item {
	margin: 0.25rem;
}

.pagination-items .pagination-item.on.active span {
	background-color: var(--primary-color-hover) !important;
}

.pagination-item:last-child {
	margin-right: 2rem;
	/* pour forcer le retour en mode rwd  wrap à la ligne */
}

.pagination a.lien_pagination {
	text-decoration: none;
}

.pagination-top {
	font-size: .9rem;
	color: #565252;
	margin-bottom: 1.52rem;
}

.pagination-titre {
	display: none;
}

.pagination-total {
	font-weight: 600;
	font-size: 1.125rem;
}

.pagination-item-label.on, a.pagination-item-label {
	text-decoration: none;
	padding: 0.5rem 1rem;
	; display: inline-flex;
	border-radius: 2px;
	background-color: var(--primary-color);
	color: var(--white);
}

pagination-item-label.on {
	background-color: #ffffff6b;
	color: var(--white);
	font-weight: 500;
}

.pagination .lien_pagination:hover {
	background-color: var(--primary-color-hover);
	text-decoration: none;
}

/* portfolio */
figcaption {
	padding: .8rem 0;
	font-size: 0.85rem;
}

figcaption span {
	display: block;
	line-height: 1.2;
}

.figcaption-titre {
}

.figcaption-desc {
	font-size: 0.75rem;
}

.figcaption-credits {
	font-size: 0.7rem;
	font-style: italic;
}

/* articles - portfolio 
----------------------------------*/
.article-portfolio {
	margin: 1rem 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* https://stackoverflow.com/questions/18744164/flex-box-align-last-row-to-grid */
.article-portfolio::after {
	content: "";
	flex: auto;
	flex: 0 0 32%;
}

.portfolio {
	width: 32%;
}

.portfolio a {
	text-decoration: none !important;
	color: #666666;
}

.portfolio figcaption {
	padding: 0.5rem;
}

.portfolio img {
	border: 1px solid #c1c1c1;
}

.portfolio:hover img {
	border-color: #3a3a3a;
}

/* rwd */
@media (max-width: 1100px) {
	.portfolio {
		width:100%;
		margin: 0 0 2rem 0;
	}
}

@media (max-width: 768px) {
	.portfolio {
		width:100%;
		margin: 0 0 2rem 0;
	}
}

/* articles - docjoint 
----------------------------------*/
.article-docjoints {
	margin: 2rem 0;
	display: flex;
	flex-wrap: wrap;
}

.article-docjoint {
	text-align: center;
	width: calc(33% - 2rem);
	margin: 0 2rem 2rem 0;
	overflow-wrap: anywhere;
}

@media (max-width: 990px) {
	.article-docjoint {
		width:calc(50% - 2rem);
	}
}

@media (max-width: 768px) {
	.article-docjoint {
		width:100%;
		margin: 0 0 2rem 0;
	}
}

.article-docjoint a {
	text-decoration: none !important;
	color: #666;
}

.docjoint-titre {
	font-weight: 700;
	font-size: 0.8rem;
}

/* Plugins
=================================================== */
/* gis */
.leaflet-control-zoom a {
	text-decoration: none !important;
}

/* oembed */
.oembed figcaption {
	display: none;
}

.spip_documents .oembed {
	background: transparent;
	padding: 0;
	border: none;
}

/* formulaire contact */
.formulaire_contact legend {
	display: none;
}

/* no-spam / newsletter */
.nospam-checkbox {
	display: none !important;
}

.formulaire_newsletter label {
	display: none;
}

.formulaire_newsletter input.text, .formulaire_newsletter input.text:hover, .formulaire_newsletter input.text:focus {
	background-color: #fff;
	border: 1px solid #2e2629;
	border-radius: 2rem;
	padding: 0.5rem 1rem;
}

.newsletter-editer {
	position: relative;
}

.newsletter-submit {
	position: absolute;
	right: 1rem;
	top: .75rem;
	width: 1.25rem;
	filter: invert(66%) sepia(11%) saturate(2573%) hue-rotate(44deg) brightness(85%) contrast(78%);
}

.newsletter-submit:hover {
	filter: invert(31%) sepia(33%) saturate(813%) hue-rotate(48deg) brightness(91%) contrast(80%);
}

/* bootstrap : surcharge */
b, strong {
	font-weight: 700;
}

code {
	color: #d2d9d4;
}

.btn-danger {
	border-color: #ff0000;
	background-color: #ff0000;
}

.btn-danger:hover {
	border-color: #8f0101;
	background-color: #8f0101;
}

/* Menu
=================================================== */
/* Pages
=================================================== */
/*  Page auteur 
----------------------------------*/
.logo-auteur {
	border-radius: 100%;
}

/* homepage - sommaire
----------------------------------*/

/* article
----------------------------------*/

/* article > header
--------------------*/
.article-header {
	
}


/*  ariane */
.ariane {
	font-size: 0.8rem;
	margin: 0 0 .25rem 0;
}

.ariane ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ariane li {
	display: inline-block;
	margin: 0;
	padding: 0;
	color: var(--black);
}

.ariane a {
	margin: 0 .2rem;
	padding: 0;
	display: inline-block;
	color: var(--black) !important;
	text-decoration: none !important;
}

.ariane a:hover {
	color: #2e2629;
	text-decoration: underline !important;
}

.ariane a.on {
	font-weight: 400;
}

@media (max-width: 768px) {
	.ariane {
		font-size: 0.7rem;
	}
}

/* article > aside
--------------------*/
.article-aside {
	padding-top: 2rem;
}

@media (max-width: 992px) {
	.article-aside {
		padding:1rem;
		order: 2;
		/* menu laterale passe sous l'article en rwd */
		border-top: 1px solid #cfd0d2;
		border-bottom: 1px solid #cfd0d2;
	}
}

.article-aside-nav {
	list-style: none;
	padding: 0;
	line-height: 1.2;
}

.article-aside-nav li {
	margin-bottom: 0.5rem;
}

.article-aside-nav a {
	color: var(--black);
	font-weight: 500;
	text-decoration: none !important;
	display: flex;
	align-items: flex-start;	/* alternative: center*/
}

.article-aside-nav span {
	font-weight: 700;
	font-size: 1.75rem;
	margin-right: .75rem;
	color: var(--white);
	text-shadow: -1px 0 var(--primary-color), 0 1px var(--primary-color), 1px 0 var(--primary-color), 0 -1px var(--primary-color);
	position:relative;
	top:-.375rem;
}

.article-aside-nav a:hover span, .article-aside-current span {
	color: var(--primary-color);
	text-shadow: none;
}

.article-aside-current {
	font-weight:700 !important;
}

/* article > body
--------------------*/
.article-body-wrapper {
	margin-top: 1rem;
	background-image: url(../img/lines.svg);
	background-position: left -140px top 120px;
	background-size: 325px;
	background-repeat: no-repeat;
	min-height: 300px;
}

/* exception: onepage: pas de fond */
.liste-articles .article-body-wrapper {
	min-height: 0;
	background-size: 0;
}

@media (max-width: 992px) {
	.article-body-wrapper {
		background-size:80%;
	}
}

.article-body {
	padding-top: 1rem;
	padding-bottom: 4rem;
}

.article-body img {
	max-width: 100%;
	height: auto;
}

@media (max-width: 768px) {
	.article-body {
		font-size:.8rem;
	}
}

/****** article headings ******/
.article-h1 {
	font-size: 3.125rem;
	font-weight: 500;
	line-height: 1;
	position: relative;
}

.article-h1:before {
	position: absolute;
	content: "";
	width: 70px;
	height: 40px;
	top: -15px;
	left: -30px;
	z-index: -1;
	background-image: url(../img/shape-orange.svg);
	background-repeat: no-repeat;
	animation-name: anim-orange;
	animation-duration: 1.2s;
}

@keyframes anim-orange {
	0% {
		transform: rotate(-65deg);
	}

	75% {
		transform: rotate(-5deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

@media (max-width: 768px) {
	.article-h1 {
		font-size:1.5rem;
	}
}

.article-date {
	color: #999;
	font-size: .88rem;
	margin-top: 2rem;
}

@media (max-width: 768px) {
	.article-date {
		font-size:.7rem;
	}
}

.article-h2 {
	font-size: 1.5em;
	margin: 2.5rem 0 .5rem 0;
	font-weight: 700;
	display: flex;
}

.article-h2::before {
	content: "•";
	margin-right: .5rem;
	color: var(--primary-color);
}

@media (max-width: 768px) {
	.article-h2 {
		font-size:1.15rem;
		margin: 1.2rem 0 .5rem 0;
	}
}

.article-h4 {
	font-size: 1.25rem;
	position: relative;
}

.article-descriptif {
	font-weight: 700;
	font-size: 1.4rem;
	margin: 1rem 0;
	text-align: left;
	line-height: 1;
}

.article-chapo {
	font-size: 1.5rem;
	font-weight: 500;
	padding: 2.75rem 0;
	margin-bottom: 2rem;
	border-bottom: 1px dashed #9999;
}

/* variante s'il y au logo, on reparte le trait sous le logo */ 
.article-chapo--logo  {
	padding: 1.5rem 0;
	margin-bottom: 0;
	border-bottom: none;		
}

@media (max-width: 768px) {
	.article-chapo {
		font-size: 1rem;
	}
}

.article-titre {
	font-size: 1.9rem;
	font-weight: bold;
	padding: 1rem 0;
	margin-bottom: 1rem;
	border-bottom: 1px solid #888;
}

@media (max-width: 768px) {
	.article-titre {
		font-size:1.4rem;
	}
}

.article-logo {	
	text-align: center;
	padding-bottom:2rem;
	margin: 0 0 1.5rem 0;
	border-bottom: 1px dashed #9999;
}

.article-soustitre {
	font-size: 1.2rem;
	font-weight: bold;
}

.article-texte {
}

.article-body a {
	text-decoration: underline;
}

.article-notes {
	margin-top: 2rem;
	font-size: 0.78rem;
	color: #171543ba;
	clear: both;
}

.article-notes p {
	margin-bottom: 0.5rem;
}

/* article > a2a 
--------------------*/
.article-a2a-wrappery {
	margin-bottom: 4rem;
}

.article-a2a-titre {
	font-size: 1.5rem;
	font-weight: 600;
	font-style: italic;
	position: relative;
	margin-bottom: 3rem;
}

.article-a2a-titre:before {
	position: absolute;
	content: "";
	width: 119px;
	height: 57px;
	top: -11px;
	left: -20px;
	z-index: -1;
	background-image: url('../img/graphe-more.svg');
}

/* rubrique
----------------------------------*/
.liste-rubriques {
	margin: 2rem 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

@media (max-width: 992px) {
	.liste-rubriques {
		margin: 1rem 0;
	}
}

.rubrique-title {
	width: 32%;
	margin-bottom: 1.5%;
	display: flex;
}

@media (max-width: 992px) {
	.rubrique-title {
		width:100%;		
	}
}

/* https://stackoverflow.com/questions/18744164/flex-box-align-last-row-to-grid */
.liste-rubriques::after {
	content: "";
	flex: auto;
	flex: 0 0 30%;
}

.rubrique-title a {
	display: flex;
	align-items: center;
	font-size: 1.25rem;
	line-height: 1;
	font-weight: 500;
	color: var(--white);
	padding: 2rem 1rem;
	text-decoration: none;
	background-color: var(--primary-color);
	border-radius: .75rem;
	width: 100%;
}

@media (max-width: 992px) {
	.rubrique-title a {
		padding: .5rem 1rem;
		font-size: 1rem;
	}
}

.rubrique-title a:hover {
	background-color: var(--primary-color-hover);
}

/* article-preview
----------------------------------*/
/* container (facultatif)  en plus pour avoir l'alignenemnt en bas sur la grille bootstrap **/
.article-previews-wrapper {
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: flex-end;
}

/* container flex avec variante 3 ou 2 items */
.article-previews {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	/*border:2px solid orange;*/
}

.article-previews .article-preview {
	width: 32%;
	margin: 0 0 3rem 0;
}

/* fix last-item align flex
	ttps://stackoverflow.com/questions/18744164/flex-box-align-last-row-to-grid */
.article-previews::after {
	content: "";
	flex: auto;
	flex: 0 0 30%;	
}

.article-previews--2items .article-preview {
	width: 47%;
	margin: 1rem 0 0 0;
}

.article-preview {
	background-color: var(--white);
	border-radius: 1rem;
	transition: all .15s ease-in;
}

.article-preview:hover {
	background-color: var(--primary-color-light);
	transform: translateY(-5px);
}

.article-preview--green:hover {
	background-color: var(--green-light);
	border-color: var(--green-light);
}

.article-preview--blue:hover {
	background-color: var(--blue-light);
	border-color: var(--blue-light);
}

.article-preview--purple:hover {
	background-color: var(--purple-light);
	border-color: var(--purple-light);
}

@media (max-width: 992px) {
	.article-preview {
		width:100% !important;
		max-width: 560px;
	}
}

.article-preview--card {
	border: 1px solid var(--gray-light);
	padding: 1rem .25rem 0 .5rem;
}

@media (min-width: 992px) {
	.article-preview--card.article-preview--blue {
		border-color: var(--white);
	}
}

.article-preview-link {
	display: flex;
	flex-wrap: wrap;
	height: 100%;
	text-decoration: none !important;
	flex-direction: column;
}

.article-preview-link:hover {
	text-decoration: none;
}

.article-preview-cartouche {
	color: var(--black);
	text-decoration: none !important;
	position: relative;
	flex-grow: 2;
	text-align: right;
	padding: .75rem;
}

.article-preview-but {
	text-align: right;
}

.article-preview-button {
	background: initial;
	border: none;
	margin-top: 1rem;
	cursor: pointer;
	transition: all .15s ease-in;
	margin: 0 1rem .5rem 1rem;
}

.article-preview:hover .article-preview-button {
	transform: rotate(45deg);
}

.article-preview-img {
	border-radius: 1rem 1rem 0 0;
}

.article-preview-titre {
	font-size: 1.375rem;
	font-weight: 600;
	text-align: left;
	line-height: 1;
}

.article-preview-intro {
	font-size: 1rem;
	text-align: left;
	line-height: 1.4;
}

.article-preview--card .article-preview-intro {
	font-size: .875rem;
}

/* article-preview: rwd */
@media (max-width: 992px) {
	.article-preview-titre {
		font-size: 1rem;
	}

	.article-preview-intro {
		font-size: .83rem;
	}

	.article-preview-button {
		width: 44px;
	}
}


/* page recherche
----------------------------------*/
.alert-error {
	background-color: #ffc2c3;
	padding: 1rem;
}

.resultat {
	margin-bottom: 1.5rem;
	max-width: 45rem;
}

a.resultat-titre {
	text-decoration: none;
}

a.resultat-titre:hover {
	text-decoration: underline;
	color: var(--primary-color);
}

.resultat-titre h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0;
	color: var(--primary-color);
}

.resultat-desc {
	font-size: 0.9rem;
}

abbr.resultat-date {
	text-decoration: none;
	opacity: .75;
	font-size: .75rem;
}

/*  Page sommaire
----------------------------------*/
.home-item {
	margin-bottom: 4rem;
	line-height: 1.2;
}

.home-surtitre {
	margin-top: 4rem;
	text-transform: uppercase;
	font-weight: 500;
	position: relative;
}

@media (max-width: 992px) {
	.home-surtitre {
		font-size:.85rem;
	}
}

.home-titre {
	font-size: 3.125rem;
	font-weight: 500;
	line-height: 1;
}

.home-titre--small {
	font-size: 1.25rem;
}

@media (max-width: 992px) {
	.home-titre {
		font-size:1.75rem;
	}
}

.home-texte {
	font-size: 1.5rem;
	font-weight: 500;
}

.home-texte--small {
	font-size: 1rem;
}

@media (max-width: 992px) {
	.home-texte {
		font-size: 1rem;
	}
}

.home-link {
	color: var(--black);
}

.home-link:hover {
	color: var(--black);
	text-decoration: none !important;
}

.home-link--fleche img {
	transition: all 0.35s ease;
}

@media (max-width: 992px) {
	.home-link--fleche img {
		width:3rem;
	}
}

.home-link--fleche:hover img {
	transform: translateX(20px);
}

/*  Page sommaire > home-intro
----------------------------------*/
.home-intro {
	background-image: url(../img/shape-intro-2.png);
	background-position: left -200px top 130px;
	background-size: 494x;
	background-repeat: no-repeat;
	position: relative;
	min-height: 630px;
}

@media (max-width: 992px) {
	.home-intro {
		background-position:left -200px top 120px;
		background-size: contain;
		min-height: auto;
	}
}

.home-intro-inner {
	background-image: url(../img/shape-intro.png);
	background-position: right -200px top 0;
	background-size: 494px;
	background-repeat: no-repeat;
	position: relative;
	min-height: 580px;
}

@media (max-width: 992px) {
	.home-intro-inner {
		background:initial;
		min-height: auto;
	}
}

.home-h1 {
	font-weight: 500;
	line-height: 1.1
}

@media (max-width: 992px) {
	.home-h1 {
		font-weight: 600;
		font-size: 1.375rem;
	}
}

.home-intro-link, .home-intro-link:hover {
	color: var(--black);
	text-decoration: none;
}

.home-intro-titre {
	margin: 2.5rem 0 .5rem 0;
	font-size: 1.375rem;
	font-weight: 600;
}

@media (max-width: 992px) {
	.home-intro-titre {
		font-size:1.125rem;
	}
}

.home-intro-titre:before {
	position: absolute;
	content: "";
	width: 448px;
	height: 530px;
	top: -5px;
	left: -400px;
	z-index: -1;
	background-image: url(../img/shape-intro.svg);
	background-repeat: no-repeat;
}

.home-intro-more {
	text-align: right;
}

.home-intro-more img {
	transition: all 0.35s ease;
}

@media (max-width: 992px) {
	.home-intro-more img {
		width:75px;
	}
}

.home-intro-link:hover .home-intro-more img {
	transform: translateX(20px);
}

/*  Page sommaire > home-ressurance
----------------------------------*/
.home-reassurance {
	background-image: url(../img/shape-reassurance.png);
	background-position: left 0 top 2px;
	background-size: 586px;
	background-repeat: no-repeat;
	position: relative;
	min-height: 590px;
}

@media (max-width: 992px) {
	.home-reassurance {
		background-size:contain;
		min-height: 0;
	}
}

.home-surtitre--reassurance {
	position: relative;
	margin-top: 8rem;
}

.home-surtitre--reassurance:before {
	position: absolute;
	content: "";
	width: 752px;
	height: 453px;
	top: -25px;
	right: -15px;
	z-index: -1;
	background-image: url(../img/shape-reassurance.svg);
	background-repeat: no-repeat;
}

/*  Page sommaire > home-actu
----------------------------------*/
.home-actu {
	background-image: url(../img/shape-actu.png);
	background-position: left -10px top 2px;
	background-size: 879px;
	background-repeat: no-repeat;
	position: relative;
	min-height:780px;	
}

.home-actu:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	min-height: 790px;
	background-image: url(../img/shape-actu2.svg);
	bakcground-size: contain;
	background-position: right -300px top 50px;
	background-repeat: no-repeat;
}

@media (max-width: 992px) {
	.home-actu:before {
		display:none;
	}
}

.home-surtitre--actu:before {
	position: absolute;
	content: "";
	width: 158px;
	height: 79px;
	top: -39px;
	left: -55px;
	z-index: -1;
	background-image: url(../img/shape-actu.svg);
	background-repeat: no-repeat;
}

/*  Page sommaire > home-formation
----------------------------------*/
.home-formation {
	background-image: url(../img/shape-formation.png);
	background-position: right 0 top 100px;
	background-size: 525px;
	background-repeat: no-repeat;
	min-height: 580px;
}

@media (max-width: 992px) {
	.home-formation {
		background-position: right -120px top 180px;
		background-size: 100%;
	}
}

.home-formation-inner {
	padding-top: 240px;
	background-image: url(../img/shape-formation.svg);
	background-repeat: no-repeat;
	background-size: cover;
}

@media (max-width: 992px) {
	.home-formation-inner {
		padding-top: 0;
		background: initial;
	}
}

.home-surtitre--formation:before {
	position: absolute;
	content: "";
	width: 178px;
	height: 2276px;
	top: -128px;
	left: -60px;
	z-index: -1;
	background-image: url(../img/home-formation.svg);
	background-repeat: no-repeat;
}

/*  Page sommaire > home-ressource
----------------------------------*/
.home-ressource {
	background-image: url(../img/home-ressource.svg);
	background-position: right -170px top 15px;
	background-size: 725px;
	background-repeat: no-repeat;
}

@media (max-width: 992px) {
	.home-ressource {
		background:initial;
	}
}

.home-ressource-inner {
	background-image: url(../img/shape-ressource.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top center;
	min-height: 400px;
}

.home-surtitre--ressource:before {
	position: absolute;
	content: "";
	width: 66px;
	height: 66px;
	top: -38px;
	left: -25px;
	z-index: -1;
	background-image: url(../img/shape-ressource.svg);
	background-repeat: no-repeat;
}

/*  Page sommaire > home-soutenir
----------------------------------*/
.home-soutenir {
	background-color: var(--primary-color);
	color: var(--white);
	padding-top: 3rem;
	padding-bottom: 3rem;
	background-image: url(../img/home-soutenir.svg);
	background-size: cover;
}

.soutenir-h2 {
	font-weight: 600;
	font-size: 1.25rem;
}

.soutenir-but-wrapper {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/*  Page sommaire > home-partenaires
----------------------------------*/
.home-partenaires {
	color: var(--gray-light);
}

.partenaires {
	display: flex;
	flex-wrap:wrap;
	width: 100%;
	margin: auto;
	justify-content: space-around;
	align-items: center;
}

.partenaire {
	margin:1rem;
}

@media (max-width: 992px) {
	.partenaires {
		width:100%;
	}
}

.partenaire a {
	filter: grayscale(1) opacity(.55);
	transition: all .5s ease-in-out;
}

.partenaire a:hover {
	filter: grayscale(0) opacity(1);
}

/* page rubrique-liste-actu-archive
----------------------------------*/
.recherche-requete {
	background-color:var(--purple-light);
	padding:1.5rem;
	border-radius:1rem;
}

.recherche-requete-cancel {
	float:right;
	font-size:.9rem;
	padding-top:.25rem;
	text-decoration:none !important;
}
.recherche-requete-cancel span {
	font-weight:800;
}


.article-archive-filtres {
	margin:1rem 0 2rem 0;
	display:flex;
}

.filtre-annee {
	background-color: var(--purple);
	color: var(--white);
	font-size:0.95rem;
	padding:.25rem .5rem;
	border-radius:.25rem;
	margin:.25rem;
	text-decoration:none !important;
	
	/* la police a des largeurs differentes sur les chiffres par "2011" et "2022" 
		on force la largeur pour avoir un rendu plus uniforme qqsoit l'anneé
	*/
	min-width:3.5rem;
	text-align:center;
}

.filtre-annee--on,
.filtre-annee:hover {
	background-color: var(--purple-dark);
	color: var(--white);
}

/* liste en ligne */ 

.article-archive-previews {
	list-style:none;
	margin:1rem 0;
	padding:0;
	
}

.article-preview-line-link {
	text-decoration:none !important;
	color:var(--black);
	display:flex;
	align-items:flex-start;
	margin:1rem 0;
	padding-bottom:.5rem;
	border-bottom:1px solid var(--gray-light); 
}

.article-preview-line-date,
.article-preview-line-link:hover .article-preview-line-date {
	background-color:var(--gray-super-light);
	color:var(--black);
	font-weight:600;
	font-size:.85rem;
	margin-right:1rem;
	padding:0.25rem;
	border-radius:.21rem;
}

.article-preview-line-titre {
	padding-top:.05rem;
}

/* archive: moteur recherche */
.archive-form  {
	background-color:var(--green);
	padding:2rem 1rem;
	border-radius:1rem 0 2rem 0;
}

.archive-search {
	background-color:var(--white);
	border:none;
	margin-top:1rem;
	width:10rem;
	display:inline-block;
	padding:5px;
	font-size:.95rem;
}

.archive-search-submit {
	display:inline-block;
	width:1.5rem;
	position:relative;
	top:.5rem;
	left:.5rem;
}

