/* ============================================================
> FEUILLE DE STYLE CSS PERSONALISEE
---------------------------------------------------------------
> Agence 					: APGL64
> Webdesign					: Jonathan AURIBAULT
> Développement Front-End 	: Jonathan AURIBAULT
> Intégration TYPO3 		: Jonathan AURIBAULT
--------------------------------------------------------------
> Site internet				: Thème STANDARD
============================================================== */

/*-------------------------------------------------------
|  BOOTSTRAP |  Normal  |   Hover  |     Normal RGB     |
---------------------------------------------------------
| $default   | #cac1b0; | #e5e0d8; | rgb(202, 193, 176) | (gold)
| $primary   | #222b3e; | #91959f; | rgb(34, 43, 62)    | (marine)
| $secondary | #a6a369; | #d3d1b4; | rgb(166, 163, 105) | (green)
| $success   | #a6a369; | #d3d1b4; | rgb(166, 163, 105) | (green)
| $info      | #6184a5; | #b0c2d2; | rgb(97, 132, 165)  | (blue)
| $warning   | #b77e4b; | #dbbfa5; | rgb(183, 126, 75)  | (orange)
| $danger    | #873838; | #c39c9c; | rgb(135, 56, 56)   | (red)
---------------------------------------------------------

---------------------------------------------------------
|    LOGO    |  Normal  |   Hover  |     Normal RGB     |
---------------------------------------------------------
| $logo1     | #a6a369; | #d3d1b4; | rgb(166, 163, 105) | (green)
| $logo2     | #6184a5; | #b0c2d2; | rgb(97, 132, 165)  | (blue)
| $logo3     | #cac1b0; | #e5e0d8; | rgb(202, 193, 176) | (gold)
| $logo4     | #000000; | #000000; | rgb(0, 0, 0)       | (black)
------------------------------------------------------ */

/*
Raleway Light
Raleway Regular
Raleway Bold
*/



body {
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: #222b3e;
	background: #e6e6e6;
}

strong {
	font-weight: 700;
}


/* -> TITRES
============================================================== */

h1,
h1 a,
h2,
h2 a,
h3,
h3 a,
h4,
h4 a,
h5,
h5 a {
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
}

h1 {
	position: relative;
	padding: 0;
	font-size: 3rem;
	font-weight: 700;
	color: #222b3e;
}

@media (max-width: 991px) {
	h1 {
		font-size: 2.4rem;
	}
}

@media (max-width: 767px) {
	h1 {
		font-size: 2.2rem;
	}
}

h1,
h1 a {
	font-size: 3rem;
	color: #222b3e;
}

h2,
h2 a {
	font-size: 2.0rem;
	color: #6184a5;
}

h3,
h3 a {
	font-size: 1.75rem;
	color: #6184a5;
}

h4,
h4 a {
	font-size: 1.5rem;
	color: #a6a369;
}

h5,
h5 a {
	font-size: 1.5rem;
	color: #a6a369;
}

.frame {
	padding-top: 1.5rem;
	padding-bottom: 2rem;
}

.frame-background-primary {
	background-color: #a6a369;
}

.frame-background-secondary {
	background-color: #6184a5;
}

.frame-background-light {
	background-color: #e6e6e6;
}

.frame-background-dark {
	background-color: #222b3e;
}

.frame-header {
	margin-bottom: 1rem;
}


/* -> SEPARATEURS
============================================================== */

hr:not([size]) {
	height: 10px;
	background-image: radial-gradient(rgba(166, 163, 105, 1) 30%, transparent 40%);
	background-position: center;
	background-size: 10px 10px;
	background-color: transparent;
	border: none;
	opacity: 1;
}


/* -> LIENS
============================================================== */

a:not(.btn),
.frame a[class=''],
.frame a:not([class]) {
	font-weight: 700;
	color: #a6a369;
	text-decoration: none;
	transition: 0.25s ease-in-out;
}

a:not(.btn):hover,
a:not(.btn):focus,
.frame a[class='']:hover,
.frame a[class='']:focus,
.frame a:not([class]):hover,
.frame a:not([class]):focus {
	color: #6184a5;
	text-decoration: none;
}


/* -> BOUTONS
============================================================== */

.btn {
	padding: 0.75rem 2rem 0.75rem 2rem;
	font-family: 'Raleway', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffffff;
	background-color: #a6a369;
	box-shadow: none;
	border-radius: 10px;
	border: none;
}

.btn:hover,
.btn:focus {
	color: #ffffff;
	background-color: #6184a5 !important;
	box-shadow: none !important;
}


/* Default
------------------------------------ */
.btn-default {
	color: #ffffff;
	background-color: #a6a369;
}

.btn-default:hover,
.btn-default:focus {
	color: #ffffff;
	background-color: #6184a5 !important;
}

/* Primary
------------------------------------ */
.btn-primary {
	background-color: #a6a369;
}

.btn-primary:hover,
.btn-primary:focus {
	background-color: #d3d1b4 !important;
}

/* Secondary
------------------------------------ */
.btn-secondary {
	background-color: #222b3e;
}

.btn-secondary:hover,
.btn-secondary:focus {
	background-color: #91959f !important;
}

/* Success
------------------------------------ */
.btn-success {
	background-color: #a6a369;
}

.btn-success:hover,
.btn-success:focus {
	background-color: #d3d1b4 !important;
}

/* Info
------------------------------------ */
.btn-info {
	background-color: #6184a5;
}

.btn-info:hover,
.btn-info:focus {
	background-color: #b0c2d2 !important;
}

/* Warning
------------------------------------ */
.btn-warning {
	background-color: #b77e4b;
}

.btn-warning:hover,
.btn-warning:focus {
	background-color: #dbbfa5 !important;
}

/* Danger
------------------------------------ */
.btn-danger {
	background-color: #873838;
}

.btn-danger:hover,
.btn-danger:focus {
	background-color: #c39c9c !important;
}

/* Disabled
------------------------------------ */
.btn:disabled,
.btn-default:disabled,
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-success:disabled,
.btn-info:disabled,
.btn-warning:disabled,
.btn-danger:disabled {
	color: #949494;
	background-color: #e6e6e6 !important;
}


/* -> TABLEAUX
============================================================== */

.frame.frame-default .table-responsive {
	margin: 0 0 1rem 0;
	padding: 0;
	border-radius: 10px;
	overflow: hidden;
}

.frame.frame-default .table {
	margin: 0;
	color: #222b3e;
	background-color: #ffffff;
	border: none;
}

.frame.frame-default .table> :not(:first-child) {
	border-top: 0px solid rgba(168, 168, 168, 1);
}

.frame.frame-default .table th,
.frame.frame-default .table td {
	padding: 1rem;
	font-size: 1rem;
	border: none !important;
	border-bottom: 1px solid rgba(168, 168, 168, 0.5) !important;
}

.frame.frame-default .table td {
	border-right: 1px solid rgba(168, 168, 168, 0.5) !important;
}

.frame.frame-default .table.table-small th,
.frame.frame-default .table.table-small td {
	padding: 0.5rem 1rem;
}

.frame.frame-default .table.table-condensed th,
.frame.frame-default .table.table-condensed td {
	padding: 0.25rem 0.5rem;
	font-size: 0.75rem;
}

.table th:last-child,
.table td:last-child {
	border-right: none !important;
}

.frame.frame-default .table tr:last-child th,
.frame.frame-default .table tr:last-child td {
	border-bottom: none !important;
}

.frame.frame-default .table thead th,
.frame.frame-default .table thead td {
	color: #ffffff;
}

.frame.frame-default .table thead th {
	background-color: rgba(97, 132, 165, 1);
	border-right: none !important;
}

.frame.frame-default .table thead td {
	background-color: rgba(97, 132, 165, 0.7);
}

.frame.frame-default .table tbody th {
	color: #222b3e;
	background-color: rgba(168, 168, 168, 0.2);
}

.frame.frame-default .table tfoot th {
	color: #222b3e;
	background-color: rgba(168, 168, 168, 0.2);
}

.frame.frame-default .table tfoot th,
.frame.frame-default .table tfoot td {
	color: #222b3e;
	background-color: rgba(0, 0, 0, 0.15);
}

/* Tableau dans cadre
------------------------------------ */

.frame.frame-default.frame-type-tab .table-responsive,
.frame.frame-default.frame-type-accordion .table-responsive,
.frame.frame-default.frame-type-panel .table-responsive {
	border-radius: 0;
}

.frame.frame-default.frame-type-tab .table,
.frame.frame-default.frame-type-accordion .table,
.frame.frame-default.frame-type-panel .table {
	background-color: #e6e6e6;
}

.frame.frame-default.frame-type-tab .table th,
.frame.frame-default.frame-type-accordion .table th,
.frame.frame-default.frame-type-panel .table th,
.frame.frame-default.frame-type-tab .table td,
.frame.frame-default.frame-type-accordion .table td,
.frame.frame-default.frame-type-panel .table td {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.frame.frame-default.frame-type-tab .table td,
.frame.frame-default.frame-type-accordion .table td,
.frame.frame-default.frame-type-panel .table td {
	border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
}


/* -> FORMULAIRES
============================================================== */

.form-element label {
	padding-left: 0;
	font-size: 1rem;
	font-weight: 700;
	color: #a6a369;
}

.form-element .form-control {
	margin: 0 0 15px 0;
	padding: 10px 20px;
	height: inherit;
	font-size: 1.25rem;
	font-weight: 300;
	font-style: italic;
	color: #222b3e;
	background-color: #e6e6e6;
	border-radius: 10px;
	box-shadow: none;
	border: none;
	transition: background 0.25s ease-in-out;
}

.form-element .form-control:focus {
	color: #ffffff;
	background-color: rgba(166, 163, 105, 0.5);
}

.form-element textarea {
	min-height: 120px;
}

.form-element .form-control::-webkit-input-placeholder {
	color: #949494;
}

.form-element .form-control:focus::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.5);
}

/* Firefox < 19 */
.form-element .form-control:-moz-placeholder {
	color: #949494;
}

.form-element .form-control:focus:-moz-placeholder {
	color: rgba(255, 255, 255, 0.5);
}

/* Firefox > 19 */
.form-element .form-control::-moz-placeholder {
	color: #949494;
}

.form-element .form-control:focus::-moz-placeholder {
	color: rgba(255, 255, 255, 0.5);
}

/* Internet Explorer 10 */
.form-element .form-control:-ms-input-placeholder {
	color: #949494;
}

.form-element .form-control:focus:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.5);
}


/* Gestion des erreurs
------------------------------------ */

.form-element.is-invalid label {
	color: #873838;
}

.form-element.is-invalid .form-control:not(:focus) {
	background-color: rgba(135, 56, 56, 0.1) !important;
	border-color: #873838 !important;
}

.form-element.is-invalid .form-control::-webkit-input-placeholder {
	/* Chrome - Opera - Safari */
	color: #873838;
}

.form-element.is-invalid .form-control::-moz-placeholder {
	/* Firefox 19+ */
	color: #873838;
}

.form-element.is-invalid .form-control:-ms-input-placeholder {
	/* IE 10+ */
	color: #873838;
}

.form-element.is-invalid .form-control:-moz-placeholder {
	/* Firefox 18- */
	color: #873838;
}


/* -> NAVIGATION
============================================================== */

.navbar {
	padding: 0;
	background-color: #6184a5 !important;
	box-shadow: none;
	z-index: 99;
}

.navbar.navbar-sticky {
	position: fixed;
	top: 0;
	width: 100%
}

.navbar.navbar-sticky+.content {
	padding-top: 80px;
}


/* Logo
------------------------------------ */

.navbar .navbar-brand {
	margin-right: 1rem;
	padding: 0;
	height: 50px;
	transition: 0.25s ease-in-out;
}

.navbar.navbar-transition .navbar-brand {
	height: 50px;
}

@media (min-width: 992px) {
	.navbar .navbar-brand.navbar-brand-image {
		position: absolute;
		padding: 20px;
		top: 0;
		width: 200px;
		height: 200px;
		background-color: #6184a5;
		border-radius: 50%;
		text-align: center;
		z-index: 999;
		transition: 0.25s ease-in-out;
	}

	.navbar.navbar-transition .navbar-brand.navbar-brand-image {
		width: 180px;
		height: 180px;
	}

	.navbar .navbar-brand.navbar-brand-image:before {
		position: absolute;
		content: '';
		top: 5px;
		left: 10px;
		width: 180px;
		height: 180px;
		background-color: #ffffff;
		border-radius: 50%;
		z-index: -1;
		transition: 0.25s ease-in-out;
	}

	.navbar.navbar-transition .navbar-brand.navbar-brand-image:before {
		width: 160px;
		height: 160px;
	}

	.navbar .navbar-brand.navbar-brand-image>.navbar-brand-logo-normal {
		margin-top: -20px;
		width: 100%;
		height: 100%;
		max-height: inherit;
		object-fit: contain;
		z-index: 99999;
	}

	.navbar .navbar-brand.navbar-brand-image>.navbar-brand-logo-inverted {
		display: none;
	}
}

@media (max-width: 991px) {
	.navbar .navbar-brand.navbar-brand-image>.navbar-brand-logo-normal {
		display: none;
	}

	.navbar .navbar-brand.navbar-brand-image>.navbar-brand-logo-inverted {
		max-height: 60px;
		display: block;
	}
}


/* Toggle
------------------------------------ */

.navbar .navbar-toggler {
	margin: 5px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #ffffff;
	background-color: #6184a5;
	box-shadow: none;
	border: none;
	z-index: 99;
	transition: background 0.25s ease-in-out;
}

.navbar .navbar-toggler:hover {
	background-color: #222b3e;
}

.navbar .navbar-toggler .navbar-toggler-icon,
.navbar .navbar-toggler .navbar-toggler-icon:before,
.navbar .navbar-toggler .navbar-toggler-icon:after {
	width: 30px;
	border-radius: 10px;
	background-color: #222b3e;
}

.navbar .navbar-toggler:hover .navbar-toggler-icon,
.navbar .navbar-toggler:hover .navbar-toggler-icon:before,
.navbar .navbar-toggler:hover .navbar-toggler-icon:after {
	background-color: #a6a369;
}

.navbar .navbar-toggler.collapsed .navbar-toggler-icon,
.navbar .navbar-toggler .navbar-toggler-icon:before,
.navbar .navbar-toggler .navbar-toggler-icon:after {
	height: 3px;
}

.navbar .navbar-toggler.collapsed .navbar-toggler-icon:before {
	top: -8px;
}

.navbar .navbar-toggler.collapsed .navbar-toggler-icon:after {
	top: 8px;
}


/* Menu
------------------------------------ */

@media (max-width: 991px) {
	.navbar .navbar-collapse {
		margin: 20px 0 !important;
		background: rgba(34, 43, 62, 0.5);
		border: 0px solid #ffffff;
		border-radius: 10px;
		max-height: calc(100vh - 70px);
		overflow-y: auto;
	}

	.navbar.navbar-transition .navbar-collapse {
		margin-top: 0 !important;
	}
}

/* Niveau 1 */

.navbar-nav {
	margin: 0 auto !important;
	padding-left: 200px;
	/* Car pas de Logo affiché */
	align-items: center;
	z-index: 99;
	transition: 0.25s ease-in-out;

	/*display: table;*/
}

.navbar.navbar-transition .navbar-nav {
	padding-left: 180px;
}

@media (max-width: 991px) {
	.navbar-nav {
		margin: 0 auto !important;
		padding: 0 !important;
		gap: 0 !important;
	}
}

.navbar-nav:before {
	display: none;
}

.navbar-default .navbar-nav .nav-item {
	position: relative;
	display: table-cell;
}

@media (max-width: 991px) {
	.navbar-default .navbar-nav .nav-item {
		width: 100%;
		display: inline-block;
	}
}

@media (min-width: 992px) {
	.navbar-default .navbar-nav .nav-item:after {
		position: absolute;
		content: '';
		right: -5px;
		top: 45%;
		width: 10px;
		height: 10px;
		background-color: #ffffff;
		border-radius: 50%;
		z-index: 3;
	}

	.navbar-default .navbar-nav .nav-item:last-child:after {
		display: none;
	}
}

.navbar-default .navbar-nav .nav-item .nav-link {
	position: relative;
	/*padding: 1rem !important;*/
	padding: 1.5rem 1rem 1rem 1rem !important;
	font-family: 'Raleway', sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1;
	color: #222b3e !important;
	text-align: center;
	text-transform: uppercase;
	background-color: #6184a5;
	border-bottom: 8px transparent solid;
	transition: 0.25s ease-in-out;
}

.navbar-default .navbar-nav .nav-item.active .nav-link {
	color: #ffffff !important;
	background-color: #6184a5;
	border-bottom: 8px #222b3e solid;
}

.navbar-default .navbar-nav .nav-item .nav-link:hover {
	color: #a6a369 !important;
	background-color: #ffffff;
	border-bottom: 8px #222b3e solid;
}

@media (min-width: 992px) {
	.navbar-default .navbar-nav .nav-item:first-child .nav-link {
		padding: 1rem 0.80rem 1rem 1rem !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.navbar-default .navbar-nav .nav-item .nav-link {
		font-size: 1rem;
	}
}

@media (max-width: 991px) {
	.navbar-default .navbar-nav .nav-item .nav-link {
		padding: 1rem 1.5rem !important;
		font-size: 1.2rem;
		font-weight: 400;
		text-align: left;
		color: #ffffff !important;
		background-color: #222b3e;
		border-radius: 0;
	}

	.navbar-default .navbar-nav .nav-item:first-child .nav-link {
		padding: 1rem !important;
		text-align: left;
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
	}

	.navbar-default .navbar-nav .nav-item:last-child:not(.show) .nav-link {
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}

	.navbar-default .navbar-nav .nav-item.active .nav-link,
	.navbar-default .navbar-nav .nav-item .nav-link:hover {
		color: #222b3e !important;
		background-color: #ffffff;
	}

	.navbar-default .navbar-nav .nav-item.show .nav-link {
		color: #ffffff !important;
		background-color: #222b3e;
	}
}

.navbar-default .navbar-nav .nav-item .nav-link .nav-link-icon>svg {
	width: 42px;
	height: 35px;
}

.navbar-default .navbar-nav .nav-item.active .nav-link .nav-link-icon>svg path,
.navbar-default .navbar-nav .nav-item .nav-link:hover .nav-link-icon>svg path {
	fill: #a6a369;
}

@media (min-width: 992px) {
	.navbar-default .navbar-nav .nav-item:first-child .nav-link .nav-link-text {
		display: none;
	}
}

@media (max-width: 991px) {
	.navbar-default .navbar-nav .nav-item .nav-link .nav-link-icon>svg path:first-child {
		fill: #6184a5;
	}

	.navbar-default .navbar-nav .nav-item .nav-link .nav-link-icon>svg path:last-child {
		fill: #ffffff;
	}

	.navbar-default .navbar-nav .nav-item.active .nav-link .nav-link-icon>svg path,
	.navbar-default .navbar-nav .nav-item .nav-link:hover .nav-link-icon>svg path {
		fill: #222b3e;
	}
}

.navbar-default .navbar-nav .nav-link.dropdown-toggle {
	white-space: inherit;
}

.navbar-default .navbar-nav .nav-link.dropdown-toggle:after {
	position: relative;
	margin-left: 10px;
	content: '\f0d7';
	font-family: 'Font Awesome 6 Free';
	font-size: 1rem;
	font-weight: 800;
	color: #a6a369;
	display: block;
	border: none;
	transition: 0.25s ease-in-out;
}

.navbar-default .navbar-nav .nav-link.dropdown-toggle:hover:after {
	color: #a6a369;
}

@media (max-width: 991px) {
	.navbar-default .navbar-nav .nav-item .nav-link.dropdown-toggle:after {
		color: #6184a5;
	}

	.navbar-default .navbar-nav .nav-item .nav-link.dropdown-toggle:hover:after {
		color: #a6a369;
	}
}

.navbar-nav .nav-item .nav-link:before {
	display: none;
}

@media (max-width: 991px) {

	.navbar-nav .nav-item.active .nav-link:before,
	.navbar-nav .nav-item.show .nav-link:before,
	.navbar-nav .nav-item:hover .nav-link:before,
	.navbar-nav .nav-item:focus .nav-link:before {
		display: none;
	}
}

/* Niveau 2 */

.navbar-nav .dropdown-menu {
	padding: 20px 0 0 0;
	background: none;
	box-shadow: none;
	border-radius: 10px;
	border: none;
	/*filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.25));*/
	width: auto;
}

@media (min-width: 992px) {
	.navbar-nav .dropdown-menu:before {
		position: absolute;
		top: 5px;
		left: 45px;
		content: '';
		width: 0;
		height: 0;
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		border-bottom: 15px solid #ffffff;
	}
}

@media (max-width: 991px) {
	.navbar-nav .dropdown-menu {
		margin: 0 20px;
		padding: 0;
		filter: none;
		/*overflow: hidden;*/
	}
}

.navbar-nav .dropdown-menu .dropdown-item {
	margin: 0;
	padding: 1rem 1.5rem;
	font-size: 1.2rem;
	font-weight: 400;
	color: #222b3e !important;
	background-color: #ffffff;
	border: none;
}

@media (max-width: 991px) {
	.navbar-nav .dropdown-menu .dropdown-item {
		padding: 1rem 1.5rem;
		align-items: baseline;
	}

	.navbar-nav .dropdown-menu .dropdown-text {
		white-space: normal;
	}
}

.navbar-nav .dropdown-menu .dropdown-item.active,
.navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown-menu .dropdown-item:focus {
	color: #222b3e !important;
	background-color: #6184a5;
}

@media (max-width: 991px) {

	.navbar-nav .nav-item .dropdown-menu .dropdown-item.active,
	.navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
	.navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
		color: #ffffff !important;
		background-color: #6184a5;
	}
}

.navbar-nav .dropdown-menu .dropdown-item:before {
	position: relative;
	content: '\f105';
	font-family: 'Font Awesome 6 Free';
	font-size: 1rem;
	font-weight: 700;
	color: #a6a369;
	margin-right: 10px;
}

@media (max-width: 991px) {
	.navbar-nav .nav-item .dropdown-menu .dropdown-item:before {
		color: #a6a369;
	}
}

.navbar-nav .dropdown-menu .dropdown-item.active:before,
.navbar-nav .dropdown-menu .dropdown-item:hover:before {
	color: #222b3e;
}

.navbar-nav .dropdown-menu li:first-child>.dropdown-item {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.navbar-nav .dropdown-menu li:last-child>.dropdown-item {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

@media (max-width: 991px) {

	.navbar-nav .dropdown-menu li:first-child>.dropdown-item,
	.navbar-nav .nav-item:not(:last-child) .dropdown-menu li:last-child>.dropdown-item {
		border-radius: 0;
	}
}

/* Niveau 3 & 4 */

.navbar-nav .dropdown-menu .nav-item.dropdown .dropdown-menu {
	top: 0;
	left: 100%;
	padding: 0 0 0 20px;
}

.navbar-nav .dropdown-menu .nav-item.dropdown .dropdown-menu:before {
	position: absolute;
	top: 20px;
	left: -5px;
	content: '';
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-right: 15px solid #ffffff;
	border-bottom: 5px solid transparent;
}

@media (max-width: 991px) {
	.navbar-nav .dropdown-menu .nav-item.dropdown .dropdown-menu {
		margin: 0 0 15px 0;
		padding: 0;
		display: block;
		filter: none;
	}

	.navbar-nav .dropdown-menu .nav-item.dropdown .dropdown-menu:before {
		display: none;
	}

	.navbar-nav .dropdown-menu .nav-item.dropdown.dropdown-hover>.dropdown-item {
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}

	.navbar-nav .dropdown-menu .nav-item.dropdown .dropdown-menu li:first-child .dropdown-item {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
	}

	.navbar-nav .dropdown-menu .nav-item.dropdown.dropdown-hover+.nav-item>.dropdown-item {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
	}

	.navbar-nav .dropdown-menu .nav-item.dropdown .dropdown-menu li .dropdown-item {
		position: relative;
		padding-left: 50px;
		background-color: #ffffff;
	}

	.navbar-nav .dropdown-menu .nav-item.dropdown .dropdown-menu li .dropdown-item.active,
	.navbar-nav .dropdown-menu .nav-item.dropdown .dropdown-menu li .dropdown-item:hover,
	.navbar-nav .dropdown-menu .nav-item.dropdown .dropdown-menu li .dropdown-item:focus {
		color: #ffffff !important;
		/*background-color: #a6a369;*/
		background-color: rgba(97, 132, 165, 0.5);
	}

	.navbar-nav .dropdown-menu .nav-item.dropdown .dropdown-menu li .dropdown-item:before {
		position: absolute;
		content: '';
		top: 0;
		left: 30px;
		width: 5px;
		height: 100%;
		background-color: #a6a369;
		z-index: 1;
	}

	.navbar-nav .dropdown-menu .nav-item.dropdown .dropdown-menu li .dropdown-item:hover:before {
		background-color: #222b3e;
	}
}

/* Recherche
------------------------------------ */

.navbar-nav:last-child {
	padding: 0 !important;
}

.navbar-nav:last-child .nav-item.active:before,
.navbar-nav:last-child .nav-item:hover:before {
	width: 35px;
}

.navbar-nav .nav-item form {
	margin-left: -20px;
	margin-right: -20px;
	padding: 0.5rem;
}

@media (max-width: 991px) {
	.navbar-nav .nav-item form {
		display: none;
	}
}

.navbar-nav .nav-item form .input-group {
	flex-wrap: nowrap;
	filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.25));
}

.navbar-nav .nav-item form .input-group:after {
	position: absolute;
	top: 85px;
	right: 30px;
	content: '';
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 15px solid #ffffff;
	opacity: 1;
	transition: opacity 0.5s;
}

.navbar-nav .nav-item form .input-group.no-after:after {
	border: none;
	opacity: 0;
}

.navbar-nav .nav-item form .input-group .form-control {
	position: absolute;
	width: 250px;
	height: 50px;
	top: 100px;
	right: 0;
	padding: 1rem 1.5rem;
	font-size: 1.2rem;
	font-weight: 500;
	color: #222b3e;
	text-align: center;
	background-color: #ffffff;
	box-shadow: none;
	border-radius: 10px !important;
	border: none;
	display: none;
}

.navbar-nav .nav-item form .input-group .input-group-append .btn {
	width: 35px;
	height: 100%;
	text-indent: -5000px;
	background: transparent url('images/recherche.svg') no-repeat 50% 50%;
	background-size: 50%;
}

.navbar-nav .nav-item form .input-group .input-group-append .btn:hover,
.navbar-nav .nav-item form .input-group .input-group-append .btn:focus {
	background-color: transparent !important;
}


/* -> CONTACT & RECHERCHE
============================================================== */

@media (max-width: 991px) {
	.contact-section {
		margin-top: -210px;
		padding: 30px 20px;
	}
}

.contact-section .container {
	position: relative;
}

.contact-section .container .contact {
	position: relative;
	margin: 0 auto;
	padding: 1rem 2rem;
	width: auto;
	height: auto;
	text-align: center;
	background-color: rgba(34, 43, 62, 0.5);
	border-radius: 10px;
}

@media (min-width: 992px) {
	.contact-section .container .contact {
		display: none;
	}
}

@media (max-width: 991px) {
	.contact-section .container .contact {
		width: 80%;
	}
}

@media (max-width: 767px) {
	.contact-section .container .contact {
		width: 100%;
	}
}

/* Contact
------------------------------------ */

.contact-section .container .contact .infos p {
	margin-bottom: 0.5rem;
	font-size: 1rem;
	font-weight: 700;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: baseline;
}

.contact-section .container .contact .infos p:first-child {
	font-size: 1.4rem;
	flex-direction: row;
}

.contact-section .container .contact .infos p:first-child>.fa-solid {
	margin-right: 5px;
	font-size: 1.2rem;
	color: #a6a369;
}

.contact-section .container .contact .infos p:last-child {
	font-size: 1rem;
	flex-direction: row;
}

.contact-section .container .contact .infos p:last-child>.fa-solid {
	margin-right: 5px;
	font-size: 1rem;
	color: #a6a369;
}

.contact-section .container .contact .infos p:last-child a {
	color: #ffffff;
}

.contact-section .container .contact .infos p:last-child a:hover,
.contact-section .container .contact .infos p:last-child a:focus {
	color: #a6a369;
}


/* Recherche
------------------------------------ */

.contact-section .container .contact .search form {
	max-width: none;
	margin: 0.5rem auto;
	padding: 0;
}

.contact-section .container .contact .search form .input-group {
	background-color: #e6e6e6;
	border-radius: 10px;
}

.contact-section .container .contact .search form .input-group .form-control {
	padding: 0.5rem;
	height: 40px;
	font-size: 1rem;
	font-weight: 400;
	color: #222b3e;
	text-align: center;
	background-color: #e6e6e6;
	box-shadow: none;
	border-radius: 10px 0 0 10px;
	border: none;
}

.contact-section .container .contact .search form .input-group .input-group-append .btn {
	padding: 0;
	width: 40px;
	height: 100%;
	font-size: 0;
	color: transparent;
	text-align: center;
	background: #6184a5 url('images/recherche.svg') no-repeat 50% 50%;
	background-size: 60%;
	border-radius: 10px;
}

.contact-section .container .contact .search form .input-group .input-group-append .btn:hover,
.contact-section .container .contact .search form .input-group .input-group-append .btn:focus {
	background-color: rgba(166, 163, 105, 1) !important;
}


/* -> PAGE de RECHERCHE
============================================================== */

/* Zone de recherche
------------------------------------ */

.frame.frame-type-list.frame-search {
	text-align: center;
}

.frame.frame-type-list.frame-search form {
	margin: 2rem 0;
	padding: 0;
	border-radius: 0;
}

.frame.frame-type-list.frame-search form>fieldset>div.row>div .form-label {
	font-weight: 700;
	color: #222b3e;
}

.frame.frame-type-list.frame-search form>fieldset>div.row>div .form-control,
.frame.frame-type-list.frame-search form>fieldset>div.row>div .form-select {
	position: relative;
	margin: 0 0 15px 0;
	padding: 10px 20px;
	height: 65px;
	font-size: 1.25rem;
	font-weight: 300;
	font-style: italic;
	color: #222b3e;
	text-align: center;
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: none;
	border: none;
	transition: background 0.25s ease-in-out;
}

.frame.frame-type-list.frame-search form>fieldset>div.row>div .form-check-input[type="checkbox"] {
	background-color: #ffffff;
	border: none;
	cursor: pointer;
}

.frame.frame-type-list.frame-search form>fieldset>div.row>div .form-check-input:checked[type="checkbox"] {
	background-color: #222b3e;
}

.frame.frame-type-list.frame-search form>fieldset>div.row>div .form-control:focus,
.frame.frame-type-list.frame-search form>fieldset>div.row>div .form-select:focus {
	color: #ffffff;
	background-color: rgba(166, 163, 105, 0.5);
}

.frame.frame-type-list.frame-search form>fieldset>div.row>div .btn {
	padding: 1rem 2rem;
	height: 65px;
}


/* Résultats de recherche
------------------------------------ */

.frame.frame-type-list.frame-search .alert {
	color: #222b3e;
	background-color: #eeeeee;
	border-radius: 10px;
	border: none;
}

.frame.frame-type-list.frame-search .list-group {
	margin: 0 0 1.5rem 0;
	padding: 1rem;
	background-color: #ffffff;
	border-radius: 10px;
}

.frame-searchresult .list-group {
	margin: 30px 0;
}

.frame.frame-type-list.frame-search .list-group a.list-group-item {
	margin: 5px 0;
	background-color: #ffffff;
	border: none;
	display: flex;
	align-items: center;
	border-radius: 10px;
}

.frame.frame-type-list.frame-search .list-group a.list-group-item:hover,
.frame.frame-type-list.frame-search .list-group a.list-group-item:focus {
	background-color: #f5f5f5;
}

.frame.frame-type-list.frame-search .list-group a.list-group-item>.badge {
	margin-right: 10px;
	padding: 8px 5px;
	width: 35px;
	height: 35px;
	color: #ffffff;
	background: #222b3e;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.frame.frame-type-list.frame-search .card {
	margin: 0 0 1.5rem 0;
	padding: 1rem;
	background-color: #ffffff;
	border-radius: 10px;
	border: none;
}

.frame.frame-type-list.frame-search .card .card-body {
	padding: 0;
	color: #222b3e;
}

.frame.frame-type-list.frame-search .card .card-body>h4>span {
	margin-left: 5px;
	padding: 0.25rem 0.5rem;
	color: rgba(34, 43, 62, 0.75);
	text-align: center;
	background-color: rgba(34, 43, 62, 0.25);
	border-radius: 10px;
}

.frame.frame-type-list.frame-search .card .card-body>ul {
	margin: 0;
}

.frame.frame-type-list.frame-search .card .card-body>ul li,
.frame.frame-type-list.frame-search .card .card-body>ul li strong,
.frame.frame-type-list.frame-search .card .card-body>ul li a {
	font-size: 0.95rem;
}

.frame.frame-type-list.frame-search .card .card-body>ul li strong:after {
	position: relative;
	content: ':';
	margin-left: 5px;
}

/* Pagination */
.frame.frame-type-list.frame-search .tx-indexedsearch-browsebox li {
	margin: 5px;
	display: inline-block;
}

.frame.frame-type-list.frame-search .tx-indexedsearch-browsebox li a {
	padding: 10px 20px;
	color: #ffffff;
	background-color: #222b3e;
	border-radius: 10px;
	display: block;
}

.frame.frame-type-list.frame-search .tx-indexedsearch-browsebox li a:hover,
.frame.frame-type-list.frame-search .tx-indexedsearch-browsebox li a:focus {
	color: #ffffff;
	background-color: #a6a369;
}

.frame.frame-type-list.frame-search .tx-indexedsearch-browsebox li.tx-indexedsearch-browselist-currentPage a {
	padding: 10px 20px;
	color: #ffffff;
	background-color: #a6a369;
	border-radius: 10px;
}


/* -> CAROUSEL
============================================================== */

.header .navbar>.container {
	position: relative;
}

/* Carousel BANDEAU page ACCUEIL
------------------------------------ */

.backendlayout-special_feature .body-bg>.carousel .item {
	background-color: #cac1b0 !important;
	height: 600px;
}

@media (max-width: 1199px) {
	.backendlayout-special_feature .body-bg>.carousel .item {
		height: 500px;
	}
}

@media (max-width: 991px) {
	.backendlayout-special_feature .body-bg>.carousel .item {
		height: 400px;
	}
}

@media (max-width: 767px) {
	.backendlayout-special_feature .body-bg>.carousel .item {
		height: 300px;
	}
}

.backendlayout-special_feature .body-bg>.carousel .item .carousel-content-inner {
	align-items: flex-start;
	justify-content: flex-end;
}

.backendlayout-special_feature .body-bg>.carousel .item .carousel-content-inner .carousel-text-inner {
	margin: 1.5rem 0;
	max-width: 50%;
}

@media (max-width: 1199px) {
	.backendlayout-special_feature .body-bg>.carousel .item .carousel-content-inner .carousel-text-inner {
		max-width: 55%;
	}
}

@media (max-width: 991px) {
	.backendlayout-special_feature .body-bg>.carousel .item .carousel-content-inner .carousel-text-inner {
		margin: 0.5rem auto;
		max-width: 100%;
	}
}

.backendlayout-special_feature .body-bg>.carousel .item .carousel-content-inner .carousel-text-inner .carousel-header {
	margin: 0;
	padding: 0;
	font-size: 3rem;
	font-weight: 700;
	color: #222b3e;
	text-align: right;
}

.backendlayout-special_feature .body-bg>.carousel .item .carousel-content-inner .carousel-text-inner h1.carousel-header {
	color: #222b3e;
}

.backendlayout-special_feature .body-bg>.carousel .item .carousel-content-inner .carousel-text-inner h2.carousel-header {
	color: #a6a369;
}

@media (max-width: 1199px) {
	.backendlayout-special_feature .body-bg>.carousel .item .carousel-content-inner .carousel-text-inner .carousel-header {
		font-size: 2.5rem;
	}
}

@media (max-width: 991px) {
	.backendlayout-special_feature .body-bg>.carousel .item .carousel-content-inner .carousel-text-inner .carousel-header {
		font-size: 2rem;
		text-align: center;
	}
}

/* On affiche le 1er beandeau uniquement */

.backendlayout-special_feature .body-bg>.carousel~.carousel,
.backendlayout-special_feature .body-bg>.carousel~.frame.frame-type-textpic {
	display: none;
}

/* Carousel BANDEAU page DÉFAUT
------------------------------------ */

.backendlayout-default .body-bg>.carousel .item,
.backendlayout-default .body-bg>.frame.frame-type-textpic,
.backendlayout-subnavigation_left .body-bg>.carousel .item,
.backendlayout-subnavigation_left .body-bg>.frame.frame-type-textpic,
.backendlayout-subnavigation_left_2_columns .body-bg>.carousel .item,
.backendlayout-subnavigation_left_2_columns .body-bg>.frame.frame-type-textpic {
	height: 300px;
}

/* On affiche le 2er beandeau uniquement */

.backendlayout-default .body-bg>.carousel,
.backendlayout-subnavigation_left .body-bg>.carousel,
.backendlayout-subnavigation_left_2_columns .body-bg>.carousel {
	display: none;
}

.backendlayout-default .body-bg>.frame.frame-type-panel,
.backendlayout-subnavigation_left .body-bg>.frame.frame-type-panel,
.backendlayout-subnavigation_left_2_columns .body-bg>.frame.frame-type-panel {
	display: none;
}

.backendlayout-default .body-bg>.carousel~.carousel,
.backendlayout-default .body-bg>.carousel~.frame.frame-type-textpic,
.backendlayout-subnavigation_left .body-bg>.carousel~.carousel,
.backendlayout-subnavigation_left .body-bg>.carousel~.frame.frame-type-textpic,
.backendlayout-subnavigation_left_2_columns .body-bg>.carousel~.carousel,
.backendlayout-subnavigation_left_2_columns .body-bg>.carousel~.frame.frame-type-textpic {
	display: block;
}

/*@media (max-width: 767px) {
	.backendlayout-default .body-bg > .carousel ~ .carousel,
	.backendlayout-default .body-bg > .carousel ~ .frame.frame-type-textpic,
	.backendlayout-subnavigation_left .body-bg > .carousel ~ .carousel,
	.backendlayout-subnavigation_left .body-bg > .carousel ~ .frame.frame-type-textpic,
	.backendlayout-subnavigation_left_2_columns .body-bg > .carousel ~ .carousel,
	.backendlayout-subnavigation_left_2_columns .body-bg > .carousel ~ .frame.frame-type-textpic {
		display: none;
	}
}*/

/* Carousel BANDEAU
------------------------------------ */

.body-bg>.carousel .carousel-control {
	width: auto;
}

.body-bg>.carousel .carousel-control .carousel-control-icon {
	margin: 0 30px;
	top: 45%;
	width: 80px;
	height: 80px;
	background-color: rgba(255, 255, 255, 1);
	background-image: none !important;
	justify-content: center;
	align-items: center;
	display: flex;
	border-radius: 50%;
	transition: 0.25s ease-in-out;
}

@media (max-width: 1199px) {
	.body-bg>.carousel .carousel-control .carousel-control-icon {
		margin: 0 15px;
		top: 50%;
		width: 80px;
		height: 80px;
	}
}

@media (max-width: 991px) {
	.body-bg>.carousel .carousel-control .carousel-control-icon {
		width: 70px;
		height: 70px;
	}
}

@media (max-width: 767px) {
	.body-bg>.carousel .carousel-control .carousel-control-icon {
		width: 60px;
		height: 60px;
	}
}

.body-bg>.carousel .carousel-control:hover .carousel-control-icon {
	background-color: rgba(34, 43, 62, 1);
}

.body-bg>.carousel .carousel-control .carousel-control-icon:before {
	transform: rotate(0deg) !important;
	width: auto;
	height: auto;
	font-family: 'Font Awesome 6 Free';
	font-size: 2.4rem;
	font-weight: 800;
	color: rgba(34, 43, 62, 1);
	border: none;
	transition: 0.25s ease-in-out;
}

@media (max-width: 1199px) {
	.body-bg>.carousel .carousel-control .carousel-control-icon:before {
		font-size: 2rem;
	}
}

@media (max-width: 999px) {
	.body-bg>.carousel .carousel-control .carousel-control-icon:before {
		font-size: 1.8rem;
	}
}

@media (max-width: 767px) {
	.body-bg>.carousel .carousel-control .carousel-control-icon:before {
		font-size: 1.6rem;
	}
}

.body-bg>.carousel .carousel-control:hover .carousel-control-icon:before {
	color: rgba(166, 163, 105, 1);
}

.body-bg>.carousel .carousel-control.carousel-control-prev .carousel-control-icon {
	left: 0;
}

.body-bg>.carousel:hover .carousel-control.carousel-control-prev .carousel-control-icon {
	left: 0;
}

.body-bg>.carousel .carousel-control.carousel-control-next .carousel-control-icon {
	right: 0;
}

.body-bg>.carousel:hover .carousel-control.carousel-control-next .carousel-control-icon {
	right: 0;
}

.body-bg>.carousel .carousel-control.carousel-control-prev .carousel-control-icon:before {
	content: '\f053';
}

.body-bg>.carousel .carousel-control.carousel-control-next .carousel-control-icon:before {
	content: '\f054';
}

.body-bg>.carousel .carousel-indicators {
	margin: 0;
	align-items: center;
	bottom: 30px;
	opacity: 0.5;
}

.body-bg>.carousel .carousel-indicators [data-bs-target] {
	opacity: 1;
}

@media (max-width: 767px) {
	.body-bg>.carousel .carousel-indicators {
		bottom: 20px;
	}
}

.body-bg>.carousel:hover .carousel-indicators {
	opacity: 1 !important;
}

.body-bg>.carousel .carousel-indicators button {
	width: 20px;
	height: 20px;
	margin: 0 10px;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 50%;
}

.body-bg>.carousel .carousel-indicators button.active {
	width: 20px;
	height: 20px;
	margin: 0 5px;
	background-color: rgba(166, 163, 105, 1);
}


/* Carousel CONTENU
------------------------------------ */

.body-bg>.bp-page-content .carousel {
	overflow: visible;
}

.body-bg>.bp-page-content .carousel .carousel-inner {
	border-radius: 10px;
	overflow: hidden;
}

.body-bg>.bp-page-content .carousel .carousel-control {
	width: auto;
	opacity: 1;
}

.body-bg>.bp-page-content .carousel:hover .carousel-control {
	opacity: 0.75;
}

.body-bg>.bp-page-content .carousel .carousel-control .carousel-control-icon {
	margin: 0 30px;
	width: 60px;
	height: 60px;
	background-color: rgba(255, 255, 255, 0.5);
	background-image: none !important;
	justify-content: center;
	align-items: center;
	display: flex;
	border-radius: 50%;
}

@media (max-width: 767px) {
	.body-bg>.bp-page-content .carousel .carousel-control .carousel-control-icon {
		margin: 0;
	}
}

.body-bg>.bp-page-content .carousel .carousel-control:hover .carousel-control-icon {
	background-color: rgba(34, 43, 62, 0.5);
}

.body-bg>.bp-page-content .carousel .carousel-control .carousel-control-icon:before {
	transform: rotate(0deg) !important;
	width: auto;
	height: auto;
	font-family: 'Font Awesome 6 Free';
	font-size: 2rem;
	font-weight: 800;
	color: rgba(34, 43, 62, 1);
	border: none;
}

.body-bg>.bp-page-content .carousel .carousel-control:hover .carousel-control-icon:before {
	color: rgba(255, 255, 255, 1);
}

.body-bg>.bp-page-content .carousel .carousel-control.carousel-control-prev .carousel-control-icon {
	left: 0;
}

.body-bg>.bp-page-content .carousel:hover .carousel-control.carousel-control-prev .carousel-control-icon {
	left: 0;
}

.body-bg>.bp-page-content .carousel .carousel-control.carousel-control-next .carousel-control-icon {
	right: 0;
}

.body-bg>.bp-page-content .carousel:hover .carousel-control.carousel-control-next .carousel-control-icon {
	right: 0;
}

.body-bg>.bp-page-content .carousel .carousel-control.carousel-control-prev .carousel-control-icon:before {
	content: '\f053';
}

.body-bg>.bp-page-content .carousel .carousel-control.carousel-control-next .carousel-control-icon:before {
	content: '\f054';
}

.body-bg>.bp-page-content .carousel .carousel-indicators {
	margin: 0;
	align-items: center;
	bottom: 20px;
	opacity: 0.5;
}

.body-bg>.bp-page-content .carousel:hover .carousel-indicators {
	opacity: 1;
}

.body-bg>.bp-page-content .carousel .carousel-indicators button {
	width: 15px;
	height: 15px;
	margin: 0 10px;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 50%;
	border: none;
}

.body-bg>.bp-page-content .carousel .carousel-indicators button.active {
	width: 25px;
	height: 25px;
	margin: 0 5px;
	background-color: rgba(34, 43, 62, 1);
}


/* -> ACCES RAPIDES
============================================================== */

.bp-page-content>.section.section-links {
	background-color: #222b3e;
	overflow: visible;
	padding-bottom: 4rem;
}

@media (max-width: 991px) {
	.bp-page-content>.section.section-links {
		border: none;
	}
}

.bp-page-content>.section.section-links>.container {
	position: relative;
}

.bp-page-content>.section.section-links>.container:before {
	position: absolute;
	content: '';
	top: -60px;
	right: 20px;
	width: 360px;
	height: 60px;
	background: transparent url('images/montagnes.svg') no-repeat top center;
	background-size: 100% 100%;
	z-index: 1;
}

/* Groupe d'icones
------------------------------------------------------------------------ */

.bp-page-content>.section.section-links .frame.frame-type-icon_group {
	margin: 30px 0 -30px 0 !important;
	padding: 2rem 0;
	background: none;
	z-index: 3;
}

@media (max-width: 991px) {
	.bp-page-content>.section.section-links .frame.frame-type-icon_group {
		margin: 20px 0 -30px 0 !important;
	}
}

.bp-page-content>.section.section-links .frame.frame-type-icon_group .icongroup {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.bp-page-content>.section.section-links .frame.frame-type-icon_group .icongroup-item {
	position: relative;
	margin: 0 0 60px 0;
	padding: 0;
	width: 120px;
	height: 120px;
	background-color: #6184a5;
	border-radius: 50%;
	flex-direction: column;
}

@media (max-width: 1199px) {
	.bp-page-content>.section.section-links .frame.frame-type-icon_group .icongroup-item {
		margin: 0 60px 60px 60px;
	}
}

@media (max-width: 991px) {
	.bp-page-content>.section.section-links .frame.frame-type-icon_group .icongroup-item {
		margin: 0 30px 60px 30px;
	}
}

@media (max-width: 767px) {
	.bp-page-content>.section.section-links .frame.frame-type-icon_group .icongroup-item {
		margin: 0 30px 60px 30px;
	}
}

.bp-page-content>.section.section-links .frame.frame-type-icon_group .icongroup-item:hover {
	background-color: #a6a369;
}

.bp-page-content>.section.section-links .frame.frame-type-icon_group .icongroup-item .icongroup-item-icon {
	position: relative;
	margin: 30px;
	width: 70px;
	height: 70px;
	display: flex;
	pointer-events: none;
	z-index: 1;
}

.bp-page-content>.section.section-links .frame.frame-type-icon_group .icongroup-item .icongroup-item-text h4>a,
.bp-page-content>.section.section-links .frame.frame-type-icon_group .icongroup-item .icongroup-item-text h4>span {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 130px 20px 10px 20px;
	font-family: 'Raleway', sans-serif;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1;
	color: #ffffff;
	text-align: center;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	z-index: 1;
}

.bp-page-content>.section.section-links .frame.frame-type-icon_group .icongroup-item .icongroup-item-text h4>a:hover,
.bp-page-content>.section.section-links .frame.frame-type-icon_group .icongroup-item .icongroup-item-text h4>span:hover {
	color: #a6a369;
}

.bp-page-content>.section.section-links .frame.frame-type-icon_group .icongroup-item .icongroup-item-text p {
	display: none;
}

/* Agenda
------------------------------------------------------------------------ */

.bp-page-content>.section.section-links .frame.frame-type-image figure.image,
.bp-page-content>.section.section-links .frame.frame-type-image figure.image>a {
	margin: 0 auto;
	width: auto;
	height: 150px;
}

.bp-page-content>.section.section-links .frame.frame-type-image figure.image picture,
.bp-page-content>.section.section-links .frame.frame-type-image figure.image picture>img {
	width: auto;
	height: 100%;
}

/*@media (max-width: 1399px) {
	.bp-page-content > .section.section-links .frame.frame-type-image .gallery-item {
		height: 150px;
	}
}

.bp-page-content > .section.section-links .frame.frame-type-image .gallery-item figure.image {
	margin: 0 auto;
	width: auto;
	height: 150px;
}*/


/* -> FLASH INFO
============================================================== */

@media (min-width: 992px) {
	.backendlayout-special_feature .body-bg>.frame.frame-type-panel {
		padding: 0;
	}
}

.backendlayout-special_feature .body-bg>.frame.frame-type-panel .card-panel {
	position: relative;
	margin: 30px auto 0 auto;
	width: 100%;
	background-color: #6184a5 !important;
	overflow: visible;
	z-index: 1;
}

@media (min-width: 992px) {
	.backendlayout-special_feature .body-bg>.frame.frame-type-panel .card-panel {
		position: absolute;
		width: 80%;
		left: 0;
		right: 0;
		bottom: 110px;
	}
}

.backendlayout-special_feature .body-bg>.frame.frame-type-panel .card-panel:after {
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translate(-50%, 0);
	content: '';
	width: 0;
	height: 0;
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	border-top: 20px solid #6184a5;
	opacity: 1;
}

.backendlayout-special_feature .body-bg>.frame.frame-type-panel .card-panel .card-header {
	font-size: 1.5rem !important;
	color: #222b3e !important;
	text-align: center;
	background-color: #6184a5 !important;
	border: none;
	display: none;
}

.backendlayout-special_feature .body-bg>.frame.frame-type-panel .card-panel .card-body {
	color: #ffffff !important;
	background-color: #6184a5 !important;
	border-radius: 10px;
}

.backendlayout-special_feature .body-bg>.frame.frame-type-panel .card-panel .card-body a:not(.btn) {
	color: #222b3e !important;
}

.backendlayout-special_feature .body-bg>.frame.frame-type-panel .card-panel .card-body a:not(.btn):hover,
.backendlayout-special_feature .body-bg>.frame.frame-type-panel .card-panel .card-body a:not(.btn):focus {
	color: #ffffff !important;
}

/* -> FIL D'ARIANE
============================================================== */

.breadcrumb-section {
	position: relative;
	margin: 0;
	padding: 0;
	background-color: #a6a369;
}

/*@media (max-width: 991px) {
	.breadcrumb-section {
		display: none;
	}
}*/

.breadcrumb-section ol.breadcrumb {
	position: relative;
	margin: 0;
	padding: 15px;
	list-style-type: none;
	align-items: baseline;
	justify-content: center;
}

.breadcrumb-section ol.breadcrumb li {
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffffff;
	display: inline-block;
}

.breadcrumb-section ol.breadcrumb li.active {
	color: #222b3e;
}

.breadcrumb-section ol.breadcrumb li:before {
	content: '\f35a';
	font-family: 'Font Awesome 6 Free';
	font-size: 1rem;
	font-weight: 800;
	color: rgba(0, 0, 0, 0.25);
}

.breadcrumb-section ol.breadcrumb li:first-child:before {
	display: none;
}

.breadcrumb-section ol.breadcrumb li>a {
	color: #ffffff;
}

.breadcrumb-section ol.breadcrumb li>a:hover,
.breadcrumb-section ol.breadcrumb li>a:focus {
	color: #d3d1b4;
}

.breadcrumb-section ol.breadcrumb li:first-child>a:before {
	content: '\f015';
	font-family: 'Font Awesome 6 Free';
	font-size: 1.2rem;
	font-weight: 800;
	color: rgba(0, 0, 0, 0.25);
	margin: 0 5px;
}


/* -> Page ACCUEIL (Édito, Actualités et Agenda)
============================================================== */

/* Entêtes
------------------------------------------------------------------------ */

.backendlayout-special_feature .bp-page-content>.section.section-default .frame.frame-type-textpic .frame-header .element-header {
	position: relative;
	font-size: 1.6rem;
	font-weight: 700;
	color: #222b3e;
	text-transform: uppercase;
}

.backendlayout-special_feature .bp-page-content>.section.section-default .frame.frame-type-news_pi1 .frame-header .element-header,
.backendlayout-special_feature .bp-page-content>.section.section-default .frame.frame-type-image .frame-header .element-header {
	position: relative;
	font-size: 3rem;
	font-weight: 700;
	color: #222b3e;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 991px) {

	.backendlayout-special_feature .bp-page-content>.section.section-default .frame.frame-type-news_pi1 .frame-header .element-header,
	.backendlayout-special_feature .bp-page-content>.section.section-default .frame.frame-type-image .frame-header .element-header {
		font-size: 2.5rem;
	}
}

@media (max-width: 767px) {

	.backendlayout-special_feature .bp-page-content>.section.section-default .frame.frame-type-news_pi1 .frame-header .element-header,
	.backendlayout-special_feature .bp-page-content>.section.section-default .frame.frame-type-image .frame-header .element-header {
		font-size: 2rem;
	}
}

.backendlayout-special_feature .bp-page-content>.section.section-default .frame.frame-type-news_pi1 .frame-header .element-subheader,
.backendlayout-special_feature .bp-page-content>.section.section-default .frame.frame-type-image .frame-header .element-subheader {
	font-size: 2rem;
	font-weight: 300;
	color: #222b3e;
}

.backendlayout-special_feature .bp-page-content>.section.section-default .frame.frame-type-news_pi1 .frame-header .element-header:before,
.backendlayout-special_feature .bp-page-content>.section.section-default .frame.frame-type-image .frame-header .element-header:before {
	position: relative;
	content: '';
	margin-right: 15px;
	width: 60px;
	height: 60px;
	background-size: contain !important;
	display: block;
	z-index: 1;
}

.backendlayout-special_feature .bp-page-content>.section.section-default .frame.frame-type-news_pi1 .frame-header .element-header:before {
	background: transparent url('images/agenda.svg') no-repeat center;
}

.backendlayout-special_feature .bp-page-content>.section.section-default .frame.frame-type-image .frame-header .element-header:before {
	background: transparent url('images/bulletin.svg') no-repeat center;
}


/* Actualités en liste
------------------------------------------------------------------------ */

.bp-page-content>.section.section-news .frame .frame-title .element-header {
	font-size: 3rem;
	font-weight: 700;
	color: #222b3e;
}

.news .no-news-found {
	color: #873838;
	text-align: center;
}

.news .news-list-view {
	justify-content: space-between;
	flex-wrap: wrap;
	display: flex;
}

.news .news-list-view .article {
	position: relative;
	width: 100%;
	margin: 30px 0;
	padding: 0;
	background-color: #ffffff;
	border-radius: 10px;
	overflow: hidden;

	flex-grow: 0;
	flex-basis: 100%;
	flex-wrap: wrap;
	display: block;
}

.news .news-list-view .article:last-child {
	margin-bottom: 30px;
}

.news .news-list-view .article .container {
	position: relative;
}

.news .news-list-view .article .header {
	margin: 30px 0;
	padding: 0;
	width: 50%;
	min-height: 55px;
	display: inline-block;
}

@media (max-width: 1399px) {
	.news .news-list-view .article .header {
		width: 45%;
	}
}

@media (max-width: 1199px) {
	.news .news-list-view .article .header {
		width: 40%;
	}
}

@media (max-width: 991px) {
	.news .news-list-view .article .header {
		margin: 20px 0 35px 0;
		padding: 0;
		width: 100%;
		text-align: center;
		display: block;
	}
}

.news .news-list-view .article .header h3,
.news .news-list-view .article .header h3 a {
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 1.6rem;
	font-weight: 700;
	color: #222b3e;
	/* text-transform: uppercase; */
	cursor: pointer;
}

.news .news-list-view .article .header h3 a:hover,
.news .news-list-view .article .header h3 a:focus {
	color: #a6a369;
}

.news .news-list-view .article .news-img-wrap {
	position: relative;
	margin: 0 30px 0 -30px;
	width: 400px;
	height: 320px;
	background: none;
	float: left;
	z-index: 1;
}

.news .news-list-view .article .news-img-wrap:hover:before,
.news .news-list-view .article .news-img-wrap:focus:before {
	background-color: #222b3e;
}

@media (max-width: 1399px) {
	.news .news-list-view .article .news-img-wrap {
		width: 400px;
		height: 320px;
	}
}

@media (max-width: 1199px) {
	.news .news-list-view .article .news-img-wrap {
		width: 300px;
		height: 300px;
	}
}

@media (max-width: 991px) {
	.news .news-list-view .article .news-img-wrap {
		margin: 0 -20px 30px -20px;
		width: auto;
		float: none;
	}
}

.news .news-list-view .article .news-img-wrap a {
	padding: 0;
	width: 100%;
	height: 100%;
	background: none;
	border: none;
	float: none;
	cursor: pointer;
}

.news .news-list-view .article .news-img-wrap .mediaelement,
.news .news-list-view .article .news-img-wrap .mediaelement-video {
	height: 100%;
}

.news .news-list-view .article .news-img-wrap img,
.news .news-list-view .article .news-img-wrap video,
.news .news-list-view .article .news-img-wrap iframe {
	width: 100%;
	height: 100%;
	float: none;
	object-fit: cover;
	object-position: top;
}

.news .news-list-view .article .teaser-text {
	margin: 0 20px 0 0;
}

.news .news-list-view .article .teaser-text .infos {
	margin: 0 auto 1rem auto;
	padding: 0.5rem 1rem;
	max-width: 70%;
	display: inline-block;
	background-color: #e6e6e6;
	border-radius: 10px;
}

@media (max-width: 991px) {
	.news .news-list-view .article .teaser-text .infos {
		max-width: auto;
		text-align: center;
		justify-content: center;
		display: flex;
	}
}

.news .news-list-view .article .teaser-text .infos>ul {
	margin: 0;
}

.news .news-list-view .article .teaser-text .infos ul li {
	font-size: 1rem;
	color: rgba(0, 0, 0, 0.5);
}

.news .news-list-view .article .teaser-text .infos ul li .fa-solid {
	font-size: 0.85rem;
	color: rgba(34, 43, 62, 1);
}

.news .news-list-view .article .teaser-text p {
	font-size: 1.2rem;
	line-height: 1.6rem;
	color: #222b3e;
	text-align: justify;
}

.news .news-list-view .article .teaser-text a {
	cursor: pointer;
}

.news .news-list-view .article .teaser-text .more {
	position: relative;
	margin: 15px 0 30px 0;
	padding: 0.75rem 1.25rem 0.75rem 2.5rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: #222b3e;
	background-color: #e6e6e6;
	border-radius: 10px;
	display: inline-block;
	float: right;
}

.news .news-list-view .article .teaser-text .more:before {
	position: absolute;
	content: '\2b';
	top: auto;
	left: 15px;
	font-family: 'Font Awesome 6 Free';
	font-size: 1.2rem;
	font-weight: 700;
	color: #6184a5;
	z-index: 1;
}

@media (max-width: 991px) {
	.news .news-list-view .article .teaser-text .more {
		margin: 15px auto 30px auto;
		text-align: center;
		display: table;
		float: none;
	}
}

.news .news-list-view .article .teaser-text .more:hover,
.news .news-list-view .article .teaser-text .more:focus {
	color: #222b3e;
	background-color: #a6a369 !important;
}

.news .news-list-view .article .teaser-text .more:hover:after,
.news .news-list-view .article .teaser-text .more:focus:after {
	color: #6184a5;
}

.news .news-list-view .article .footer {
	margin: 0;
	padding: 0;
	border: none;
}

.news .news-list-view .article .footer p {
	margin: 0;
}

.news .news-list-view .article .footer .news-list-date {
	position: absolute;
	top: 30px;
	right: 30px;
	margin: 0;
	padding: 0;
	width: 80px;
	height: 80px;
	font-size: 1.2rem;
	font-weight: 300;
	line-height: 1.0;
	color: #ffffff;
	text-align: center;
	background-color: #6184a5;
	border-radius: 10px;
	align-items: center;
	justify-content: center;
	display: flex;
	border: none;
	z-index: 1;
}

@media (max-width: 991px) {
	.news .news-list-view .article .footer .news-list-date {
		top: 70px;
	}
}

.news .news-list-view .article .footer .news-list-date.date-start {
	right: 180px;
}

.news .news-list-view .article .footer .news-list-date span {
	margin: 0;
	padding: 0;
	width: 100%;
	font-size: 2rem;
	font-weight: 700;
	display: block;
}

.news .news-list-view .article .footer .fa-solid {
	position: absolute;
	content: '\f0da';
	top: 55px;
	right: 140px;
	font-family: 'Font Awesome 6 Free';
	font-size: 2rem;
	font-weight: 700;
	color: #cac1b0;
}

@media (max-width: 991px) {
	.news .news-list-view .article .footer .fa-solid {
		top: 65px;
	}
}

.news .news-list-view .article .footer .news-list-time {
	position: absolute;
	bottom: 30px;
	right: 30px;
	margin: 0;
	padding: 0;
	font-size: 1.4rem;
	font-weight: 700;
	color: #222b3e;
	text-align: center;
	z-index: 2;
}

@media (max-width: 991px) {
	.news .news-list-view .article .footer .news-list-time {
		bottom: 15px;
	}
}

.news .news-list-view .article .footer .news-list-time:before {
	position: relative;
	content: '\f017';
	font-family: 'Font Awesome 6 Free';
	font-size: 1.2rem;
	font-weight: 400;
	color: #cac1b0;
	margin-right: 10px;
}


/* Actualités page d'accueil
------------------------------------------------------------------------ */

.bp-page-content>.section.section-news {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.bp-page-content>.section.section-news .frame.frame-type-news_pi1 {
	margin-top: -30px;
}

.bp-page-content>.section.section-news .frame.frame-type-html .btn {
	background-color: #222b3e;
}

.bp-page-content>.section.section-news .frame.frame-type-html .btn:hover,
.bp-page-content>.section.section-news .frame.frame-type-html .btn:focus {
	color: #ffffff;
	background-color: #a6a369 !important;
}

/* Pagination
------------------------------------------------------------------------ */

.news .news-list-view .page-navigation {
	width: 100%;
	text-align: center;
}

.news .news-list-view .page-navigation:first-child {
	display: none;
}

.news .news-list-view .page-navigation p {
	margin: 15px 15px 15px 0;
	padding: 10px 15px;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	background-color: #222b3e;
	display: inline-block;
	float: left;
}

.news .news-list-view .page-navigation ul {
	margin: 15px auto;
	padding: 0;
	background-color: #222b3e;
	display: inline-block;
	border-radius: 10px;
	overflow: hidden;
	float: none;
}

.news .news-list-view .page-navigation ul li {
	padding: 0 15px;
	min-width: 50px;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	background-color: #222b3e;
	display: inline-block;
}

.news .news-list-view .page-navigation ul li.current {
	padding: 10px 15px;
	color: #ffffff;
	background-color: #a6a369;
}

.news .news-list-view .page-navigation ul li a {
	margin: 0 -15px;
	padding: 10px 15px;
	color: #ffffff;
	background-color: #222b3e;
	display: block;
}

.news .news-list-view .page-navigation ul li a:hover,
.news .news-list-view .page-navigation ul li a:focus {
	color: #ffffff;
	background-color: #a6a369 !important;
}

@media (max-width: 767px) {
	.news .news-list-view .page-navigation {
		text-align: center;
	}

	.news .news-list-view .page-navigation p,
	.news .news-list-view .page-navigation ul {
		width: auto;
		margin: 15px;
		display: block;
		float: none;
	}
}


/* Actualités en détails
------------------------------------------------------------------------ */

.news.news-single .article .well {
	margin: 0 0 1rem 0;
	padding: 0.5rem 1rem;
	display: inline-block;
	background-color: #e6e6e6;
	border-radius: 10px;
}

.news.news-single .article .footer {
	margin: 1rem 0 0 0;
	padding: 0;
	border: none;
}

.news.news-single .article .footer>p>span {
	position: relative;
	margin-right: 30px;
	padding: 0.5rem 1rem;
	font-size: 1rem;
	font-weight: 700;
	color: #a6a369;
	background-color: rgba(166, 163, 105, 0.1);
	border-radius: 10px;
	border: none;
}

.news.news-single .article .footer>p>span:after {
	position: absolute;
	top: 8px;
	right: -20px;
	content: '\f0da';
	font-family: 'Font Awesome 6 Free';
	font-size: 1.2rem;
	font-weight: 700;
	color: #6184a5;
}

.news.news-single .article .footer>p>span.news-list-time {
	margin-right: 0;
	padding: 0.5rem 0;
	font-size: 1.2rem;
	color: #6184a5;
	background: none;
}

.news.news-single .article .footer>p>span.news-list-time:after {
	display: none;
}


/* Carousel (A la une)
------------------------------------------------------------------------ */

.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider {
	margin-top: 0;
	margin-bottom: 1.5rem;
}

.slick-prev,
.slick-next {
	position: absolute;
	top: 85%;
	width: 60px;
	height: 60px;
	background-color: #e6e6e6;
	border-radius: 10px;
	z-index: 1;
}

@media (max-width: 991px) {

	.slick-prev,
	.slick-next {
		top: 40%;
	}
}

.slick-prev {
	left: 50%;
}

.slick-next {
	right: 2.5%;
}

@media (max-width: 991px) {
	.slick-prev {
		left: 20px;
	}

	.slick-next {
		right: 20px;
	}
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	background-color: #a6a369;
}

.slick-prev:before,
.slick-next:before {
	position: absolute;
	top: 7px;
	left: 0;
	right: 0;
	content: '\f053';
	font-family: 'Font Awesome 6 Free';
	font-size: 2rem;
	font-weight: 900;
	color: #222b3e;
	line-height: 1.4;
	text-align: center;
	opacity: 0.5;
}

.slick-prev:before {
	content: '\f053';
}

.slick-next:before {
	content: '\f054';
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
	color: #222b3e;
	opacity: 1;
}

.slick-dots {
	position: absolute;
	width: 52%;
	right: 0;
	bottom: 60px;
}

@media (max-width: 991px) {
	.slick-dots {
		display: none !important;
	}
}

.slick-dots li {
	margin: 0 10px;
	width: auto;
	height: auto;
}

.slick-dots li button {
	padding: 0;
	width: 14px;
	height: 14px;
	background-color: #6184a5;
	border-radius: 50%;
}

.slick-dots li.slick-active button {
	width: 20px;
	height: 20px;
	background-color: #222b3e;
}

.slick-dots li button:hover {
	background-color: #222b3e;
}

.slick-dots li button:before {
	display: none;
}

.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article {
	/*margin: 40px 0 0 0;*/
	margin: 0;
	height: 450px;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article {
		height: 500px;
	}
}

@media (max-width: 991px) {
	.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article {
		height: auto;
	}
}

.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .header {
	margin: 35px 0 20px 0;
	width: 43%;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .header {
		width: 40%;
	}
}

@media (max-width: 991px) {
	.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .header {
		width: auto;
	}
}

.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .header h3,
.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .header h3 a {}

.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .header h3 a:hover,
.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .header h3 a:focus {}



@media (max-width: 991px) {
	.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .header h3:before {}
}

.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .news-img-wrap {
	width: 50%;
	/*height: auto;*/
	height: 100%;
	float: left;
}

@media (max-width: 991px) {
	.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .news-img-wrap {
		width: auto;
		height: 100%;
		border-radius: 0;
		float: none;
	}
}

.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .news-img-wrap a {}

.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .news-img-wrap img {}

.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .news-img-wrap iframe {
	height: 450px;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .news-img-wrap iframe {
		height: 500px;
	}
}

@media (max-width: 991px) {
	.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .news-img-wrap iframe {
		height: 300px;
	}
}

.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .teaser-text {
	text-align: center;
}

@media (max-width: 991px) {
	.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .teaser-text {}
}

.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .teaser-text p {}

.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .teaser-text .more {
	float: none;
}

@media (max-width: 991px) {
	.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .teaser-text .more {}
}

.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .teaser-text .more:before {}

.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .teaser-text .more:hover,
.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .teaser-text .more:focus {}

.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .footer {}

.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .footer p {}

.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .footer .news-list-date {}

@media (max-width: 767px) {
	.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .footer .news-list-date {}
}

.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .footer .news-list-date span {}

@media (max-width: 767px) {
	.bp-page-content>.section.section-news .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .footer .news-list-date span {}
}


/* -> AGENDA
============================================================== */

/* Derniers évènements
------------------------------------------------------------------------ */

.bp-page-content>.section.section-events .section-column-half {
	margin-top: -200px;
}

.bp-page-content>.section.section-events .section-column-half:first-child {
	width: calc(100% / 12 * 7 - 40px * 1 / 12 * 7);

}

.bp-page-content>.section.section-events .section-column-half:last-child {
	width: calc(100% / 12 * 5 - 40px * 1 / 12 * 5);
}

@media (max-width: 1199px) {
	.bp-page-content>.section.section-events .section-column-half {
		width: calc(100% / 12 * 12 - 40px * 0 / 12 * 12) !important;
	}

	.bp-page-content>.section.section-events .section-column-half:first-child {
		margin-top: -180px;
		width: calc(100% / 12 * 7 - 40px * 1 / 12 * 7);
	}

	.bp-page-content>.section.section-events .section-column-half:last-child {
		margin-top: 30px;
		width: calc(100% / 12 * 5 - 40px * 1 / 12 * 5);
	}
}

@media (max-width: 991px) {
	.bp-page-content>.section.section-events .section-column-half {
		width: calc(100% / 12 * 12 - 40px * 0 / 12 * 12) !important;
	}

	/*.bp-page-content > .section.section-events .section-column-half:first-child {
		margin-top: -200px;
	}

	.bp-page-content > .section.section-events .section-column-half:last-child {
		margin-top: 0;
	}*/
}

.bp-page-content>.section.section-events {
	position: relative;
	margin-top: 130px;
	background-color: #6184a5;
	overflow: visible;
}

.bp-page-content>.section.section-events:before {
	position: absolute;
	content: '';
	top: -100px;
	width: 100%;
	height: 120px;
	background: transparent url('images/bordure.png') no-repeat top center;
	background-size: 100% 100%;
	z-index: 1;
}

@media (max-width: 991px) {
	.bp-page-content>.section.section-events:before {
		background-size: cover;
	}
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 {
	z-index: 2;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news {
	padding-top: 40px;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider {
	justify-content: center;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .slick-list {
	padding-top: 30px;
	padding-bottom: 30px;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article {
	position: relative;
	margin: 0 15px;
	/*width: 260px;*/
	height: 160px;
	background-color: #ffffff;
	display: flex;
	overflow: visible;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article>.container {
	padding: 0 15px;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .header,
.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .news-img-wrap,
.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .teaser-text,
.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .footer {
	margin: 0;
	padding: 0;
	width: 100%;
	height: auto;
	display: block;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .header {
	margin-top: 70px;
	padding: 0;
	order: 2;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .header h3,
.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .header h3 a {
	font-size: 1.1rem;
	font-weight: 400;
	color: #222b3e;
	text-align: center;
	text-transform: inherit;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .header h3 a:hover,
.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .header h3 a:focus {
	color: #6184a5;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .header h3:before {
	display: none;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .news-img-wrap {
	height: 150px;
	min-height: inherit;
	order: 4;
	display: none;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .news-img-wrap a {}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .news-img-wrap img {}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .teaser-text {
	padding: 0 1rem;
	order: 3;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .teaser-text p,
.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .teaser-text div {
	display: none;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .teaser-text .more {
	margin: 0 auto 15px auto;
	padding: 0;
	width: 60px;
	height: 60px;
	background-color: #222b3e;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	float: none;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .teaser-text .more:before {
	position: relative;
	content: '+';
	left: auto;
	right: auto;
	font-family: 'Raleway', sans-serif;
	font-size: 6rem;
	font-weight: 300;
	color: #ffffff;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .teaser-text .more span {
	display: none;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .footer {
	position: absolute;
	top: 0;
	left: 15px;
	right: 15px;
	width: auto;
	padding: 1rem 0.5rem;
	text-align: center;
	order: 2;
	background-color: #222b3e;
	border-radius: 10px;
	transform: translate(0, -50%);
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .footer p {}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .footer .news-list-date {
	position: relative;
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	background: none;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .footer .news-list-date:before {
	position: relative;
	content: '\f073';
	font-family: 'Font Awesome 6 Free';
	font-size: 1.2rem;
	font-weight: 700;
	color: #6184a5;
	margin-right: 10px;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .footer .news-list-date,
.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .footer .news-list-date span {
	font-size: 1.1rem;
	font-weight: 400;
	color: #ffffff;
	text-align: center;
	display: inline;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .footer .news-list-date span {
	margin-right: 5px;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .footer .fa-solid {
	position: inherit;
	top: auto;
	font-size: 1.2rem;
	margin: 0 10px 0 5px;
}

.bp-page-content>.section.section-events .frame.frame-type-news_pi1 .news .news-list-view.slick-slider .article .footer .news-list-time {
	top: 65px;
	left: 0;
	right: 0;
}

/* Boutons de control */

.bp-page-content>.section.section-events .frame.frame-type-html {
	z-index: 2;
}


.bp-page-content>.section.section-events .frame.frame-type-html table {
	margin: 0;
	padding: 0;
}

.bp-page-content>.section.section-events .frame.frame-type-html table th,
.bp-page-content>.section.section-events .frame.frame-type-html table td {
	padding: 0;
	border: none !important;
}

.bp-page-content>.section.section-events .frame.frame-type-html table td .btn {
	background-color: #222b3e !important;
}

.bp-page-content>.section.section-events .frame.frame-type-html table td .btn:hover,
.bp-page-content>.section.section-events .frame.frame-type-html table td .btn:focus {
	background-color: #a6a369 !important;
}

.bp-page-content>.section.section-events .frame.frame-type-html table td .btn.btn-sm,
.bp-page-content>.section.section-events .frame.frame-type-html table td:not(.text-center) .btn {
	padding: 0.6rem 1.2rem;
	font-size: 1.4rem;
}

@media (max-width: 767px) {
	.bp-page-content>.section.section-events .frame.frame-type-html table td .btn {
		margin: 0 0.5rem;
		padding: 0.75rem 1rem;
	}
}

/* -> BULLETIN MUNICIPAL
============================================================== */

/* Image
------------------------------------------------------------------------ */

@media (min-width: 1199px) and (max-width: 1399px) {
	.bp-page-content>.section.section-events .frame.frame-type-image figure.image {
		margin-top: 75px !important;
	}
}

/* Bouton
------------------------------------------------------------------------ */

.bp-page-content>.section.section-events .frame.frame-type-html p .btn {
	position: relative;
	margin-top: -220px;
	background-color: #222b3e !important;
}

.bp-page-content>.section.section-events .frame.frame-type-html p .btn:hover,
.bp-page-content>.section.section-events .frame.frame-type-html p .btn:focus {
	background-color: #a6a369 !important;
}


/* -> Page DÉFAUT et navigation à GAUCHE
============================================================== */

/* .backendlayout-default .bp-page-content > .section,
.backendlayout-subnavigation_left .bp-page-content > .section,
.backendlayout-subnavigation_left_2_columns .bp-page-content > .section {
	padding: 0.5rem 0;
} */

.backendlayout-default .bp-page-content>.section .section-column.maincontent-wrap,
.backendlayout-subnavigation_left .bp-page-content>.section .section-column.maincontent-wrap,
.backendlayout-subnavigation_left_2_columns .bp-page-content>.section .section-column.maincontent-wrap {
	width: calc(100% / 12 * 9 - 40px * 1 / 12 * 9);
}

.backendlayout-default .bp-page-content>.section .section-column.subnav-wrap,
.backendlayout-subnavigation_left .bp-page-content>.section .section-column.subnav-wrap,
.backendlayout-subnavigation_left_2_columns .bp-page-content>.section .section-column.subnav-wrap {
	width: calc(100% / 12 * 3 - 40px * 1 / 12 * 3);
}

@media (max-width: 991px) {

	.backendlayout-default .bp-page-content>.section .section-column.maincontent-wrap,
	.backendlayout-default .bp-page-content>.section .section-column.subnav-wrap,
	.backendlayout-subnavigation_left .bp-page-content>.section .section-column.maincontent-wrap,
	.backendlayout-subnavigation_left .bp-page-content>.section .section-column.subnav-wrap,
	.backendlayout-subnavigation_left_2_columns .bp-page-content>.section .section-column.maincontent-wrap,
	.backendlayout-subnavigation_left_2_columns .bp-page-content>.section .section-column.subnav-wrap {
		width: 100%;
		width: calc(100% / 12 * 12 - 40px * 0 / 12 * 12);
	}
}

.backendlayout-default .bp-page-content>.section>.frame.frame-title,
.backendlayout-default .bp-page-content>.section .section-column>.frame.frame-title,
.backendlayout-subnavigation_left .bp-page-content>.section>.frame.frame-title,
.backendlayout-subnavigation_left .bp-page-content>.section .section-column>.frame.frame-title,
.backendlayout-subnavigation_left_2_columns .bp-page-content>.section>.frame.frame-title,
.backendlayout-subnavigation_left_2_columns .bp-page-content>.section .section-column>.frame.frame-title {
	margin-bottom: -2rem;
	padding-top: 2rem;
	padding-bottom: 1rem;
}

@media (max-width: 991px) {

	.backendlayout-default .bp-page-content>.section>.frame.frame-title,
	.backendlayout-default .bp-page-content>.section .section-column>.frame.frame-title,
	.backendlayout-subnavigation_left .bp-page-content>.section>.frame.frame-title,
	.backendlayout-subnavigation_left .bp-page-content>.section .section-column>.frame.frame-title,
	.backendlayout-subnavigation_left_2_columns .bp-page-content>.section>.frame.frame-title,
	.backendlayout-subnavigation_left_2_columns .bp-page-content>.section .section-column>.frame.frame-title {
		text-align: center;
	}
}


/* -> MENU Sidebar
============================================================== */

/* Force l'affichage du menu sur les versions mobiles */
@media (max-width: 991px) {

	.backendlayout-subnavigation_left .subnav-wrap,
	.backendlayout-subnavigation_right .subnav-wrap {
		display: block !important;
	}

	.backendlayout-subnavigation_left .subnav-wrap .frame.frame-type-subnavigation,
	.backendlayout-subnavigation_right .subnav-wrap .frame.frame-type-subnavigation {
		margin-bottom: 0 !important;
	}

	.backendlayout-subnavigation_left .subnav-wrap .frame.frame-type-subnavigation .frame-inner>.subnav-nav>.subnav-item>.subnav-link,
	.backendlayout-subnavigation_right .subnav-wrap .frame.frame-type-subnavigation .frame-inner>.subnav-nav>.subnav-item>.subnav-link {
		display: none !important;
	}

	.backendlayout-subnavigation_left .subnav-wrap .frame.frame-type-subnavigation .frame-inner>.subnav-nav>.subnav-item.active>.subnav-nav,
	.backendlayout-subnavigation_right .subnav-wrap .frame.frame-type-subnavigation .frame-inner>.subnav-nav>.subnav-item.active>.subnav-nav {
		padding: 0 !important;
		display: block !important;
	}
}

/* Niveau 2 */
.frame.frame-type-subnavigation {
	margin: 2rem 0;
	padding: 0;
	background-color: #ffffff;
	border-radius: 10px;
	overflow: hidden;
}

.frame.frame-type-subnavigation .subnav-nav {
	margin: 0;
	border: none;
}

.frame.frame-type-subnavigation .subnav-nav:before {
	display: none;
}

.frame.frame-type-subnavigation .subnav-nav .subnav-item {
	margin: 0;
}

.frame.frame-type-subnavigation .subnav-nav .subnav-item .subnav-link {
	position: relative;
	padding: 1rem 1.5rem;
	font-family: 'Raleway', sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
	color: #222b3e;
	align-items: baseline;
	background-color: transparent;
	border-radius: 0;
	border: none;
	z-index: 2;
}

.frame.frame-type-subnavigation .subnav-nav .subnav-item .subnav-link:hover {
	color: #ffffff;
	/*background-color: #a6a369;*/
	background-color: rgba(97, 132, 165, 0.5);
}

.frame.frame-type-subnavigation .subnav-nav>.subnav-item.active>.subnav-link {
	color: #ffffff !important;
	background-color: #6184a5;
}

.frame.frame-type-subnavigation .subnav-nav .subnav-item .subnav-link:before {
	position: relative;
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-size: 1.2rem;
	font-weight: 700;
	color: #a6a369;
	margin-right: 10px;

	top: 0;
	left: 0;
	border: none;
	transform: none;
}

.frame.frame-type-subnavigation .subnav-nav .subnav-item .subnav-link:hover:before {
	color: #ffffff;
}

.frame.frame-type-subnavigation .subnav-nav .subnav-item.active .subnav-link:before {
	color: #a6a369;
}

/* Niveau 3 */
.frame.frame-type-subnavigation .subnav-nav .subnav-item .subnav-nav {
	padding: 0 0 0 30px;
	background-color: #ffffff;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	/*overflow: hidden;*/
}

.frame.frame-type-subnavigation .subnav-nav .subnav-item .subnav-nav .subnav-item {}

.frame.frame-type-subnavigation .subnav-nav .subnav-item .subnav-nav .subnav-item:after {
	position: absolute;
	content: '';
	margin: auto;
	left: 0;
	right: 0;
	bottom: 0;
	width: 90%;
	height: auto;
	border-bottom: 2px dotted #6184a5;
}

.frame.frame-type-subnavigation .subnav-nav .subnav-item .subnav-nav .subnav-item:last-child:after {
	display: none;
}

.frame.frame-type-subnavigation .subnav-nav .subnav-item .subnav-nav .subnav-item .subnav-link {
	padding: 0.5rem 1rem;
}

.frame.frame-type-subnavigation .subnav-nav .subnav-item .subnav-nav .subnav-item .subnav-link:before {
	content: '\f0da';
	font-size: 1rem;
	color: #6184a5;
}

.frame.frame-type-subnavigation .subnav-nav>.subnav-item.active>.subnav-nav>.subnav-item>.subnav-link:hover {
	color: #ffffff;
	/*background-color: #a6a369;*/
	background-color: rgba(97, 132, 165, 0.5);
}

.frame.frame-type-subnavigation .subnav-nav>.subnav-item.active>.subnav-nav>.subnav-item.active>.subnav-link {
	color: #222b3e !important;
	/*background-color: #a6a369;*/
	background-color: rgba(97, 132, 165, 0.5);
}


/* -> FORMULAIRES
============================================================== */

.frame.frame-type-form_formframework {
	margin: 2rem 0;
	padding: 2rem;
	background-color: #ffffff;
	border-radius: 10px;
}

.frame.frame-type-form_formframework form .form-actions {
	margin-top: 2rem;
}

.frame.frame-type-form_formframework form .form-actions .btn-toolbar {
	justify-content: flex-end;
}


/* -> CARD PANELS
============================================================== */

/* Default
------------------------------------ */

.frame.frame-type-panel .card-panel {
	position: relative;
	margin: 0;
	padding: 0;
	background-color: #ffffff;
	border-radius: 10px;
	border: none;
	overflow: hidden;
}

.frame.frame-type-panel .card-panel .card-header {
	padding: 1.5rem 2rem 0 2rem;
	font-size: 1.5rem !important;
	color: #a6a369 !important;
	text-align: center;
	background-color: #ffffff;
	border-radius: 10px 10px 0 0;
	border: none;
}

.frame.frame-type-panel .card-panel .card-body {
	padding: 1.5rem 2rem;
	color: #222b3e;
	background-color: #ffffff;
	border-radius: 0 0 10px 10px;
	z-index: 0;
}

.frame.frame-type-panel .card-panel .card-body a:not(.btn) {
	font-weight: 700;
	color: #a6a369;
}

.frame.frame-type-panel .card-panel .card-body a:not(.btn):hover,
.frame.frame-type-panel .card-panel .card-body a:not(.btn):focus {
	color: #222b3e;
}

/* Commun
------------------------------------ */

.frame.frame-type-panel .card-panel.card-panel-default .card-header,
.frame.frame-type-panel .card-panel.card-panel-primary .card-header,
.frame.frame-type-panel .card-panel.card-panel-secondary .card-header,
.frame.frame-type-panel .card-panel.card-panel-success .card-header,
.frame.frame-type-panel .card-panel.card-panel-info .card-header,
.frame.frame-type-panel .card-panel.card-panel-warning .card-header,
.frame.frame-type-panel .card-panel.card-panel-danger .card-header,
.frame.frame-type-panel .card-panel.card-panel-dark .card-header {
	color: #ffffff !important;
}

.frame.frame-type-panel .card-panel.card-panel-default .card-body,
.frame.frame-type-panel .card-panel.card-panel-primary .card-body,
.frame.frame-type-panel .card-panel.card-panel-secondary .card-body,
.frame.frame-type-panel .card-panel.card-panel-success .card-body,
.frame.frame-type-panel .card-panel.card-panel-info .card-body,
.frame.frame-type-panel .card-panel.card-panel-warning .card-body,
.frame.frame-type-panel .card-panel.card-panel-danger .card-body,
.frame.frame-type-panel .card-panel.card-panel-dark .card-body {
	color: #ffffff !important;
}

.frame.frame-type-panel .card-panel.card-panel-default .card-body a:not(.btn),
.frame.frame-type-panel .card-panel.card-panel-primary .card-body a:not(.btn),
.frame.frame-type-panel .card-panel.card-panel-success .card-body a:not(.btn),
.frame.frame-type-panel .card-panel.card-panel-info .card-body a:not(.btn),
.frame.frame-type-panel .card-panel.card-panel-warning .card-body a:not(.btn),
.frame.frame-type-panel .card-panel.card-panel-danger .card-body a:not(.btn) {
	color: #a6a369 !important;
}

.frame.frame-type-panel .card-panel.card-panel-default .card-body a:not(.btn):hover,
.frame.frame-type-panel .card-panel.card-panel-default .card-body a:not(.btn):focus,
.frame.frame-type-panel .card-panel.card-panel-primary .card-body a:not(.btn):hover,
.frame.frame-type-panel .card-panel.card-panel-primary .card-body a:not(.btn):focus,
.frame.frame-type-panel .card-panel.card-panel-success .card-body a:not(.btn):hover,
.frame.frame-type-panel .card-panel.card-panel-success .card-body a:not(.btn):focus,
.frame.frame-type-panel .card-panel.card-panel-info .card-body a:not(.btn):hover,
.frame.frame-type-panel .card-panel.card-panel-info .card-body a:not(.btn):focus,
.frame.frame-type-panel .card-panel.card-panel-warning .card-body a:not(.btn):hover,
.frame.frame-type-panel .card-panel.card-panel-warning .card-body a:not(.btn):focus,
.frame.frame-type-panel .card-panel.card-panel-danger .card-body a:not(.btn):hover,
.frame.frame-type-panel .card-panel.card-panel-danger .card-body a:not(.btn):focus {
	color: #6184a5 !important;
}

/* Default
------------------------------------ */
.frame.frame-type-panel .card-panel.card-panel-default,
.frame.frame-type-panel .card-panel.card-panel-default .card-header,
.frame.frame-type-panel .card-panel.card-panel-default .card-body {
	background-color: #a6a369 !important;
}

/* Primary
------------------------------------ */
.frame.frame-type-panel .card-panel.card-panel-primary,
.frame.frame-type-panel .card-panel.card-panel-primary .card-header,
.frame.frame-type-panel .card-panel.card-panel-primary .card-body {
	background-color: #a6a369 !important;
}

/* Secondary
------------------------------------ */
.frame.frame-type-panel .card-panel.card-panel-secondary,
.frame.frame-type-panel .card-panel.card-panel-secondary .card-header,
.frame.frame-type-panel .card-panel.card-panel-secondary .card-body {
	background-color: #222b3e !important;
}

.frame.frame-type-panel .card-panel.card-panel-secondary .card-body a:not(.btn) {
	color: #a6a369 !important;
}

.frame.frame-type-panel .card-panel.card-panel-secondary .card-body a:not(.btn):hover,
.frame.frame-type-panel .card-panel.card-panel-secondary .card-body a:not(.btn):focus {
	color: rgba(255, 255, 255, 0.5) !important;
}

/* Success
------------------------------------ */
.frame.frame-type-panel .card-panel.card-panel-success,
.frame.frame-type-panel .card-panel.card-panel-success .card-header,
.frame.frame-type-panel .card-panel.card-panel-success .card-body {
	background-color: #a6a369 !important;
}

/* Info
------------------------------------ */
.frame.frame-type-panel .card-panel.card-panel-info,
.frame.frame-type-panel .card-panel.card-panel-info .card-header,
.frame.frame-type-panel .card-panel.card-panel-info .card-body {
	background-color: #6184a5 !important;
}

/* Warning
------------------------------------ */
.frame.frame-type-panel .card-panel.card-panel-warning,
.frame.frame-type-panel .card-panel.card-panel-warning .card-header,
.frame.frame-type-panel .card-panel.card-panel-warning .card-body {
	background-color: #b77e4b !important;
}

/* Danger
------------------------------------ */
.frame.frame-type-panel .card-panel.card-panel-danger,
.frame.frame-type-panel .card-panel.card-panel-danger .card-header,
.frame.frame-type-panel .card-panel.card-panel-danger .card-body {
	background-color: #873838 !important;
}

/* Dark
------------------------------------ */
.frame.frame-type-panel .card-panel.card-panel-dark,
.frame.frame-type-panel .card-panel.card-panel-dark .card-header,
.frame.frame-type-panel .card-panel.card-panel-dark .card-body {
	background-color: #222b3e !important;
}

.frame.frame-type-panel .card-panel.card-panel-dark .card-body a:not(.btn) {
	color: rgba(255, 255, 255, 0.5) !important;
}

.frame.frame-type-panel .card-panel.card-panel-dark .card-body a:not(.btn):hover,
.frame.frame-type-panel .card-panel.card-panel-dark .card-body a:not(.btn):focus {
	color: rgba(0, 0, 0, 0.5) !important;
}

/* Light
------------------------------------ */
.frame.frame-type-panel .card-panel.card-panel-light,
.frame.frame-type-panel .card-panel.card-panel-light .card-header,
.frame.frame-type-panel .card-panel.card-panel-light .card-body {
	background-color: #ffffff !important;
}

.frame.frame-type-panel .card-panel.card-panel-light .card-header {
	color: #a6a369 !important;
}

.frame.frame-type-panel .card-panel.card-panel-light .card-body {
	color: #222b3e !important;
}

.frame.frame-type-panel .card-panel.card-panel-light .card-body a:not(.btn) {
	color: #a6a369 !important;
}

.frame.frame-type-panel .card-panel.card-panel-light .card-body a:not(.btn):hover,
.frame.frame-type-panel .card-panel.card-panel-light .card-body a:not(.btn):focus {
	color: #222b3e !important;
}


/* -> CARD GROUP
============================================================== */

.frame.frame-type-card_group .card-group-element {}

.frame.frame-type-card_group .card-group-element .card-group-element-item {}

.frame.frame-type-card_group .card-group-element .card-group-element-item .card {
	background-color: #f3f3f3;
	border-radius: 10px;
	overflow: hidden;
	border: none;
}

.frame.frame-type-card_group .card-group-element .card-group-element-item .card .card-img-top picture {
	position: relative;
	max-height: 280px;
	border-radius: 0 0 0 0;
	display: block;
}

.frame.frame-type-card_group .card-group-element .card-group-element-item .card .card-img-top a:hover picture:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(34, 43, 62, 0.25);
	z-index: 1;
}

.frame.frame-type-card_group .card-group-element .card-group-element-item .card .card-body {
	padding: 1rem;
	color: #222b3e;
	z-index: 2;
}

.frame.frame-type-card_group .card-group-element .card-group-element-item .card .card-body a {
	color: #a6a369;
}

.frame.frame-type-card_group .card-group-element .card-group-element-item .card .card-body a:hover {
	color: #a6a369;
}

.frame.frame-type-card_group .card-group-element .card-group-element-item .card .card-body .card-title,
.frame.frame-type-card_group .card-group-element .card-group-element-item .card .card-body .card-title *,
.frame.frame-type-card_group .card-group-element .card-group-element-item .card .card-body .card-subtitle,
.frame.frame-type-card_group .card-group-element .card-group-element-item .card .card-body .card-subtitle * {
	font-family: 'Raleway', sans-serif;
	text-align: center;
}

.frame.frame-type-card_group .card-group-element .card-group-element-item .card .card-body .card-title,
.frame.frame-type-card_group .card-group-element .card-group-element-item .card .card-body .card-title * {
	font-size: 1.25rem;
	font-weight: 700;
	color: #222b3e;
}


.frame.frame-type-card_group .card-group-element .card-group-element-item .card .card-body .card-subtitle,
.frame.frame-type-card_group .card-group-element .card-group-element-item .card .card-body .card-subtitle * {
	font-size: 1rem;
	font-weight: 700;
	color: #222b3e;
}

.frame.frame-type-card_group .card-group-element .card-group-element-item .card .card-footer {
	padding: 30px;
	text-align: center;
}

.frame.frame-type-card_group .card-group-element .card-group-element-item .card .card-footer .btn-default {
	color: #ffffff;
	background-color: #222b3e;
}

.frame.frame-type-card_group .card-group-element .card-group-element-item .card .card-footer .btn-default:hover,
.frame.frame-type-card_group .card-group-element .card-group-element-item .card .card-footer .btn-default:focus {
	background-color: #a6a369 !important;
}


/* -> CARD MENU
============================================================== */

.frame.frame-type-menu_card_dir .card-menu {}

.frame.frame-type-menu_card_dir .card-menu .card-menu-item {}

.frame.frame-type-menu_card_dir .card-menu .card-menu-item .card {
	color: #222b3e;
	background-color: #ffffff;
	border-radius: 10px;
	border: none;
}

.frame.frame-type-menu_card_dir .card-menu .card-menu-item .card .card-body,
.frame.frame-type-menu_card_dir .card-menu .card-menu-item .card .card-footer {
	text-align: center;
}

.frame.frame-type-menu_card_dir .card-menu .card-menu-item .card .card-body .card-title {
	color: #873838;
}

.frame.frame-type-menu_card_dir .card-menu .card-menu-item .card .card-footer .card-link {
	padding: 0.5rem 1rem;
	font-family: 'Raleway', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: #ffffff;
	background-color: #a6a369;
	border-radius: 10px;
}

.frame.frame-type-menu_card_dir .card-menu .card-menu-item .card .card-footer .card-link:hover,
.frame.frame-type-menu_card_dir .card-menu .card-menu-item .card .card-footer .card-link:focus {
	color: #ffffff;
	background-color: #222b3e;
}


/* -> CADRE
============================================================== */

.frame.frame-default .well {
	padding: 1rem 1.5rem;
	color: #222b3e;
	background-color: #ffffff;
	border-radius: 10px;
}

.frame.frame-default.frame-type-tab .well,
.frame.frame-default.frame-type-accordion .well,
.frame.frame-default.frame-type-panel .well {
	background-color: #e6e6e6;
	border-radius: 0;
}


/* -> CITATIONS
============================================================== */

.frame.frame-default blockquote {
	position: relative;
	padding: 1rem 3rem;
	font-size: 1.1rem;
	color: #222b3e;
	background-color: #ffffff;
	border-radius: 10px;
	overflow: hidden;
	border: none;
}

.frame.frame-default.frame-type-tab .blockquote,
.frame.frame-default.frame-type-accordion .blockquote,
.frame.frame-default.frame-type-panel .blockquote {
	background-color: #e6e6e6;
	border-radius: 0;
}

.frame.frame-default blockquote:after {
	position: absolute;
	top: 10px;
	right: 5px;
	width: 40px;
	height: 40px;
	content: '\f10e';
	font-family: 'Font Awesome 6 Free';
	font-size: 2rem;
	font-weight: 800;
	color: rgba(166, 163, 105, 0.5);
}

.frame.frame-default blockquote:before {
	position: absolute;
	content: '';
	top: 0;
	left: 20px;
	width: 10px;
	height: 100%;
	background: radial-gradient(rgba(97, 132, 165, 0.5), rgba(97, 132, 165, 0.5) 2px, transparent 3px, transparent);
	background-size: 100% 10px;
}


/* -> LISTE DE FICHIERS
============================================================== */

.frame.frame-type-uploads .filelink-list {
	padding: 0 !important;
}

.frame.frame-type-uploads .filelink-list .filelink-item {
	gap: 0.25rem;
}

.frame.frame-type-uploads .filelink-list .filelink-item .filelink-media {
	font-size: 1.15rem;
	font-weight: 400;
	display: flex;
}

.frame.frame-type-uploads .filelink-list .filelink-item .filelink-media img {
	margin-right: 10px;
	background-color: transparent;
}

.frame.frame-type-uploads .filelink-list .filelink-item .filelink-media .filelink-fileicon {
	position: relative;
	margin: 0;
	width: 30px;
	height: 30px;
	text-align: center;
	background-color: transparent;
	border-radius: 50%;
}

.frame.frame-type-uploads .filelink-list .filelink-item .filelink-media .filelink-fileicon * {
	display: none;
}

.frame.frame-type-uploads .filelink-list .filelink-item .filelink-media .filelink-fileicon:before {
	position: absolute;
	top: 2px;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	content: '\f570';
	font-family: 'Font Awesome 6 Free';
	font-size: 1.4rem;
	font-weight: 800;
	color: #222b3e;
}

.frame.frame-type-uploads .filelink-list .filelink-item .filelink-body .filelink-heading .filelink-filename {
	font-size: 1.15rem;
	font-weight: 700;
}

.frame.frame-type-uploads .filelink-list .filelink-item .filelink-body .filelink-heading .filelink-filesize {
	font-size: 0.85rem;
	font-weight: 700;
	color: #222b3e;
	opacity: 0.5;
}

.frame.frame-type-uploads .filelink-list .filelink-item .filelink-body .filelink-filedescription {
	font-size: 0.85rem;
	color: #222b3e;
	opacity: 1;
}


/* -> ONGLETS
============================================================== */

.tab-navigation {
	margin: 0;
}

.tab-navigation .nav-tabs {
	margin: 0;
	border: none;
}

.tab-navigation .nav-tabs .nav-link {
	position: relative;
	margin: 0 15px 0 0;
	padding: 1rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffffff;
	background-color: #a6a369;
	border-radius: 10px 10px 0 0;
	border: none;
	box-shadow: none;
}

.tab-navigation .nav-tabs .nav-link:hover,
.tab-navigation .nav-tabs .nav-link:focus {
	color: #ffffff;
	background-color: #a6a369;
	box-shadow: none;
}

.tab-navigation .nav-tabs .nav-link.active,
.tab-navigation .nav-tabs.show .nav-link {
	position: relative;
	color: #a6a369;
	background-color: #ffffff;
}

.tab-navigation .nav-tabs .nav-link:before {
	position: relative;
	content: '\f0da';
	margin-right: 10px;
	font-family: 'Font Awesome 6 Free';
	font-size: 1.25rem;
	font-weight: 800;
	color: #ffffff;
}

.tab-navigation .nav-tabs .nav-link:hover:before,
.tab-navigation .nav-tabs .nav-link:focus:before,
.tab-navigation .nav-tabs .nav-link.active:before,
.tab-navigation .nav-tabs.show .nav-link:before {
	color: #6184a5;
}

.tab-content {
	background-color: #ffffff;
}

.tab-content .tab-pane {
	padding: 1rem 1.5rem;
	color: #222b3e;
	background-color: #ffffff;
	border-radius: 0 0 10px 10px;
	border: none;
	opacity: 1;
	transition: 0.25s ease-out;
}

.tab-content .tab-pane .tab-pane-content .tab-pane-content-media {
	padding: 0.5rem 0;
}

/* Alignement des images
------------------------------------ */

.tab-content .tab-pane .tab-pane-content.tab-pane-content-left .tab-pane-content-item.tab-pane-content-media,
.tab-content .tab-pane .tab-pane-content.tab-pane-content-right .tab-pane-content-item.tab-pane-content-text {
	order: 0;
}

.tab-content .tab-pane .tab-pane-content.tab-pane-content-right .tab-pane-content-item.tab-pane-content-media,
.tab-content .tab-pane .tab-pane-content.tab-pane-content-left .tab-pane-content-item.tab-pane-content-text {
	order: 1;
}


/* -> ACCORDEONS
============================================================== */

.accordion .accordion-item {
	margin-bottom: 15px;
	background-color: #ffffff;
	border: none !important;
	border-radius: 10px;
	overflow: hidden;
}

.accordion .accordion-item .accordion-header {}

.accordion .accordion-item .accordion-header .accordion-button {
	margin: 0;
	padding: 1rem 1.5rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: #a6a369;
	background-color: #ffffff;
	box-shadow: none;
}

.accordion .accordion-item .accordion-header .accordion-button:hover,
.accordion .accordion-item .accordion-header .accordion-button:focus {
	color: #ffffff !important;
	background-color: #a6a369;
	box-shadow: none;
}

.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
	color: #ffffff !important;
	background-color: #a6a369;
}

.accordion .accordion-item .accordion-header .accordion-button:before {
	position: relative;
	content: '\f0da';
	margin-right: 10px;
	font-family: 'Font Awesome 6 Free';
	font-size: 1.25rem;
	font-weight: 800;
	color: #6184a5;
}

.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed):before,
.accordion .accordion-item .accordion-header .accordion-button:hover:before,
.accordion .accordion-item .accordion-header .accordion-button:focus:before {
	color: #ffffff;
}

.accordion .accordion-item .accordion-header .accordion-button:after {
	position: relative;
	content: '\2b';
	width: auto;
	height: 1.25rem;
	font-family: 'Font Awesome 6 Free';
	font-size: 1.5rem;
	font-weight: 800;
	color: #a6a369;
	line-height: 0.75;
	background: none;
}

.accordion .accordion-item .accordion-header .accordion-button:hover:after,
.accordion .accordion-item .accordion-header .accordion-button:focus:after {
	color: #ffffff;
}

.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed):after {
	content: '\f00d';
	color: #ffffff;
}

.accordion .accordion-item .accordion-collapse .accordion-body {
	position: relative;
	color: #222b3e;
	background-color: #ffffff;
	border-radius: 0;
	border: none;
}

/*.accordion .accordion-item .accordion-collapse .accordion-body .image {
	margin-bottom: 1rem;
}*/

/* Alignement des images
------------------------------------ */

.accordion .accordion-item .accordion-body .accordion-content.accordion-content-left .accordion-content-item.accordion-content-media,
.accordion .accordion-item .accordion-body .accordion-content.accordion-content-right .accordion-content-item.accordion-content-text {
	order: 0;
}

.accordion .accordion-item .accordion-body .accordion-content.accordion-content-right .accordion-content-item.accordion-content-media,
.accordion .accordion-item .accordion-body .accordion-content.accordion-content-left .accordion-content-item.accordion-content-text {
	order: 1;
}


/* -> IMAGES
============================================================== */

.bp-page-content>.section.section-default .frame.frame-default .gallery-row {
	/*gap: 0;*/
	justify-content: center;
}

.bp-page-content>.section.section-default .frame.frame-default .gallery-item figure.image {
	/*margin: 1rem 0;*/
}

.bp-page-content>.section.section-default .frame.frame-default .gallery-item img,
.bp-page-content>.section.section-default .frame.frame-default .gallery-item picture {
	position: relative;
	z-index: 2;
}

.bp-page-content>.section.section-default .frame.frame-default .gallery-item:not(.gallery-item-size-1) img {
	object-fit: cover;
	object-position: center center;
	height: 200px;
}

.bp-page-content>.section.section-default .frame.frame-default .gallery-item.gallery-item-size-2 img {
	height: 300px;
}

.bp-page-content>.section.section-default .frame.frame-default .gallery-item.gallery-item-size-3 img {
	height: 210px;
}

.bp-page-content>.section.section-default .frame.frame-default .gallery-item.gallery-item-size-4 img {
	height: 160px;
}

.bp-page-content>.section.section-default .frame.frame-default .gallery-item.gallery-item-size-5 img {
	height: 130px;
}

.bp-page-content>.section.section-default .frame.frame-default .gallery-item.gallery-item-size-6 img {
	height: 100px;
}

.bp-page-content>.section.section-default .frame.frame-default .gallery-item .caption {
	padding-top: 0.25rem;
	font-size: 0.85rem;
	text-align: center;
	word-wrap: break-word;
	opacity: 0.8;
}


/* -> VIDEOS (Mot du Maire)
============================================================== */

.bp-page-content>.section.section-default .frame.frame-type-textpic .textpic .textpic-gallery .gallery-item video,
.bp-page-content>.section.section-default .frame.frame-type-list .textpic .textpic-gallery .gallery-item video {
	width: 100%;
	height: auto;
}

/* -> VIDEOS Externes
============================================================== */

.bp-page-content>.section.section-default .frame.frame-type-textpic .textpic .textpic-gallery .gallery-item iframe,
.bp-page-content>.section.section-default .frame.frame-type-list .textpic .textpic-gallery .gallery-item iframe {
	width: 100%;
	height: 400px;
}


/* -> EDITO (Mot du Maire)
============================================================== */

.bp-page-content>.section.section-editorial {
	overflow: visible;
}

.bp-page-content>.section.section-editorial .frame.frame-type-textpic {
	padding-top: 3.5rem;
	padding-bottom: 0;
}

.bp-page-content>.section.section-editorial .frame.frame-type-textpic .textpic {
	background-color: #ffffff;
	border-radius: 10px;
	overflow: hidden;
}

.bp-page-content>.section.section-editorial .frame.frame-type-textpic .textpic-item.textpic-text {
	width: calc(100% / 12 * 9 - 40px * 1 / 12 * 9);
	padding: 30px;
}

.bp-page-content>.section.section-editorial .frame.frame-type-textpic .textpic-item.textpic-gallery {
	width: calc(100% / 12 * 3 - 40px * 1 / 12 * 3);
}

@media (max-width: 1199px) {
	.bp-page-content>.section.section-editorial .frame.frame-type-textpic .textpic-item.textpic-text {
		width: calc(100% / 12 * 9 - 40px * 1 / 12 * 9);
	}

	.bp-page-content>.section.section-editorial .frame.frame-type-textpic .textpic-item.textpic-gallery {
		width: calc(100% / 12 * 3 - 40px * 1 / 12 * 3);
	}
}

@media (max-width: 991px) {
	.bp-page-content>.section.section-editorial .frame.frame-type-textpic .textpic-item.textpic-text {
		width: calc(100% / 12 * 12 - 40px * 0 / 12 * 12);
		padding: 30px 30px 0 30px;
	}

	.bp-page-content>.section.section-editorial .frame.frame-type-textpic .textpic-item.textpic-text,
	.bp-page-content>.section.section-editorial .frame.frame-type-textpic .textpic-item.textpic-gallery {
		width: calc(100% / 12 * 12 - 40px * 0 / 12 * 12);
	}
}

@media (max-width: 767px) {
	.bp-page-content>.section.section-editorial .frame.frame-type-textpic .textpic-item.textpic-text {
		padding: 0 30px 30px 30px;
		order: 2;
	}

	.bp-page-content>.section.section-editorial .frame.frame-type-textpic .textpic-item.textpic-gallery {
		order: 1;
	}
}

.bp-page-content>.section.section-editorial .frame.frame-type-textpic .textpic-item.textpic-gallery figure.image {
	margin-top: 0;
	margin-bottom: 0;
}


/* -> LISTE A PUCES
============================================================== */

.bp-page-content>.section.section-default .frame.frame-default ol {
	padding-left: 1rem;
}

.bp-page-content>.section.section-default .frame.frame-default ol>li::marker {
	font-weight: 700;
	color: #a6a369;
}

.bp-page-content>.section.section-default .frame.frame-default ol>li ol {
	padding-left: 3rem;
}

.bp-page-content>.section.section-default .frame.frame-default ul.list-normal {
	padding-left: 0;
	list-style-type: none;
}

.bp-page-content>.section.section-default .frame.frame-default ul.list-normal>li {
	position: relative;
	padding-left: 20px;
}

.bp-page-content>.section.section-default .frame.frame-default ul.list-normal>li:before {
	position: absolute;
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-size: 1rem;
	font-weight: 800;
	color: #a6a369;
	top: 0;
	left: 0;
}

.bp-page-content>.section.section-default .frame.frame-default ul.list-normal>li ul {
	padding-left: 1rem;
}

.bp-page-content>.section.section-default .frame.frame-default ul.list-normal>li ul>li:before {
	content: '\f054';
	transform: rotate(90deg);
	font-size: 1rem;
	color: #6184a5;
	top: 2px;
}

.bp-page-content>.section.section-default .frame.frame-default ul.list-normal>li ul>li ul>li:before {
	content: '\f068';
	transform: rotate(0deg);
	font-size: 1rem;
	color: #ffffff;
}


/* -> PLAN DU SITE
============================================================== */

.frame.frame-type-menu_sitemap_pages .frame-inner>ul {
	padding: 0;
	list-style-type: none;
	columns: 2;
	column-gap: 30px;
}

@media (max-width: 991px) {
	.frame.frame-type-menu_sitemap_pages .frame-inner>ul {
		columns: 2;
	}
}

@media (max-width: 767px) {
	.frame.frame-type-menu_sitemap_pages .frame-inner>ul {
		columns: 1;
	}
}

.frame.frame-type-menu_sitemap_pages .frame-inner>ul>li {
	margin-bottom: 1rem;
}

.frame.frame-type-menu_sitemap_pages .frame-inner>ul>li:before {}

.frame.frame-type-menu_sitemap_pages .frame-inner>ul>li ul {
	padding: 0;
	list-style-type: none;
}

.frame.frame-type-menu_sitemap_pages .frame-inner>ul>li ul>li:before {
	position: relative;
	content: '\f111';
	margin-right: 5px;
	font-family: 'Font Awesome 6 Free';
	font-size: 0.5rem;
	font-weight: 800;
	color: #a6a369;
}

.frame.frame-type-menu_sitemap_pages .frame-inner>ul>li ul>li ul {
	padding-left: 1rem;
}

.frame.frame-type-menu_sitemap_pages .frame-inner>ul>li ul>li ul>li:before {
	content: '\f0da';
	font-size: 1.1rem;
	color: #222b3e;
}

.frame.frame-type-menu_sitemap_pages .frame-inner>ul li a {
	font-size: 1rem;
	font-weight: 400;
	color: #222b3e;
	line-height: 1.6;
}

.frame.frame-type-menu_sitemap_pages .frame-inner>ul li a:hover,
.frame.frame-type-menu_sitemap_pages .frame-inner>ul li a:focus {
	color: #a6a369;
}

.frame.frame-type-menu_sitemap_pages .frame-inner>ul>li {
	list-style-type: none;
}

.frame.frame-type-menu_sitemap_pages .frame-inner>ul>li>a {
	font-family: 'Raleway', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: #a6a369;
	text-transform: uppercase;
}

.frame.frame-type-menu_sitemap_pages .frame-inner>ul>li>a:hover,
.frame.frame-type-menu_sitemap_pages .frame-inner>ul>li>a:focus {
	color: #222b3e;
}


/* -> VIDEOS (YouTube & Vimeo)
============================================================== */

.frame.frame-type-external_media .embed-responsive {
	border-radius: 10px;
	overflow: hidden;
}


/* -> PIED DE PAGE
============================================================== */

.body-bg>.bp-page-footer {
	position: relative;
	margin-top: 60px;
	z-index: 2;
}

.backendlayout-special_feature .body-bg>.bp-page-footer {
	margin-top: -90px;
}

/* Largeur des colonnes
------------------------------------ */

.footer-section.footer-section-content-infos .section-column.footer-section-content-column-left,
.footer-section.footer-section-content-infos .section-column.footer-section-content-column-middle,
.footer-section.footer-section-content-infos .section-column.footer-section-content-column-right {
	width: calc(100% / 12 * 4 - 40px * 2 / 12 * 4);
}

@media (min-width: 768px) and (max-width: 1199px) {
	.footer-section.footer-section-content-infos .section-column.footer-section-content-column-left {
		width: calc(100% / 12 * 6 - 40px * 1 / 12 * 6);
	}

	.footer-section.footer-section-content-infos .section-column.footer-section-content-column-middle {
		width: calc(100% / 12 * 6 - 40px * 1 / 12 * 6);
	}

	.footer-section.footer-section-content-infos .section-column.footer-section-content-column-right {
		width: calc(100% / 12 * 12 - 40px * 0 / 12 * 12);
	}
}

@media (max-width: 767px) {

	.footer-section.footer-section-content-infos .section-column.footer-section-content-column-left,
	.footer-section.footer-section-content-infos .section-column.footer-section-content-column-middle,
	.footer-section.footer-section-content-infos .section-column.footer-section-content-column-right {
		width: calc(100% / 12 * 12 - 40px * 0 / 12 * 12);
	}
}

/* Carte de localisation
------------------------------------ */

.footer-section.footer-section-content-infos .section-column.footer-section-content-column-left .frame.frame-type-image:first-child {
	padding-top: 3.5rem;
}

.footer-section.footer-section-content-infos .section-column.footer-section-content-column-left .frame.frame-type-image figure.image {
	margin: 0 auto;
	width: 80%;
}

.footer-section.footer-section-content-infos .section-column.footer-section-content-column-left .frame.frame-type-image figure.image picture {
	filter: none;
	transition: 0.25s ease-in-out;
}

.footer-section.footer-section-content-infos .section-column.footer-section-content-column-left .frame.frame-type-image figure.image a:hover picture,
.footer-section.footer-section-content-infos .section-column.footer-section-content-column-left .frame.frame-type-image figure.image a:focus picture {
	filter: grayscale();
}

/* Infos pratiques
------------------------------------ */

.footer-section.footer-section-content-infos {
	background-color: #222b3e;
}

.footer-section.footer-section-content-infos:before,
.footer-section.footer-section-content-infos:after {
	position: absolute;
	content: '';
	top: -60px;
	width: 360px;
	height: 60px;
	background: transparent url('images/montagnes.svg') no-repeat top center;
	background-size: 100% 100%;
	z-index: 1;
	pointer-events: none;
}

.footer-section.footer-section-content-infos:before {
	left: 30px;
	right: auto;
}

.footer-section.footer-section-content-infos:after {
	left: auto;
	right: 30px;
}

.footer-section.footer-section-content-infos .frame.frame-type-textpic:first-child {
	padding-top: 3.5rem;
}

.footer-section.footer-section-content-infos .frame.frame-type-textpic .textpic.textpic-left .textpic-gallery {
	width: calc(100% / 12 * 5 - 40px * 1 / 12 * 5);
}

.footer-section.footer-section-content-infos .frame.frame-type-textpic .textpic.textpic-left .textpic-text {
	width: calc(100% / 12 * 7 - 40px * 1 / 12 * 7);
}

.footer-section.footer-section-content-infos .frame.frame-type-textpic .frame-inner h3,
.footer-section.footer-section-content-infos .frame.frame-type-textpic .frame-inner h4,
.footer-section.footer-section-content-infos .frame.frame-type-textpic .frame-inner h5 {
	margin-bottom: 2rem;
	font-size: 1.4rem !important;
	font-weight: 700;
	color: #a6a369;
	text-transform: inherit;
}

.footer-section.footer-section-content-infos .frame.frame-type-textpic p,
.footer-section.footer-section-content-infos .frame.frame-type-textpic ul {
	margin-bottom: 1rem;
	font-size: 1.1rem;
	font-weight: 400;
	color: #ffffff;
}

.footer-section.footer-section-content-infos .frame.frame-type-textpic p {
	display: flex;
	align-items: baseline;
}

.footer-section.footer-section-content-infos .frame.frame-type-textpic ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.footer-section.footer-section-content-infos .frame.frame-type-textpic ul li {
	margin: 10px 0;
}

.footer-section.footer-section-content-infos .frame.frame-type-textpic ul li strong {
	margin: 0 15px 0 0;
	padding: 2px 10px;
	color: #222b3e;
	text-align: center;
	background-color: #a6a369;
	border-radius: 10px;
	min-width: 100px;
	display: inline-block;
}

.footer-section.footer-section-content-infos .frame.frame-type-textpic ul li em {
	font-style: normal;
	color: #a6a369;
}

.footer-section.footer-section-content-infos .frame.frame-type-textpic .fa,
.footer-section.footer-section-content-infos .frame.frame-type-textpic .fas {
	margin-right: 5px;
	font-size: 1.1rem;
	color: #6184a5;
}

.footer-section.footer-section-content-infos .frame.frame-type-textpic h3 .fas {
	font-size: 1.3rem;
	color: #a6a369;
}

.footer-section.footer-section-content-infos .frame.frame-type-textpic a {
	font-size: 1.1rem;
	font-weight: 700;
	color: #ffffff;
}

.footer-section.footer-section-content-infos .frame.frame-type-textpic a:hover,
.footer-section.footer-section-content-infos .frame.frame-type-textpic a:focus {
	color: #6184a5;
}

/* Menu Pied de page
------------------------------------ */

.footer-section.footer-section-content-infos .frame.frame-type-menu_subpages:first-child {
	padding-top: 2.5rem;
}

@media (max-width: 991px) {
	.footer-section.footer-section-content-infos .frame.frame-type-menu_subpages:first-child {
		margin-top: -3.5rem;
		padding-top: 0;
	}
}

.footer-section.footer-section-content-infos .frame.frame-type-menu_subpages .frame-inner>ul {
	padding: 0;
	list-style-type: none;
}

.footer-section.footer-section-content-infos .frame.frame-type-menu_subpages .frame-inner>ul li {
	margin: 0;
	padding: 0;
	border-bottom: 4px dotted rgba(166, 163, 105, 1);
	display: flex;
	align-items: center;
}

.footer-section.footer-section-content-infos .frame.frame-type-menu_subpages .frame-inner>ul li:last-child {
	border: none;
}

.footer-section.footer-section-content-infos .frame.frame-type-menu_subpages .frame-inner>ul li:before {
	content: '\2b';
	font-family: 'Font Awesome 6 Free';
	font-size: 1.2rem;
	font-weight: 700;
	color: #6184a5;
}

.footer-section.footer-section-content-infos .frame.frame-type-menu_subpages .frame-inner>ul li a {
	padding: 1rem 0.5rem;
	font-size: 1rem;
	font-weight: 700;
	color: #ffffff;
	display: inline-block;
}

.footer-section.footer-section-content-infos .frame.frame-type-menu_subpages .frame-inner>ul li a:hover,
.footer-section.footer-section-content-infos .frame.frame-type-menu_subpages .frame-inner>ul li a:focus {
	color: #a6a369;
	text-decoration: none;
}


/* Facebook
------------------------------------ */

.footer-section.footer-section-content-infos .section-column.footer-section-content-column-right .frame.frame-type-image figure.image {
	margin: 0 auto;
	width: 50%;
}

.footer-section.footer-section-content-infos .section-column.footer-section-content-column-right .frame.frame-type-image figure.image picture {
	filter: none;
	transition: filter 0.25s ease-in-out;
}

.footer-section.footer-section-content-infos .section-column.footer-section-content-column-right .frame.frame-type-image figure.image a:hover picture,
.footer-section.footer-section-content-infos .section-column.footer-section-content-column-right .frame.frame-type-image figure.image a:focus picture {
	filter: grayscale();
}

/* Plan du site
------------------------------------ */

.footer-section.footer-section-content-sitemap {
	background-color: #ffffff;
	border-top: 5px solid #a6a369;
}

.footer-section.footer-section-content-sitemap .frame.frame-type-menu_sitemap_pages {
	padding: 1rem;
}

.footer-section.footer-section-content-sitemap .frame.frame-type-menu_sitemap_pages .frame-inner>ul {
	columns: 3;
	column-gap: 30px;
}

@media (max-width: 1199px) {
	.footer-section.footer-section-content-sitemap .frame.frame-type-menu_sitemap_pages .frame-inner>ul {
		columns: 2;
	}
}

@media (max-width: 991px) {
	.footer-section.footer-section-content-sitemap .frame.frame-type-menu_sitemap_pages .frame-inner>ul {
		columns: 1;
	}
}

/* Copyright
------------------------------------ */

.footer-section.footer-section-meta {
	background-color: #a6a369;
}

.footer-section.footer-section-meta .frame {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.footer-section.footer-section-meta .frame .frame-inner>* {
	margin: 0.5rem;
}

.footer-section.footer-section-meta .frame p {
	font-size: 1.1rem;
	font-weight: 400;
	margin: 0;
	color: #222b3e;
	text-align: center;
}

.footer-section.footer-section-meta .frame a {
	font-weight: 700;
	color: #222b3e !important;
}

.footer-section.footer-section-meta .frame a:hover {
	color: #ffffff !important;
}

.footer-section.footer-section-meta .frame .footer-meta,
.footer-section.footer-section-meta .frame .footer-language,
.footer-section.footer-section-meta .frame .footer-sociallinks {
	display: none;
}


/* -> BOUTON HAUT DE PAGE
============================================================== */

.scroll-top {
	right: 30px;
	bottom: 30px;
	width: 70px;
	height: 70px;
	background-color: #ffffff;
	border: none;
	border-radius: 50%;
	overflow: visible;
}

.scroll-top:hover,
.scroll-top:focus {
	background-color: #222b3e;
}

.scroll-top,
.scroll-top .scroll-top-icon,
.scroll-top .scroll-top-icon:before {
	transform: none;
}

.scroll-top .scroll-top-icon:before {
	position: absolute;
	top: 12px;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	content: '\f077';
	font-family: 'Font Awesome 6 Free';
	font-size: 2.4rem;
	font-weight: 800;
	color: #222b3e;
	text-align: center;
	border: none;
}

.scroll-top:hover .scroll-top-icon:before,
.scroll-top:focus .scroll-top-icon:before {
	color: #a6a369;
}


/* -> COOKIES
============================================================== */
.cc-window,
.cc-revoke {
	color: #222b3e;
	background-color: #ffffff;
	/*border: none;*/
}

.cc-link,
.cc-link:active,
.cc-link:visited {
	font-weight: 700;
	color: #a6a369 !important;
	text-decoration: none;
	opacity: 1;
}

.cc-link:hover,
.cc-link:focus {
	color: #6184a5 !important;
}

.cc-compliance .cc-btn {
	margin: 0;
	padding: 0.5rem 1.5rem;
	font-size: 1rem;
	font-weight: 400;
	color: #ffffff;
	background-color: #222b3e;
	border-radius: 10px;
	box-shadow: none;
	border: none;
}

.cc-compliance .cc-btn.cc-dismiss {
	color: #ffffff;
	background-color: #222b3e;
}

.cc-compliance .cc-btn.cc-dismiss:hover,
.cc-compliance .cc-btn.cc-dismiss:focus {
	color: #ffffff;
	background-color: #a6a369;
}