/*
Theme Name: Thème officiel Il est une fois
Theme URI: https://www.ilestunefois.com/
Author: REZO 21
Author URI: http://www.rezo21.net
Version: 8.0.0
Description: Développement par l'agence web REZO 21 (Albatros v8.0.0)
*/


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

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

:root{
	--mainColor: #151515;
	--secondaryColor: #789AFF;
	--thirdColor: #eaeaea;
	--titleFont: 'neue-haas-grotesk-display', sans-serif;
	--textFont: 'neue-haas-grotesk-display', sans-serif;
	scroll-behavior: smooth;
}

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

a:hover{
    text-decoration: underline;
}

h1{
	font-family: var(--titleFont);
    color: var(--mainColor);
	font-size: 3.0em;
	line-height: 1.1em;
    margin-top: 0px;
    margin-bottom: 0px;
	font-weight: 400;
}

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

.entry-title span{
	display: block;
	color: var(--secondaryColor);
	font-size: 0.6em;
	line-height: 1.2em;
	margin-top: 10px;
}

h2{
	font-family: var(--titleFont);
    color: var(--mainColor);
    font-size: 2.0em;
    margin-top: 0px;
    margin-bottom: 30px;
	font-weight: 400;
}

h2 svg{
	width: 25px;
	height: 25px;
}

h2:has(svg){
	display: flex;
    align-items: center;
	gap: 20px;
}

h2.titre-wrapper{
	color: var(--mainColor);
	font-size: 2.6em;
    margin-bottom: 30px;
}

h2.titre-wrapper.petit{
	font-size: 2.0em;
}

h3{
	font-weight: 400;
	font-size: 1.4em;
}

.crochets::before{
	content: "[";
	display: inline;
}

.crochets::after{
	content: "]";
	display: inline;
}

.texte-blanc{
	color: #fff !important;
}

.texte-bleu{
	color: var(--secondaryColor) !important;
}

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

blockquote{
	font-size: 1.0em;
	background: var(--thirdColor);
	margin: 0px;
	padding: 30px 30px 15px 30px;
}

b, strong{
	font-weight: 600;
}

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

label{
	font-weight: 600;
}

input:not([type="submit"],[type="checkbox"],[type="radio"]), 
textarea,
select{
	width: 100%;
	padding: 10px;
	border-radius: 2px;
	border: none;
	background: #eeeeee;
	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;
}

table{
	width: 100%;
	border-collapse: collapse;
	border-radius: 4px;
}

thead{
	background: var(--thirdColor);
}

tr{
	border-bottom: 1px solid var(--thirdColor);
}

th{
	font-weight: 400;
	background: #fff;
	color: var(--secondaryColor);
}

th,
td{
	padding: 15px;
	text-align: left;
}

table a{
	color: var(--mainColor);
	text-decoration: underline;
}

@media (pointer : fine){ 
	table a:hover{
		text-decoration: none;
	}
}

.btn{
	display: inline-flex;
    align-items: center;
	gap: 20px;
	width: auto;
	border: none;
	padding: 7px 10px 7px 15px;
	border-radius: 2px;
	background: var(--secondaryColor);
	color: var(--mainColor);
	font-family: var(--textFont);
	font-size: 1.0em;
	text-align: center;
    transition: all 0.15s ease 0s;
	cursor: pointer;
}

.btn:after{
	display: block;
	content: "";
	background: url('./images/icone-fleche-droite-noire.svg') no-repeat;
	background-size: cover;
	width: 25px;
	height: 25px;
}

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

.btn.btn-blanc{
	background: #fff;
	color: var(--mainColor) !important;
}

.btn.btn-blanc:hover{
	background: var(--mainColor);
	color: #fff !important;
}

.btn.btn-noir{
	background: var(--mainColor);
	color: #fff;
}

.btn.btn-noir:after{
	background: url('./images/icone-fleche-droite-blanche.svg') no-repeat;
}

.btn.btn-noir:hover{
	color: var(--mainColor);
	background: #fff;
}

.btn.btn-noir:hover:after{
	background: url('./images/icone-fleche-droite-noire.svg') no-repeat;
}

.btn.btn-hover-blanc:hover{
	background: #fff;
	color: var(--mainColor);
}

.btn.btn-hover-bleu:hover:after{
	background: url('./images/icone-fleche-droite-noire.svg') 
}

.btn.btn-hover-bleu:hover{
	background: var(--secondaryColor);
	color: #fff;
}

.btn:hover:after,
.btn:focus:after{
	background-image: url('./images/icone-fleche-droite-blanche.svg');
}

.btn-hover-blanc:hover:after{
	background-image: url('./images/icone-fleche-droite-noire.svg');
}

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

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

.btn.disabled:hover:after{
	background: url('./images/icone-fleche-droite-noire.svg');
}

.btn.sans-icone{
    padding: 10px 15px;
}

.btn.sans-icone:after{
	display: none;	
}

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

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

.clearfix{
	clear: both;
}

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

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

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

.grecaptcha-badge{
	display: none;
}

iframe{
	width: 100%;
}

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

/* #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;
	z-index: 5;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 60px);
	border-radius: 4px;
	backdrop-filter: blur(15px);
	padding: 0 15px;
	background-color: #fff;
	display: flex;
    justify-content: space-between;
    align-items: center;
	max-width: 1300px;
	transition: all 0.2s ease 0s;
}

header.video{
	background-color:rgba(255, 255, 255, 0.2);
}

body.home header.scrolled,
header.scrolled{	
	background: #fff; 
	box-shadow: 0px 0px 5px 0px #8a8a8a;
}

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

header .logo{
	width: 25%;
}

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

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

header .navigation{
	width: 50%;
	display: flex;
    align-items: center;
    justify-content: center;
	gap: 30px;
}

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

header .complement{
	width: 25%;
	display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

header .complement select{
	color: var(--mainColor);
	background: none;
    transition: all 0.15s ease 0s;
	padding: 5px 10px;
}

header.video .complement select{
	color: #fff;
}

header.scrolled .complement select{
	color: var(--mainColor);
}

header .complement a.btn svg{
	display: none;
}

nav:has(#menu-accessible) {
    position: fixed;
    width: 100%;
    z-index: 2000;
}

#menu-accessible {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0px;
    width: 100%;
    gap: 10px;
    list-style: none;
    background: var(--thirdColor);
    opacity: 0;
    height: 0;
    margin-bottom: 0px;
}

#menu-accessible.open {
    opacity: 1;
    padding: 15px;
    height: 45px;
}

nav:has(#menu-accessible.open) ~ header, nav:has(#menu-accessible.open) ~ main {
    top: 45px;
}

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

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

@media (pointer : fine){ 
	.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: 30px;
	margin-bottom: 0px;
	padding-left: 0px;
	list-style: none;
}

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

header .navigation .menu li.lang-item{
	display: none;
}

header .navigation .menu li a{
	display: inline-block;
	font-size: 1.0em;
	color: var(--mainColor);
	padding: 25px 0px;
	transition: all 0.15s ease 0s;
}

header.video .navigation .menu li a{
	color: #fff;
}

header.scrolled .navigation .menu li a{
	color: var(--mainColor);
}

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

	header.video .navigation .menu li a:hover{
		color: var(--mainColor);
	}

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

@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;
	top: 72px;
	left: 0px;
	width: 100%;
    display: flex;
    flex-wrap: wrap;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.2s linear;   
	padding: 0px;
	list-style: none;
	background: var(--mainColor);
}

header .navigation .menu ul.sub-menu li{
	width: calc(100% / 3);
}

header .navigation .menu ul.sub-menu li.mobile-only{
	display: none;
}

header .navigation .menu ul.sub-menu li a{ 
	display: inline-block;
	width: 100%;
	font-size: 1.1em;
	padding: 12px 20px;
	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);
		color: #fff;
	}
}

/* #endregion MENU */

/* #region DIAPORAMA */

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

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

.swiper-pagination-bullet{
	width: 7px;
	height: 7px;
	border-radius: 0px;
	opacity: 1;
}

.swiper-pagination-bullet-active{
	background-color: var(--secondaryColor);
	width: 25px;
}

.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: var(--mainColor);
	background: #F9F9F9;
}

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

#content{
	margin: auto;
}

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

#content p img{
	border-radius: 4px;
}

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

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

#content ul li{
	list-style: none;
}

#content ul li:before{
	content: '';
    display: inline-block;
    background: url('./images/fleche-droite-noire.svg') no-repeat 0px;
    height: 13px;
    width: 15px;
    background-size: contain;
}

#content .bgnoir ul li:before{
    background-image: url('./images/fleche-droite-blanche.svg');
}

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

#breadcrumbs{
	padding: 30px 0px;
	text-align: center;
    background: var(--thirdColor);
}

.breadcrumb,
.breadcrumb a{
    color: var(--secondaryColor);
}

.breadcrumb li::after{
	margin-left: 20px !important;
	margin-right: 20px !important;
}

.main-wrapper-hero{
	height: 100vh;
	position: relative;
}

.main-wrapper-hero video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wrapper-hero{
	height: 100%;
}

.main-wrapper-hero .main-texte{
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.main-wrapper-hero .main-texte .top{
	display: flex;
    justify-content: space-between;
    align-items: flex-end;
	gap: 30px;
	margin-bottom: 50px;
}

.main-wrapper-hero .main-texte .top .gauche{
	width: 75%;
}

.main-wrapper-hero .main-texte .top .gauche h1{
	color: #fff;
	font-weight: 400;
	margin-bottom: 0px;
	text-shadow: 0px 0px 5px #151515;
}

.main-wrapper-hero .main-texte .top .gauche .sous-titre{
	color: #fff;
	margin-top: 30px;
	text-shadow: 0px 0px 5px #151515;
}

.main-wrapper-hero .main-texte .top .gauche .btn{
	margin-top: 30px;
}

.main-wrapper-hero .main-texte .top .droite{
	width: 25%;
}

.main-wrapper-hero .main-texte .top .droite .main-avis{
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.main-wrapper-hero .main-texte .top .droite .main-avis .avis{
	display: flex;
    align-items: center;
    justify-content: space-between;
	gap: 15px;
	background: var(--mainColor);
	color: #fff;
	padding: 10px 15px;
	border-radius: 2px;
	transition: all 0.15s ease 0s;
}

.main-wrapper-hero .main-texte .top .droite .main-avis .avis:hover{
	background: var(--secondaryColor);
	text-decoration: none;
}

.main-wrapper-hero .main-texte .top .droite .main-avis .avis .logo img{
	display: flex;
	width: 60px;
	height: auto;
}

.main-wrapper-hero .main-texte .top .droite .main-avis .avis .main-etoiles{
	display: flex;
	gap: 10px;
}

.main-wrapper-hero .main-texte .top .droite .main-avis .avis .etoiles svg{
	width: 15px;
}

.main-wrapper-hero .diaporama-clients{
	background: var(--mainColor);
}

.main-wrapper-hero .diaporama-clients .swiper-clients img{
	display: flex;
}

.main-wrapper-presentation{
	padding: 50px 0px;
}

.main-wrapper-presentation .wrapper-presentation{
    background-image: url('./images/liseret.svg');
	background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
	display: flex;
    align-items: center;
    justify-content: space-between;
	padding: 150px 0px;
	border-top: 1px solid #bfbfbf;
	border-bottom: 1px solid #bfbfbf;
}

.main-wrapper-presentation .wrapper-presentation .photo{
	width: 40%;
}

.main-wrapper-presentation .wrapper-presentation .photo img{
	width: 100%;
}

.main-wrapper-presentation .wrapper-presentation .main-texte{
	width: 50%;
}

.main-wrapper-presentation .wrapper-presentation .main-texte .texte{
	width: 70%;
}

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

.paragraphe{
	padding: 80px 0px;
}

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

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

.paragraphe.bgblanc{
	background: #fff;
}

.paragraphe.bggrisclair{
	background: var(--thirdColor);
}

.paragraphe.bgbleu{
	background: var(--secondaryColor);
}

.paragraphe.bgnoir{
	background: var(--mainColor);
	color: #fff;
}

.paragraphe.bgbleu h2,
.paragraphe.bgbleu a{
	color: #fff;
}

.paragraphe.bgnoir h2,
.paragraphe.bgnoir a{
	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.small-width .container{
	max-width: 800px;
	margin: auto;
}

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

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

.paragraphe .colonnes a:has(img) img{
	transition: opacity 0.2s;
}

@media (pointer : fine){ 
	.paragraphe .colonnes a:has(img):hover img{
		opacity: 0.8;
	}
}

.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-reassurance{
	background: var(--mainColor);
	color: #f9f9f9;
	padding: 100px 0px 150px 0px;
}

.wrapper-reassurance .liste-arguments{
	display: flex;
	gap: 30px;
}

.wrapper-reassurance .liste-arguments .argument{
	display: flex;
    flex-direction: column;
    justify-content: space-between;
	flex: 1;
	padding-left: 30px;
	border-left: 1px solid #f9f9f9;
	min-height: 250px; 
}

.wrapper-reassurance .liste-arguments .argument h3{
	margin-top: 0px;
	margin-bottom: 15px;
}

.main-wrapper-metiers{
	position: relative;
	padding: 100px 0px;
	background: var(--secondaryColor);
	background: linear-gradient(to right, var(--secondaryColor) 50%, #fff 50%);
}

.media-metier-wrapper{
	position: absolute;
	top:0;
	right:0;
	width:50%;
	height:100%;
	overflow:hidden;
}

.media-metier-wrapper img,
.media-metier-wrapper video{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	object-fit:cover;
	transition:opacity .4s ease;
}

.video-metier{
    opacity: 0;
    pointer-events: none;
}

.wrapper-metiers{
	display: flex;
}

.wrapper-metiers .main-texte{
	width: 50%;
}

.wrapper-metiers .main-texte .titre-wrapper{
	padding-right: 10%;
}

.wrapper-metiers .main-texte .texte{
	margin-bottom: 50px;
	padding-right: 10%;
}

.wrapper-metiers .main-texte .pages{
	display: flex;
	flex-direction: column;
}

.wrapper-metiers .main-texte .pages a,
.wrapper-metiers .main-texte .pages span{
    display: inline-flex;
    align-items: center;
    font-size: 1.2em;
    color: #fff;
    padding: 15px 0 15px 25px;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    transform: translateX(-25px); 
}

.wrapper-metiers .main-texte .pages span{
	cursor: default;
}

.wrapper-metiers .main-texte .pages a:hover,
.wrapper-metiers .main-texte .pages span:hover{
    color: var(--mainColor);
    text-decoration: none;
    transform: translateX(0px); 
}

.wrapper-metiers .main-texte .pages a::before,
.wrapper-metiers .main-texte .pages span::before{
    content: "";
    position: absolute;
    left: 0px;
    width: 15px;
    height: 15px;
    background: url('./images/fleche-droite-noire.svg') no-repeat center;
    background-size: contain;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.wrapper-metiers .main-texte .pages a:hover::before,
.wrapper-metiers .main-texte .pages span:hover::before{
    opacity: 1;
    transform: translateX(0); 
}

.main-wrapper-clients{
	padding: 100px 0px;
	background: var(--mainColor);
}

section .introduction{
	display: flex;
    align-items: flex-start;
    justify-content: space-between;
	gap: 30px;
	margin-bottom: 50px;
}

section .introduction .main-texte{
	width: 50%;
}

.wrapper-clients .introduction .main-texte{
	color: #fff;
}

.wrapper-clients .introduction .main-texte h2 .ligne-1{
	display: block;
}

.wrapper-clients .swiper-clients .swiper-slide{
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-clients .swiper-wrapper{
	transition-timing-function: linear !important;
}

.main-wrapper-temoignages{
	padding: 100px 0px 50px 0;
	background: var(--secondaryColor);
}

.wrapper-temoignages{
	background: var(--secondaryColor);
	border-bottom: 1px solid #fff;
	padding-bottom: 50px;
}

.wrapper-temoignages .swiper-temoignages{
	padding-bottom: 80px;
}

.wrapper-clients .swiper-clients .swiper-pagination-bullet,
.wrapper-articles .swiper-actualites .swiper-pagination-bullet{
	background: #fff;
}

.wrapper-clients .swiper-clients .swiper-pagination-bullet-active,
.wrapper-articles .swiper-actualites .swiper-pagination-bullet-active{
	background: var(--secondaryColor);
}

.wrapper-temoignages .swiper-temoignages .swiper-pagination-bullet{
	background: var(--mainColor);
}

.wrapper-temoignages .swiper-temoignages .swiper-pagination-bullet-active{
	background: #fff;
}

.wrapper-temoignages .swiper-temoignages .swiper-slide{
	height: 100%;
}

.liste-temoignages{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	padding-top: 80px;
}

.vignette-temoignage{
	display: block;
	padding: 30px 50px;
	background: none;
	color: var(--mainColor);
	border-left: 1px solid var(--mainColor);
    transition: transform 0.3s ease;
	transform: translateY(0);
}

.wrapper-temoignages .swiper-temoignages .swiper-slide .vignette-temoignage{
	height: 100%;	
}

@media (pointer : fine){ 
	.vignette-temoignage:hover{
		text-decoration: none;
		color: var(--mainColor);
    	transform: translateY(-10px); 
	}
}

.vignette-temoignage .titre{
	display: block;
	font-size: 1.2em;
}

.vignette-temoignage .entreprise{
	display: block;
	font-size: 1.2em;
	font-weight: 600;
}

.vignette-temoignage .texte{
	margin-top: 30px;
}

.vignette-temoignage .texte p:last-child{
	margin-bottom: 0px;
}

.single-temoignage .entry-content{
	display: flex;
	flex-direction: column;
	gap: 30px;
	max-width: 800px;
	padding-bottom: 100px;
}

.single-temoignage .entry-content>.texte{
	background: #fff;
	padding: 30px;
	border-radius: 4px;
	margin-top: 50px;
}

.single-temoignage .entry-content>.texte p:last-child{
	margin-bottom: 0px;
}

.main-wrapper-realisations{
	padding: 100px 0px;
}

.wrapper-realisations .introduction{
	flex-direction: column;
    justify-content: flex-start;
	gap: 0px;
	width: 70%;
}

.wrapper-realisations .introduction .texte{
	margin-bottom: 50px;
}

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

.vignette-realisation{
	position: relative;
	border: 1px solid var(--thirdColor);
	border-radius: 4px;
}

.vignette-realisation .video-wrapper{
	position: relative;
    overflow: hidden;
	height: 370px;
	border-radius: 4px;
}

.vignette-realisation .video-wrapper video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vignette-realisation .video-wrapper .youtube-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vignette-realisation .video-wrapper .youtube-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vignette-realisation .icone-play{
	opacity: 0;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    color: #fff;
    transition: all .2s ease;
	z-index: 10;
	cursor: pointer;
}

.vignette-realisation .icone-play:hover{
	width: 55px;
}

.vignette-realisation:hover .icone-play.is-hidden,
.vignette-realisation .icone-play.is-hidden{
    opacity: 0;
    pointer-events: none;
}

.vignette-realisation .main-texte{
	display: block;
	position: absolute;
    bottom: 15px;
    transition: all .4s ease;
	left: 15px;
	width: calc(100% - 30px);
	padding: 7px 15px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
	border-radius: 4px;
	color: #fff;
	transition: all .4s ease;
    transform: scaleY(1);
    transform-origin: bottom left;
}

.vignette-realisation .main-texte:hover{
	background-color: var(--mainColor);
	text-decoration: none;
}

/* Cas YOUTUBE SEUL (pas d'extrait MAIS vidéo présente) */
.vignette-realisation .video-wrapper[data-has-extrait="0"][data-has-video="1"] + .main-texte {
    bottom: 60px;
}

/* Cas IMAGE (pas de vidéo du tout) */
.vignette-realisation .video-wrapper[data-has-video="0"] + .main-texte {
    bottom: 20px;
}

.vignette-realisation .main-texte .titre{
	font-size: 1.2em;
	text-transform: uppercase;
}

.vignette-realisation .main-texte .texte{
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity .4s ease, max-height .4s ease;
}

.vignette-realisation .main-texte .texte .description{
	padding-top: 15px;
	padding-bottom: 20px;
}

.vignette-realisation .image-fallback{
	height: 370px;
}

.vignette-realisation .image-fallback img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

.video-wrapper[data-has-video="0"] + .icone-play{
    display: none;
}

.vignette-realisation:hover .main-texte{
    padding-bottom: 20px;
}

.vignette-realisation:hover .main-texte .texte{
    opacity: 1;
    max-height: 200px;
}

.vignette-realisation:hover .icone-play{
	opacity: 1;
}

.single-realisation .video{
	margin-bottom: 50px;
}

.single-realisation .temoignage{
	background: var(--secondaryColor);
	padding: 30px;
	margin-bottom: 30px;
}

.single-realisation .temoignage span{
	font-weight: 600;
}

.single-realisation .temoignage .texte{
	margin-top: 30px;
}

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

.vignette-agence{
	position: relative;
    display: block;
    height: 100%;
    border-radius: 15px;
    transition: all 0.3s ease 0s;
}

.vignette-agence .image{
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: all 0.3s ease 0s;
    aspect-ratio: 16 / 9;
}

.vignette-agence .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

@media (pointer: fine) {
    .vignette-agence:hover .image img {
        transform: scale(1.05);
    }
}

.vignette-agence .main-texte{
    position: absolute;
    bottom: 15px;
    transition: all .4s ease;
    left: 15px;
    width: calc(100% - 30px);
    padding: 7px 15px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 4px;
    color: #fff;
    transition: padding .4s ease;
    transform: scaleY(1);
    transform-origin: bottom left;
    font-size: 1.2em;
    text-transform: uppercase;
}

.archive:has(header.video) .description{
	padding: 100px 0px;
	max-width: 1000px;
	margin: auto;
}

.filtres{
	margin-top: 50px; 
}

.filtres form{
	display: flex;
	gap: 15px;
	margin-bottom: 50px;
}

.filtres form select{
	width: 20%;
}

.loader img{
    display: flex;
	margin: auto;
}

.single-suggestion .introduction{
	padding-top: 80px;
	padding-bottom: 80px;
}

.single-suggestion .introduction .container{
	display: flex;
	gap: 50px;
}

.single-suggestion .introduction .logo{
	width: 30%;
}

.single-suggestion .introduction .logo img{
    background: #fff;
    border: 2px solid var(--thirdColor);
    border-radius: 10px;
}

.single-suggestion .introduction .texte{
	width: 60%;
}

.single-suggestion .main-liste-realisations{
	background: #fff;
	padding: 80px 0;
}

.wrapper-articles .swiper-actualites{
    padding-bottom: 80px;
}

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

.main-wrapper-articles,
.main-wrapper-agences{
	padding: 250px 0px 100px 0px;
	background-image: url('./images/liseret-bleu.svg');
	background-repeat: no-repeat;
	background-position: top center;
	background-color: var(--mainColor);
	color: #fff;
}

.main-wrapper-cards{
	padding: 100px 0px;
	background: #fff;
}

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

.liste-cards .card{
	display: flex;
	gap: 30px;
    transition: transform 0.3s ease;
	transform: translateY(0);
}

.liste-cards .card img{
	max-width: 20%;
	width: 100%;
}

.liste-cards .card .main-texte{
	max-width: 80%;
}

.liste-cards .card h3{
	margin-top: 0px;
    transition: all 0.3s ease;
}

.liste-cards .card .texte{
	color: var(--mainColor);
}

@media (pointer: fine) {
	.liste-cards a.card:hover{
		text-decoration: none;
		transform: translateY(-10px);
	}

	.liste-cards a.card:hover h3{
		color: var(--mainColor);
	}
}

.swiper-cards{
	overflow: hidden;
}

.swiper-cards .swiper-slide .chiffre{
	display: flex;
    align-items: center;
	gap: 30px;
	font-size: 1.6em;
	color: var(--secondaryColor);
	white-space: nowrap;
}

.swiper-cards .swiper-slide .chiffre:after{
	display: block;
	content: "";
	width: 100%;
	height: 1px;
	border-top: 1px solid var(--secondaryColor);
}

.swiper-cards{
    padding-bottom: 80px;
}

#searchform{
	display: flex;
}

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

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

.gform_required_legend{
	display: none;
}

.gform-theme .gf_progressbar_title,
.gform-theme .gform-field-label{
	color: var(--mainColor) !important;
}

.gform-theme .gf_progressbar .percentbar_blue{
	background-color: var(--secondaryColor) !important;
}

.gform-theme h3{
	margin-top: 0px;
}

.gform-theme.gform-theme--framework.gform_wrapper .button{
	display: inline-flex !important;
    align-items: center !important;
    gap: 20px !important;
    width: auto !important;
    border: none !important;
    padding: 7px 15px 7px 15px !important;
    border-radius: 2px !important;
    background: var(--secondaryColor) !important;
    color: var(--mainColor) !important;
    font-size: 1.0em !important;
    text-align: center;
    transition: all 0.15s ease 0s;
    cursor: pointer;
}

.gform-theme.gform-theme--framework.gform_wrapper .button:hover{
    background: var(--mainColor) !important;
	color: #fff !important;
}

.gform_wrapper .gfield_label{
	font-weight: 600 !important;
	font-size: 1.0em !important;
}

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

.wrapper-accordeons{
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.accordeon{
	border-radius: 4px;
	background: var(--thirdColor);	
}

.accordeon .libelle{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
	padding: 15px;
	border-radius: 4px 4px 0 0;
    cursor: pointer;
	background: var(--thirdColor);
}

.accordeon .libelle.open{
	color: var(--secondaryColor);
}

.accordeon .libelle .symbole{
	display: flex;
    align-items: center;
	gap: 5px;
	font-size: 1.4em;
}

.accordeon .libelle .plus,
.accordeon .libelle .moins{
	font-size: 0.8em;
	width: 10px;
    text-align: center;
}

.accordeon .libelle.open .plus{
    display: none;
}

.accordeon .libelle .moins{
    display: none;
}

.accordeon .libelle.open .moins{
    display: block;
}

.accordeon .libelle div{
	display: flex;
	gap: 10px;
}

.accordeon .contenu{
    display: none;
    padding: 0 15px 15px 15px;
	border-radius: 0 0 4px 4px;
	background: var(--thirdColor);
}

/* #endregion CORPS */

/* #region ESPACE CLIENT & FICHE PROJET */

.tab {
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
    list-style: none;
    margin-top: 0px;
    margin-bottom: 30px;
	border-bottom: 1px solid #ccc;
}

#content .tab li:before{
	display: none;
}

.tab li{
	display: flex;
	flex: 1;
}

.tab li a {
	display: flex;
    align-items: center;
	gap: 10px;
    text-decoration: none;
    padding: 15px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
    transition: all 0.15s ease 0s;
}

@media (pointer : fine){ 
	.tab li a:hover{
		background: var(--secondaryColor);
		color: #fff;
	}

	.tab li a:not(.active):hover span{
		background: #fff;
		color: var(--secondaryColor);
	}
}

.tab li a.active{
	background: var(--mainColor);
	color: #fff;
	cursor: auto;
}

.tab li a span{
	display: inline-flex;
    align-items: center;
    justify-content: center;
	color: #fff;
    background: var(--secondaryColor);
    font-size: 0.8em;
	font-weight: 600;
    border-radius: 2px;
    width: 18px;
    height: 18px;
}

.tab li a.active span{
	background: #fff;
	color: var(--mainColor);
}

.tabcontent {
    display: none;
}

.tabcontent.active {
    display: block;
}

aside{
	position: sticky;
	top: 115px;
	width: 30%;
	display: flex;
	flex-direction: column;
}

aside h1.entry-title{
	display: flex;
    flex-direction: column;
	gap: 15px; 
	text-align: left;
	padding: 0px;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 50px;
}

aside h1.entry-title span{
    line-height: 1.0em;
}

aside h1.entry-title .etats{
	display: flex;
	gap: 10px;
}

aside h1.entry-title .etats .etat{
	font-size: 0.3em;
	color: #fff;
	background: var(--secondaryColor);
    padding: 7px 10px;
	border-radius: 2px;
    line-height: 1.0em;
}

aside ul{
	display: flex;
	flex-direction: column;
	padding: 0px;
	margin: 0px;
	list-style: none;
}

aside ul li{
	display: flex;
	flex-direction: column;
	border-top: 1px solid #ccc;
}

#content aside ul li:before{
	display: none;
}

aside ul li:first-child{
	border: none;
}

aside a{
	display: flex;
    justify-content: space-between;
	gap: 10px;
	padding: 15px;
    transition: all 0.15s ease 0s;
	cursor: pointer;
	color: var(--mainColor);
}

aside ul li span{
	display: flex;
    align-items: center;
	gap: 20px;
}

aside ul li a.active{
	background: var(--thirdColor);
	color: var(--secondaryColor);
}

aside ul li a svg,
aside ul li span svg{
	width: 18px;
}

@media (pointer : fine){ 
	aside a:hover{
		color: var(--secondaryColor);
		text-decoration: none;
	}
}

section.private {
    position: relative;
}

section.private article {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

section.private article.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.entry-content:has(aside){
	display: flex;
    align-items: flex-start;
	gap: 30px;
	padding-bottom: 100px;
}

.entry-content:has(aside) article{
	width: 100%;
	padding: 30px;
	background: #fff;
	border-radius: 4px;
}

.entry-content:has(aside) section{
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 70%;
}

.entry-content article .formulaires{
	display: flex;
	gap: 30px;
}

.entry-content article .formulaires h3{
	margin-top: 0px;
}

.entry-content article .formulaires form{
	width: 50%;
}

.formulaire-connexion{
	max-width: 600px;
	margin: auto;
	margin-top: 80px;
}

.formulaire-connexion form{
	display: flex;
	flex-direction: column;
	gap: 15px;
	max-width: 300px;
	margin: auto;
	padding-bottom: 100px;
}

.main-notification{
	display: none;
	margin-bottom: 30px;
}

.main-notification .notification{
    display: flex;
    gap: 15px;
    padding: 15px 15px;
    background: var(--thirdColor);
	border: 1px solid var(--thirdColor);
	border-radius: 4px;
}

.main-notification .notification.notification-ok{
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.main-notification .notification.notification-ko{
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.formulaire-connexion form{
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.formulaire-connexion p{
	margin-bottom: 0px;
}

.formulaire-connexion button{
    justify-content: center;
	width: 100%;
}

.liste-projets{
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.vignette-projet{
	display: flex;
    align-items: center;
	gap: 30px;
	width: 100%;
	background: var(--thirdColor);
	border-radius: 4px;
    transition: all 0.15s ease 0s;
}

@media (pointer : fine){ 
	.vignette-projet:hover{
		text-decoration: none;
    	background: #F9F9F9;
	}

	.vignette-projet:hover .texte .titre{
		color: var(--mainColor);
	}

	.vignette-projet:hover .image img{    
    	transform: scale(1.05);
	}
}

.vignette-projet .image{
	width: 30%;
	border-radius: 4px 0 0 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.15s ease 0s;
}

.vignette-projet .image img{
	display: flex;
	object-fit: cover;
    aspect-ratio: 4 / 3;
	width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.vignette-projet .titre{
	width: 45%;
	color: var(--secondaryColor);
}

.vignette-projet .titre span{
	display: block;
	color: var(--mainColor);
}

.vignette-projet .texte{
	width: 25%;
	font-size: 0.9em;
	padding-right: 30px;
}

.vignette-projet .texte .informations{
	display: flex;
    flex-direction: column;
	gap: 10px;
}

.vignette-projet .texte .informations .information{
    display: flex;
    justify-content: space-between;
    gap: 5px;
    color: #fff;
    border-radius: 2px;
    padding: 7px 10px;
    background: var(--secondaryColor);
    transition: all 0.15s ease 0s;
}

.vignette-projet .texte .informations .information.noir{
	background: var(--mainColor);
}

.vignette-projet .texte .informations .information svg{
	width: 15px;
}

.contacts{
	display: flex;
}

.contacts .contact{
	width: 50%;
}

.contacts .contact h3{
	margin-top: 0px;
}

.commentaires{
	display: flex;
	flex-direction: column;
	gap: 30px;
	border-left: 1px solid var(--secondaryColor);
	margin-top: 50px;
}

.commentaires .main-commentaire{
	display: flex;
	gap: 30px;
}

.commentaires .main-commentaire:before{
    position: relative;
    top: -12px;
    left: -7px;
    content: "■";
    color: var(--secondaryColor);
    font-size: 1.5em;
}

.commentaires .commentaire{
	position: relative;
	top: -10px;
}

.commentaires .commentaire .date{
	font-size: 1.4em;
	margin-bottom: 15px;
}

.commentaires .commentaire .livrables{
	display: inline-flex;
	flex-direction: column;
	gap: 5px;
}

.commentaires .commentaire .livrables a,
#livrables a{
	display: flex;
    align-items: center;
	gap: 15px;
	font-style: italic;
	color: var(--mainColor);
    transition: all 0.15s ease 0s;
}

.commentaires .commentaire .livrables a:hover,
#livrables a:hover{
	color: #4E66A9;
	text-decoration: none;
}

.commentaires .commentaire .livrables a.lien,
#livrables a.lien{
	color: #4E66A9;
}

.commentaires .commentaire .livrables a.lien:hover,
#livrables a.lien:hover{
	color: var(--mainColor);
}

.commentaires .commentaire .livrables a svg,
#livrables a svg{
	padding: 5px;
	border-radius: 2px;
    width: 25px;
	background: var(--mainColor);
	color: #fff;
    transition: all 0.15s ease 0s;
}

.commentaires .commentaire .livrables a:hover svg,
#livrables a:hover svg{
	background: #4E66A9;
}

.commentaires .commentaire .livrables a.lien svg,
#livrables a.lien svg{
	background: #4E66A9;
}

.commentaires .commentaire .livrables a.lien:hover svg,
#livrables a.lien:hover svg{
	background: var(--mainColor);
}

/* #endregion ESPACE CLIENT */

/* #region ARTICLES */

.liste-categories{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 50px;
	margin-bottom: 50px;
}

.vignette-article a{
	display: block;
	height: 100%;
	border-radius: 15px;
	transition: all 0.3s ease 0s;
}

@media (pointer : fine){ 
	.vignette-article a:hover{    
		text-decoration: none;
	}

	.vignette-article a:hover .image img{    
    	transform: scale(1.05);
	}

	.vignette-article a:hover .texte .titre{    
		color: var(--secondaryColor);
	}
}

.vignette-article .image{
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	transition: all 0.3s ease 0s;
	aspect-ratio: 16/9;
}

.vignette-article .image img{
	display: block;
    width: 100%;
	height: 100%;
	object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.vignette-article .texte .titre{
	font-family: var(--titleFont);
	font-size: 1.2em;
	margin-top: 15px;
	margin-bottom: 15px;
	font-weight: 400;
	color: var(--mainColor);
	transition: all 0.3s ease 0s;
}

.vignette-article .texte .date{
	color: var(--mainColor);
	margin: 0px;
}

.wrapper-articles .vignette-article .texte .titre,
.wrapper-articles .vignette-article .texte .date{
	color: #fff;
}

.vignette-article .categories{
	display: flex;
    flex-wrap: wrap;
	gap: 5px;
}

.vignette-article .categories .categorie{
	color: var(--secondaryColor);
}

.single-post article{
	max-width: 1000px;
	margin: auto;
	padding-bottom: 80px;
}

.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;
}

.single-post .resume{
	padding: 30px 30px 15px 30px;
	background: var(--thirdColor);
	margin-bottom: 30px;
}

.single-post .resume ul{
	padding-left: 0px;
}

.single-post .resume span{
	display: block;
	font-size: 1.2em;
	font-weight: 600;
	margin-bottom: 30px;
}

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

@media (pointer : fine){ 
	.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: 50px;
	margin-bottom: 80px;
	padding-left: 0px;
	list-style: none;
}

#content ul.pagination a,
#content ul.pagination span{
	border-radius: 4px;
    transition: all 0.15s ease 0s;
}

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

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

#content ul.pagination li:before{
	display: none;
}

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

/* #endregion ARTICLES */

/* #region FOOTER */

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

footer .top-footer{
    padding: 100px 0px 300px 0px;
    background-image: url('./images/liseret-blanc.svg');
    background-repeat: no-repeat;
    background-position: bottom center;
	background-color: var(--secondaryColor);
}

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

footer .top-footer .main-logo{
    width: 40%;
}

footer .top-footer .main-logo a.logo{
	display: inline-block;
	width: 20%;
    transition: all 0.15s ease 0s;
	margin-bottom: 30px;
}

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

@media (pointer : fine){ 
	footer .top-footer .main-logo a.logo:hover{
		transform: scale(1.05);
	}
}

footer .top-footer .main-logo .reseaux-sociaux{
    display: flex;
    gap: 15px;
	list-style: none;
	padding: 0px;
	margin: 0px;
}

footer .top-footer .main-logo .reseaux-sociaux a{
    display: flex;
	width: 25px;
    transition: all 0.15s ease 0s;
}

@media (pointer : fine){ 
	footer .top-footer .main-logo .reseaux-sociaux a:hover{
		transform: translateY(-2px);
	}
}

footer .top-footer .main-logo .reseaux-sociaux a svg{
	width: 100%;
}

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

footer .top-footer .colonne .titre a{
	color: #fff;
}

footer .top-footer .colonne a{
	color: var(--mainColor);
}

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) {
	header{
		padding: 10px 15px;
	}
	
	header .complement,
	header .logo,
	header .ouvrir-menu{
		width: calc(100% / 3);
	}

	header .logo{
		order: 2;
	}

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

	header.scrolled .logo a{
		width: auto;
	}

	header .complement{
		justify-content: flex-start;
		gap: 15px;
	}

	header .navigation{
		order: 1;
		width: 0%;
	}

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

	header .ouvrir-menu button{ 
		display: flex;
		width: 50px;
		color: var(--mainColor);
		background: none;
		border: none;
		padding: 0px;
	}

	header.video .ouvrir-menu button{
		color: #fff;
	}

	header.scrolled .ouvrir-menu button{
		color: var(--mainColor);
	}
	
	header .ouvrir-menu button svg{ 
		width: 100%;
	}

	header .navigation .main-menu{
		display: flex;
		position: fixed;
		width: 50vw;
		height: calc(100vh - 20px);
		z-index: 10;
		top: 0px;
		right: -100vw;
		background: var(--mainColor);
		padding: 50px;
		border-radius: 4px;
		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;
		top: auto;
		opacity: 1;
    	visibility: visible;
	}

	header .navigation .menu ul.sub-menu li a{
		color: #fff;
	}

	header .navigation .main-menu .fermer-menu{
		display: block;
		position: absolute;
		top: 10px;
		right: 15px;
		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;
	}
	
	.select-categories{
		margin-top: 30px;
		margin-bottom: 30px;
	}

	h1{
		font-size: 2.0em;
	}

	h2.titre-wrapper{
		font-size: 2.2em;
	}

	.vignette-realisation{
		background: var(--mainColor);
	}

	.vignette-realisation .video-wrapper{
		border-radius: 4px 4px 0px 0px;
	}

	.vignette-realisation .main-texte{
		position: relative;
		bottom: 0px;
		background: none;
		width: 100%;
		left: 0px;
    	backdrop-filter: none;
		border-radius: 0 0 4px 4px;
	}

	.vignette-realisation .video-wrapper[data-has-extrait="0"] + .main-texte,
	.vignette-realisation .main-texte.is-playing{
		bottom: 0px;
	}

	.vignette-realisation .main-texte{
		padding: 15px;
	}

	.vignette-realisation .main-texte .texte{
		opacity: 1;
		max-height: 100%;
	}

	.vignette-realisation:hover .main-texte{
		padding: 15px;
	}

	.vignette-temoignage{
		padding: 0px 50px;
	}

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

	div:has(> table:first-child){
		overflow-x: scroll;
	}

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

@media screen and (max-width: 1180px) and (orientation: portrait) {
	header .complement a.btn{
		padding: 7px 15px;
	}

	header .complement a.btn:after,
	header .complement span{
		display: none;
	}

	header .complement a.btn svg{
		width: 20px;
		display: block;		
	}

	.main-wrapper-hero .main-texte .top{
		flex-direction: column;
    	align-items: flex-start;
	}

	.main-wrapper-hero .main-texte .top .gauche,
	.main-wrapper-hero .main-texte .top .droite{
		width: 100%;
	}

	/*.main-wrapper-presentation .wrapper-presentation{
		padding: 80px 0px 50px 0;
		flex-direction: column;
		gap: 50px;
	}

	.main-wrapper-presentation .wrapper-presentation .photo{
		width: 70%;
	}

	.main-wrapper-presentation .wrapper-presentation .main-texte{
		width: 100%;
	}

	.main-wrapper-presentation .wrapper-presentation .main-texte .texte{
		margin: auto;
	}*/

	section .introduction{
		flex-direction: column;
	}

	section .introduction .main-texte{
		width: 100%;
	}

	.wrapper-realisations .introduction{
		width: 100%;
	}
	
	.filtres form select{
		width: 40%;
	}

	.filtres form .btn{
		width: 20%;
    	align-items: center;
	}

	.entry-content:has(aside){
		flex-direction: column;
	}

	aside{
		position: relative;
		top: 0px;
	}

	aside h1.entry-title{
		text-align: center;
	}

	aside h1.entry-title .etats .etat{
		font-size: 0.4em;
        margin: auto;
	}

	aside,
	.entry-content:has(aside) section{
		width: 100%;
	}
}

/* #endregion TABLETTE */

/* #region MOBILE */

@media screen and (max-width: 767px) {	
	.retour-haut{
		width: 30px;
		height: 30px;
		bottom: 50px;
	}

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

	h1,
	h2.titre-wrapper{
		font-size: 1.6em;
		margin-bottom: 30px;
	}

	h2.titre-wrapper.petit{
		font-size: 1.6em;
	}

	h2{
		font-size: 1.4em;
	}

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

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

	header .complement .langues{
		display: none;
	}

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

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

	header .ouvrir-menu button{
		width: 30px;
	}

	header .navigation .main-menu{
		padding: 30px;
	}

	header .navigation .main-menu .fermer-menu{
		width: 30px;
	}

	header .navigation .main-menu{
        width: 100%; 
	}
	
	header .navigation .menu li.lang-item{
		display: block;
	}

	header .navigation .menu li.lang-item-first{
		margin-top: 30px;
	}

	header .navigation .main-menu .menu li a{
		font-size: 1.0em;
	}

	header .navigation .menu ul.sub-menu li{
		width: 100%;
	}

	header .navigation .menu ul.sub-menu li.mobile-only{
		display: block;
	}

	header .navigation .menu ul.sub-menu li a{
		padding: 0px 0px 0px 15px;
		font-size: 0.9em;
	}

	header .navigation .menu>li.menu-item-has-children > a:after{
		width: 15px;
		height: 15px;
	}

	.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;
	}
	
	.paragraphe .colonnes.mobile-reverse{
		flex-direction: column-reverse;
	}

	.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%;
	}

	nav .breadcrumb{
		font-size: 0.8em;
	}

	.main-wrapper-hero img.image-hero{
		height: 100%;
		object-fit: cover;
	}

	.main-wrapper-reassurance,
	.main-wrapper-metiers,
	.main-wrapper-clients,
	.main-wrapper-temoignages,
	.main-wrapper-realisations,
	.main-wrapper-articles,
	.main-wrapper-agences,
	.faq{
		padding: 50px 0px;
	}

	.wrapper-reassurance .liste-arguments{
		flex-direction: column;
	}

	.wrapper-reassurance .liste-arguments .argument{
		min-height: auto;
		gap: 30px;
	}

	.main-wrapper-metiers{
		background: var(--secondaryColor);
	}

	.wrapper-metiers{
		flex-direction: column;
	}

	.wrapper-metiers .main-texte{
		width: 100%;
	}

	.main-wrapper-metiers .media-metier-wrapper{
		display: none;
	}

	.main-wrapper-presentation .wrapper-presentation{
		padding: 0px;
	}

	.main-wrapper-presentation .wrapper-presentation .photo{
		width: 100%;
	}

	.main-wrapper-presentation .wrapper-presentation .main-texte .texte{
		width: 100%;
		padding: 0 30px;
	}

	.wrapper-temoignages .swiper-temoignages{
		padding-bottom: 50px;
	}

	.wrapper-realisations .introduction{
		width: 100%;
	}

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

	.liste-cards .card .main-texte{
		max-width: 100%;
	}

	.main-wrapper-articles,
	.main-wrapper-agences{
		background: var(--mainColor);
	}

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

	.contacts{
		flex-direction: column;
	}

	.contacts .contact{
		width: 100%;
	}

	.liste-agences{
		grid-template-columns: repeat(1, 1fr);
   		gap: 30px;
	}

	.entry-content article .formulaires{
		flex-direction: column;
	}

	.entry-content article .formulaires form{
		width: 100%;
	}

	.filtres form{
		flex-direction: column;
	}

	.filtres form select,
	.filtres form .btn{
		width: 100%;
	}

	.filtres form .btn{		
    	justify-content: center;
	}

	.tab li{
		width: 100%;
		flex: auto;
	}

	.vignette-projet{
		flex-direction: column;
		gap: 0px;
	}

	.vignette-projet .image,
	.vignette-projet .titre,
	.vignette-projet .texte{
		width: 100%;
	}

	.vignette-projet .image{
		border-radius: 4px 4px 0 0;
	}

	.vignette-projet .titre,
	.vignette-projet .texte{
		padding: 15px;
	}

	.vignette-projet .texte{
		padding-top: 0px;
	}

	footer .top-footer{
		background-image: none;
		padding: 50px 0px;
	}

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

	footer .top-footer .main-logo p{
		text-align: center;
	}

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

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

	footer .top-footer .main-logo .reseaux-sociaux{
		justify-content: center;
	}

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

/* #endregion MOBILE */