@charset "UTF-8"; /*

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

	Squelette Kamakura - 鎌倉



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

    - Debug Grid
    – 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)


*/
/* Debug Grid
=================================================== */
/*
.container {
	background-color:pink;
}
.row {
	background-color:lightblue;
}
.col-9, .col-md-9 {
	background-color:lightsalmon;
}
.col-3, .col-md-3 {
	background-color:lightgreen;
}
 */
/* Core Import
=================================================== */
body {
	background-color: #ffffff;
	color: #2c2c2c;
	font-family: 'Montserrat', sans-serif;
}

a {
	color: #92914c;
	transition: all .5s;
}

a:hover {
	color: #525119;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat';
	font-weight: normal;
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 1.6rem;
	font-weight: 700;
}

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

	h2 {
		font-size: 1.1rem;
	}
}

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

/* Font
=================================================== */
/* montserrat en local

	kit généré via:
	https://google-webfonts-helper.herokuapp.com/fonts/montserrat?subsets=latin
*/
/* montserrat-300 - latin */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 300;
	src: local('Montserrat Light'), local('Montserrat-Light'), url('./font/montserrat-v14-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('./font/montserrat-v14-latin-300.woff') format('woff');
	/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* montserrat-regular - latin */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	src: local('Montserrat Regular'), local('Montserrat-Regular'), url('./font/montserrat-v14-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('./font/montserrat-v14-latin-regular.woff') format('woff');
	/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

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

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

/* montserrat-900 - latin */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 900;
	src: local('Montserrat Black'), local('Montserrat-Black'), url('./font/montserrat-v14-latin-900.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('./font/montserrat-v14-latin-900.woff') format('woff');
	/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* Color
=================================================== */
.bg-gray {
	background-color: #efefef;
}

.bg-gray-dark {
	background-color: #ecf0ef;
}

/* Layout
=================================================== */
/* header
----------------------------------*/
header {
	position: relative;
	background-color: #373737;
}

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

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

/*** header-inner ***/
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.header-col-1 {
	width: 100px;
	margin: 10px 0 10px 2rem;
}

.header-logo:hover {
	opacity: 0.7;
}

.header-col-2 {
	width: calc(100% - 100px - 2rem);
	margin-left: 2rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.header-title {
	font-weight: 700;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.22rem;
}

.header-title a {
	color: #fffc19;
}

.header-title a:hover {
	color: #a2a147;
	text-decoration: none;
}

.header-baseline {
	font-weight: 700;
	font-size: 1.05rem;
	width: 100%;
	margin-bottom: 1rem;
	padding-top: 0;
	display: flex;
	align-items: flex-end;
	font-weight: 300;
	color: #efefef;
}

.header-baseline span {
	/*border-top: 1px solid #f6caf9;*/
}

/*** header-lang ***/
.header-lang {
	display: flex;
	width: 100%;
	justify-content: flex-end;
	height: 20px;
}

.lang-link {
	color: #000000;
	font-weight: 700;
	margin: 0.75rem .75rem;
}

.lang-link-on, .lang-link:hover {
	color: #525119;
	text-decoration: none;
}

.header-search-ux {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.header-search-trigger {
	background-color: #fffc19;
	border-radius: 0 0 .6rem .6rem;
}

.header-search-ux .fas {
	display: block;
	color: #000;
	cursor: pointer;
}

/*** formulaire recherche ***/
.search-form {
	position: relative;
	margin: 0;
}

.search {
	border: none;
	border-radius: 3rem;
	padding: 0.5rem 2rem;
	margin: 0 2rem 0 3rem;
	color: #2d3e4a;
	font-size: 1rem;
	background-color: #fff;
	width: 20rem;
}

.search::placeholder {
	color: #6c757d;
	opacity: 1;
}

.search-submit {
	width: 1rem;
	height: 1rem;
	position: absolute;
	top: 12px;
	right: 2.6rem;
}

@media (max-width: 1200px) {
	.header-search {
		margin:0 0 1rem 0;
		width: 100% !important;
		width: fit-content;
	}
}

.navbar .search {
	margin: 0;
	width: 100% !important;
}

/*** nav ***/
.nav-wrapper {
	border-bottom: 5px solid #fffc19;
	background-color: #000000;
}

.nav-inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.nav {
	display: flex;
}

.nav-link {
	color: #ffffff;
	font-weight: 500;
	display: flex;
	align-items: center;
	height: 100%;
}

.nav-link-on, .nav-link:hover {
	background-color: #fffc19;
	color: #000000;
}

/* trait */
.nav-primary .nav-link {
	position: relative;
}

.nav-primary .nav-link::after {
	content: "";
	border-left: 1px solid;
	height: 1.5rem;
	position: absolute;
	right: 0;
	opacity: 0.5;
}

.nav-primary .nav-link:hover::after {
	opacity: 0;
}

.nav-primary .nav-item:last-child .nav-link::after {
	opacity: 0;
}

.nav-primary .nav-item-ssmenu-item .nav-link {
	font-size: 0.84rem;
}

@media (min-width: 1200px) {
	.nav-primary .nav-link {
		padding-left:1rem;
		padding-right: 1rem;
		font-size: 1rem;
	}
}

@media (min-width: 1400px) {
	.nav-primary .nav-link {
		padding-left:2rem;
		padding-right: 2rem;
		font-size: 1rem;
	}
}

.nav-secondary {
	font-size: 0.88rem;
}

/* navbar (surcharge bootstrap) */
.navbar {
	background-color: #000;
}

.navbar-dark .navbar-toggler {
	border-color: rgba(255, 255, 255, 0);
	color: rgba(255, 255, 255, 1);
}

.navbar-dark .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 252, 25, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-nav .nav-link {
	color: #fff;
	margin-left: .5rem;
}

.navbar-dark .navbar-nav {
	margin: 2rem 0 1rem 0;
}

.navbar-brand {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	max-width: 82%;
	font-weight: 500;
	font-size: 1.1rem;
}

.navbar-brand img {
	margin-right: 10px;
}

.nav-item {
	position: relative;
}

.nav-item-lang {
	margin: 1rem 0;
	text-align: center;
}

.nav-item-lang .lang-link {
	display: inline-block;
	background-color: #fff;
	padding: 3px 10px;
	border-radius: 5px;
	font-size: 0.85rem;
	margin: 0 .4rem;
}

.nav-item-search {
	margin: 1rem 0;
}

/* menu-deroulant */
.nav-item-ssmenu {
	position: absolute;
	top: 2.4rem;
	z-index: 2;
	background-color: #000000;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 15rem;
	display: none;
}

.nav-item-ssmenu li {
	display: block;
}

.nav-primary li li .nav-link::after {
	border-color: transparent;
}

/* declinaison moteur recherche rwd */
.nav-item-search .search {
	width: 80%;
}

.header-logo-rwd {
	width: 60px;
}

.header-name-rwd {
	text-transform: uppercase;
}

/*** header-rwd ***/
.header-rwd {
	/*margin:4.5rem auto .5rem 0;*/
	margin: 1.5rem 0;
	display: flex;
	justify-content: space-around;
}

.header-rwd .bouton {
	font-size: .7rem;
	padding: .25rem 1rem;
}

/* kamakura head layout
----------------------------------*/
/* on sort de la logique bootstrap pour le haut 
   et avoir une proposition 1/3 - 2/3 */
.kamakura-container {
	/*border:2px solid red;*/
	display: flex;
}

.kamakura-col-1 {
	width: 44%;
	/*background:#1d1de899;*/
	position: relative;
}

.kamakura-col-2 {
	width: 56%;
	/*background:#f4433687;*/
	position: relative;
}

@media (max-width: 768px) {
	.kamakura-col-1 {
		width:980%;
	}
}

/* content
----------------------------------*/
/* sidebar
----------------------------------*/
.content-sidebar {
	display: flex;
	/* pour que le trait aille en bas */
}

.content-sidebar-wrapper {
	border-left: 1px solid #cbcbcb;
	margin: 10rem 0 3rem 0;
	padding-left: 3rem;
}

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

@media (max-width: 768px) {
	.content-sidebar-wrapper {
		margin:3rem 0 0 0;
		padding: 0;
		border: none;
		text-align: center;
		width: 100%;
	}
}

/* portfolio */
.content-sidebar-portfolio {
	margin-bottom: 4rem;
	text-align: center;
}

figcaption span {
	display: block;
}

.figcaption-titre {
}

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

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

/* doc joint */
.docjoint {
	margin-bottom: 2rem;
	text-align: center;
}

.docjoint a {
	text-decoration: none !important;
}

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

/* footer
----------------------------------*/
.footer {
	font-size: 0.88rem;
	padding-top: 3rem;
	padding-bottom: 2rem;
	background-color: #000000;
	color: #ffffff;
}

.footer a {
	color: #888888;
}

.footer a:hover {
	color: #ffffff;
}

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

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

/* footer-row-1 */
.footer-logo {
	text-align: center;
}

.footer-logo img {
	max-width: 150px;
	margin: auto;
}

.footer-adresse {
	padding-top: 2rem;
	text-align: center;
	color: #888;
	font-weight: 500;
}

.footer-contact {
	padding-top: 1.5rem;
	text-align: right;
}

@media (max-width: 768px) {
	.footer-contact {
		text-align:center;
		margin: 0 auto 2rem auto;
	}
}

/* footer-row-2 */
.footer-copyright {
	text-align: center;
	margin-bottom: 1rem;
}

.footer-copyright a {
	display: inline-block;
	margin: 0 1rem;
}

.footer a {
	color: #efefef;
}

.footer a:hover {
	text-decoration: none;
	color: #888888;
}

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

.right {
	float: right;
}

.left {
	float: left;
}

.center {
	text-align: center;
}

.spacer {
	clear: both;
}

.marger-top {
	margin-top: 2rem !important;
}

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

.rwd-show {
	display: none;
}

.rwd-hidden {
	display: block;
}

@media (max-width: 768px) {
	.rwd-show {
		display:flex;
	}

	.rwd-hidden {
		display: none;
	}
}

/*** bouton ***/
.bouton {
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	text-align: center;
	background-color: #fffc19;
	color: #000 !important;
	font-weight: 700;
	font-size: 1rem;
	padding: 0.5rem 2rem;
	margin: 0 1rem;
	border-radius: .4rem;
	text-decoration: none !important;
}

.bouton:hover {
	background-color: #a2a147;
	text-decoration: none;
}

/*** rezo ***/
.rezo-link {
	margin-left: 1rem;
}

.rezo {
	fill: #fd5339;
}

.rezo:hover {
	fill: #b81900;
}

/*** link-more ***/
.link-more {
	display: inline-block;
	margin: 1.5rem 0;
	font-weight: 700;
	color: #2c2c2c;
	border-bottom: dotted 1px #919191;
}

.link-more:hover {
	color: #b81900;
	border-bottom: dotted 1px #b81900;
	text-decoration: none;
}

/* SPIP
=================================================== */
.spip-admin-float {
	left: 2%;
	pointer-events: none;
}

.spip-admin-bloc a, .spip-admin-float a {
	pointer-events: all;
}

.article-texte h3, h3.spip {
	margin-top: 1rem;
	font-size: 1.2rem;
	font-weight: bold;
}

tt, .spip_code {
	font-family: monospace;
	color: #474646;
	background: #efefef;
	padding: 1px 4px;
	margin: 0 3px;
	border: 1px solid #d3d2d2;
	font-weight: bold;
}

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

.spip_poesie {
	color: #ffffff;
	/*414141;*/
	background: #ff0000;
	margin: 1rem 0;
	padding: 1rem;
	border-radius: 0.25rem;
	width: 100%;
}

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

blockquote.spip {
	color: #000000;
	font-weight: 500;
	border-left: 5px solid #fffc19;
	margin: 2rem;
	padding: 0.2rem 5rem .2rem 2rem;
	width: 100%;
}

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

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

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

/* override bootstrap */
.table th, .table td {
	border-top: 1px solid #a8bfd7;
}

tr.odd {
	background-color: #fffc1994;
}

tr.even {
	background-color: #fffc1938;
}

.article-notes {
	margin: 1rem 0;
	font-size: .9rem;
}

/* Document (version 2020.05.28 - happy birthday mieko !) */
dl.spip_documents {
	margin: 0;
	max-width: 12rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

dl.spip_documents dt, dl.spip_documents dd {
	width: 100%;
	text-align: center;
}

.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, dl.spip_documents_left {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 0.8em;
}

.spip_documents_right, dl.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: 1em 0;
	}
}

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

.spip_doc_titre, .spip_doc_descriptif {
	clear: both;
	font-size: 0.9em;
	margin: 0.5rem auto;
	text-align: center;
}

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

img.spip_logos {
	margin: 10px;
}

dl.spip_documents a img {
	border: 0 !important;
}

/* modele speciale img afficher titre et desc */
dd.spip_doc_credits {
	font-size: 0.8em;
	text-align: center;
	margin: 0;
}

/* speciale kamakura pour distinguer <emb4> taille reduite et <img4> taille reelle */
dl.spip_documents.spip_image {
	max-width: 300px;
}

dl.spip_documents dt:first-child img {
	max-width: 300px;
}

hr.spip {
	border: none;
	border-top: 1px solid #d5d5d5;
	clear: both;
}

/* formulaire spip */
.formulaire_spip {
}

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

.formulaire_spip .text, .formulaire_spip textarea {
	padding: 0.3rem;
}

.formulaire_spip .submit {
	margin: 1rem 0;
	padding: .4rem 2rem;
	background-color: #fffc19;
	border: none;
	border-radius: 5px;
	color: #000;
	font-weight: 500;
	cursor: pointer;
}

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

legend {
	font-size: 1.2rem;
	background-color: #eee;
	padding: 1rem;
	border-radius: 0.5rem;
}

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 {
	font-size: 11px;
	color: #d00;
	display: block;
}

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

.reponse_formulaire_ok {
	background-color: #87fd85;
}

.reponse_formulaire_erreur {
	background-color: #ffacac;
}

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

.spip_surligne {
	background: yellow;
}

/* pagination */
.pagination {
	margin: 2rem 0;
	padding: 1rem;
	font-size: 1rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background-color: #fffc19;
}

/* SPIP 4+ */
.pagination-items {
	flex-grow: 1;
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}

.pagination-item-label {
	padding: 0.5rem 1rem;
}

.pagination-item:after {
	content: "|";
}

@media (max-width: 992px) {
	.pagination-item:after {
		content:"";
	}
}

.pagination-item:last-child:after {
	content: "";
}

.pagination-item.on span {
	font-weight:bold;
}

/* commun SPIP 4.0  -SPIP 3.2 */
.pagination-total:before {
	content: "- ";
}

@media (max-width: 992px) {
	.pagination-total:before {
		content:"";
	}
}

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

.pagination-titre {
	margin-right: 1.5rem;
}

.pagination .on, .lien_pagination {
	text-decoration: none;
	display: inline-block;
}

.pagination .lien_pagination:hover {
	text-decoration: none;
	color: #000;
}

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

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

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

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

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

/* font-awesome */
.fa, .fas {
	color: #fffc19;
}

/* sociaux */
.sociaux {
	margin-top:1.25rem;
}

.sociaux .socicon {
	color:#fffc19;
	font-size:1.5rem;
	background-color:#000000 !important;
}

.socicon:hover {
	color:#ffffff;	
}

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

/* auteurs */
.auteur-index {
	display: inline-block;
	text-decoration: none;
	padding: .1rem .4rem .2rem .4rem;
	; min-width: .8rem;
	text-align: center;
	border-radius: 100%;
	background-color: #999;
	color: #fff;
	margin: 1rem .1rem .5rem 0;
}

.auteur-index-on, .auteur-index:hover {
	background-color: #000;
}

.auteur-preview-title {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	/*background:pink;*/
	justify-content: space-between;
	align-items: center;
	text-decoration: none !important;
	padding: .5rem 0;
	border-top: 1px solid #aaa;
	color: #34495e;
}

.auteur-preview-bio {
	color: #3b3d40;
}

.auteur-preview-title:hover {
	text-decoration: none;
	color: #1042fb;
}

.auteur-preview-img {
	width: 18%;
	padding-top: 4px;
	margin-right: 2%;
}

.auteur-preview-text {
	width: 80%;
}

.auteur-preview-text h1 {
	font-size: 1.5rem;
	margin: 1.2rem 0 .2rem 0;
}

/* homepage - sommaire
----------------------------------*/
/* home-row-0 : actu
--------------------*/
.home-row-0 {
	padding: 4rem 0;
}

/* home-row-1 : actu
--------------------*/
.home-row-1 {
	padding-top: 3rem;
}

/* cards events */
.card-event {
	background-color: #efefef;
	box-shadow: 0 0 30px 0 rgba(0,0,0,0.2);
}

@media (max-width: 992px) {
	.card-event {
		max-width:360px;
		margin: 0 auto;
	}
}

.card-event-top {
	position: relative;
}

.card-event-img img {
	/*width:100%;
	height:auto;/**/
}

.card-event-keyword {
	font-size: .95rem;
	background-color: #fffc19;
	padding: 0.5rem 1rem;
	width: 240px;
	position: absolute;
	bottom: 0;
}

.card-event-keyword-link {
	color: #000;
	font-weight: 500;
	display: flex;
	align-items: center;
}

.card-event-keyword-link span {
	margin-left: 1rem;
}

.card-event-keyword-link:hover {
	text-decoration: none;
	opacity: 0.6;
}

.card-event-body {
	padding: 1.5rem 1rem 1rem 1rem;
	background-color: #efefef;
}

.card-event-date {
	color: #b6b6b6;
	font-weight: 400;
	font-size: .8rem;
}

.card-event-titre a {
	display: block;
	color: #2c2c2c;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 120%;
	margin: .25rem 0 1.8rem 0;
}

.card-event-titre a:hover {
	text-decoration: none;
	color: #a2a147;
}

.card-event-lieu {
	font-weight: 300;
}

/* home-row-2 : intro
--------------------*/
.home-intro {
	padding: 1rem 0;
}

.home-video {
	background-color: #efefef;
	padding: 1rem;
}

/* article
----------------------------------*/
.content {
	padding-bottom: 4rem;
}

/* article > ariane */
.ariane {
	font-family: 'Montserrat';
	color: # 963d9b;
	font-size: 0.8rem;
	margin: 1rem 0 3rem 0;
}

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

.ariane li {
	display: inline-block;
	margin: 0;
	padding: 0;
}

.ariane a {
	margin: 0 .2rem;
	padding: 0;
	display: inline-block;
	color: #535353;
	text-decoration: none !important;
}

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

.ariane a.on {
	font-weight: 700;
	color: #000;
}

.ariane span {
	display: inline-block;
	padding: 2px 0 0 0;
	margin: 0 .2rem;
	font-weight: 700;
	background-color: #fffc19;
	width: 15px;
	height: 15px;
	border-radius: 4px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.ariane span i.fas {
	color: #000;
}

/* article > wrapping */
.article-body {
	padding: 1rem 1rem 3rem 0;
	font-weight: 300;
}

@media (max-width: 768px) {
	.article-body {
		padding:1rem 1rem;
	}
}

/***** article-header ******/
@media (max-width: 768px) {
	.content-header-wrapper {
		padding-top:3.5rem;
		/* masquer la navbar fixed */
	}
}

.article-header {
	text-align: center;
	padding-bottom: 1rem;
}

.article-header div {
	text-align: center;
}

.article-event-date {
	font-weight: 500;
	text-transform: uppercase;
}

.article-event-date::after {
	content: "";
	display: block;
	margin: .5rem auto 0 auto;
	width: 80px;
	height: 1px;
	background-color: #000000;
}

.article-h1 {
	font-weight: 900;
	font-size: 2.25rem;
	margin: 1rem 0 3rem 0;
}

.article-h1 i {
	color: #6c6c6c;
}

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

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

.article-chapo {
	font-weight: 500;
	font-size: 1.2rem;
	margin: 1rem 0;
	font-style: italic;
	text-align: left;
}

/* article-header rwd */
@media (max-width: 768px) {
	.article-event-date {
		font-size:.8rem;
	}

	.article-h1 {
		font-size: 1.5rem;
	}

	.article-descriptif {
		font-size: 1.05rem;
	}

	.article-chapo {
		font-size: 1.05em;
	}
}

/***** article-body  ******/
.article-body {
	padding: 2rem 0;
}

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

.article-titre {
	font-size: 1.9rem;
	font-family: 'Montserrat', serif;
	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 {
	padding: 3rem 0 4rem 0;
	text-align: center;
}

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

.article-texte {
}

@media (max-width: 768px) {
	p, .article-texte {
		font-size:.88rem;
	}
}

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

.article-body h2.spip {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 3rem 0 1rem 0;
}

.article-body h2.spip i {
	color: #b6b6b6;
	margin-right: .25rem;
}

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

.article-date span {
	color: #666;
	padding-left: .59rem;
}

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

.article-external-link i {
	color: #000;
	padding-left: .5rem;
}

/***** article-ps  ******/
.article-ps {
	padding: 3rem 0;
}

.article-ps > h2.spip {
	margin-top: 0;
}

.article-ps .fas {
	display: inline-block;
	margin-right: .8rem;
	color: #963d9b;
}

/* portfolio */
.portfolio {
	margin: 1em 0;
}

.portfolio-item {
	float: left;
	margin: 0 5px 5px 0;
	padding: 8px 8px 28px 8px;
	border: 1px solid #ddd;
	border-bottom: 1px solid #aaa;
	border-right: 1px solid #aaa;
}

.portfolio-item img {
	border-top: 1px solid #aaa;
	border-left: 1px solid #999;
}

.portfolio-item:hover {
	border: 1px solid #888;
	background: #fafafa;
}

/* rubrique
----------------------------------*/
.liste-rubriques {
	margin: 2rem 0;
}

h2.rubrique-title {
	border-radius: .4rem;
	margin: 0 0 .5rem 0;
}

.rubrique-title a {
	font-size: 1.6rem;
	line-height: 100%;
	margin: 0 ;
	padding: 1rem 1rem;
	text-decoration: none;
	color: #000;
	background-color: #fffc19;
	display: block;
	border-radius: .4rem;
	font-weight: 700;
}

.rubrique-title a:hover {
	color: #fff;
	background-color: #525119;
	padding-left: 1.8rem;
}

/* rubrique-video
----------------------------------*/
.article-preview-video {
	background-color: #fffc19;
	padding: 0 0 1rem 0;
	margin-bottom: 1.5rem;
	text-align: center;
}

.article-preview-video-titre a {
	text-decoration: none;
	color: #000;
}

.article-preview-video-titre a:hover {
	text-decoration: none;
	color: #a2a147;
}

/* article-preview
----------------------------------*/
.article-preview {
	margin: 1.5rem 0;
}

.article-preview-texte {
	text-decoration: none !important;
}

.article-preview-titre {
	font-size: 1.4rem;
	color: #3b3d40;
	font-weight: 500;
}

.article-preview-titre .fas {
	display: inline-block;
	margin-right: .5rem;
	color: #efefef;
}

.article-preview-titre:hover .fas {
	color: #525119;
}

.article-preview-theme {
	color: #000000;
}

.article-preview-texte:hover, .article-preview-texte:hover .article-preview-titre {
	color: #525119;
}

.article-preview-date {
	color: #525119;
	font-weight: 500;
	font-size: 1rem;
	display: inline-block;
	min-width: 18rem;
	margin-right: 1rem;
}

/* recherche
----------------------------------*/
.article-search {
	display: flex;
	justify-content: center;
}

.article-search input.search {
	padding: 5px .8rem;
	border: 2px solid #d6cece;
}

.article-search .search-submit {
	width: 1.2rem;
	height: 1.2rem;
	margin-top: -2px;
	margin-right: -2.5rem;
}

.alert-error {
	background-color: #ffc2c3;
	border-radius: 1rem;
	padding: 1rem;
	font-size: 1.2rem;
}
