@charset "UTF-8";

/* KIT UI - BASELIGHT THEME */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;700&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&amp;display=swap');

/* Couleurs principales */
:root {
    --color-gold: #E3D299;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray: #444444;
}

/* Typographies */
body {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.02em;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    line-height: 60px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    line-height: 45px;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    line-height: 45px;
}

p {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 200;
}

.TallTitle {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 50px;
    font-weight: 300;
    color: black;
    margin-bottom: 20px;
}

.MediumTitle {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    line-height: 40px;
    font-weight: 300;
    color: black;
    margin-bottom: 20px;
}

.SmallTitle {
    letter-spacing: 6px;
    font-size: 16px;
    font-family: 'Lexend', sans-serif;
    line-height: 30px;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
}

.mw-800 {
    max-width: 800px;
    margin: 0 auto;
}

.mw-900 {
    max-width: 900px;
    margin: 0 auto;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.relative {
    position: relative;
}

.container-1024 {
    max-width: 1024px;
}

/* Boutons */
.button {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--color-black);
    background: transparent;
    border: 1px solid var(--color-gold);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s linear;
}

.button:hover {
    /* font-style: italic; */
    /* background: var(--color-gold); */
    color: var(--color-black);
}

/* Bouton Réservation */
.button-reservation {
    background: var(--color-gray);
    color: var(--color-white);
    padding: 15px;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    text-align: center;
    font-size: 14px;
}

/* Boutons radio slider */
.radio-slider {
    display: flex;
    gap: 5px;
}

.radio-slider input[type="radio"] {
    width: 12px;
    height: 12px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    cursor: pointer;
}

.radio-slider input[type="radio"]:checked {
    background: var(--color-gold);
}

/* Bouton trait doré - gauche */
.button-underline {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #000000;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

.button-underline::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background-color: #e9bf50;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: transform 0.8s ease-out;
    transform: scaleX(1);
    transform-origin: left;
}

.button-underline:hover {
    color: #000000;
}

.button-underline:hover::after {
    transform: scaleX(0);
}

/* Bouton trait doré - centrer */
.button-underline-center {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #000000;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

.button-underline-center::after {
    content: "";
    display: block;
    width: 50%;
    height: 1px;
    background-color: #e9bf50;
    left: 25%;
    position: absolute;
    bottom: -8px;
    transition: transform 0.8s ease-out;
    transform: scaleX(1);
    transform-origin: center;
}

.button-underline-center:hover {
    color: #000000;
}

.button-underline-center:hover::after {
    transform: scaleX(0);
}

/* Bouton fond doré - centrer */
.button-fond-dore {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #000000;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
    background-color: #E3D299;
    padding: 10px 60px;
    border-radius: 50px;
    border: 2px solid #E3D299;
    transition: background 0.3s;
}

.button-fond-dore:hover {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #E3D299;
}

/* Bouton effet hover italic */
.small-button {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: black;
    text-decoration: none;
    display: inline-block;
    padding-bottom: 5px;
}

.small-button:hover {
    color: #000000;
}

/* Flèches Slider */
.slider-arrow {
    font-size: 20px;
    color: var(--color-gold);
    cursor: pointer;
}

/* Lien Hover */
a {
    text-decoration: none;
    color: var(--color-black);
}

a:hover {
    /* font-style: italic;
    font-weight: bold; */
    color: #AB9044;
}

.jumbotron.home {
    position: relative;
    height: 100vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.jumbotron.home a.logo-relay {
    display: block;
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 75px;
    margin-left: -32px;
    z-index: 9;
}

.img-loader {
    display: block;
    position: fixed;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: 99999999;
}

.img-loader img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Header */
header {
    z-index: 99;
    transition: all 0.2s linear;
}

header .header {
    max-width: 95%;
    margin: auto;
}

header img.logo {
    filter: brightness(0) invert(1);
}

header .header-menu a,
header .header-menu li {
    color: #FFFFFF;
}

header .header-menu .button {
    color: var(--color-white);
    border: 1px solid var(--color-white);
}


/* Header Left Section */
.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu_trigger {
    width: 40px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1051;
}

.menu_trigger div {
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    opacity: 1;
    transition: all 0.2s linear;
}

.menu_trigger div.line-3 {
    width: 66%;
}

.menu_trigger.active div.line-3 {
    opacity: 0;
}

.menu_trigger.active div.line-1 {
    transform: rotate(45deg) translateY(10px);
    background: var(--color-black);
}

.menu_trigger.active div.line-2 {
    transform: rotate(-45deg) translateY(-10px);
    background: var(--color-black);
}

.lang-selector {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    cursor: pointer;
    background: transparent;
    color: var(--color-white);
}

.lang-selector:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.lang-selector select {
    border: none;
    background: transparent;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    cursor: pointer;
}

header .header-left a,
header .header-left li a,
header .header-left li {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    color: var(--color-white);
    text-decoration: none;
}

header .header-left a:hover {
    text-decoration: underline;
}

header .header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 15px;
}

header .header-right a {
    color: var(--color-white);
    border-color: var(--color-white);
}

/* header White */
header.header-white {
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0px 3px 6px #00000029;
}

header.header-white img.logo {
    filter: brightness(1) invert(0);
}

header.header-white .header-menu a,
header.header-white .header-menu li {
    color: var(--color-black);
}

header.header-white .header-menu .button {
    color: var(--color-black);
    border: 1px solid var(--color-black);
}

header.header-white .header-left a,
header.header-white .header-left li a,
header.header-white .header-left li {
    color: var(--color-black)
}

header.header-white .menu_trigger div {
    width: 100%;
    height: 2px;
    background: var(--color-black);
    border-radius: 2px;
    opacity: 1;
    transition: all 0.2s linear;
}

header.header-white .header-right a {
    color: var(--color-black);
    border-color: var(--color-black);
}

header.header-white .lang-selector {
    border: 1px solid var(--color-black);
    color: var(--color-black);
}

header.header-white .menu_trigger div.line-3 {
    width: 66%;
}

/* Menu full screen */
.menu-full-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-white);
    z-index: 1050;
    display: flex;
    gap: 0px;
    opacity: 0;
    transition: all 0.3s linear;
    flex-direction: row;
    justify-content: flex-start;
}

.menu-full-screen.active {
    opacity: 1;
}

.menu-full-screen .v-left {
    height: 100vh;
    width: 25vw;
}

.menu-full-screen img.logo {
    filter: none;
}

.menu-full-screen .v-right {
    background-color: var(--color-white);
    height: 100vh;
    padding: 0px;
    width: 75vw;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.menu-full-screen .v-right div {
    position: absolute;
    left: 0;
    display: none;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
}

.menu-full-screen .v-right div img {
    position: relative;
    height: 115vh;
}

.menu-full-screen .button {
    border-color: var(--color-black);
}

.menu-full-screen #cssmenu {
    max-width: 320px;
    margin: auto;
    margin-top: 40px;
}

.menu-full-screen #cssmenu>ul {
    flex-direction: column;
}

.menu-full-screen #cssmenu>ul>li>a {
    font-size: 25px;
    line-height: 1.2;
    text-transform: none;
    font-weight: 400;
}

.menu-full-screen #cssmenu a:hover,
.menu-full-screen #cssmenu li:hover a,
.menu-full-screen #cssmenu li ul li a:hover {
    font-style: normal;
    color: var(--color-gold);
}

.menu-full-screen #cssmenu li:hover ul li a {
    font-style: normal;
    color: var(--color-black);
}

.menu-full-screen #cssmenu #item-102 a,
.menu-full-screen #cssmenu #item-103 a,
.menu-full-screen #cssmenu #item-37 a {
    font-size: 14px;
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    line-height: 6px;
}

/* Homepage hero */
#HomeVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-home-title {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-home-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.post-id-1 .hero-home-title::before {
    background: rgba(0, 0, 0, 0);
}

.palmier-background::before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    width: 212px;
    height: 600px;
    z-index: 5;
    background: url(../png/palmier.png) no-repeat;
    background-size: cover;
}

/* accueil - masonry */
.masonry-five .zoom-container {
    position: relative;
    overflow: hidden;
}

.masonry-five .zoom-container img {
    transition: transform 0.7s ease;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.masonry-five .zoom-container:hover img {
    transform: scale(1.2);
}

.masonry-five .overlay-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 28px;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Playfair Display', serif;
    z-index: 2;
    font-style: normal;
    font-weight: 100;
    white-space: nowrap;
}

.masonry-five .row.g-2 {
    margin-bottom: 10px;
}

.masonry-five .text-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1
}

.masonry-five .overlay-text,
.hover-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    white-space: nowrap;
    z-index: 2
}

.masonry-five .hover-text {
    top: 55%;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: "Lexend", serif;
    font-weight: 200;
}

.masonry-five .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.masonry-five .zoom-container:hover .hover-text {
    opacity: 1;
}

.fleur-rouge-background::before {
    content: "";
    position: absolute;
    top: 35%;
    left: -163px;
    transform: translateY(-50%);
    width: 400px;
    height: 320px;
    z-index: -1;
    background: url(../png/fleur.png) no-repeat center;
    background-size: contain;
}

/* FIN accueil - masonry */


/* accueil - slider full width */
.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.slick-hero {
    width: 100%;
    min-height: 70vh;
}

.hero-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    position: relative;
}

.overlay {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    max-width: 700px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
}

.hero-content {
    color: #000;
    padding: 20px 0;
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-dots .slick-dots {
    position: relative;
    bottom: 0;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #c4a47c;
    opacity: 1;
}

.slick-dots .slick-active button {
    background-color: #c4a47c;
}

/* FIN accueil - slider full width */

/* accueil - bloc texte slider */
.fleur-rose-background::before {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    transform: translateY(-50%);
    width: 308px;
    height: 450px;
    z-index: -1;
    background: url(../png/fleur-rose.png) no-repeat;
    background-size: cover;
}

.citron-background::before {
    content: "";
    position: absolute;
    top: 30%;
    left: -200px;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    z-index: -1;
    background: url(../png/citron.png) no-repeat center;
    background-size: contain;
}

.cactus-background::before {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    transform: translateY(-50%);
    width: 178px;
    height: 430px;
    z-index: -1;
    background: url(../png/cactus.png) no-repeat;
    background-size: cover;
}

.slider-for img {
    width: 100%;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.slider-dots .slick-dots {
    position: relative;
    bottom: 70px;
}

.slick-dots li button {
    width: 15px !important;
    height: 15px !important;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #c4a47c;
    opacity: 1;
    background: #ffffff !important;
}

.slick-dots li button:before {
    opacity: 0 !important;
}

.slick-dots .slick-active button {
    background: #E3D199 !important;
}

.slick-dots li.slick-active button:before {
    opacity: 0 !important;
}

.slider-suites {
    display: flex;
}

.suite-item {
    padding: 10px;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    font-size: 24px;
    color: #c4a47c;
}

.slick-prev {
    left: -40px;
}

.slick-next {
    right: -40px;
}

/* FIN accueil - bloc texte slider */


/* slider de 4 blocs chambres */
.zoom-container {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.zoom-container img {
    transition: transform 0.5s ease;
    width: 100%;
}

.zoom-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
    z-index: 9;
}

.text-container {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    width: 100%;
    z-index: 10;
}

.slider-suite-section .overlay-text {
    font-family: 'Playfair Display', serif;
    font-size: 27px;
    line-height: 37px;
    color: #ffffff;
    font-weight: 100;
    text-transform: uppercase;
}

.slider-suite-section .overlay-subtext {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    color: #ffffff;
    font-weight: 200;
}

.overlay-subtext p {
    color: #fff;
}

.slider-suites {
    display: flex;
}

.suite-item {
    padding: 10px;
}

.slider-suite-section .slick-prev,
.slider-suite-section .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 60px;
    height: 60px;
    background: white;
    border: 1px solid #E3D299;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.slider-suite-section .slick-prev:hover,
.slider-suite-section .slick-next:hover {
    background: white;
}

.slider-suite-section .slick-prev {
    left: -30px;
}

.slider-suite-section .slick-next {
    right: -30px;
}

.slider-suite-section .slick-prev::before,
.slider-suite-section .slick-next::before {
    content: '' !important;
    display: block;
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
}

.slider-suite-section .slick-prev::before {
    background-image: url('../svg/fleche-gauceh-2.svg');
}

.slider-suite-section .slick-next::before {
    background-image: url('../svg/fleche-gauceh-2.svg');
    transform: rotate(180deg);
}

.plus-button {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #E3D299;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

.plus-button::before {
    content: '+';
    font-size: 24px;
    font-weight: 200;
    color: #E3D299;
    font-family: 'Lexend';
}

/* FIN slider de 4 blocs chambres */



/* accueil - section mariages et evenements */
.parallax-section {
    position: relative;
    width: 100%;
    height: 600px;
    background: url('../jpg/la-chevre-d-or-mariage.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    /* Effet parallax */
}

.parallax-section .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    max-width: 700px;
    text-align: center;
}

.parallax-section .hero-content {
    text-align: center;
    color: black;
}

/* END accueil - section mariages et evenements */


/* histoire */
.arbre-background::before {
    content: "";
    position: absolute;
    top: 4%;
    left: -158px;
    transform: translateY(-50%);
    width: 389px;
    height: 381px;
    z-index: -1;
    background: url(../png/arbre.png) no-repeat;
    background-size: cover;
}

.palm-background::before {
    content: "";
    position: absolute;
    top: 0%;
    right: 0;
    transform: translateY(-50%);
    width: 388px;
    height: 709px;
    z-index: -1;
    background: url(../png/palm.png) no-repeat;
    background-size: cover;
}

.citron-jaune-background::before {
    content: "";
    position: absolute;
    top: 4%;
    left: -118px;
    transform: translateY(-50%);
    width: 415px;
    height: 441px;
    z-index: -1;
    background: url(../png/citron-jaune.png) no-repeat;
    background-size: cover;
}

.hero-title {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.contain-hero {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 100%;
}

.contain-hero .TallTitle {
    color: #FFFFFF;
}

.contain-hero .SmallTitle {
    color: #FFFFFF;
}

.texte-star {
    margin-top: 260px;
}

.titre-intro {
    color: #E3D299;
    font-size: 30px;
    font-family: 'Playfair Display', serif;
}

/* END histoire */

/* expériences */
.rose-experience-background::before {
    content: "";
    position: absolute;
    top: 20%;
    left: -139px;
    transform: translateY(-50%);
    width: 325px;
    height: 321px;
    z-index: -1;
    background: url(../png/rose-seule.png) no-repeat;
    background-size: cover;
}

.arbre-experience-background::before {
    content: "";
    position: absolute;
    display: block;
    top: 35%;
    right: 0px;
    transform: translateY(-50%);
    width: 302px;
    height: 600px;
    z-index: 5;
    background: url(../png/arbre-suite.png) no-repeat;
    background-size: cover;
}

p.title-experience {
    font-family: 'Playfair Display', serif !important;
    font-size: 27px !important;
    font-weight: 100;
    font-weight: normal !important;
    text-transform: uppercase;
}

/* END expériences */


/* art de vivre */
.roses-background::before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    width: 220px;
    height: 530px;
    z-index: 9;
    background: url(../png/roses.png) no-repeat;
    background-size: cover;
}

.fleur-violette-background::before {
    content: "";
    position: absolute;
    top: 19%;
    left: -73px;
    transform: translateY(-50%);
    width: 415px;
    height: 441px;
    z-index: -1;
    background: url(../png/fleur-violette.png) no-repeat;
    background-size: cover;
}

.slider-jardins {
    width: 100%;
    min-height: 70vh;
}

.jardins-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    position: relative;
}

.jardins-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.jardins-dots .slick-dots {
    position: relative;
    bottom: 0;
}

.citation {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    line-height: 45px;
}

.nom-citation {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    line-height: 45px;
}

.post-citation {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.plante-rouge-background::before {
    content: "";
    position: absolute;
    display: block;
    top: 34%;
    right: 0px;
    transform: translateY(-50%);
    width: 250px;
    height: 530px;
    z-index: 9;
    background: url(../png/plante-rouge.png) no-repeat;
    background-size: cover;
}

.palmier-gauche-background::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -116px;
    transform: translateY(-50%);
    width: 319px;
    height: 560px;
    z-index: -1;
    background: url(../png/palmier-gauche.png) no-repeat;
    background-size: cover;
}

/* END art de vivre */

/* CHAMBRES ET SUITES */
.roses-couleurs-background::before {
    content: "";
    position: absolute;
    display: block;
    top: 2%;
    right: 0px;
    transform: translateY(-50%);
    width: 225px;
    height: 440px;
    z-index: 9;
    background: url(../png/roses-couleurs.png) no-repeat;
    background-size: cover;
}

.rose-seule-chambre-background::before {
    content: "";
    position: absolute;
    top: 85%;
    left: -139px;
    transform: translateY(-50%);
    width: 325px;
    height: 321px;
    z-index: -1;
    background: url(../png/rose-seule.png) no-repeat;
    background-size: cover;
}

/* END CHAMBRES ET SUITES */

/* mariages et événements */
.rose-seule-background::before {
    content: "";
    position: absolute;
    top: 96%;
    left: -139px;
    transform: translateY(-50%);
    width: 361px;
    height: 363px;
    z-index: -1;
    background: url(../png/rose-seule.png) no-repeat;
    background-size: cover;
}

/* END mariages et événements */

/* mariages */
.fleurs-mariages-background::before {
    content: "";
    position: absolute;
    display: block;
    top: 80%;
    right: 0px;
    transform: translateY(-50%);
    width: 280px;
    height: 530px;
    z-index: 9;
    background: url(../png/fleurs-mariages.png) no-repeat;
    background-size: cover;
}

.fleur-fushia-background::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -110px;
    transform: translateY(-50%);
    width: 361px;
    height: 335px;
    z-index: -1;
    background: url(../png/fleur-fushia.png) no-repeat;
    background-size: cover;
}

.roses-mariages-background::before {
    content: "";
    position: absolute;
    display: block;
    top: 42%;
    right: 0px;
    transform: translateY(-50%);
    width: 349px;
    height: 530px;
    z-index: 9;
    background: url(../png/roses-mariage.png) no-repeat;
    background-size: cover;
}

/* END mariages */

/* événements et réunions */
.rose-rose-background::before {
    content: "";
    position: absolute;
    display: block;
    top: 60%;
    right: 0px;
    transform: translateY(-50%);
    width: 207px;
    height: 310px;
    z-index: 9;
    background: url(../png/rose-rose.png) no-repeat;
    background-size: cover;
}

.rose-mauve-background::before {
    content: "";
    position: absolute;
    top: -2%;
    left: -95px;
    transform: translateY(-50%);
    width: 333px;
    height: 360px;
    z-index: -1;
    background: url(../png/rose-mauve.png) no-repeat;
    background-size: cover;
}

/* END événements et réunions */

/* BLOG */
.blog-section {
    padding-bottom: 100px;
}

.blog-row {
    display: flex;
    align-items: stretch;
}

.blog-item {
    background: white;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 354px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: auto;
}

.blog-item:hover {
    transform: translateY(-5px);
}

.blog-item img {
    width: 100%;
    border-bottom: 4px solid transparent;
}

.blog-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-bottom: 0px;
}

.blog-date {
    font-family: 'Lexend', sans-serif;
    color: #E3D299;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 0px;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px !important;
    color: black;
    margin-top: 0px;
    letter-spacing: 0.5px;
}

/* END BLOG */


/* CHAMBRES */
.hero-slider-chambre {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-carousel-chambre {
    width: 100%;
    height: 100%;
    display: block !important;
    visibility: visible !important;
}

.hero-slide-chambre {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh !important;
    display: block !important;
    visibility: visible !important;
}

.overlay-chambre {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.contain-hero-chambre {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 9;
    width: 100%;
}

.hero-slider-chambre .SmallTitle {
    color: #ffffff;
}

.hero-slider-chambre .TallTitle {
    color: #ffffff;
}

/* Styles des puces */
.hero-dots-chambre {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dots-chambre .slick-dots {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-dots-chambre .slick-dots li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.hero-dots-chambre .slick-dots .slick-active {
    background: #E3D299;
    opacity: 1;
}


.intro-suite p {
    font-size: 20px;
    font-family: 'Playfair Display', serif;
}

.picto-chambres p {
    font-size: 12px;
    text-align: center;
    line-height: 18px;
    margin-top: 10px;
    font-weight: 400;
}

.picto-chambres img {
    width: 76px;
    display: block;
    margin: auto;
}

.arbre-suite-background::before {
    content: "";
    position: absolute;
    display: block;
    top: 92%;
    right: 0px;
    transform: translateY(-50%);
    width: 302px;
    height: 600px;
    z-index: 5;
    background: url(../png/arbre-suite.png) no-repeat;
    background-size: cover;
}

.button-border-center {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #000000;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
    border: 1px solid #E3D299;
    border-radius: 40px;
    padding: 14px 60px;
}

.button-border-center:hover {
    color: #000000;
}

.evenements-reunions .button-border-center {
    margin-top: 40px;
}

.equipements-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0;
    position: relative;
    margin-top: 100px;
}

.overlay-suite {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.equipements-section .container {
    position: relative;
    z-index: 2;
}

.equipements-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: white;
    text-align: center;
    font-weight: 300;
    margin-bottom: 40px;
}

.equipement-item img {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}

.equipement-item p {
    font-family: 'Lexend', sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: white;
    font-weight: 300;
}

.palmier-chambre-background::before {
    content: "";
    position: absolute;
    top: 64%;
    left: -116px;
    transform: translateY(-50%);
    width: 298px;
    height: 464px;
    z-index: -1;
    background: url(../png/palmier-gauche.png) no-repeat;
    background-size: cover;
}

.image-container {
    position: relative;
    width: 100%;
}

.large-image {
    width: 75%;
}

.small-image {
    position: absolute;
    top: 20%;
    left: 40%;
    width: 60%;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

/* 3 blocs Effet Hover */
.three-column-hover {
    padding: 50px 0;
}

.three-column-hover .hover-box {
    position: relative;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* Assurer une hauteur uniforme */
}

.three-column-hover .hover-box img {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease;
    height: 100%;
    object-fit: cover;
    /* Empêche les distorsions */
}

.three-column-hover .plus-button {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #E3D299;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    transition: opacity 0.3s ease;
}

.three-column-hover .plus-button::before {
    content: '+';
    font-size: 24px;
    font-weight: bold;
    color: #E3D299;
}

.three-column-hover .hover-title {
    position: absolute;
    top: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    color: white;
    z-index: 9;
    transition: color 0.3s ease-in-out;
}

.post-id-36 .three-column-hover .hover-title {
    font-size: 28px;
    top: 50px;
}

.post-id-36 .three-column-hover .hover-small-title {
    top: 100px;
}

.three-column-hover .hover-small-title {
    position: absolute;
    top: 60px;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: white;
    z-index: 9;
    transition: color 0.3s ease-in-out;
    text-align: center;
}

/* Texte en mode hover */
.three-column-hover .hover-content {
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.three-column-hover .hover-content p {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    font-weight: 200;
    margin: 12px 0;
}

/* Effet Hover : suppression du + et affichage du texte */
.three-column-hover .hover-box:hover img {
    opacity: 0;
}

.three-column-hover .hover-box:hover .plus-button {
    opacity: 0;
}

.three-column-hover .hover-box:hover .hover-content {
    opacity: 1;
}

.three-column-hover .hover-box:hover .hover-title {
    color: black;
}

.post-id-44 .three-column-hover .hover-box:hover .hover-small-title {
    color: black;
}

.post-id-36 .three-column-hover .hover-box:hover .hover-small-title {
    color: black;
}

.three-column-hover .hover-item:hover .hover-content {
    opacity: 1;
}

.three-column-hover .hover-item:hover img {
    opacity: 0;
}

.three-column-hover .hover-item:hover .plus-button {
    display: none;
}


/* END CHAMBRES */


/* BIEN ETRE */
.image-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.image-container img {
    width: 100%;
    display: block;
}

.centered-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #E3D299;
    color: black;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    padding: 12px 40px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.centered-button:hover {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #E3D299;
    font-weight: 400;
}

/* end BIEN ETRE */



/* RESTAURANTS */
.post-id-73 .roses-restaurant-background::before {
    content: "";
    position: absolute;
    display: block;
    top: 20%;
    right: 0px;
    transform: translateY(-50%);
    width: 322px;
    height: 467px;
    background: url(../png/roses-couleurs.png) no-repeat;
    z-index: 9;
    background-size: cover;
}

.post-id-33 .roses-restaurant-background::before {
    content: "";
    position: absolute;
    display: block;
    top: 20%;
    right: 0px;
    transform: translateY(-50%);
    width: 177px;
    height: 295px;
    z-index: 9;
    background: url(../png/citron-restaurant.png) no-repeat center;
    background-size: cover;
}

.post-id-32 .roses-restaurant-background::before {
    content: "";
    position: absolute;
    display: block;
    top: 94%;
    right: -35px;
    transform: translateY(-50%);
    width: 203px;
    height: 318px;
    z-index: 9;
    background: url(../png/plante-feuille.png) no-repeat center;
    background-size: cover;
}

.post-id-34 .roses-restaurant-background::before {
    content: "";
    position: absolute;
    display: block;
    top: 139%;
    right: 0px;
    transform: translateY(-50%);
    width: 163px;
    height: 377px;
    z-index: 5;
    background: url(../png/arbuste.png) no-repeat;
    background-size: cover;
}



.post-id-34 .fleur-fushia-background::before,
.post-id-33 .fleur-fushia-background::before,
.post-id-39 .fleur-fushia-background::before {
    background-image: none;
    width: 0;
    height: 0;
}


.logo-restaurant img {
    width: 280px;
    margin: auto;
    display: block;
}

.image-container-restau img {
    width: 70%;
    display: block;
    position: relative;
}

.image-container-restau .large-image {
    width: 100%;
    max-width: 500px;
}

.image-container-restau .small-image-right {
    position: absolute;
    top: 25%;
    left: 66%;
    width: 100%;
    max-width: 400px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.image-container-restau .small-image-left {
    position: absolute;
    top: 28%;
    left: 2%;
    width: 100%;
    max-width: 400px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.nouveau {
    text-align: center;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, -100%);
    display: flex;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    background-color: #E3D299;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
    width: 200px;
    text-transform: uppercase;
    font-weight: 300;
    padding: 6px;
}

.intro-restau p {
    font-size: 16px;
    font-family: 'Lexend', sans-serif;
    font-weight: 200;
}

.citron-restau-background::before {
    content: "";
    position: absolute;
    display: block;
    top: 21%;
    right: 0px;
    transform: translateY(-50%);
    width: 201px;
    height: 377px;
    z-index: 5;
    background: url(../png/citron-restau.png) no-repeat;
    background-size: cover;
}

.bloc-restau .button-border-center {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
    border: 1px solid #E3D299;
    border-radius: 40px;
    padding: 14px 60px;
    margin-top: 120px;
}

.cactus-patisserie-background::before {
    content: "";
    position: absolute;
    display: block;
    top: 163%;
    right: 0px;
    transform: translateY(-50%);
    width: 237px;
    height: 387px;
    background: url(../png/cactus-gourmand.png) no-repeat;
    z-index: 9;
    background-size: cover;
}

/* END RESTAURANTS */


/* ////////////////////////////////////// Fiche Produit ///////////////////////////// */
/* OFFRE ET SEJOUR */

.parallax-section-offre {
    position: relative;
    width: 100%;
    height: 600px;
    background: url('../jpg/restaurant-offres-et-sejours-chevre-d-or-867.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    /* Effet parallax */
}


.nav-tabs .nav-link {
    background-color: #E3D299;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0px;
    font-size: 16px;
    padding: 10px 60px;
}

.cactus-experience-background::before {
    content: "";
    position: absolute;
    display: block;
    top: 168%;
    right: 0px;
    transform: translateY(-50%);
    width: 283px;
    height: 502px;
    background: url(../png/cactus-experience.png) no-repeat;
    z-index: 9;
    background-size: cover;
}

.product-details-carte {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 20px #00000029;
    padding: 30px;
    max-width: 420px;
    display: block;
    margin: auto;
}

.product-details-carte p {
    line-height: 22px;
    margin-bottom: 9px;
}

.product-details-carte .button-border-center {
    margin-top: 18px;
    margin-bottom: 10px !important;
}

.intro-produit p {
    font-family: 'Playfair Display';
    font-size: 20px !important;
    color: #000000;
}

/* END OFFRE ET SEJOUR */


/* RECRUTEMENT */
.feuille-recrutement-background::before {
    content: "";
    position: absolute;
    display: block;
    top: 54%;
    right: 0px;
    transform: translateY(-50%);
    width: 155px;
    height: 310px;
    z-index: 9;
    background: url(../png/feuille-recrutement.png) no-repeat;
    background-size: cover;
}

.fleur-recrutement-background::before {
    content: "";
    position: absolute;
    top: -4%;
    left: -74px;
    transform: translateY(-50%);
    width: 197px;
    height: 406px;
    z-index: -1;
    background: url(../png/fleur-recrutement.png) no-repeat;
    background-size: cover;
}

/* END RECRUTEMENT */


/* CONTACT */
.titre-service {
    letter-spacing: 4px;
    font-size: 16px;
    font-family: 'Lexend', sans-serif;
    line-height: 30px;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.nom-service {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 300;
    color: black;
}


.acces-contact a:hover {
    color: #000000;
}

/* END CONTACT */

/* informations et service */
.equipements-section .SmallTitle {
    color: #FFFFFF;
}

.equipements-section .TallTitle {
    color: #FFFFFF;
}

.texte-partenaires {
    font-size: 12px;
    text-align: center;
    line-height: 18px;
    margin-top: 10px;
    font-weight: 400;
    letter-spacing: 3Px;
    font-family: 'Lexend', sans-serif;
}

.picto-partenaires img {
    width: 96px;
    display: block;
    margin: auto;
}

.cactus-informations-background::before {
    content: "";
    position: absolute;
    top: 23%;
    left: -220px;
    transform: translateY(-50%);
    width: 349px;
    height: 463px;
    z-index: -1;
    background: url(../png/cactus-informations.png) no-repeat;
    background-size: cover;
}

.rose-informations-background::before {
    content: "";
    position: absolute;
    display: block;
    top: -34%;
    right: 0px;
    transform: translateY(-50%);
    width: 149px;
    height: 310px;
    z-index: 9;
    background: url(../png/rose-informations.png) no-repeat;
    background-size: cover;
}

.informations-service .hero-slider {
    height: 80vh;
}

.equipement-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 20px;
}

.informations-service .equipement-item p {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: white;
    font-weight: 200;
    max-width: 480px;
}

/* END informations et service */

/* réservation restaurant */
.reservation-restaurant .centered-button {
    z-index: 9;
}

.reservation-restaurant .slider-suite-section {
    max-width: 1024px;
}

.restaurant-reservation .centered-button,
.restaurantreservierung .centered-button {
    z-index: 9;
}

/* END réservation restaurant */

/* ///////////////// FAKE FEED INSTA ///////////////////////////// */
.overlay-insta {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    transition: all 0.2s linear;
}

.img-insta:hover .overlay-insta {
    opacity: 1;
}

.overlay-insta i {
    position: absolute;
    color: #fff;
    font-size: 32px;
    top: 50%;
    margin-top: -16px;
    left: 50%;
    margin-left: -16px !important;
}

#insta-slider .slick-dots {
    bottom: 0px;
}

/* ///////////////////////// widget-cta //////////////////////////// */

/* OLD */


/* NEW */


/* NEW */

#iso-filter button,
#iso-filter a {
    border: none;
    background: transparent;
    font-family: 'Lexend';
    text-transform: uppercase;
    color: #000;
    font-weight: 400;
    letter-spacing: 3.5px;
    font-size: 12px;
    padding: 0 15px;
}



#iso-filter button.active-filter,
#iso-filter a.active-filter {
    color: #E3D299;
}


/* /////////////////// footer ///////////////////////////////// */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 0;
    font-family: 'Playfair Display', serif;
}

footer .text-gold {
    font-size: 28px !important;
    font-family: 'Lexend';
    opacity: 1;
    color: #AB9044;
}

footer .border-gold {
    border-color: #E3D299;
}

footer h2,
footer h4,
footer h5 {
    font-weight: normal;
}

footer h4 {
    color: #FFFFFF;
    font-size: 30px;
}

footer h5.mt-3 {
    color: #FFFFFF;
    font-size: 20px;
}

footer h5 {
    color: #ffffff;
    font-family: "Lexend", serif;
    font-weight: 300;
}

footer p,
footer li,
footer a {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
}

footer .contact a {
    color: #ffffff;
}

footer .contact a:hover {
    color: #ffffff;
}

footer ul.list-unstyled {
    text-align: left;
}

footer ul.list-unstyled li {
    margin-bottom: 10px;
    font-size: 20px;
}

footer ul.list-unstyled li a:hover {
    text-decoration: underline;
    color: #E3D299;
}

footer .social-icons i {
    color: #ffffff;
    transition: color 0.3s;
}

footer .social-icons i:hover {
    color: #E3D299;
}

footer .input-group .form-control {
    border-radius: 0;
    border: 1px solid #ffffff;
}

footer .form-control::placeholder {
    color: #000000;
    font-family: "Lexend", serif;
    font-size: 14px;
    font-weight: 100;
}

footer .input-group .btn {
    background-color: #ffffff;
    border-radius: 0;
    font-family: "Lexend", serif;
    color: #1a1a1a;
    font-size: 14px;
    border: none;
    font-weight: 100;
}

footer .input-group .btn:hover {
    background-color: #c9b678;
}

footer .input-group {
    width: 70%;
}

footer .contact hr.border-gold {
    width: 40%;
}

footer .contact h5 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
}

footer hr.border-gold {
    border-top: 1px solid #E3D299;
    width: 100%;
    margin: 10px auto;
    opacity: 1;
}

footer img.mb-3 {
    width: 220px;
}

footer p:last-child {
    font-size: 14px;
    opacity: 0.8;
}

footer .fa-lg {
    font-size: 24px;
}

footer p.mentions a {
    font-family: "Lexend", serif;
    margin-left: 50px;
    margin-right: 50px;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    /* ideally, transition speed should match zoom duration */
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-bg {
    background-color: white !important;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #b79640;
}

.mfp-arrow {
    background-image: url(../svg/fleche-gauceh-2.svg) !important;
    border: none !important;
    margin-right: 20px;
}

.mfp-arrow-right {
    transform: rotate(180deg);
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b,
.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b,
.mfp-arrow-left:after,
.mfp-arrow-left .mfp-b,
.mfp-arrow-right:after,
.mfp-arrow-right .mfp-b {
    border: none;
}

.grid {
    margin: -10px;
}

.element-item {
    padding: 15px;
    box-sizing: border-box;
    display: block;
}

.element-item img {
    width: 100%;
    height: auto;
    display: block;
}

.element-item,
.grid-sizer {
    width: calc(33.3333% - 30px);
    /* 10px padding gauche + 10px droite */
}