/*
Theme Name: Thème officiel ContoMed 2025
Theme URI: https://www.contomed.fr
Author: REZO 21
Author URI: http://www.rezo21.net
Version: 7.1.0
Description: Développement par l'agence web REZO 21 (Albatros v7.1.0)
*/


/* #region GÉNÉRALITÉS */

*, ::after, ::before {
    box-sizing: border-box;
}

:root{
	--mainColor: #25317A;
	--secondaryColor: #FE7163;
	--tertiaryColor: #4A96D2;
	--bleuClaire: #589BD9;
	--titleFont: 'Outfit', sans-serif;
	--textFont: 'Outfit', sans-serif;
	scroll-behavior: smooth;
}

a, a:hover, a:focus{
	color: var(--mainColor);
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

h1{
	font-family: var(--titleFont);
    color: var(--mainColor);
    font-size: 3em;
    line-height: 1.0em;
    margin-top: 0px;
    margin-bottom: 50px;
	font-weight: 900;
}

h1.entry-title{
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 30px;
	text-align: center;
	font-weight: 800;
}

h2{
	font-family: var(--titleFont);
    color: var(--mainColor);
    font-size: 3em;
	line-height: 1.0em;
}

h2.titre-wrapper{
	text-align: center;
    margin-bottom: 50px;
	width: 50%;
}

h3{
	font-size: 1.2em;
}

p{
	font-weight: 300;
}

p, ul, ol{
	margin-top: 0px;
	line-height: 1.4em;
}

blockquote{
	font-size: 1.0em;
}

img{
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}

input:not([type="submit"],[type="checkbox"],[type="radio"]), 
textarea,
select{
	width: 100%;
	padding: 10px;
	border-radius: 0px;
	border: none;
	background: #ededed;
	font-size: 1.0em;
	font-family: var(--textFont);
    transition: all 0.15s ease 0s;
}

input:not([type="submit"],[type="checkbox"],[type="radio"]):focus, 
textarea:focus,
select:focus{
	outline: none !important;
    box-shadow: 0 0 10px color-mix(in srgb, var(--secondaryColor) 50%, transparent);
}

.btn{
	display: inline-block;
	width: auto;
	border: none;
	padding: 12px 25px;
	border-radius: 25px;
	background: var(--mainColor);
	color: #fff;
	font-family: var(--textFont);
	font-size: 1.0em;
    line-height: 1.0em;
	text-align: center;
    transition: all 0.15s ease 0s;
	cursor: pointer;
}

.btn:hover,
.btn:focus{
	background: var(--secondaryColor);
	color: #fff;
	text-decoration: none;
}

.btn.disabled{
	opacity: 0.5;
	text-decoration: none;
}

.btn.disabled:hover,
.btn.disabled:focus{
	background: var(--mainColor);
	color: #fff;
	cursor: default;
}

.align-self-center{
    align-items: center;
}

.small{
	font-size: 0.8em;
	line-height: 1.4em;
}

.clearfix{
	clear: both;
}

.wpcf7 form .wpcf7-response-output,
.wpcf7-list-item{
	margin: 0px;
}

.wpcf7-form-control{
    margin-top: 10px;
}

.grecaptcha-badge{
	display: none;
}

iframe{
	width: 100%;
}

h2 strong,
h1 strong, 
h3 strong{
	color: var(--tertiaryColor);
}

/* #endregion GÉNÉRALITÉS */

/* #region CTA */

.cta-service {
    display: inline-block; /* Permet un affichage en ligne */
    text-decoration: none;
    color: #ffff;
    font-weight: bold;
    background-color: #25317A;
    padding: 10px 20px;
    margin: 5px; /* Espace autour du bouton */
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap; /* Évite le retour à la ligne */
}

.cta-service:hover {
    background-color: #FE7163;
    color: #000000;
}

.cta-rdv {
    display: block;
    text-decoration: none;
    color: #ffffff; /* Texte noir pour contraster avec l'orange */
    font-weight: bold;
    background-color: #FE7163; /* Fond orange */
    padding: 12px 30px;
    margin: 20px auto;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
    width: fit-content;
}

.cta-rdv:hover {
     background-color: #589BD9; /* Fond bleu au survol */
     color: #000000; /* Texte blanc pour contraster avec le bleu */
        }

/* #endregion CTA */

/* #region TABLE */

.faq-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    margin: 20px 0;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

.faq-table th {
    background-color: #25317A;
    color: #ffff;
    font-weight: bold;
    padding: 12px;
    text-align: left;
}

.faq-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
}

.faq-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.faq-table tr:hover {
    background-color: #FE7163;
    color: #000;
}

.faq-table tr:hover td {
    color: #000;
}

/* #endregion TABLE */

/* #region INFO-BOX-BLOG */

.info-box {
    border: 2px solid #589BD9;
    border-radius: 10px;
    padding: 20px;
    background-color: #ffff;
    color: #25317A;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.info-box h3 {
    color: #589BD9;
    margin-top: 0;
    font-size: 18px;
}

.info-box ul {
    padding-left: 20px;
    margin: 10px 0;
}

.info-box li {
    margin-bottom: 8px;
    color: #25317A;
}

.info-box strong {
    color: #FE7163;
    font-weight: bold;
}

/* #endregion TABLE */

/* #region ACCORDION */

.custom-accordion {
    width: 100%;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    background-color: #ffff; /* ici pour bouger le fond */
}

.accordion-header {
    padding: 15px 20px;
    background-color: #FE7163; /* Couleur orange */
    color: #25317A; /* Texte bleu foncé */
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    outline: none;
}

.accordion-content {
    padding: 20px;
    background-color: #f9f9f9; /* Fond gris très clair pour le contenu */
    color: #25317A; /* Texte bleu foncé */
    line-height: 1.6;
}

.accordion-header .icon {
    font-size: 20px;
}

.accordion-header::before {
    content: "+ ";
    font-size: 18px;
    margin-right: 10px;
    color: #25317A; /* Couleur de la flèche */
}

.accordion-item[open] .accordion-header::before {
    content: "- ";
}

.accordion-item {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* #enregion ACCORDION */

/* #region ALIGNEMENTS */

.alignleft{
	display: inline;
	float: left;
}

.alignright{
	display: inline;
	float: right;
}

.aligncenter{
	display: block;
	margin-right: auto;
	margin-left: auto;
}

blockquote.alignleft,
.wp-caption.alignleft,
img.alignleft{
	margin: 0.4em 1.6em 1.6em 0;
}

blockquote.alignright,
.wp-caption.alignright,
img.alignright{
	margin: 0.4em 0 1.6em 1.6em;
}

blockquote.aligncenter,
.wp-caption.aligncenter,
img.aligncenter{
	clear: both;
	margin-top: 0.4em;
	margin-bottom: 1.6em;
}

.wp-caption.alignleft,
.wp-caption.alignright,
.wp-caption.alignnone,
.wp-caption.aligncenter{
	margin-bottom: 1.2em;
	max-width: 100%;
}

.wp-caption.alignleft img,
.wp-caption.alignright img,
.wp-caption.alignnone img,
.wp-caption.aligncenter img{
	max-width: 100%;
	height: auto;
}

/* #endregion ALIGNEMENTS */

/* #region HEADER */

header{
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: 2200;
	background: #fff;
    box-shadow: 0px 0px 8px 0px #b3b3b3;
	transition: all 0.2s ease 0s;
}

body.home header{
    box-shadow: none;
}

body.home header.scrolled,
header.scrolled{	
    box-shadow: 0px 0px 8px 0px #b3b3b3;
}

header .container{
	display: flex;
	gap: 30px;
    justify-content: space-between;
    align-items: center;
}

header .logo a{
	display: flex;
	width: 170px;
	transition: all 0.2s ease 0s;
    transform: scale(1.00);
    transform-origin: center center;
}

header .logo a:hover{
    transform: scale(1.02);
}

header.scrolled .logo a{	
	width: 140px;
}

header .navigation{
	display: flex;
	gap: 30px;
    align-items: center;
}

header .navigation .main-menu{
	display: flex;
	gap: 30px;
	align-items: center;
	font-size: 1.2em;
	font-weight: 300;
}

header .ouvrir-menu,
header .navigation .main-menu .fermer-menu{ 
	display: none;
}

header .btn-contact{
	height: 90px;
	padding: 0 30px;
	border-radius: 0;
	align-content: center;
	background: var(--secondaryColor);
}

header .btn-contact:hover{
	background: var(--mainColor);
}

header.scrolled .btn-contact{
	height: 70px;
}

.retour-haut{
	position: fixed;
	bottom: 100px;
    right: 30px;
	display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
	width: 40px;
	height: 40px;
	background: var(--mainColor);
	border: 1px solid var(--mainColor);
	color: #fff;
	text-align: center;
	transition: all 0.15s ease 0s;
}

.retour-haut svg{
	width: 30px;
}

.retour-haut:hover{
	text-decoration: none;
	background: var(--secondaryColor);
	border-color: #fff;
	color: #fff;
}

/* #endregion HEADER */

/* #region MENU */

.main-menu-lateral{
	display: none;
}

header .navigation .menu{
	display: flex;
    justify-content: flex-end;
	gap: 50px;
	margin-bottom: 0px;
	padding-left: 0px;
	list-style: none;
}

header .navigation .menu li{
    list-style: none;
}

header .navigation .menu li a{
	display: inline-block;
	font-size: 1.0em;
	padding-top: 8px;
	transition: all 0.15s ease 0s;
}
header .navigation .menu li a:after{
	position: relative;
	content: '';
	display: block;
	margin: auto;
	height: 3px;
	margin-top: 5px;
	background: var(--secondaryColor);
    transform-origin: 100% 0;
    transform: scaleX(0);
    transition: transform 0.2s;
}

@media (pointer : fine){ 
	header .navigation .menu li a:hover:after{
		transform-origin: 0 0;
		transform: scaleX(1);
	}

	header .navigation .menu li a:hover{
		color: var(--secondaryColor);
		text-decoration: none;
	}
}

header .navigation .menu .menu-item-has-children{
    position: relative;
}

@media (pointer : fine){ 
	header .navigation .menu .menu-item-has-children:hover ul.sub-menu{
		visibility: visible;
		opacity: 1;
	}
}

header .navigation .menu ul.sub-menu{    
	position: absolute;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.2s linear;   
	padding: 0px;
	list-style: none;
	width:300px;
}

header .navigation .menu ul.sub-menu li a{ 
	display: inline-block;
	width: 100%;
	font-size: 1.0em;
	padding: 7px 20px;
	background: var(--mainColor);
	color: #fff;
}

header .navigation .menu ul.sub-menu li a:after{ 
	display: none;
}

@media (pointer : fine){ 
	header .navigation .menu ul.sub-menu li a:hover{ 
		background: var(--secondaryColor);
	}
}

/* #endregion MENU */

/* #region DIAPORAMA */

.swiper{
	width: 100%;
	height: 100%;
}

.swiper-slide img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-accueil .main-texte{
    position: absolute;
    z-index: 20;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.swiper-accueil .main-texte .container{
	width: 100%;
	padding: 0 50px;
}

.swiper-accueil .texte{
	color: #fff;
	text-shadow: 0px 0px 5px #000000;
	font-size: 2.0em;
	line-height: 1.2em;
}

.swiper-accueil .texte p:last-child{
	margin-bottom: 0px;
}

.swiper-accueil .lien{
	margin-top: 30px;
}

.swiper-pagination{
	bottom: 30px !important;
}

.swiper-pagination-bullet{
	width: 15px;
	height: 15px;
}

.swiper-pagination-bullet-active{
	background-color: var(--mainColor);
}

.swiper-button-next, 
.swiper-button-prev{
	color: var(--mainColor);
}

/* #endregion DIAPORAMA */

/* #region CORPS */

body{
    font-family: var(--textFont);
    font-weight: 400;
	position: relative;
	overflow-x: hidden;
	padding: 0px;
	margin: 0px;
	font-size: 1.0em;
	color: #000;
}

.archive main,
.blog main,
.search main,
.page-template-page-articles main,
.error404 main{
	padding-bottom: 80px;
}

#content{
	margin: auto;
}

#content p{
    font-size: 1.2em;
}

#content ul,
#content ol{
	font-size: 1.2em;
	padding: 0 40px;
}

#content ul ul,
#content ol ol{
	font-size: 1.0em;
}

.container{
	max-width: 1300px;  
	margin: auto;
	padding: 0 30px;
}

.titre-paragraphe{
	margin-bottom: 30px;
}

.paragraphe{
	padding: 30px 0px;
}

.paragraphe.paragraphe-1{
	padding-top: 0px;
}

.paragraphe.bgblanc{
	background: #fff;
}

.paragraphe.bggrisclair{
	background: #ededed;
}

.paragraphe.bgfloubleu{
	background: radial-gradient(circle at center, #D3E5FB 25%, transparent 50%);
}

.paragraphe.bgbleu{
	background: var(--tertiaryColor);
	color: #FFF;
	border-radius: 65px;
}

.paragraphe.bgbleufonce{
	background: var(--mainColor);
	color: #FFF;
	border-radius: 0;
}

.paragraphe.bgbleu h2,
.paragraphe.bgbleu h3,
.paragraphe.bgbleu h4,
.paragraphe.bgbleu ul,
.paragraphe.bgbleu li strong{
	color: #FFF;
}

.paragraphe.bgbleufonce .btn{
	background:var(--secondaryColor);
	border:1px solid var(--secondaryColor);
}

.paragraphe.bgbleufonce .btn:hover,
.paragraphe.bgbleufonce .btn:focus{
	background:transparent;
	border:1px solid #ffffff;
}

.paragraphe.bgbleufonce h2,
.paragraphe.bgbleufonce h3,
.paragraphe.bgbleufonce h4,
.paragraphe.bgbleufonce ul,
.paragraphe.bgbleufonce li strong{
	color: #FFF;
}

.paragraphe .introduction{
	margin-bottom: 50px;
}

.paragraphe.full-width{
	width: 100%;   
	padding-top: 0;
    padding-bottom: 0;
}

.paragraphe.full-width .container{
    max-width: 100%;
    margin: auto;
    padding: 0px;
}

.paragraphe.full-width .container .colonne{
    padding: 80px 7%;
}

.paragraphe .colonne.no-padding,
.paragraphe.full-width .container .colonne.no-padding{
	padding: 0px;
}

.paragraphe .colonnes{
	display: flex;
	gap: 50px;
}

#liberez.paragraphe .colonnes img{
    border-radius: 65px;
    width: calc(100% - 40px);
	box-shadow: -40px 40px 0px 0px var(--tertiaryColor);
}

.paragraphe .colonne-2-1-1 p:has(img),
.paragraphe .colonne-2-2-1 p:has(img){
	display: flex;
    justify-content: flex-end;
}

.paragraphe .colonnes a:has(img){
	display: inline-flex;
	overflow: hidden;
}

.paragraphe .colonnes a:has(img) img{
    transition: all 0.3s ease 0s;
    transform: scale(1.00);
    transform-origin: center center;
}

.paragraphe .colonnes a:has(img):hover img{
	transform: scale(1.10);
}

.paragraphe li{
	list-style: none;
	position: relative;
	margin-bottom: 20px;
}

.paragraphe ul li::before{
	content: '';
    background-image: url(./images/coche.svg);
    background-position: center;
    background-size: contain;
    display: block;
    width: 27px;
    height: 27px;
    position: absolute;
    left: 0;
    transform: translateX(-150%);
    font-size: 1em;
}

.paragraphe ol{
	padding: 0;
}

.paragraphe ol li{
	padding: 20px 0;
	list-style: none;
	margin: 0;
}

.paragraphe ol li + li{
	border-top: 1px solid #FFF;
}

.paragraphe ol li::before{
	content: counter(list-item);
    font-size: 1.5em;
    font-weight: 900;
    color: var(--tertiaryColor);
    background: #FFFA;
    position: absolute;
    left: -50px;
    padding: 5px;
    width: 35px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    top: 15px;
}

.colonne-1{
	width: 100%;
}

.colonne-2-1-1,
.colonne-2-1-2{
	width: 50%;
}

.colonne-2-2-1,
.colonne-2-3-2,
.colonne-3-1,
.colonne-3-2,
.colonne-3-3{
	width: calc(100% / 3);
}

.colonne-2-4-1,
.colonne-2-5-2{
	width: 25%;
}

.colonne-2-4-2,
.colonne-2-5-1{
	width: 75%;

}

.colonne-2-2-2,
.colonne-2-3-1{
	width: calc(100% / 3 * 2);
}

.colonne-4{
	width: 25%;
}

.main-wrapper-articles{
	background: #fff;
	padding: 80px 0px;
}

.wrapper-articles .btn{
	display: table;
	margin: 50px auto 0 auto;
}

#searchform{
	display: flex;
}

#searchform .btn{
    display: flex;
    border-radius: 0px 25px 25px 0;
}

#searchform .btn svg{
    width: 20px;
}

/**** FAQ - ACCORDEON ***/
.faq{
	padding-bottom: 60px;
	padding-top: 60px;
}

.faq .container{
	background: var(--bleuClaire);
    padding: 50px;
    border-radius: 40px;
}

.faq h2{
	color: #FFF;
	text-align: center;
}

.faq h2::after{
	content: unset;
}

.faq .accroche{
	text-align:center;
}

.wrapper-questions {
    margin-bottom: 0px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.question{
    display: flex;
    align-items: center;
	justify-content: space-between;
    gap: 15px;
    padding: 10px 15px 10px 0;
    cursor: pointer;
	font-size:1.2em;
	font-weight: 600;
	border-top: 1px solid #FFF;
	color: #FFF;
}

.wrapper-questions .question:first-of-type{
	border-top: 0;
}

.question svg{
	width: 35px;
    transform: rotate(90deg);
    transition: all 0.2s ease;
    fill: var(--tertiaryColor);
    background: #D3E5FB;
    border-radius: 20px;
    padding: 8px;
}

.question.open svg{
	transform: rotate(180deg);
}

.wrapper-questions .reponse{
    display: none;
    padding: 15px;
	color: #FFF;
	padding: 15px 0;
}

/* #endregion CORPS */

/* #region ARTICLES */

.liste-articles{
	grid-template-columns: repeat(3, 1fr);
	display:grid;
	gap: 50px 15px;
}

section.main-wrapper-articles h2,
section.main-wrapper-articles h2::after{
	text-align: left;
	margin-left: 0;
}

section.main-wrapper-articles .gradient{
	
	padding: 20px 0;
	background:	linear-gradient(90deg, #FFF 60%, transparent 60%),
				linear-gradient(135deg, #FFF 60%, #E7F1FD 75%, #D5E8FF 85%, #FFF 100%);
}

section.main-wrapper-articles .gradient .container{
	display: flex;
}

section.main-wrapper-articles .swiper{
	width: 80%;
}

section.main-wrapper-articles .buttons{
	width: 20%;
	height: auto;
	display: block;
	position: relative;
	z-index: 1;
}

section.main-wrapper-articles .buttons .swiper-button-next,
section.main-wrapper-articles .buttons .swiper-button-prev{
	background-color: var(--bleuClaire);
    top: unset;
	bottom: 0;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    left: 25%;
}

section.main-wrapper-articles .buttons .swiper-button-next{
	left: unset;
	right: 25%;
}

section.main-wrapper-articles .buttons .swiper-button-next::after,
section.main-wrapper-articles .buttons .swiper-button-prev::after{
	content: url('./images/triangle_rond.svg');
    transform: rotate(90deg);
    font-size: 1.0em;
    width: 20px;
	margin-right: 5px;
}

section.main-wrapper-articles .buttons .swiper-button-next::after{
	transform: rotate(-90deg);
	margin-left: 5px;
    margin-right: 0;
}

.vignette-article a{
	display: block;
	height: 100%;
    padding: 40px;
	border-radius: 15px;
    background: #fff;
    box-shadow: 0px 0px 15px 0px #d4d4d4;
	transition: all 0.3s ease 0s;
	margin: 15px;
}

.vignette-article a:hover{    
	text-decoration: none;
    transform: translateY(10px);
    box-shadow: 0px 0px 6px 0px #d4d4d4;
}

.vignette-article .image{
	height: 33%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
	overflow: hidden;
}

.vignette-article .texte{
	height: 66%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
	min-height: 282px;
}

.vignette-article .texte .titre{
	font-family: var(--titleFont);
	font-size: 1.5em;
	line-height: 1.0em;
	margin-top: 15px;
	margin-bottom: 15px;
	font-weight: 700;
	color: var(--bleuClaire);
}

.vignette-article .texte .extrait{
	color: #000;
}

.vignette-article .plus{
	width: 50px;
	background: var(--secondaryColor);
	border-radius: 25px;
	display: flex;
}

.vignette-article .plus svg{
	fill: #FFF;
	padding: 7px;
}

.single-post .top-article{
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
	margin-top: 50px;
	margin-bottom: 50px;
}

.single-post .top-article .date{
	color: var(--secondaryColor);
}

.single-post .top-article .categories{
	display: flex;
	gap: 10px;
}

.single-post .top-article .categories a.btn{
	font-size: 0.9em;
}

.gallery-item a{
	display: block;
	border-radius: 10px;
    transition: all 0.3s ease 0s;
}

.gallery-item a:hover{
	opacity: 0.8;
}

.gallery img{
	border: none !important;
	padding: 0 10px;
	border-radius: 10px;
}

.gallery .gallery-caption{
	font-size: 0.8em;
}

#content ul.pagination{	
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	gap: 10px;
	margin-top: 20px;
	margin-bottom: 0px;
	padding-left: 0px;
	list-style: none;
}

#content ul.pagination a{
    transition: all 0.15s ease 0s;
}

#content ul.pagination a:hover{
	text-decoration: none;
	background: var(--secondaryColor);
	color: #fff;
}

#content ul.pagination .page-numbers{
	padding: 5px 10px;
	border: 1px solid #ddd;
}

#content ul.pagination .current{
	background: var(--secondaryColor);
	color: #fff;
}

/* #endregion ARTICLES */

/* #region HERO */

.hero{
	position: relative;
}

.hero .img{
	height: 100%;
	background:linear-gradient(90deg,#FFF 0%, #E7F1FD 40%, #D5E8FF 60%, #FFF 100%);
}

.hero .img img{
	object-fit: cover;
    height: 100%;
    filter: opacity(0.75);
    width: 100%;
}

.hero .titre{
	position: absolute;
    bottom: 10%;
    transform: translate(-50%, 0%);
    width: 50%;
    margin: auto;
    left: 50%;
}

/* #endregion HERO */

/* #region SECTION */

section.services,
section.tarifs,
section.commentaires{
	padding: 80px 0;
}

section h2{
	margin: 0 0 40px 0;
}

section h2::after{
    content: '';
    width: 150px;
    height: 2px;
    background: var(--secondaryColor);
    display: block;
    margin: 40px auto;
}

section.services .swiperServices{
    background-image: url(./images/slider-services.svg);
    background-position: bottom 312px center;
    background-repeat: repeat-x;
	position: relative;
    padding: 50px;
	overflow: hidden;
}

section.services .swiper-wrapper{
	padding: 50px 100px 0px 100px;
}

section.services .swiper-slide{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	gap: 15px;
}

section.services .picto{
	width: 190px;
}

section.services .cercle{
    width: 40px;
    margin-left: 160px;
}

section.services .swiper-slide .texte{
	height: 230px;
}

section.services .swiper-button-next,
section.services .swiper-button-prev{
	bottom: 0;
    top: unset;
	background: #D3E5FB;
	border-radius: 100%;
	width: 40px;
    height: 40px;
    left: 50px;
}

section.services .swiper-button-next{
	left: unset;
	right: 50px;
}

section.services .swiper-button-next::after,
section.services .swiper-button-prev::after{
	content: url('./images/triangle.svg');
	transform: rotate(-90deg);
	font-size: 1.0em;
	width: 20px;
	padding-bottom: 5px;
}

section.services .swiper-button-next::after{
	transform: rotate(90deg);
}

section.services .swiper-horizontal > .swiper-scrollbar, 
section.services .swiper-scrollbar.swiper-scrollbar-horizontal{
	bottom: 18px;
    width: 80%;
    margin: 0px 10%;
	background: #D3E5FB;
	left: 0;
}

section.services .swiper-scrollbar-drag{
	background: var(--mainColor);
}

section.tarifs .liste-tarifs{
	display: flex;
	justify-content: space-between;
	margin-top: 75px;

}

section.tarifs .tarif{
    text-align: center;
    position: relative;
    border: 5px solid var(--bleuClaire);
    border-radius: 40px;
    padding-bottom: 30px;
    margin-bottom: 20px;
	margin-top: 70px;
}

section.tarifs .prix{
	border: 5px solid var(--bleuClaire);
    background: #FFF;
    border-radius: 100%;
	width: 135px;
    padding: 13px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.tarifs .prix .nombre{
	color: var(--bleuClaire);
    font-size: 2em;
    font-weight: 700;
	display: block;	
    padding-top: 12px;
}

section.tarifs .liste-tarifs .titre{
	padding-top: 75px;
	padding-bottom: 45px;
    background: url('./images/triangle-tarif.svg') bottom center no-repeat var(--bleuClaire);
	background-size: 100%;
    border-radius: 30px 30px 0 0;
    color: #FFF;
    font-size: 2.5em;
    font-weight: 700;
	
}

section.tarifs .liste-tarifs .titre span{
	font-weight: 400;
	font-size: 0.4em;
	color: var(--mainColor);
	display: block;
}

section.tarifs .liste-tarifs .contenu{
	padding-top: 20px;
	height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

section.tarifs .liste-tarifs .contenu .sous-titre {
    min-height: 360px;
}

section.tarifs .liste-tarifs li{
	list-style: none;
	text-align: left;
	margin: 10px 0;
	color: var(--mainColor);
	position: relative;
}

section.tarifs .liste-tarifs li::before{
	content: '';
	display: block;
	background-image: url('./images/coche-2.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 15px;
	height: 15px;
    position: absolute;
    left: -24px;
    top: 2px;
}

section.tarifs .liste-tarifs .btn{
	width: 50%;
	margin: 0 auto;
	background: var(--secondaryColor);
}

section.tarifs .liste-tarifs .btn:hover,
section.tarifs .liste-tarifs .btn:focus{
	background: var(--mainColor);
}

section.tarifs .swiper-button-next,
section.tarifs .swiper-button-prev{
	bottom: 0;
    top: unset;
	background: #D3E5FB;
	border-radius: 100%;
	width: 40px;
    height: 40px;
    left: 50px;
	display: none;
}

section.tarifs .swiper-button-next{
	left: unset;
	right: 50px;
}

section.tarifs .swiper-button-next::after,
section.tarifs .swiper-button-prev::after{
	content: url('./images/triangle.svg');
	transform: rotate(-90deg);
	font-size: 1.0em;
	width: 20px;
	padding-bottom: 5px;
}

section.tarifs .swiper-button-next::after{
	transform: rotate(90deg);
}

section.tarifs .swiper-horizontal > .swiper-scrollbar, 
section.tarifs .swiper-scrollbar.swiper-scrollbar-horizontal{
	bottom: 18px;
    width: 80%;
    margin: 0px 10%;
	background: #D3E5FB;
	left: 0;
}

section.tarifs .swiper-scrollbar-drag{
	background: var(--mainColor);
}

section.commentaires{
	background: var(--mainColor);
}

section.commentaires h2{
	color: #FFF;
	width: 50%;
}

section.commentaires .texte{
	color: #FFF;
	width: 30%;
	font-size: 1.2em;
}

section.commentaires .titre strong{
	color: var(--secondaryColor);
}

section.commentaires h2::after{
	content: none
}

section.commentaires .liste-commentaires{
    display: flex;
    justify-content: space-between;
	margin: 80px 0;
}

section.commentaires .liste-commentaires .commentaire{
	width: 30%;
    background: #FFF;
    padding: 25px;
    border-radius: 30px;
    padding-bottom: 0;
	position: relative;
}

section.commentaires .liste-commentaires .commentaire::before{
	content: '';
    position: absolute;
    display: block;
    width: 100px;
    height: 100px;
    background-image: url(./images/guillemets.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top: 0;
    left: 0;
    transform: translateY(-60%);
}

section.commentaires .liste-commentaires .commentaire h3{
	color: var(--mainColor);
	font-weight: 600;
}

section.commentaires .liste-commentaires .commentaire p{
	font-weight: 300;
	line-height: 1.3em;
}

section.commentaires .liste-commentaires .commentaire strong{
	color: #000;
}

section.commentaires .liste-commentaires .commentaire:nth-child(2){
	transform: translateY(-100px);
}

section.commentaires .btn{
	background: var(--secondaryColor);
	transition: all 0.2s ease;
	display: block;
    width: fit-content;
	place-self: center;
}

section.commentaires .btn:hover,
section.commentaires .btn:focus{
	background: #FFF;
	color: var(--mainColor);
}

#pourquoi .container{
	background: var(--bleuClaire);
	border-radius: 70px;
	padding: 50px 80px;
	color: #FFF;
}

#pourquoi .container h2{
	color: #FFF;
}

#pourquoi .container strong{
	color: #FFF;
}

#votre-temps{
	background: linear-gradient(
		  to bottom,
		  #ffffff 0%,
		  #ffffff 20%,
		  #25317A 20%,
		  #25317A 80%,
		  #ffffff 80%,
		  #ffffff 100%
		);
}

#votre-temps h2{
	margin-bottom: 20px;
}

#votre-temps h2::after {
    content: '';
    width: 150px;
    height: 2px;
    background: var(--secondaryColor);
    display: block;
    margin: 25px 0 10px 0;
}

/* #endregion SECTION */

/* #region FOOTER */

footer .menu{
	margin: 0px;
	padding: 0px;
	list-style: none;
}

footer .top-footer{
	background: var(--mainColor);
	color: #FFF;
	font-size: 1.2em;
}

footer .top-footer a{
	color: #FFF;
}

footer .top-footer p{
	margin: 0;
}

footer .top-footer .container{
	display: flex;
	gap: 50px;
	padding: 50px 30px;
}

footer .top-footer .main-logo{
	width: 30%;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

footer .top-footer .main-logo a.logo{
	display: inline-block;
	width: 70%;
    transition: all 0.15s ease 0s;
}

footer .top-footer .main-logo a.logo img{
	width: 100%;
}

footer .top-footer .main-logo a.logo:hover{
    transform: scale(1.02);
}

footer .top-footer .colonne{
	width: 20%;
}

footer .top-footer .colonne.big{
	width: 30%;
}

footer .top-footer .colonne .titre{
	font-family: var(--titleFont);
	font-size: 1.3em;
	margin-bottom: 15px;
	font-weight: 800;
}

footer .top-footer .colonne .titre::after{
	background: var(--secondaryColor);
	content: '';
	display: block;
	width: 80px;
	height: 2px;
	margin-top: 20px;
}

footer .top-footer .colonne a{
	word-break: break-word;
}

footer .sub-footer{
	background: #f5f5f5;
}

footer .sub-footer .container{
	display: flex;
    align-items: center;
    justify-content: space-between;
	gap: 50px;
	padding: 15px 30px;
	font-size: 0.8em;
}

footer .sub-footer .container .main-menu{
	display: flex;
	gap: 15px;
    justify-content: space-between;
}

footer .sub-footer .container .main-menu .copyright{
	line-height: 1.4em;
}

footer .sub-footer .container .main-menu .menu{
	display: flex;
	gap: 15px;
}

footer .signature{
	font-size: 0.8em;
}

footer .logo-rezo21 a{
	display: flex;
}

footer .logo-rezo21 img{
	height: 32px;
	width: auto;
}

/* #endregion FOOTER */

/* #region TABLETTE */

@media screen and (max-width: 1180px) {
	h2{
		margin: 0 0 40px 0;
	}

	header .navigation,
	header .logo,
	header .ouvrir-menu{
		width: calc(100% / 3);
	}

	header .logo{
		order: 2;
	}

	header .logo a{
		display: table;
		margin: auto;
	}

	header .navigation{
		order: 1;
	}

	header .ouvrir-menu{   
		order: 3; 
		display: flex;
		justify-content: flex-end;
	}

	header .ouvrir-menu a{ 
		display: flex;
		width: 50px;
	}

	header .navigation .main-menu{
		display: flex;
		position: fixed;
		width: 50vw;
		height: 100vh;
		z-index: 10;
		top: 0px;
		right: -100vw;
		background: var(--mainColor);
		padding: 50px;
		transition: right 0.3s, transform 0.3s;		
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
	}

	header .navigation .main-menu.open{
		right: 0vw;
	}

	header .navigation .main-menu div{
		display: flex;
		align-items: center;
		width: 100%;
	}

	header .navigation .main-menu .menu{
		justify-content: flex-start;
		flex-direction: column;
		gap: 15px;
		width: 100%;
	}

	header .navigation .main-menu .menu li a{
		color: #fff;
		font-size: 1.4em;
		padding: 0px;
	}

	header .navigation .main-menu .fermer-menu{
		display: block;
		position: absolute;
		top: 15px;
		right: 30px;
		width: 50px;
		color: #fff;
	}
	
	header .navigation .main-menu{
		display: flex;
		position: fixed;
		width: 50vw;
		height: 100vh;
		z-index: 10;
		top: 0px;
		right: -100vw;
		background: var(--mainColor);
		padding: 50px;
		transition: right 0.3s, transform 0.3s;
	}

	header .navigation .main-menu.open{
		right: 0vw;
	}

	header .navigation .main-menu div{
		display: flex;
		align-items: center;
		width: 100%;
	}

	header .navigation .main-menu .menu{
		justify-content: flex-start;
		flex-direction: column;
		gap: 15px;
		width: 100%;
	}

	header .navigation .main-menu .menu li a{
		display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
		width: 100%;
		color: #fff;
		font-size: 1.4em;
		padding: 0px;
	}

	header .navigation .menu>li.menu-item-has-children > a:after{
		content: url('./images/fleche-sous-menu-mobile.svg');
        width: 20px;
        height: 20px;
        transition: all 0.2s ease 0s;
        transform-origin: center;
        transform: rotate(0deg);
        margin: 0px;
        background: none;
	}

	header .navigation .menu>li.menu-item-has-children>a.open::after{
		transform: rotate(180deg);
	}

	header .navigation .menu ul.sub-menu{
		display: none;
		position: relative;
		margin-top: 15px;
	}

	header .navigation .main-menu .fermer-menu{
		display: block;
		position: absolute;
		top: 15px;
		right: 30px;
		width: 50px;
		color: #fff;
		background: none;
		border: none;
		padding: 0px;
	}

	header .navigation .main-menu .fermer-menu svg{
		width: 100%;
	}

	.voile-opacite{
		visibility: hidden;
		opacity: 0;
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		z-index: 4;
		background: rgba(0,0,0,0.6);
		transition: visibility 0.15s, opacity 0.15s linear;
	}
	
	.voile-opacite.visible {
		visibility: visible;
		opacity: 1;
	}

	.hero .titre{
		width: 75%;
	}

	section.services .swiper-horizontal > .swiper-scrollbar,
	section.services .swiper-scrollbar.swiper-scrollbar-horizontal{
		width: 70%;
		margin: 0px 15%;
	}

	section.services .swiper-wrapper{
		padding: 50px 00px;
	}

	.paragraphe .colonnes{
		flex-direction: column;
	}

	.colonne-2-1-1, .colonne-2-1-2{
		width: 100%;
	}

	section.tarifs .liste-tarifs{
		flex-direction: column;
		margin: 0;
	}

	section.tarifs .tarif{
		width: 100%;
		margin-top: 60px;
	}

	.faq .texte-question{
		width: 80%;
	}

	section.commentaires .texte,
	section.commentaires .titre h2{
		width: 100%;
		text-align: center;
	}

	section.commentaires .liste-commentaires{
		flex-direction: column;
		margin-top: 0;
	}

	section.commentaires .liste-commentaires .commentaire{
		width: 100%;
		margin-top: 80px;
	}

	section.commentaires .liste-commentaires .commentaire:nth-child(2){
		transform: none;
	}

	section.main-wrapper-articles .gradient{
		background: linear-gradient(135deg, #FFF 0%, #E7F1FD 20%, #D5E8FF 80%, #FFF 100%);
	}

	section.main-wrapper-articles .gradient .container{
		flex-direction: column;
	}

	section.main-wrapper-articles .swiper{
		width: 100%;
	}

	section.main-wrapper-articles .buttons{
		width: 100%;
		height: 40px;
	}

	.voile-opacite{
		visibility: hidden;
		opacity: 0;
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		z-index: 4;
		background: rgba(0,0,0,0.6);
		transition: visibility 0.15s, opacity 0.15s linear;
	}
	
	.voile-opacite.visible {
		visibility: visible;
		opacity: 1;
	}
	
	.select-categories{
		margin-bottom: 30px;
	}

	footer .top-footer .container{
		flex-direction: column;
	}

	footer .top-footer .colonne{
		width: 100%;
		text-align: center;
	}

	footer .top-footer .colonne .titre::after{
		margin: auto;
		margin-top: 20px;
	}

	footer .top-footer .main-logo{
		margin: auto;
		text-align: center;
		width: 50%;
		flex-direction: column;
	}
}

@media screen and (max-width: 1180px) and (orientation: portrait) {
}

/* #endregion TABLETTE */

/* #region MOBILE */

@media screen and (max-width: 767px) {	
	h1,
	h2.titre-wrapper{
		font-size: 2em;
		margin-bottom: 30px;
	}

	h2{
		font-size: 2em;
		margin: 20px 0 0 0;
	}
	
	.paragraphe .colonnes.mobile-reverse{
		flex-direction: column-reverse;
	}

	header .navigation .reseaux-sociaux{
		gap: 15px;
	}

	header .navigation .reseaux-sociaux a{
		width: 20px;
		height: 20px;
	}

	header .logo a{
		display: flex;
		width: 100%;
		justify-content: center;
	}

	header.scrolled .logo a{
		width: 100%;
	}

	header .ouvrir-menu a{
		width: 35px;
		height: 35px;
	}

	header .navigation .main-menu{
		width: 100%;
	}

	header{
		padding: 20px 0;
	}

	header.scrolled{
		padding: 5px 0;
	}

	header .navigation .menu li.menu-principal-1 a{
		font-weight: 300;
	}
	
	header .navigation .menu ul.sub-menu{ 
		width:100%;
		visibility: visible;
		opacity: 1;
	}
	
	header .navigation .menu ul.sub-menu li a{
		padding-left:0;
		font-size: 1.2em;
	}
	
	header .navigation .main-menu .menu li a{
		padding-top: 5px;
		padding-bottom: 3px;
	}
	
	header .btn-contact{
		width:100%;
		display:block;
		text-transform: uppercase;
		font-size:1.4em;
	}

	.swiper-button-next:after, 
	.swiper-button-prev:after{
		font-size: 1.2em;
	}

	.swiper-accueil .texte{
		font-size: 1.2em;
	}

	.paragraphe{
		padding: 50px 0px;
	}

	.paragraphe .colonnes{
		flex-direction: column;
		gap: 30px;
	}

	.colonne-2-1-1,
	.colonne-2-1-2,
	.colonne-2-2-1,
	.colonne-2-2-2,
	.colonne-2-3-2,
	.colonne-2-3-1,
	.colonne-2-4-1,
	.colonne-2-4-2,
	.colonne-2-5-1,
	.colonne-2-5-2,
	.colonne-3-1,
	.colonne-3-2,
	.colonne-3-3,
	.colonne-4{
		width: 100%;
	}

	.liste-articles{
		grid-template-columns: repeat(1, 1fr);
	}

	.main-wrapper-articles{
		padding-bottom: 0px;
		padding-top: 50px;
	}

	.vignette-article a{
		display: flex;
		gap: 15px;
		padding: 15px;
		flex-direction: column;
	}

	.vignette-article .image,
	.vignette-article .texte{
		align-self: center;
	}

	.vignette-article .texte .titre{
		margin-top: 0px;
	}
	
	.vignette-article .image .main-image .survol img{
		width: 40px;
	}

	.hero .titre{
		width: 90%;
	}

	section.services .swiper-button-next,
	section.services .swiper-button-prev{
		left: 40px;
	}

	section.services .swiper-button-next{
		left: unset;
		right: 40px;
	}

	section.main-wrapper-articles .gradient{
		background: linear-gradient(135deg, #FFF 0%, #E7F1FD 20%, #D5E8FF 80%, #FFF 100%);
	}

	section.main-wrapper-articles .gradient .container{
		flex-direction: column;
	}

	section.main-wrapper-articles .swiper{
		width: 100%;
	}

	section.main-wrapper-articles .buttons{
		width: 100%;
		height: 40px;
	}

	.single .date-article{
		margin-bottom: 15px;
	}

	section.services .swiperServices{
		padding: 20px;
		padding-bottom: 60px;
	}

	section.services .swiper-horizontal > .swiper-scrollbar, 
	section.services .swiper-scrollbar.swiper-scrollbar-horizontal{
		width: 50%;
    	margin: 0px 25%;
	}

	section.tarifs .liste-tarifs{
		flex-direction: column;
		margin-top: 0;
		padding-bottom: 40px;
	}

	section.tarifs .tarif{
		width: 100%;
		margin-top: 80px;
	}

	section.tarifs .swiper-button-next,
	section.tarifs .swiper-button-prev{
		left: 20px;
		display: flex;
	}

	section.tarifs .swiper-button-next{
		left: unset;
		right: 20px;
	}

	section.tarifs .swiper-horizontal > .swiper-scrollbar, 
	section.tarifs .swiper-scrollbar.swiper-scrollbar-horizontal{
		width: 50%;
    	margin: 0px 25%;
	}


	.faq .container{
		padding: 20px;
	}

	#pourquoi .container{
		padding: 50px 20px;
		border-radius: 40px;
	}

	section.services .swiper-wrapper{
		padding: unset;
	}

	section.commentaires h2,
	section.commentaires .texte{
		width: 100%;
		text-align: center;
	}

	section.commentaires .liste-commentaires{
		flex-direction: column;
        margin: 20px 0;
	}

	section.commentaires .liste-commentaires .commentaire{
		width: 100%;
		margin-top: 60px;
	}

	section.commentaires .liste-commentaires .commentaire:nth-child(2){
		transform: none;
	}

	section.main-wrapper-articles h2,
	section.main-wrapper-articles h2::after{
		margin-left: 0;
		width: 100%;
		text-align: center;
	}

	#liberez.paragraphe .colonnes img{
		box-shadow: -15px 15px 0px 0px var(--tertiaryColor);
	}

	footer .top-footer .container{
		flex-direction: column;
		gap: 30px;
		text-align: center;
	}
	
	footer .top-footer .main-logo,
	footer .top-footer .colonne{
		width: 100%;
		flex-direction: column;
	}

	footer .top-footer .main-logo a.logo{
		display: table;
		margin: 0px auto 0px auto;
		width: 50%;
	}

	footer .top-footer .main-logo a.logo img{
		width: 100%;
	}

	footer .top-footer .colonne.big{
		width: 100%;
	}

	footer .top-footer .colonne .titre{
		text-align: center;
	}

	footer .top-footer .colonne .titre::after{
		margin: 20px auto;
	}

	footer .sub-footer .container .main-menu,
	footer .sub-footer .container .main-menu .menu{
		flex-direction: column;
		gap: 5px;
	}

	.retour-haut{
		bottom: 30px;
	}

	#content ol{
		padding: 0 0 0 40px;
	}
}

/* #endregion MOBILE */