/*
Theme Name: Thème officiel Hôtel La Villa Bleue Cambo les bains
Theme URI: https://www.hotel-lavillableue.com
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: #0F2F68;
	--secondaryColor: #507FB5;
	--tertiary: #D7E3F7;
	--titleFont: 'quiche-sans', sans-serif;
	--textFont: 'Montserrat', 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.2em;
    margin-top: 0px;
    margin-bottom: 50px;
}

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

h2{
	font-family: var(--titleFont);
    color: var(--mainColor);
    font-size: 2.5em;
    margin-top: 0px;
    margin-bottom: 15px;
}

h2.titre-wrapper{
	text-align: center;
	font-size: 2.0em;
    margin-bottom: 50px;
}

h3{
	font-size: 2em;
	font-family: var(--titleFont);
	color: var(--mainColor);
	margin: 10px 0px;
}

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: 25px 40px;
	background: #FFF;
	color: var(--mainColor);
	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(--mainColor);
	color: #fff;
	text-decoration: none;
}

.btn + .btn{
	background: var(--mainColor);
	color: #FFF;
}

.btn + .btn:hover,
.btn + .btn:focus{
	background: var(--secondaryColor);
}

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

/* #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: 10px;
}

.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: 5;
	background: var(--secondaryColor);
	padding: 15px 0px;
	transition: all 0.2s ease 0s;
	text-transform: uppercase;
}

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

body.home header.scrolled,
header.scrolled{
	padding: 10px 0px;
	background: var(--secondaryColor);
}

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

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

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

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

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

header .navigation .main-menu{
	width: 100%;
	display: flex;
    justify-content: space-between;
	align-items: center;
}

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

.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: 30px;
	margin-bottom: 0px;
	padding-left: 0px;
	list-style: none;
	justify-content: space-evenly;
}

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;
	color: #FFF;
}

header .navigation .menu li a:after{
	position: relative;
	content: '';
	display: block;
	margin: auto;
	height: 1px;
	margin-top: 5px;
	background: var(--mainColor);
    transform-origin: 100% 0;
    transform: scaleX(0);
    transition: transform 0.2s;
}

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

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

header .navigation .menu li.btn{
	padding: 3px;
	background:transparent;
}

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

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

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

header .menu-picto{
	display: flex;
	gap: 50px;
}

header .menu-picto svg{
	width: 30px;
	height: 30px;
	color: #FFF;
	transition: all 0.2s ease;
}

header .menu-picto svg:hover,
header .menu-picto svg:focus{
	color: var(--mainColor);
}

header .pll-parent-menu-item{
	border-left: 1px solid #FFF;
	padding-left: 20px;
}

/* #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(--secondaryColor);
}

/* #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.0em;
}

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

#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: 80px 0px;
}

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

.paragraphe.bgblanc{
	background: #fff;
}

.paragraphe.bggrisclair{
	background: #ededed;
}

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

.paragraphe.bgbleu .btn{
	border-color: #FFF;
	background: transparent;
	color: #FFF;
}

.paragraphe.bgbleu .btn:hover,
.paragraphe.bgbleu .btn:focus{
	background: var(--mainColor);
	border-color: var(--mainColor);
}

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

.paragraphe.bgbleu h2,
.paragraphe.bgbleu p,
.paragraphe.bgbleuclair h2,
.paragraphe.bgbleuclair p{
	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;
}

.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:not(#review) .btn{
	border: 1px solid var(--mainColor);
}

.paragraphe .btn + .btn:hover{
	border-color: var(--tertiary);
}

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

#searchform{
	display: flex;
}

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

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

.paragraphe ul{
	line-height: 2em;
}

.paragraphe ul li{
	list-style: none;
	color: var(--secondaryColor);
	font-weight: 600;
}

.paragraphe ul li::before{
    content: url(./images/success.svg);
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    left: -5px;
}

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

.faq h2{
	color: #000;
}

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

.wrapper-questions {
    margin-bottom: 0px;
	margin-top: 40px;
	margin-bottom: 20px;
	display: flex;
	gap: 25px;
}

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

.faq .question-reponse{
	background: var(--tertiary);
	border-bottom: 2px solid var(--mainColor);
	padding: 15px 40px;
	margin-bottom: 10px;
	cursor: pointer;
}

.wrapper-questions .question{
    display: flex;
    justify-content: space-between;
	font-size: 1.2em;
}

.wrapper-questions .question svg{
	width: 20px;
	height: 20px;
	color: var(--secondaryColor);
	transition: all 0.2s ease;
}

.wrapper-questions .open .question svg{
	transform: rotate(90deg);
}

.wrapper-questions .reponse{
    display: none;
    padding: 15px 0px;
	font-weight: 300;
}

.wrapper-questions .reponse p{
	margin-bottom: 0;
}

/* #endregion CORPS */

/* #region ARTICLES */

.articles .container .liste-articles{
	display: flex;
	padding-top: 180px;
	padding-bottom: 40px;
	justify-content: center;
}

.articles .bg{
	padding: 80px;
}

.articles .titre{
	max-width: 1000px;
    padding: 50px 25px;
    margin: auto;
    background: #FFF;
    transform: translateY(60%);
}

.articles h3.titre{
	padding: 0;
}


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

.vignette-article{
	width: calc(100% / 3);
}

.vignette-article + .vignette-article{
	border-left: 1px solid var(--mainColor);
}

.vignette-article a{
	display: block;
	height: 100%;
    padding: 0px 20px;
    background: #fff;
	transition: all 0.3s ease 0s;
}

.vignette-article a:hover{    
	text-decoration: none;
    transform: translateY(10px);
}

.vignette-article .image .main-image{
	position: relative;
	overflow: hidden;
}

.vignette-article .image .main-image>img{
	display: block;
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .1s ease-in-out;
    transition: .1s ease-in-out;
}

.vignette-article .image .main-image .survol{
	opacity: 0;
	visibility: hidden;
    transition: 0.2s;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: color-mix(in srgb, var(--mainColor) 80%, transparent);
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	color: #fff;
	z-index: 2;
}

.vignette-article a:hover .image .main-image .survol{
	opacity: 1;
    visibility: visible;
}

.vignette-article .image .main-image .survol img{
    width: auto;
    margin-bottom: 15px;
}

.vignette-article .texte{
	text-align: center;
}

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

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

.vignette-article .texte .fake-btn{
	font-weight: 500;
	font-size: 0.9em;
	display: flex;
	align-items: center;
	justify-content: center;
    gap: 10px;
}

.vignette-article .texte .fake-btn svg{
	width: 10px;
	height: 10px;
}

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

.liste-articles{
	display: flex;
}

section.articles .btn{
	border: 1px solid var(--mainColor);
}

/* #endregion ARTICLES */

/* #section */

section.hero{
	height: 100vh;
	align-content: center;
	color: #FFF;
	background-blend-mode: darken;
	background-color: #0002;
	background-repeat: no-repeat;
	background-size: cover;
}

section.hero .texte{
	width: 70%;
	margin: auto;
}

section.hero h1{
	color: #FFF;
	margin-bottom: 20px;
}

section.hero .ti-rating-text {
    display: none;
}

section.hero a:has(img){
	margin-right: auto;
	width: fit-content;
	transition: all 0.2s ease;
}

section.hero a:has(img):hover,
section.hero a:has(img):focus{
	transform: scale(1.05);
}

section:not(.hero){
	padding: 80px 0px;
}

section.avantages{
	background: var(--tertiary);
}

section.avantages .liste-avantages{
	display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: end;
	padding-top: 40px;
}

section.avantages .avantage{
	display: flex;
    justify-items: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    justify-content: flex-start;
    height: 170px;
}

section.avantages .picto img{
	object-fit: contain;
	height: 100%;
}

section.avantages .libelle{
	text-transform: uppercase;
	font-weight: 600;
	text-align: center;
}


section.rassurances{
	background: var(--mainColor);
	color: #FFF;
}

section.rassurances .liste-rassurances{
	display: flex;
    justify-content: space-around;
    align-items: center;
}

section.rassurances .rassurance .picto{
    width: 90px;
    text-align: center;
    height: 60px;
    margin: auto;
    margin-bottom: 10px;
}

section.rassurances .rassurance .picto img{
	object-fit: contain;
	width: 100%;
	height: 100%;
}

section.rassurances .rassurance .libelle{
	text-align: center;
	margin: 0;
	font-weight: 500;
	text-transform: uppercase;
}

#carte{
	filter: grayscale(1);
	height: 1200px;
}

#carte iframe{
	height:1200px;
}

section.chambres .btn,
section.appartements .btn{
	border: 1px solid var(--mainColor);
	background: transparent;
}

section.chambres a,
section.appartements a{
	color: #000;
}

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

section.appartements{
	background: var(--tertiary);
}

section.chambres .colonnes,
section.appartements .colonnes{
	display: flex;
	gap: 50px;
	align-items: center;
}

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

section.chambres .swiper-wrapper,
section.appartements .swiper-wrapper{
	padding-bottom: 60px;
}

section.chambres .swiper-button-next, 
section.chambres .swiper-button-prev,
section.appartements .swiper-button-next, 
section.appartements .swiper-button-prev{
	bottom: -0px;
	top: unset;
	right: 0;
	left: unset;
	border: 1px solid var(--mainColor);
	width: 44px;
	padding: 5px;
}

section.chambres .swiper-button-prev,
section.appartements .swiper-button-prev{
	right: unset;
	left: 0;
}

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

section.chambres .swiper-scrollbar,
section.appartements .swiper-scrollbar{
	width: 80%;
	background: var(--secondaryColor);
	margin: 15px 10%;
}

section.chambres .swiper-scrollbar-drag{
	background: var(--tertiary);
}

section.appartements .swiper-scrollbar-drag{
	background: #FFF;
}

.colonne .ti-widget.ti-goog .ti-name,
.colonne .ti-widget.ti-goog .ti-date{
	color: #FFF !important;
}

section.partenaires{
	max-width: 800px;
	margin:auto;
}

section.partenaires{
	max-width: 800px;
	margin:auto;
}

.swiper-wrapper{
	align-items: center;
}

/* #endregion */

/* #region FOOTER */

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

footer .logo{
	text-align: center;
	margin-bottom: 20px;
	display: flex;
    align-items: center;
	gap: 20px;
}

footer .logo hr{
	width: 50%;
}

footer .logo a{
    align-items: center;
	text-decoration: none;
}

footer .logo a:hover img,
footer .logo a:focus img{
	transform: scale(1.05);
	
}

footer .top-footer{
	background: linear-gradient(0deg, var(--mainColor) 80%, #FFF 80%);
}

footer .top-footer .img-footer{
	margin: 50px;
	padding: 50px;
	position: relative;
	background: #FFF;
}

footer .top-footer .img-footer .texte{
	color: #FFF;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

footer .top-footer .img-footer .texte h2{
	color: #FFF;
}

footer .top-footer .img-footer .texte .btn{
	color: var(--mainColor);
}

footer .top-footer .img-footer .texte .btn:hover{
	color: #FFF;
}

footer .top-footer .img-footer .texte .btn + .btn{
	color: #FFF;
}

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

footer .top-footer .container .menu-wrapper{
	display: flex;
	padding: 20px 0px;
	border-bottom: 1px solid #FFF;
}

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

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

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

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

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

footer .reseaux-sociaux{
    display: flex;
    gap: 15px;
}

footer .reseaux-sociaux a{
    display: flex;
	width: 20px;
	height: 20px;
    transition: all 0.15s ease 0s;
}

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

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

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

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

footer .sub-footer{
	background: var(--mainColor);
}

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

footer .sub-footer .container p,
footer .sub-footer .container a{
	color: #FFF;
}

footer .sub-footer .container a:hover,
footer .sub-footer .container a:focus{
	color: var(--tertiary);
}

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

.reseaux-logo{
	display: flex;
	gap: 20px;
	align-items: center;
}

/* #endregion FOOTER */


@media screen and (max-width: 1280px) {
	body{
		font-size: 0.95em;
		font-weight: 300;
	}

	header .menu-picto svg{
		width: 25px;
		height: 25px;
	}

	#carte,
	#carte iframe{
		height: 600px;
	}

	section.avantages .picto{
		height: 50px;
		display: flex;
        justify-content: center;
        align-items: center;
	}

	.paragraphe ul li::before{
		left: 35px;
    	margin-top: 5px;
	    width: 20px;
    	height: 20px;
	}
}


/* #region TABLETTE */

@media screen and (max-width: 1180px) {
	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;
		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{
		color: #fff;
		font-size: 1.4em;
		padding: 0px;
	}

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

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

	header .menu-picto{
		position: absolute;
		bottom: 20px;
		left: 0;
		right: 0;
		text-align: center;
		justify-content: center;
	}

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

	.retour-haut{
		bottom: 30px;
	}
	
	.select-categories{
		margin-bottom: 30px;
	}

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

	.paragraphe ul li::before{
		left: 25px;
	}

	section.chambres .swiper-scrollbar,
	section.appartements .swiper-scrollbar {
		width: 70%;
		margin: 15px 15%;
	}

	h2{
		font-size: 2em;
	}

	.btn + .btn{
		margin-top: 20px;
	}
}

@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: 1.6em;
		margin-bottom: 30px;
	}
	
	.paragraphe .colonnes.mobile-reverse{
		flex-direction: column-reverse;
	}

	.paragraphe .colonnes.mobile-reverse:has(.colonne-3-3){
		flex-direction: column;
	}

	.paragraphe .colonnes.mobile-reverse .colonne-3-2{
		order: 1;
	}

	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 .navigation .menu ul.sub-menu{    
		width: 100%;
	}

	.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: 50px 0px;
	}

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

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

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

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

	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 a.logo{
		display: table;
		margin: 0px auto 15px auto;
		width: 50%;
	}

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

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

	section.rassurances .liste-rassurances{
		flex-direction: column;
    	gap: 30px;
	}

	.wrapper-questions{
		gap: 0;
		flex-direction: column;
	}

	.faq .colonne-1,
	.faq .colonne-2,
	.vignette-article,
	section.chambres .colonne-1,
	section.chambres .colonne-2,
	section.appartements .colonne-1,
	section.appartements .colonne-2,
	.vignette-article .image,
	.vignette-article .texte{
		width: 100%;
	}

	.articles .container .liste-articles,
	footer .top-footer .container .menu-wrapper,
	.vignette-article a,
	section.chambres .colonnes,
	section.appartements .colonnes
	{
		flex-direction: column;
	}

	.vignette-article + .vignette-article{
		border: none;
	}

	.articles .bg{
		padding: 80px 30px;
	}

	.articles .titre{
		padding: 25px 10px;
	}

	footer .top-footer{
		background: var(--mainColor);
	}

	footer .top-footer .img-footer{
		margin: 0;
		padding: 0;
		background: transparent;
		padding-top: 30px;
	}

	footer .top-footer .img-footer .texte{
		position: unset;
		transform: unset;
	}

	footer .colonne + .colonne{
		margin-top: 30px;
	}
}

/* #endregion MOBILE */