/*
Theme Name: Com' des frères
Theme URI: https://www.comdesfreres.fr
Author: Com' des frères
Author URI: https://www.comdesfreres.fr
Description: Personal theme.
Version: 1.0
Requires at least: 4.7
Requires PHP: 5.2.4
License: Com' des frères License
License URI: https://www.comdesfreres.fr
Text Domain: comdesfreres
*/

@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

/* CSS Variables and Typography */
:root {
	--light: #fcfcfc;
	--dark: #3a3a3a;

	--primary-color-10: #ffd6e4;
	--primary-color-20: #feadc9;
	--primary-color-30: #fe85af;
	--primary-color-40: #fd5c94;
	--primary-color-50: #fd3379;
	--primary-color-60: #ca2961;
	--primary-color-70: #981f49;
	--primary-color-80: #651430;
	--primary-color-90: #330a18;

	--secondary-color-10: #d0d4e1;
	--secondary-color-20: #a1a9c2;
	--secondary-color-30: #717da4;
	--secondary-color-40: #425285;
	--secondary-color-50: #132767;
	--secondary-color-60: #0f1f52;
	--secondary-color-70: #0b173e;
	--secondary-color-80: #081029;
	--secondary-color-90: #081029;

	--tertial-color-10: #e3f7f6;
	--tertial-color-20: #c7f0ed;
	--tertial-color-30: #ace8e4;
	--tertial-color-40: #90e1db;
	--tertial-color-50: #74d9d2;
	--tertial-color-60: #5daea8;
	--tertial-color-70: #46827e;
	--tertial-color-80: #2e5754;
	--tertial-color-90: #2e5754;

	--neutral-color-10: #fff8f1;
	--neutral-color-20: #fbd8bb;
	--neutral-color-30: #f9c59a;
	--neutral-color-40: #f7b178;
	--neutral-color-50: #f59e56;
	--neutral-color-60: #c47e45;
	--neutral-color-70: #935f34;
	--neutral-color-80: #623f22;
	--neutral-color-90: #312011;

	--error-color-10: #f7cdcd;
	--error-color-20: #ef9b9b;
	--error-color-30: #e76868;
	--error-color-40: #df3636;
	--error-color-50: #d70404;
	--error-color-60: #ac0303;
	--error-color-70: #810202;
	--error-color-80: #560202;
	--error-color-90: #2b0101;

	--h1-desktop: 60px;
	--h2-desktop: 45px;
	--h3-desktop: 30px;
	--subtitle-desktop: 25px;
	--p-desktop: 18px;

	--h1-mobile: 30px;
	--h2-mobile: 25px;
	--h3-mobile: 20px px;
	--subtitle-mobile: 18px;
	--p-mobile: 15px;

	--box-shadow-1: 0 4px 20px 3px rgba(0, 0, 0, 0.15);
	--box-shadow-blue: 0 4px 20px 3px #1327674d;
	--box-shadow-pink: 0 4px 20px 3px #fc337a80;
	--box-shadow-2: 0 0 10px 10px rgba(0, 0, 0, 0.1);
	--border-radius: 0 0 20px 20px;

	--linear-turquoise-180: linear-gradient(180deg, var(--tertial-color-10, #e3f7f6) 0%, var(--light, #fcfcfc) 100%);
	--linear-orange-180: linear-gradient(180deg, var(--neutral-color-20, #e3f7f6) 0%, var(--light, #fcfcfc) 100%);
	--linear-orange-0: linear-gradient(0deg, var(--neutral-color-20, #e3f7f6) 0%, var(--light, #fcfcfc) 100%);
	--linear-neutral-0: linear-gradient(0deg, var(--neutral-color-10, #e3f7f6) 0%, var(--light, #fcfcfc) 100%);
	--linear-bleu-0: linear-gradient(0deg, var(--secondary-color-10, #e3f7f6) 0%, var(--light, #fcfcfc) 100%);
}
html {
	overflow-x: hidden;
}
body {
	margin: 0 !important;
	padding: 0;
	min-height: 100vh;
	background: var(--light, #fcfcfc);
	overflow-x: hidden;
}

* {
	font-family: 'Titillium Web', sans-serif;
}

h1 {
	font-size: var(--h1-desktop);
	margin: 0;
}
h2 {
	font-size: var(--h2-desktop);
	margin: 0;
}
h3 {
	font-size: var(--h3-desktop);
	margin: 0;
}
.subtitle {
	font-size: var(--subtitle-desktop);
	margin: 0;
}
p,
li {
	font-size: var(--p-desktop);
	margin: 0;
}
select {
	cursor: pointer;
}
@media screen and (max-width: 768px) {
	h1 {
		font-size: var(--h1-mobile);
	}
	h2 {
		font-size: var(--h2-mobile);
	}
	h3 {
		font-size: var(--h3-mobile);
	}
	.subtitle {
		font-size: var(--subtitle-mobile);
	}
	p,
	li {
		font-size: var(--p-mobile);
	}
}

main,
section,
footer {
	position: relative;
	z-index: 0;
}
/*Navbar*/
.logo {
	max-width: 160px;
}
.logo img {
	width: 100%;
	max-width: 160px;
	height: auto;
}
.navbar {
	align-items: center;
	background: var(--light);
	box-shadow: var(--box-shadow-1);
	display: flex;
	flex-direction: row;
	font-family: sans-serif;
	padding: 10px 50px;
	border-radius: var(--border-radius);
	z-index: 9;
	/* position: static; */
}

.push-left {
	margin-left: auto;
}

.hamburger {
	background: transparent;
	border: none;
	cursor: pointer;
	display: none;
	outline: none;
	height: 30px;
	position: relative;
	width: 30px;
	z-index: 1000;
}

.hamburger-line {
	background: #272727;
	height: 3px;
	position: absolute;
	left: 0;
	transition: all 0.2s ease-out;
	width: 100%;
}
.hamburger:hover .hamburger-line {
	background: #777;
}
.hamburger-line-top {
	top: 3px;
}
.menu-active .hamburger-line-top {
	top: 50%;
	transform: rotate(45deg) translatey(-50%);
}
.hamburger-line-middle {
	top: 50%;
	transform: translatey(-50%);
}
.menu-active .hamburger-line-middle {
	left: 50%;
	opacity: 0;
	width: 0;
}
.hamburger-line-bottom {
	bottom: 3px;
}
.menu-active .hamburger-line-bottom {
	bottom: 50%;
	transform: rotate(-45deg) translatey(50%);
}
.nav-menu {
	background: var(--light);
	justify-content: end;
	display: flex;
	align-items: center;
	gap: 20px;
}
.nav-menu ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	text-decoration: none;
	transition: all 0.25s ease-in;
	gap: 10px;
}

.nav-menu .menu-item a {
	color: var(--dark);
	display: block;
	line-height: 30px;
	margin: 0px 10px;
	text-decoration: none;
	font-size: var(--p-desktop);
}
.nav-menu img {
	width: 45px;
	height: 45px;
}

.nav-menu .menu-item a:hover {
	color: var(--primary-color-70);
}

.sub-nav {
	border: 1px solid #ccc;
	display: none;
	position: absolute;
	background-color: #fff;
	padding: 5px 5px;
	list-style: none;
	width: 230px;
}

.nav__link:hover + .sub-nav {
	display: block;
}

.sub-nav:hover {
	display: block;
}

.menu li::after {
	content: '';
	display: block;
	width: 100%;
	height: 5px;
	border-radius: 100px;
	background: var(--primary-color-20);
	margin-bottom: 5px;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform 0.3s ease-in-out;
}
.menu li:hover::after {
	transform-origin: left;
	transform: scaleX(1);
}
.menu li.current_page_item a {
	color: var(--primary-color-50);
}
.menu li.current_page_item::after {
	content: '';
	display: block;
	width: 100%;
	height: 5px;
	border-radius: 100px;
	background: var(--primary-color-50);
	margin-bottom: 5px;
	transform-origin: left;
	transform: scaleX(1);
}
.menu-active .costum-navbar {
	height: 100%;
}
.costum-navbar {
	position: fixed;
	top: 0;
	width: -webkit-fill-available;
}
.costum-navbar .logo img {
	width: 100px;
}
.cta-header {
	display: flex;
	gap: 15px;
}
@media screen and (max-width: 1280px) and (min-width: 1065px) {
	.logo,
	.logo img {
		max-width: 130px;
	}
	.navbar {
		padding: 10px;
	}
	.nav-menu .menu-item a {
		font-size: var(--p-mobile);
	}
}
@media screen and (max-width: 1065px) {
	.hamburger {
		display: inline-block;
	}
	.menu-active .hamburger {
		top: 30px;
		position: absolute;
	}
	.nav-menu {
		background: var(--light);
		flex-direction: column;
		justify-content: center;
		opacity: 0;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		transform: translatey(-100%);
		text-align: center;
		display: flex;
	}
	.cta-header {
		margin-top: 30px;
	}
	.nav-menu ul {
		flex-direction: column;
	}
	.menu li {
		width: fit-content;
		margin: auto;
	}
	body.menu-active {
		overflow: hidden;
	}
	.menu-active .nav-menu {
		transform: translatey(0%);
		opacity: 1;
		z-index: 999;
	}
	.nav-menu .menu-item a {
		font-size: 20px;
		margin: 8px;
	}
	.sub-nav {
		position: relative;
		width: 100%;
		display: none;
		background-color: rgba(0, 0, 0, 0.2);
		box-sizing: border-box;
	}
}

/*Breadcrumb*/
.breadcrumb {
	display: flex;
	padding-left: 80px;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 30px;
}
.breadcrumb-content {
	display: flex;
	align-items: center;
	gap: 10px;
}
.breadcrumb a {
	text-decoration: none;
	color: var(--primary-color-50);
}

@media screen and (max-width: 768px) {
	.breadcrumb {
		display: none;
	}
}

/*Button*/

.btn {
	display: inline-flex;
	/* height: 50px; */
	min-width: 115px;
	/* min-height: 50px; */
	padding: 10px 20px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 20px;
	text-decoration: none;
	width: fit-content;
	margin: auto;
	border-radius: 100px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.btn {
		font-size: 18px;
		min-width: 70px;
		padding: 8px 16px;
	}
}
.btn:hover path {
	stroke: var(--light);
}
.btn-primary,
.btn-outline-primary:hover {
	background: var(--primary-color-50, #fd3379);
	color: var(--light, #fcfcfc);
}

.btn-primary:hover,
.btn-outline-primary {
	border: 2px solid var(--primary-color-50, #fd3379);
	background: var(--light, #fcfcfc);
	color: var(--primary-color-50, #fd3379);
}
.btn-primary:disabled {
	background: var(--primary-color-20, #feadc9);
	cursor: not-allowed;
	color: var(--light, #fcfcfc);
	border: none;
}

.btn-secondary,
.btn-outline-secondary:hover {
	border-radius: 100px;
	background: var(--secondary-color-50, #132767);
	color: var(--light, #fcfcfc);
}
.btn-secondary:hover,
.btn-outline-secondary {
	border: 2px solid var(--secondary-color-50, #132767);
	background: var(--light, #fcfcfc);
	color: var(--secondary-color-50, #132767);
}
.btn-secondary:disabled {
	background: var(--secondary-color-20, #a1a9c2);
	cursor: not-allowed;
	color: var(--light, #fcfcfc);
	border: none;
}

.btn-tertial,
.btn-outline-tertial:hover {
	border-radius: 100px;
	background: var(--tertial-color-50, #74d9d2);
	color: var(--light, #fcfcfc);
}
.btn-tertial:hover,
.btn-outline-tertial {
	border: 2px solid var(--tertial-color-50, #74d9d2);
	background: var(--tertial-color-70);
	color: var(--light, #fcfcfc);
}
.btn-tertial:disabled {
	background: var(--tertial-color-20, #c7f0ed);
	cursor: not-allowed;
	color: var(--light, #fcfcfc);
	border: none;
}

.btn-neutral,
.btn-outline-neutral:hover {
	border-radius: 100px;
	background: var(--neutral-color-50, #f59e56);
	color: var(--light, #fcfcfc);
}
.btn-neutral:hover,
.btn-outline-neutral {
	background: var(--neutral-color-70);
	color: var(--light, #fcfcfc);
}
.btn-neutral:disabled {
	background: var(--neutral-color-20, #fbd8bb);
	cursor: not-allowed;
	color: var(--light, #fcfcfc);
	border: none;
}
.btn-back {
	display: flex;
	width: 40px;
	height: 40px;
	min-width: 30px;
	padding: 0;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 100px;
	border: 2px solid var(--primary-color-50, #fd3379);
	transition: 0.4s;
	margin: 0;
}
.btn-back:hover {
	background: var(--primary-color-50, #fd3379);
}
.btn-back:hover svg {
	stroke: var(--light, #fcfcfc);
}
/*Filtre*/
.filters {
	display: flex;
	gap: 40px;
	align-items: baseline;
	overflow-x: auto;
	margin-bottom: 25px;
}
.filter-btn {
	cursor: pointer;
	color: var(--dark);
	font-family: 'Titillium Web';
	font-size: var(--subtitle-desktop);
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	background-color: transparent;
	border: none;
	padding: 0;
	text-decoration: none;
}

.filter-btn:hover::after {
	transform-origin: left;
	transform: scaleX(1);
}

.filter-btn.active::after,
.filter-btn:hover::after {
	content: '';
	display: block;
	width: 100%;
	height: 5px;
	border-radius: 100px;
	margin-bottom: 5px;
	transform-origin: left;
	transform: scaleX(1);
}
.filter-primary.active,
.filter-primary:hover {
	color: var(--primary-color-50);
}
.filter-primary.active::after,
.filter-primary:hover::after {
	background: var(--primary-color-50);
}
.filter-secondary.active,
.filter-secondary:hover {
	color: var(--secondary-color-50);
}
.filter-secondary.active::after,
.filter-secondary:hover::after {
	background: var(--secondary-color-50);
}
.filter-tertial.active,
.filter-tertial:hover {
	color: var(--tertial-color-50);
}
.filter-tertial.active::after,
.filter-tertial:hover::after {
	background: var(--tertial-color-50);
}
.filter-neutral.active,
.filter-neutral:hover {
	color: var(--neutral-color-50);
}
.filter-neutral.active::after,
.filter-neutral:hover::after {
	background: var(--neutral-color-50);
}

@media screen and (max-width: 768px) {
	.filter-btn {
		font-size: var(--subtitle-mobile);
	}
}
/*Main Home*/
main.home {
	background: var(--linear-turquoise-180);
}
.home .page-header {
	max-width: 1020px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding: 0 20px;
	margin: 0 auto 50px auto;
	text-align: center;
	padding-top: 50px;
}
/*Pele-mele*/
.photo-collage {
	justify-content: center;
	align-items: center;
	display: flex;
	padding: 10px;
	max-width: 1500px;
	flex-wrap: wrap;
	position: relative;
	margin: auto;
	padding-bottom: 10%;
}

.photo {
	box-shadow: var(--box-shadow-2);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	width: 30%;
	border-radius: 20px;
	position: relative;
}

.photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 20px;
}
.magnet-1 {
	width: 120px;
	height: 120px;
	position: absolute;
	top: 57%;
	left: 67%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
}
.magnet-2 {
	width: 120px;
	height: 120px;
	position: absolute;
	top: 35%;
	left: 35%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
}
.magnet img {
	width: 100%;
	object-fit: cover;
	display: block;
	border-radius: 50%;
}

@media (max-width: 600px) {
	.magnet-1,
	.magnet-2 {
		width: 80px;
		height: 80px;
	}
	.magnet-1 {
		top: 63%;
	}
	.magnet-2 {
		left: 50%;
	}
	.photo {
		width: 45%;
	}

	.hidden {
		display: none;
	}
}

/*Engagements*/
.engagements {
	text-align: center;
	padding: 50px 10px;
	background: var(--linear-orange-0);
}
.values-wrap {
	max-width: 1400px;
	margin: 50px auto;
}
.values {
	display: flex;
	gap: 40px;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 30px;
}
.value {
	display: grid;
	flex: 1 1 calc(33.333% - 40px);
	min-width: 250px;
	max-width: 470px;
	text-align: center;
	justify-content: center;
	margin: auto;
}
.value img {
	margin: 15px auto;
	width: 162px;
	height: 162px;
}
.value .subtitle {
	display: block;
	margin: 10px 0;
	font-weight: 700;
}
@media screen and (max-width: 768px) {
	.values-wrap{
		margin: 0px auto;
	}
}

/*About*/
.about {
	padding: 50px 0 0 0;
	background: var(--light);
}
.about-illustration {
	max-width: 400px;
	height: 400px;
	width: 400px;
	margin: auto;
}
.about-wrap {
	max-width: 1400px;
	margin: auto;
	display: flex;
	gap: 100px;
	align-items: center;
	justify-content: space-between;
	padding: 25px;
}
.about-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.about-content .btn {
	margin: 0;
}

.about-illustration img {
	width: 400px;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 20px;
}

@media screen and (max-width: 848px) {
	.about-wrap {
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	.about-illustration img {
		width: 100%;
		height: 320px;
	}
	.about-illustration {
		width: 100%;
		max-width: none;
		height: 320px;
	}
}

/*Etablissements carrousel*/
.etablissements-top {
	padding-block: 50px 0;
	max-width: 1400px;
	margin: auto;
	padding-inline: 25px;
}
.etablissement-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 25px;
}
.etablissements .swiper-wrapper {
	padding: 50px 0;
}
.etablissements .btn {
	margin: 0 0 0 auto;
}
.etablissement {
	display: flex;
	flex-direction: column;
	text-align: left;
	text-decoration: none;
	border-radius: 20px;
	box-shadow: var(--box-shadow-1);
	background-color: var(--light);
	width: fit-content;
	max-width: 400px;
	color: var(--dark);
	overflow: hidden;
	transition: 0.4s;
}

.etablissement:hover {
	box-shadow: var(--box-shadow-pink);
	color: var(--primary-color-50);
	transform: scale(1.01);
}
.etablissement .wpwax-lsu-item-inner {
	display: grid !important;
	align-items: flex-start !important;
	justify-content: space-between !important;
	border-radius: 20px;
}

.etablissement .etablissement-img {
	max-width: none !important;
	max-height: 288px;
	width: 380px;
	height: 288px;
	object-fit: cover;
	display: block;
}
.etablissement-bottom {
	position: relative;
	display: grid;
	margin-left: 20px;
	padding: 20px;
}
.etablissement-bottom .icone {
	position: absolute;
	bottom: 10px;
	right: -30px;
	width: 30px;
	height: 30px;
}

.etablissements .swiper-slide {
	min-width: 380px;
}

.etablissement-top {
	position: relative;
}
.etablissement-categories {
	position: absolute;
	display: flex;
	gap: 10px;
	top: 5px;
	left: 5px;
}
.category {
	display: flex;
	padding: 0 20px;
	align-items: center;
	gap: 10px;
	height: 30px;
	color: var(--light);
	width: fit-content;
	border-radius: 20px;
	background-color: var(--dark);
}
.category-agricole {
	background-color: var(--neutral-color-80);
}
.category-college {
	background-color: var(--neutral-color-50);
}
.category-lycee {
	background-color: var(--tertial-color-50);
}
.category-primaire {
	background-color: var(--primary-color-50);
}
.category-ulis {
	background-color: var(--secondary-color-50);
}

/* Pagination bullets */
.etablissements .swiper-slide {
	width: auto !important;
	display: flex;
	justify-content: center;
}
.etablissements .swiper-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 20px;
	height: fit-content;
	width: 55% !important;
}

.etablissements .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 10px;
	opacity: 1;
	transition: 0.3s ease width !important;
}
.etablissements .swiper-pagination-bullet {
	background: var(--primary-color-20) !important;
}
.etablissements .swiper-pagination-bullet.is-active {
	background-color: var(--primary-color-50) !important;
	width: 40px !important;
	border-radius: 10px !important;
}
.swipperBottom {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}
.etablissements .wpwax-lsu-carousel-pagination.swiper-pagination-bullets {
	margin-top: 0 !important;
	width: fit-content !important;
	position: absolute !important;
	bottom: 25px !important;
	left: 25px !important;
}
@media screen and (max-width: 768px) {
	.etablissements .wpwax-lsu-carousel-pagination.swiper-pagination-bullets {
		bottom: 90px !important;
		left: 20% !important;
	}
	.etablissement {
		max-width: 320px;
	}
	.etablissements-top {
		padding-inline: 10px;
		text-align: center;
	}
	.etablissements-top .btn {
		display: none;
	}
	.home .etablissement-categories {
		margin-left: 35px;
	}
}
/*Projet diocésain accueil */
.prj-diocesain {
	max-width: 1400px;
	border-radius: 20px;
	background-color: var(--tertial-color-10);
	color: var(--dark);
	display: flex;
	gap: 70px;
	margin: auto;
	padding: 50px 20px;
	overflow: hidden;
}

.diocesain-left {
	display: flex;
	flex-direction: column;
	text-align: left;
	justify-content: center;
	gap: 20px;
	width: 60%;
}

.diocesain-right {
	border-radius: 20px;
	overflow: hidden;
	width: 400px;
	height: 400px;
}
.diocesain-right img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 400px;
	object-fit: cover;
}

@media screen and (max-width: 848px) {
	.prj-diocesain {
		flex-wrap: wrap;
		justify-content: center;
	}
	.diocesain-left,
	.diocesain-right {
		width: 100%;
	}
}
/*Actualites accueil*/
#actualites {
	margin-top: 1em;
}
.swiper.mySwiperActu {
	width: 100%;
	height: 100%;
}
.actualites-top {
	padding-block: 50px 0;
	max-width: 1500px;
	margin: auto;
	padding-inline: 25px;
}
.actualites-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 25px;
}
.flex-info span {
	display: flex;
	align-items: center;
	gap: 10px;
}
.flex-info img {
	width: 20px !important;
	height: 20px !important;
}
.actualites .subtitle,
.a_lire_aussi .subtitle {
	font-weight: 700;
}

.actualites .btn {
	margin: 0 0 0 auto;
}
.article-top {
	position: relative;
	height: 250px;
}
.article-top .category-list {
	position: absolute;
	top: 10px;
	left: 10px;
}

.category-etablissements {
	background-color: var(--tertial-color-50);
}
.category-ddec {
	background-color: var(--primary-color-50);
}
.category-diocesain {
	background-color: var(--secondary-color-50);
}
.actualites .swiper-wrapper,
.a_lire_aussi .swiper-wrapper {
	padding: 50px 20px;
}
.splide__slide img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.splide__arrow svg {
	fill: none !important;
	height: 83px !important;
	width: 83px !important;
}
.splide__arrow {
	background: transparent !important;
	width: auto !important;
	height: auto !important;
	opacity: 1 !important;
}
.splide__arrow:disabled {
	opacity: 0.3 !important;
	cursor: not-allowed !important;
}
/* Pagination bullets */
.mySwiperActu .swiper-slide {
	width: auto !important;
	display: flex;
	justify-content: center;
	transition: 0.4s;
}
.mySwiperActu .swiper-slide:hover {
	box-shadow: var(--box-shadow-blue);
	transform: scale(1.01);
}
.mySwiperActu .swiper-slide:hover .btn {
	border-radius: 100px;
	background: var(--secondary-color-50, #132767);
	color: var(--light, #fcfcfc);
	transition: ease-in-out 0.8ms;
}
.mySwiperActu .swiper-slide:hover .btn path {
	stroke: var(--light, #fcfcfc);
}
.mySwiperActu .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 10px;
	opacity: 1;
	transition: 0.3s ease width !important;
}
.mySwiperActu .swiper-pagination-bullet {
	background: var(--secondary-color-10) !important;
}
.mySwiperActu .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--secondary-color-50) !important;
	width: 40px !important;
	border-radius: 10px !important;
}
.mySwiperActu .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: var(--light);
	box-shadow: var(--box-shadow-1);
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.mySwiperActu .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 300px;
	object-fit: cover;
}
.mySwiperActu .swiper-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	height: fit-content;
	width: 55% !important;
	margin-top: 0 !important;
	width: fit-content !important;
	position: absolute !important;
	bottom: 35px !important;
	left: 25px !important;
}

.mySwiperActu .swiper-slide {
	width: 33% !important;
}
.mySwiperActu .swiper-slide a {
	text-decoration: none;
	color: var(--dark);
	text-align: left;
}
/* Custom Navigation Swiper */
.swiper-navigation {
	display: flex;
	flex-direction: row;
	gap: 40px;
	justify-content: end;
	height: 30px;
}
.mySwiperActu .swiper-button-next::after,
.mySwiperActu .swiper-button-prev::after {
	content: none;
}

.mySwiperActu .swiper-button-next,
.mySwiperActu .swiper-button-prev {
	width: 83px;
	height: 83px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform: rotate(180deg);
	position: relative;
}

.article-details {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
@media screen and (max-width: 1199px) {
	.mySwiperActu .swiper-slide {
		width: 33% !important;
	}
}
@media screen and (max-width: 992px) {
	.mySwiperActu .swiper-slide {
		width: 40% !important;
	}
}
@media screen and (max-width: 768px) {
	.mySwiperActu .swiper-slide {
		width: 50% !important;
	}
}
@media screen and (max-width: 640px) {
	.mySwiperActu .swiper-slide {
		width: 90% !important;
	}
}
/*Top*/

button.back-to-top {
	margin: 0 !important;
	padding: 0 !important;
	background: #fff;
	height: 0px;
	width: 0px;
	overflow: hidden;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	color: transparent;
	clear: both;
	visibility: hidden;
	position: fixed;
	cursor: pointer;
	display: block;
	border: none;
	right: 50px;
	bottom: 75px;
	font-size: 0px;
	outline: 0 !important;
	z-index: 99;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
button.back-to-top:hover,
button.back-to-top:active,
button.back-to-top:focus {
	outline: 0 !important;
}
button.back-to-top::before,
button.back-to-top::after {
	content: '';
	display: block;
	vertical-align: middle;
	border-bottom: solid 10px var(--primary-color-50);
	border-left: solid 10px transparent;
	line-height: 0;
	border-right: solid 10px transparent;
	height: 0;
	margin: 18px auto 0;
	width: 0;
	border-radius: 20px;
	visibility: hidden;
}
button.back-to-top.show::after,
button.back-to-top.show::before {
	visibility: visible;
}
button.back-to-top::after {
	border-bottom-color: #fff;
	position: relative;
	top: -24px;
}
button.back-to-top.show {
	display: block;
	background: #fff;
	color: #00ab6c;
	font-size: 25px;
	right: 25px;
	bottom: 50px;
	height: 50px;
	width: 50px;
	visibility: visible;
	box-shadow: var(--box-shadow-1);
	-webkit-box-shadow: var(--box-shadow-1);
	-moz-box-shadow: var(--box-shadow-1);
	/* box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
	-webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25); */
}
button.back-to-top.show:active {
	box-shadow: var(--box-shadow-1);
	-webkit-box-shadow: var(--box-shadow-1);
	-moz-box-shadow: var(--box-shadow-1);
	/* box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
	-webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25); */
}
/*Coordonnees*/
.coordonnees {
	max-width: 1500px;
	margin: 50px auto;
	padding: 0 20px;
}
.coordonnees-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 40px;
	gap: 20px;
}
.coordonnees-content {
	display: flex;
	justify-content: center;
	gap: 15px;
	transition: 0.4s;
}
.coordonnees-content:hover {
	transform: scale(1.1);
}
.coordonnees-list img {
	width: 60px;
}
.coordonnees-text a {
	text-decoration: none;
	color: var(--dark);
	cursor: pointer;
}
@media screen and (max-width: 768px) {
	.coordonnees-list img {
		width: 40px;
	}
	.coordonnees {
		margin: 50px auto 20px auto;
	}
}
/*FAQ*/
.faq {
	max-width: 1500px;
	margin: auto;
	padding: 2em 20px;
}

.faq-list {
	margin-top: 2em;
	border-top: 2px var(--dark) solid;
}
/*Partenaires*/
.partenaires {
	text-align: center;
	padding: 50px 20px 80px 20px;
	background: var(--linear-bleu-0);
	position: relative;
	bottom: -20px;
}

/*Footer*/
footer {
	width: -webkit-fill-available;
}
.footer-content {
	background: var(--secondary-color-50);
	color: var(--light);
	padding: 20px 0 0;
	box-shadow: var(--box-shadow-1);
	border-radius: 20px 20px 0 0;
	width: -webkit-fill-available;
	display: flex;
	gap: 10px;
	justify-content: space-evenly;
	flex-wrap: wrap;
	align-items: flex-start;
}
.footer-logo {
	margin: auto 0;
}
.footer-links ul,
.footer-rs ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-rs img {
	width: 40px;
	height: 40px;
}
.footer-menu li a {
	color: var(--light);
	text-decoration: none;
	font-size: var(--p-desktop);
}
.footer-menu li a:hover {
	color: var(--primary-color-50);
}
footer h3 {
	font-size: var(--h3-desktop);
	margin-bottom: 10px;
	color: var(--light);
}
.footer-links,
.footer-rs {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-rs-icons {
	display: flex;
	gap: 28px;
}
.copyright {
	width: 100%;
	margin-top: 20px;
	padding: 10px 0;
	background-color: var(--secondary-color-80);
	color: var(--light);
	text-align: center;
	font-size: var(--p-mobile);
}
.copyright a {
	color: var(--light);
}

@media screen and (max-width: 768px) {
	.footer-content {
		flex-direction: column;
		align-items: center;
		padding-top: 30px;
	}
	footer h3 {
		text-align: center;
		font-size: var(--h3-mobile);
	}
}

/*Blog*/
main.blog {
	text-align: center;
	padding: 0 20px;
	margin-top: 30px;
}
#list-actu {
	background: var(--linear-neutral-0);
}
.blog .filters {
	margin: 50px 0;
	justify-content: center;
}
@media screen and (max-width: 530px) {
	.blog .filters {
		justify-content: flex-start;
	}
}
.list-actu {
	display: flex;
	gap: 40px;
	padding: 0 30px;
	justify-content: center;
	flex-wrap: wrap;
}
.list-actu .content-actu:hover {
	box-shadow: var(--box-shadow-blue);
	transform: scale(1.01);
}
.list-actu .content-actu:hover .btn {
	border-radius: 100px;
	background: var(--secondary-color-50, #132767);
	color: var(--light, #fcfcfc);
	transition: ease-in-out 0.8ms;
}
.list-actu .content-actu:hover .btn path {
	stroke: var(--light, #fcfcfc);
}
.list-actu .content-actu {
	text-align: center;
	font-size: 18px;
	background: var(--light);
	box-shadow: var(--box-shadow-1);
	border-radius: 20px;
	display: flex;
	height: fit-content;
	justify-content: center;
	overflow: hidden;
	width: 28% !important;
	min-width: 350px;
	transition: 0.4s;
	position: relative;
}
.list-actu .content-actu img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 250px;
	object-fit: cover;
}

.list-actu .content-actu a {
	text-decoration: none;
	color: var(--dark);
	text-align: left;
	width: 100%;
}
.pagination {
	max-width: 85%;
	padding: 20px;
	margin: 20px auto;
	display: flex;
	justify-content: end;
}
/*Details article*/
article.article-full {
	padding: 0 20px;
}
.single_post-header {
	display: flex;
	width: 100%;
	justify-content: end;
	overflow: hidden;
	align-items: center;
	gap: 40px;
	max-width: 1100px;
	border-radius: 20px;
	background-color: var(--primary-color-10);
	margin: 20px auto;
	position: relative;
	height: 400px;
}
.single_text {
	display: flex;
	flex-direction: column;
	gap: 24px;
	text-align: left;
	padding: 20px 40px;
	width: 50%;
}
.single_thumbnail {
	width: 50%;
}
.single_thumbnail img {
	display: block;
	width: 100%;
	height: revert-layer;
	/* height: 100%; */
	max-height: 400px;
	object-fit: cover;
}
.single_header-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
}

.single_post-content {
	max-width: 1100px;
	margin: auto;
	padding: 0 20px;
}
.single_post-content p{
	padding: 10px 0;
}
.a_lire_aussi {
	text-align: center;
	padding: 100px 0 0 0;
	background: var(--linear-neutral-0);
}
/* Pagination bullets */
.splide__slide:hover {
	box-shadow: var(--box-shadow-blue);
	transform: scale(1.01);
}
.splide__slide:hover .btn {
	border-radius: 100px;
	background: var(--secondary-color-50, #132767);
	color: var(--light, #fcfcfc);
	transition: ease-in-out 0.8ms;
}
.splide__slide:hover .btn path {
	stroke: var(--light, #fcfcfc);
}
.splide__pagination__page {
	width: 10px;
	height: 10px;
	border-radius: 10px;
	opacity: 1;
	transition: 0.3s ease width !important;
}
.splide__pagination__page {
	background: var(--secondary-color-10) !important;
}
.splide__pagination__page.is-active {
	background-color: var(--secondary-color-50) !important;
	width: 40px !important;
	opacity: 1;
	border-radius: 10px !important;
}
.splide__track {
	padding: 50px 0;
}
.splide__slide {
	text-align: center;
	font-size: 18px;
	background: var(--light);
	box-shadow: var(--box-shadow-1);
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	min-width: 320px;
	height: fit-content;
	max-width: 400px;
	height: fit-content;
}
.swiperLireAussi .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 300px;
	object-fit: cover;
}
.splide__pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	height: fit-content;
	width: 55% !important;
	margin-top: 0 !important;
	width: fit-content !important;
	position: absolute !important;
	bottom: 35px !important;
	left: 25px !important;
}

.splide__slide a {
	text-decoration: none;
	color: var(--dark);
	text-align: left;
	display: flex;
	align-items: stretch;
	height: 100%;
}
/* Custom Navigation Swiper */
.splide__arrow--next,
.splide__arrow--prev {
	position: relative !important;
}
@media screen and (max-width: 768px) {
	.single_post-header {
		flex-direction: column-reverse;
		width: 100%;
		justify-content: flex-end;
		height: fit-content;
		gap: 0;
	}
	.single_text {
		width: 95%;
	}
	.single_thumbnail {
		width: 100%;
	}
	.single_thumbnail img {
		height: 100%;
		min-height: 250px;
	}
	.single_header-bottom {
		gap: 15px;
	}
	.single_header-bottom .category-list {
		position: absolute;
		top: 10px;
	}
}
@media screen and (max-width: 1199px) {
	.swiperLireAussi .swiper-slide {
		width: 25% !important;
	}
}
@media screen and (max-width: 992px) {
	.swiperLireAussi .swiper-slide {
		width: 40% !important;
	}
}
@media screen and (max-width: 768px) {
	.swiperLireAussi .swiper-slide {
		width: 50% !important;
	}
}
@media screen and (max-width: 640px) {
	.swiperLireAussi .swiper-slide {
		width: 90% !important;
	}
}

/*Nous rejoindre*/
main.nous_rejoindre {
	text-align: center;
	max-width: 1100px;
	margin: 30px auto 0 auto;
	gap: 25px;
	display: flex;
	flex-direction: column;
	padding: 0 30px;
}
.wp-block-image img {
	box-sizing: border-box;
	height: auto;
	margin: 50px 0;
	width: 100%;
	vertical-align: bottom;
	border-radius: 20px;
	object-fit: cover;
}
.tab.filters {
	display: flex;
	justify-content: center;
}
.tab.filters button {
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	font-size: 17px;
}

.job_content {
	display: none;
	padding: 6px 125px 85px;
	border: none;
}
.job_content h2 {
	text-align: center;
	margin-top: 70px;
	margin-bottom: 50px;
}

.job_content_text {
	margin: 30px 0 70px;
	display: flex;
	justify-content: center;
	gap: 50px;
}

.job_content_text .job_text {
	max-width: 500px;
}
.job_icon {
	display: flex;
	justify-content: space-around;
}
.job_icon .icon {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 15px;
	text-align: center;
	max-width: 250px;
}

.job_icon img {
	width: 150px;
	height: 150px;
}

.job_cta {
	text-align: center;
}

.postuler {
	border-radius: 20px;
	max-width: 1100px;
	background: var(--tertial-color-20);
	margin: 0 auto 50px auto;
	width: 90%;
	padding: 30px;
}
.postuler h2 {
	margin-bottom: 50px;
	text-align: center;
}
.postuler_content {
	display: flex;
	justify-content: center;
	gap: 40px;
	align-items: baseline;
}
.postuler_item {
	display: flex;
	flex-direction: column;
	gap: 25px;
	max-width: 360px;
}
.postuler_item .postuler_title {
	text-align: center;
}

.postuler_item .number {
	display: flex;
	width: 45px;
	height: 45px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	aspect-ratio: 1/1;
	background: var(--primary-color-50);
	font-size: var(--subtitle-desktop);
	color: var(--light);
	border-radius: 100px;
	margin: auto;
}
.postuler_item ul {
	margin: 0;
}
@media screen and (max-width: 820px) {
	.job_content {
		padding: 6px 20px 85px;
	}
}
@media screen and (max-width: 768px) {
	.tab.filters {
		gap: 0;
	}
	.job_content h2.title {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	.postuler {
		width: 70%;
	}
	.postuler_content {
		flex-wrap: wrap;
	}
	.job_content_text {
		flex-wrap: wrap;
	}
	.job_icon {
		flex-wrap: wrap;
		gap: 20px;
	}
}

/*Liste des établissements*/
#etab-search {
	content: '';
	background: url(./assets/icons/Search.svg);
	background-repeat: no-repeat;
	background-position: center right;
	background-size: contain;
	border-radius: 10px;
	border: 2px solid var(--secondary-color-30, #717da4);
	padding: 10px;
	flex: 1;
	min-width: 330px;
}
#etab-search::placeholder {
	color: var(--secondary-color-30);
	font-size: var(--p-desktop);
}
#etab-category, #etab-city{
	height: 42px !important;
	border-radius: 20px;
	color: var(--secondary-color-50);
	padding: 5px;
	font-size: 16px;
	min-width: 150px;
	border: 2px solid var(--secondary-color-50, #717da4);
}
.wpwax-lsu-content {
	justify-content: space-around;
	gap: 25px;
}
.wpwax-lsu-content .etablissements-wrapper {
	position: relative;
}

.wpwax-lsu-content .etablissement-category {
	position: absolute;
	top: 10px;
	left: 10px;
}
.wpwax-lsu-grid {
	margin-bottom: 1em;
}
/* @media screen and (max-width: 768px) {
	.wpwax-lsu-grid .etablissement-categories {
		margin-left: 10px;
	}
} */

/*A propos page + Projet diocesain page*/
main.about {
	text-align: center;
	max-width: 1100px;
	margin: 30px auto 0 auto;
	padding-top: 0;
}
.mission {
	max-width: 1300px;
	padding: 30px;
	margin: auto;
}

.education {
	max-width: 1300px;
	border-radius: 20px;
	color: var(--dark);
	display: flex;
	gap: 70px;
	margin: auto;
	padding: 30px;
	overflow: hidden;
}

.education-left {
	display: flex;
	flex-direction: column;
	text-align: left;
	justify-content: center;
	gap: 20px;
	width: 60%;
}

.education-right {
	border-radius: 20px;
	width: 600px;
	height: 400px;
}
.education-right img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 400px;
	object-fit: cover;
	border-radius: 20px;
}

.magnet-3 {
	width: 120px;
	height: 120px;
	position: absolute;
	bottom: -50px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
}
.magnet img {
	width: 100%;
	object-fit: cover;
	display: block;
	border-radius: 50%;
}

@media screen and (max-width: 848px) {
	.education {
		flex-wrap: wrap;
		justify-content: center;
	}
	.education-left {
		width: 100%;
	}
	#education .education-right {
		position: relative;
        right: -40px;
		height: 260px;
	}
	#education {
		 gap: 40px;
		padding-bottom: 0;
	}
	#education-2 {
		flex-direction: column-reverse;
		padding-top:0 ;
		gap: 30px;
	}
	#education .education-right img {
		width: 85%;
		height: 85%;
	}

	#education .education-right .magnet.magnet-3 {
		bottom: 110px;
	}
	#education-2 .education-right{
		width: 100%;
		height: 260px;
	}
}
.prj-diocesain-about {
	max-width: 1200px;
	text-align: center;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 25px;
}

/*Contact*/
.contact {
	display: flex;
	justify-content: center;
	align-items: baseline;
	max-width: 1400px;
	margin: 0px auto 100px auto;
	padding: 0 20px;
	width: 95%;
	gap: 30px;
}
.contact-infos {
	display: flex;
	flex-direction: column;
	gap: 25px;
	width: 100%;
	padding: 20px;
	flex-wrap: wrap;
	gap: 30px;
}
.contact-infos .coordonnees-list {
	align-items: flex-start;
	flex-direction: column;
	margin-top: 0;
	gap: 40px;
}
.contact-form {
	max-width: 1000px;
	border-radius: 20px;
	background-color: var(--tertial-color-10);
	color: var(--dark);
	display: flex;
	gap: 70px;
	margin: auto;
	padding: 50px;
	width: 100%;
	display: flex;
	justify-content: center;
	overflow: hidden;
}
.contact-form .wpcf7 {
	width: 100%;
}
.contact-form .wpcf7 form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.contact-form .wpcf7 form label input,
.contact-form .wpcf7 textarea {
	width: 100%;
	border-radius: 10px;
	border: 2px solid var(--secondary-color-30, #717da4);
	padding: 10px;
	font-size: var(--p-desktop);
}
.contact-form .wpcf7 form label {
	margin-top: 20px;
}
.contact-form .wpcf7 [type='submit'] {
	border: none;
}
.contact .wpcf7-response-output {
	width: fit-content;
}
@media screen and (max-width: 992px) {
	.contact-infos {
		width: min-content;
		padding: 0;
		margin: 20px auto 0 auto;
	}
	.contact {
		width: fit-content;
		flex-direction: column;
		padding: 0;
	}
	.contact-infos .coordonnees-list {
		width: min-content;
		flex-direction: row;
	}
	.contact-form {
		width: fit-content;
		padding: 40px 40px 20px 20px;
		margin: 20px;
	}
}
/*Page froide*/
main.wrap {
	max-width: 1500px;
	margin: 30px auto 100px auto;
	padding: 0 20px;
}
main.wrap h1 {
	text-align: center;
	margin-bottom: 50px;
}
main.wrap h2 {
	margin-top: 50px;
	margin-bottom: 25px;
}