* {
    box-sizing: border-box;
}


:root {
    --noir : rgb(0,0,0);
    --noirmat: rgb(35,34,33);
    --orfonce: rgb(149,134,97);
    --or: rgb(149,134,97);
    --beige: rgb(247,246,240);
    --mauve: rgb(167,145,141);
    --mauvepale: rgb(232,226,225);
}

body {
    font-size: 15px;
    line-height: 28px;
    font-weight: 300;
    font-family: "Poppins";
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
    font-family: "Blair";
    font-weight: 500;
    text-rendering: optimizeLegibility;
} 


.social {
	position: relative;
	top: 0;
	z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    column-gap: 7px;
}
.social .ico {
	display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
	opacity: 1;
    color: var(--noirmat);
    width: 35px;
    height: 35px;
    background-color: var(--orfonce);
    text-decoration: none;
}
.social .ico i {
    font-size: 20px;
}

.social .ico:hover {
	color: var(--orfonce);
    background-color: #FFF;
}

/* =============================================== STRIP MENU ================================= */


header {
	display: block;
	padding: 0;
	margin: 0;
	/* border-bottom: solid 1px rgba(0,0,0,0.05); */
	position: fixed;
	width: 100%;
	z-index: 100;
    top: 0;
    left: 0;
    padding-left: 35px;
    padding-right: 35px;
    transition: all 250ms cubic-bezier(0.25, 1, 0.5, 1);
}


header.scroll {
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}

body.light header {
    background-color: #fff;
}


header .wrapper-menu {
	
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    column-gap: 10px;
    padding-top: 15px;
	padding-bottom: 15px;
	position: relative;
    z-index: 3;
	/*box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);*/
}

header .wrapper-menu .wrapper-flags {
    display: none;
}

body.light header .wrapper-menu,
header.open .wrapper-menu {
    border-bottom: solid 1px var(--noirmat);
}



header .wrapper-menu .logo {
    flex-grow: 0;
    flex-shrink: 0;
}

header .wrapper-menu .logo a {
    display: block;
    height: 70px;
    width: auto;
    transition: all 250ms cubic-bezier(0.25, 1, 0.5, 1);
}

header.scroll .wrapper-menu .logo a {
    height: 50px;
}



body.light header .wrapper-menu .logo a.blanc,
header.scroll .wrapper-menu .logo a.blanc,
header.open .wrapper-menu .logo a.blanc {
    display: none;
}
body.light header .wrapper-menu .logo a.noir,
header.scroll .wrapper-menu .logo a.noir,
header.open .wrapper-menu .logo a.noir {
    display: block;
}

header .wrapper-menu .logo a.blanc {
    display: block;
}
header .wrapper-menu .logo a.noir {
    display: none;
}


header .wrapper-menu .logo a img {
    display: block;
    width: auto;
    height: 100%;
}


header .wrapper-menu .menu {
	position: relative;
	z-index: 1;
    width: 100%;
    flex-grow: 1;
    flex-shrink: 1;
}
header .wrapper-menu .menu a {
	display: flex;
	flex-direction: row;
    align-items: center;
    justify-content: flex-start;
	cursor: pointer;
    column-gap: 15px;
}

header .wrapper-menu .menu a figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 250ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    height: 40px;
    row-gap: 8px;
}
header .wrapper-menu .menu a:hover figure {
    row-gap: 2px;
}


header .wrapper-menu .menu a .line {
    display: block;
    width: 28px;
    height: 2px;
    background-color: rgb(255,255,255);
}

body.light header .wrapper-menu .menu a .line,
header.scroll .wrapper-menu .menu a .line,
header.open .wrapper-menu .menu a .line {
    background-color: var(--noirmat);
}

header .wrapper-menu .menu a .libelle {
	display: block;
	font-size: 12px;
	line-height: normal;
    font-weight: 400;
    letter-spacing: 1px;
    transition: transform 300ms cubic-bezier(0.19, 1, 0.22, 1);
    color: rgb(255,255,255);
}

body.light header .wrapper-menu .menu a .libelle,
header.scroll .wrapper-menu .menu a .libelle,
header.open .wrapper-menu .menu a .libelle {
    color: var(--noirmat);
}

header .wrapper-menu .menu a:hover .libelle {
    transform: translateX(5px);
}


header .wrapper-menu .topbar  {
    background-color: rgba(0,0,0,0.1);
}

header .wrapper-menu .topbar nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    column-gap: 10px;
    flex-wrap:nowrap;
    list-style-type: none;
}

header .wrapper-menu .topbar nav ul li {
    display: block;
    padding: 0;
    margin: 0;
}

header .wrapper-menu .topbar nav ul li a {
    display: block;
}



header .wrapper-menu .mainbar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

header .wrapper-menu .mainbar nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    column-gap: 10px;
    flex-wrap:nowrap;
    list-style-type: none;
}

header .wrapper-menu .mainbar nav ul li {
    display: block;
    padding: 0;
    margin: 0;
}

header .wrapper-menu .mainbar nav ul li a {
    display: block;
}

header .wrapper-menu .rightbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    column-gap: 35px;
    width: 100%;
    flex-grow: 1;
    flex-shrink: 1;
}

header .wrapper-menu .flags {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .wrapper-menu .flags a {
    display: block;
    text-decoration: none;
    color: #FFF;
    padding: 7px 15px;
    font-family: "Blair";
    font-weight: 600;
    font-size: 12px;
    line-height: normal;
    border-right: solid 1px #FFF;
}

body.light header .wrapper-menu .flags a,
header.scroll .wrapper-menu .flags a,
header.open .wrapper-menu .flags a {
    color: var(--noirmat);
    border-right-color: var(--noirmat);
}


header .wrapper-menu .flags a:last-of-type {
    border-right: solid 1px transparent !important;
}

header .wrapper-menu .flags a.up {
    color: var(--or) !important;
}

header .wrapper-menu .flags a:hover {
    color: var(--noirmat);
}
body.light header .wrapper-menu .flags a:hover,
header.scroll .wrapper-menu .flags a:hover {
    color: var(--or);
}


header .wrapper-menu .rightbar .link {
    font-family: "Blair";
    font-weight: 500;
    line-height: normal;
    font-size: 11px;
    letter-spacing: 0;
    display: block;
}

header .wrapper-menu .rightbar .resalinks {
    position: relative;
    display: block;
}
header .wrapper-menu .rightbar .resalinks ul {
    display: flex;
    position: absolute;
    background-color: #fff;
    color: var(--noirmat);
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 250px;
    right: 0;
    left: auto;
    border-radius: 4px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    margin-top: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
header .wrapper-menu .rightbar .resalinks ul.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}


header .wrapper-menu .rightbar .resalinks ul li {
    display: block;
    padding: 0;
    margin: 0;
    border-bottom: solid 1px rgba(149,134,97, 0.2);
    width: 100%;
    flex-grow: 1;
    flex-shrink: 1;
}
header .wrapper-menu .rightbar .resalinks ul li:last-child {
    border-bottom: 0;
}


header .wrapper-menu .rightbar .resalinks ul li a {
    display: block;
    text-align: left;
    font-size: 11px;
    line-height: normal;
    font-weight: 500;
    color: var(--noirmat);
    padding: 10px 25px;
    text-decoration: none;
    font-family: "Blair";
}
header .wrapper-menu .rightbar .resalinks ul li a:hover {
    background-color: var(--or);
    color: #FFF;
}



header .wrapper-menu .rightbar .link:hover {
    background-color: var(--noirmat);
}



header .underlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255,255,255,0.6);
    opacity: 0;
    z-index: 1;
    transition: all 250ms cubic-bezier(0.25, 1, 0.5, 1);
    height: 0;
}
header.open .underlay {
    height: 100vh;
    opacity: 1;
    transition: all 700ms cubic-bezier(0.65, 0, 0.35, 1);
}

header .wrapper-nav {
	height:0;
	width:100%;
	overflow: hidden;
	position:fixed;
	top: 0;
	right:0;
    z-index: 2;
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 400ms;
}
header.open .wrapper-nav {
    height: 100vh;
    transition-duration: 700ms;
    transition-delay: 500ms;
}


header .wrapper-nav .wrapper-boutons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    column-gap: 10px;
    position: absolute;
    top: 50px;
    right: 50px;
    z-index: 2;
}
header .wrapper-nav .wrapper-boutons a {
    display: block;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    color: #FFF;
    transform: translateX(20px);
    opacity: 0;
    transition: all 450ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0;
}
header.open .wrapper-nav .wrapper-boutons a {
    opacity: 1;
    transform: translateX(0px);
}

header.open .wrapper-nav .wrapper-boutons a.home {
    transition-delay: 600ms;
}
header.open .wrapper-nav .wrapper-boutons a.close {
    transition-delay: 700ms;
}

header .wrapper-nav .wrapper-boutons a figure {
    width: 30px;
    height: 30px; 
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: center;
    border: solid 1px #FFF;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    border-radius: 30px;
    transition: all 400ms cubic-bezier(0.65, 0, 0.35, 1);
}

header .wrapper-nav .wrapper-boutons a span {
    display: block;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 400;
    line-height: normal;
    transform: translateY(0);
    opacity: 1;
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
}
header .wrapper-nav .wrapper-boutons a:hover span {
    transform: translateY(10px);
    opacity: 0;
}

header .wrapper-nav .wrapper-boutons a.home figure {
    background-image: url('../media/img/ico-home.png');
}

header .wrapper-nav .wrapper-boutons a.close figure {
    background-image: url('../media/img/close-blanc.png');
}




header .wrapper-nav .overlay {
	position: absolute;
	width:100%;
	height: 100%;
	background-color: rgba(255,255,255);
	top: 0;
	left: 0;
    z-index: 1;
}

header .wrapper-nav .frise {
    display: block;
    height: 40px;
    width: 100%;
    left: 0;
    bottom: 0;
    position: absolute;
    z-index: 2;
    background-image: url('../media/img/frise-or.png');
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: auto 100%;
    transform: translateY(100%);
    opacity: 0;
    transition: all 300ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0;
}
header.open .wrapper-nav .frise {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1000ms;
}




header .wrapper-nav nav {
	opacity: 0;
    transform: translateX(-40px);
    transition: all 700ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0;
}
header.open .wrapper-nav nav { 
    transform: translateX(0);
    opacity: 1;
    transition-delay: 1200ms;

}

header .wrapper-nav nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

header .wrapper-nav nav ul li {
    display: block;
    padding: 0;
    margin: 0;
    width: 100%;
}

header .wrapper-nav nav ul li a {
    font-family: "Blair";
    font-size: 20px;
    line-height: normal;
    font-weight: 300;
    color: var(--noirmat);
    display: block;
    width: 100%;
}

header .wrapper-nav nav ul li a::after {
    display: block;
    content: "";
    height: 1px;
    width: 0;
    background-color: var(--or);
    margin-top: 10px;
    transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
}

header .wrapper-nav nav ul li.up a:hover::after,
header .wrapper-nav nav ul li a:hover::after {
    width: 100%;
    opacity: 1;
}
header .wrapper-nav nav ul li.up a::after {
    width: 60%;
    opacity: 1;
}


header .wrapper-nav .wrapper-navigation {
    width: 100%;
    align-items: center;
    justify-content: center;
}

header .wrapper-nav .wrapper-navigation .logo {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 700ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0;
}
header.open .wrapper-nav .wrapper-navigation .logo {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 1100ms;
}

header .wrapper-nav .wrapper-navigation .logo figure {
    display: block;
    width: 60%;
    height: auto;
    margin: 0 auto;
    transform: translateY(-40px);
}

header .wrapper-nav .wrapper-navigation .illustration {
    opacity: 0;
    transform: translateX(40px);
    transition: all 200ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0;
}
header.open .wrapper-nav .wrapper-navigation .illustration {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 1300ms;
    transition-duration: 700ms;
}


header .wrapper-nav .wrapper-navigation .illustration figure {
    height: 60vh;
    transition: all 1000ms ease-in-out;
}

header .wrapper-nav .wrapper-buttons {
    display: none;
}


header .wrapper-subnav {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
    background-color: rgba(0,0,0,0.9);
    overflow: hidden;
}

header .wrapper-subnav .close {
    position: absolute;
    right: 35px;
    top: 35px;
    width: 15px;
    height: 15px;
    text-decoration: none;
    display: block;
    z-index: 2;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("../media/img/close-blanc.png");
    cursor: pointer;
    opacity: 0;
    transition: opacity 200ms ease-in-out;
    transition-delay: 0ms;
}
.wrapper-subnav.open .close {
    opacity: 1;
    transition-delay: 1500ms;
}

.wrapper-subnav .submenu {
    display: block;
    /*height: auto;*/
    height: 0;
    overflow: hidden;
    transition: all 500ms cubic-bezier(0.83, 0, 0.17, 1);
    transition-delay: 100ms;
    box-sizing: border-box;  
    position: relative;
    z-index: 2;
}

.wrapper-subnav .submenu.open {
    height: 450px;
    transition: all 600ms cubic-bezier(0.83, 0, 0.17, 1);
    transition-delay: 200ms;
}

.wrapper-subnav .submenu nav {    
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
    padding-top: 100px;
    padding-bottom: 100px;
}

.wrapper-subnav .submenu nav .item {
    display: block;
    box-sizing: border-box;
    width: 25%;
    padding: 20px;
    transition: all 350ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0;
    opacity: 0;
    transform: translateY(20px);
}

.wrapper-subnav .submenu.open nav .item {
    opacity: 1;
    transform: translateY(0);
}


.wrapper-subnav .submenu.open nav .item:nth-of-type(1) {
    transition-delay: 700ms;
}
.wrapper-subnav .submenu.open nav .item:nth-of-type(2) {
    transition-delay: 750ms;
}
.wrapper-subnav .submenu.open nav .item:nth-of-type(3) {
    transition-delay: 800ms;
}
.wrapper-subnav .submenu.open nav .item:nth-of-type(4) {
    transition-delay: 850ms;
}
.wrapper-subnav .submenu.open nav .item:nth-of-type(5) {
    transition-delay: 900ms;
}
.wrapper-subnav .submenu.open nav .item:nth-of-type(6) {
    transition-delay: 950ms;
}
.wrapper-subnav .submenu.open nav .item:nth-of-type(7) {
    transition-delay: 1000ms;
}
.wrapper-subnav .submenu.open nav .item:nth-of-type(8) {
    transition-delay: 1050ms;
}



.wrapper-subnav .submenu nav .item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
}

.wrapper-subnav .submenu nav .item a .legende {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    font-size: 17px;
    line-height: normal;
    font-weight: 400;
    text-align: left;
    column-gap: 15px;
}


.wrapper-subnav .submenu nav .item a figure {
    display: block;
    width: 100%;
    height: 160px;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.wrapper-subnav .submenu nav .item a figure .overlay {
    top: auto;
    bottom: 0;
    left: 0;
    height: 0;
    opacity: 0;
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
    background-color: rgba(255,255,255,0.85);
}

.wrapper-subnav .submenu nav .item a:hover figure .overlay {
    height: 100%;
    opacity: 1;
}


header nav ul li.disabled {
	opacity: 0.2;
	cursor: not-allowed;
}

header nav ul li a {
	display: block;
	font-size: 14px;
	line-height: normal;
	text-decoration: none;
	padding: 10px;
    margin:0;
}

header nav ul li:hover {
	cursor: pointer;
}

/* ====================================== footer =========================== */

footer p {
	display: block;
	padding: 0;
	margin: 0;
}

footer .credits {
    font-size: 10px;
    text-transform: uppercase;
    line-height: normal;
    font-weight: 400;
    letter-spacing: 1px;
}

footer .credits p {
	display: inline-block;
}

footer .credits a {
	text-decoration: none;
    color: #FFF;
}

footer .credits a:hover {
    text-decoration: underline;
}

footer .small {
	font-size: 12px;
}

footer .adresse a {
	text-decoration: none;
}


/* ========================================= FORM ====================================================== */

form input[type=text],
form input[type=password],
form textarea
 {
	display: block;
	width: 100%;
	margin: 0px;
	padding: 10px;
    border: none;
	border-bottom: solid 1px rgba(0,0,0,1);
	appearance: none;
	font-family: "Open Sans";
	font-size: 13px;
	line-height: normal;
}
form select
 {
	display: inline-block;
	margin: 0px;
	padding: 5px;
	border: 1px solid rgba(0,0,0,0.2);
	appearance: none;
	font-family: "Open Sans";
	font-size: 13px;
	line-height: normal;
}

form input[type=submit] {
	display: block;
	width: 100%;
	margin: 0px;
	padding: 10px;
	border: none;
	
	color: white;
	background-color: rgb(0,0,0);
	cursor:pointer;
	appearance: none;
	font-family: "Open Sans";
	font-size: 13px;
	line-height: normal;
}




hr {
	display:block;
	height:1px;
	border:none;
	clear: both;
	margin-top: 20px;
	margin-bottom: 20px;
}

.ariane {
    
    padding: 30px 0;
    border-bottom: solid 1px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
    flex-wrap: nowrap;
    font-size: 11px;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ariane a {
    display: block;
    text-decoration: none;
}
.ariane a:hover {
    text-decoration: underline;
}

.ariane .sep {
    display: block;
}

.ariane strong {
    color: rgba(27,27,29, 1);
    font-weight: 600;
}
.ariane .libelle {
    display: block;
}

/* ============================================ SLIDER =================================================== */


.slick {
	margin-bottom:0;
	position:relative;
}
.slick .slick-list,
.slick .slick-track {
	height:100%;
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.slick .slide {
	display:block;
	position:relative;
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center center;
}
.slick .slide .legende {
	position:absolute;
	right:0px;
	top:30%;
	width:50%;
}

.slick .slide img {
	display:block;
	width:100%;
	height:auto;
}

.slick .slick-arrow {
	width:40px;
	height:40px;
	background-size:contain;
	background-repeat: no-repeat;
	opacity:0.8;
	transition: all 0.2s ease-in-out;
}

.slick .slick-arrow:hover {
	opacity:1;
}

.slick .slick-arrow::before {
	display:none;
}

.slick .slick-next {
	right:20px;
	z-index:1000;
	background-image: url(../media/img/arrow_right.png);
	background-position:center center;
}
.slick .slick-next:hover {
	right:15px;
}

.slick .slick-prev {
	left: 20px;
	z-index: 1000;
	background-image: url(../media/img/arrow_left.png);
	background-position: center center;
}

.slick .slick-prev:hover {
	left: 15px;
}

.slick .slick-dots {
	bottom:0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 35px;
    padding-right: 25px;
}

.slick .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}
.slick .slick-dots li button {
	background-color: rgba(255,255,255,0.5);
	border-radius: 12px;
	width: 12px;
	height: 12px;
	transition: all 0.2s ease-in-out;
}
.slick .slick-dots li.slick-active button,
.slick .slick-dots li button:hover{
	background-color: #FFF;
}

.slick .slick-dots li button::before {
	display: none;
}

/* =========================== PADDING / MARGIN ============================== */


/* ========================================= MAP ============================== */

.map {
	display: block;
	width: 100%;
	height: 600px;
}

/* ========================================= PARALLAX ============================== */

.parallax-container {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.parallax {
  position: static;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.parallax img {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.parallax-container .overlay {
    display: flex;
    position: absolute;
    z-index: 2;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 15px;
}

.parallax-container .overlay h1 {
    font-size: 30px;
    line-height: normal;
    font-weight: 300;
    letter-spacing: 1px;
}
.parallax-container .overlay .coquillage {
    margin-top: 0;
    margin-bottom: 0;
}


/* ========================================= TOOLTIP  ========================== */

.tooltipster-sidetip.tooltipster-custom .tooltipster-box {
	background-color: transparent;
	border: none;
	border-radius: 0;
	/*box-shadow: 5px 5px 2px 0 rgba(0,0,0,0.4);*/
}

.tooltipster-sidetip.tooltipster-custom .tooltipster-content {
	color: #FFF;
	font-size: 12px;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	padding: 0;
	text-align: center;
}

/* ======================================= MASONRY ============================= */



.wrapper-item-sizer,
.wrapper-item {
	width: 33%;
}

.wrapper-item a {
	/*cursor: pointer;*/
	/*text-decoration: none;*/
	border-bottom: solid 1px rgba(255,255,255,0.1);
	padding-bottom: 30px;
	padding-top: 30px;
}

.wrapper-item a figure {
	margin-bottom: 20px;
}
.wrapper-item a h2 {
	font-size: 30px;
	line-height: normal;
	margin-bottom: 20px;
	text-align: left;
}
.wrapper-item a p {
	font-size: 14px;
	line-height: normal;
	text-align: justify;
	line-height: 25px;
}
.wrapper-item a .link {
	margin-top: 15px;
	display: block;
	text-align: center;
}

.wrapper-item a p.date {
	font-size: 13px;
}

/* ======================================= FANCYBOX ============================= */

.fancybox-thumbs {
  top: auto;
  width: auto;
  bottom: 0;
  left: 0;
  right : 0;
  height: 95px;
  padding: 10px 10px 5px 10px;
  
  background: rgba(0, 0, 0, 0.3);
}

.fancybox-show-thumbs .fancybox-inner {
  right: 0;
  bottom: 95px;
}

/* =================================== SLIDER HOME =============================== */

.wrapper-slider{
    /*
    height: calc(100vw * 0.5);
    max-height: 800px;
    */
    height: 100vh;
}

#progress {
	display: block;
	width: 0;
	height: 1px;
	position: absolute;
	z-index: 2;
	bottom: 0px;
	left: 0;
	background-color: var(--or);
}

.arrow-down-loop {
    position: absolute;
    bottom: 0px;
    width: 100%;
    z-index: 2;
    left: 0;
    display: flex;
    flex-direction: column;    
    align-items: center;
    justify-content: flex-end;
    height: 0;
    overflow: visible;
    opacity: 0;
}
.arrow-down-loop.active {
    opacity: 1;
}

.arrow-down-loop a {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    row-gap: 10px;
    text-decoration: none;
}

.arrow-down-loop a span {
    display: block;
    font-size: 10px;
    line-height: normal;
    font-weight: 500;
    letter-spacing: 1px;
}

.arrow-down-loop .arrow-down {
    position: relative;
    width: 120px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-left: auto;
    margin-right: auto;
}

.arrow-down-loop .arrow-down .bulle {
    display: block;
    position: relative;
    left: 0px;
    width: auto;
    width: 10px;
    height: 10px; 
    border-radius: 30px;
    margin-left: auto;
    margin-right: auto;
    animation: loopBottom 1s infinite alternate;
    transform: translateY(0px);
    background-color: var(--or);
    z-index: 2;
}

.arrow-down-loop .arrow-down .vline {
    display: block;
    position: absolute;
    z-index: 1;
    width: 1px;
    height: 100%;
    background-color: #fff;
}


@keyframes loopBottom {
    from {
        transform: translateY(25px);
    }
} 


.preloader {
    display: none;
    flex-direction: row;
    column-gap: 10px;
    align-items: center;
    justify-content: center;
    top: 50%;
    position: relative;
}
.preloader.active {
    display: flex;
}

.preloader span {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 100%;
    animation: bounce 1.5s 0.5s linear infinite;
}
.preloader span:nth-of-type(1) {
    animation-delay: 0.1s;
}
.preloader span:nth-of-type(2) {
    animation-delay: 0.2s;
}
.preloader span:nth-of-type(3) {
    animation-delay: 0.3s;
}

@keyframes bounce {
	0%, 50%, 100% {
		transform: scale(1);
	}
	25% {
		transform: scale(0.6);
	}
	75% {
		transform: scale(1.4);
	}
}

.wrapper-produits .preloader {
    display: flex;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(255,255,255,0.8);
    opacity: 0;
    transition: all 250ms ease-in-out;
}
.wrapper-produits .preloader.active {
    z-index: 3;
    opacity: 1;
}





#slider_homepage {
	width: 100%;    
}

#slider_homepage .owl-item {
	/*
    height: auto;
    height: calc(100vw * 0.5);
    max-height: 800px;
    /*height: 65vh;
    min-height: 600px;
    */
    height: 100vh;
}
#slider_homepage .owl-item .slide {
	height: 100%;
	position: relative;
	width: 100%;
	
}
#slider_homepage .owl-item .slide .main {
    display: block;
    width: 100%;
    height: 100%;
}
#slider_homepage .owl-item .slide .overlay {
	width: 100%;
	height: 100%;
    opacity: 0;
    transition: opacity 1000ms cubic-bezier(0.25, 1, 0.5, 1);
}


#slider_homepage.owl-loaded .owl-item .slide.filter-noir-30 .overlay {
    background-color: rgba(0, 0, 0, 0.3);
}
#slider_homepage.owl-loaded .owl-item .slide.filter-noir-20 .overlay {
    background-color: rgba(0, 0, 0, 0.2);
}

#slider_homepage.owl-loaded .owl-item.active .slide .overlay {
    opacity: 1;
}

#slider_homepage .owl-item .slide .legende {
	
	overflow: hidden;
    display: flex;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#slider_homepage .owl-item .slide .legende .content {
	position: relative;
	padding:0;
	display: block;
	width: auto;
}

#slider_homepage .owl-item .slide .legende .content p {
	display: block;
	margin:0;
}

/* anims slide texte */

#slider_homepage .owl-item .slide.texte .legende .content p {
    display: block;
    margin: 0;
    text-align: center;
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    color: #FFF;
}
#slider_homepage .owl-item .slide .texte .legende .content p:nth-of-type(1) {

    transition-delay: 0ms;
    transform: translateY(-30px);
    margin-bottom: 50px;
}
#slider_homepage .owl-item.active .slide .texte .legende .content p:nth-of-type(1) {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 1000ms;
}
#slider_homepage .owl-item .slide .texte .legende .content p:nth-of-type(2) {
    
    line-height: normal;
    color: #FFF;
    transition-delay: 0ms;
    transform: translateY(30px);
}
#slider_homepage .owl-item.active .slide .texte .legende .content p:nth-of-type(2) {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 1200ms;
}
#slider_homepage .owl-item .slide .texte .legende  p.lien {
    opacity: 0;
    transition-delay: 0ms;
    transform: translateY(50px);
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
}
#slider_homepage .owl-item.active .slide .texte .legende p.lien {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 1700ms;
}


/* anim slide logo */

#slider_homepage .owl-item .slide.logo .legende .content p:nth-of-type(1) {
    display: block;
    margin: 0;
    text-align: center;
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0;
    opacity: 0;
    margin-bottom: 20px;
}
#slider_homepage .owl-item.active .slide.logo .legende .content p:nth-of-type(1) {
    opacity: 1;
    transition-delay: 1500ms;
}
#slider_homepage .owl-item .slide.logo .legende .content p:nth-of-type(1) img {
    display: block;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 700px;
    height: auto !important;
}

#slider_homepage .owl-item .slide.logo .legende .content p:nth-of-type(2) {
    font-family: "all-round-gothic";
    font-size: 25px;
    color: #FFF;
    line-height: normal;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    opacity: 0;
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateY(10px);
}

#slider_homepage .owl-item.active .slide.logo .legende .content p:nth-of-type(2) {
    opacity: 1;
    transition-delay: 1900ms;
    transform: translateY(0px);
}




/* anim slide texte gauche */

#slider_homepage .owl-item .slide.txt-left .legende {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}


#slider_homepage .owl-item .slide.txt-left .legende .content {
    
    width: 50%;
    text-align: center;
    background-image: url('../media/img/logo-signe-blanc-80.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

#slider_homepage .owl-item .slide.txt-left .legende .content p:nth-of-type(1) {
    font-size: 55px;
    font-family: "Chillax";
    font-weight: 300;
    line-height: 60px;
    transition-delay: 0ms;
    transform: translateY(0px);
    margin-bottom: 10px;
    letter-spacing: 4px;
    color: rgb(223,156,139);
    opacity: 0;
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
}
#slider_homepage.owl-loaded .owl-item.active .slide.txt-left .legende .content p:nth-of-type(1) {
    opacity: 1;
    transition-delay: 1100ms;
}

#slider_homepage .owl-item .slide.txt-left .legende .content p:nth-of-type(2) {
    font-size: 14px;
    font-family: "Chillax";
    font-weight: 400;
    line-height: normal;
    transition-delay: 0ms;
    transform: translateY(0px);
    margin-bottom: 20px;
    letter-spacing: 3px;
    color: rgb(27,27,27);
    text-transform: uppercase;
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
}
#slider_homepage .owl-item.active .slide.txt-left .legende .content p:nth-of-type(2) {
    opacity: 1;
    transition-delay: 1200ms;
}

#slider_homepage .owl-item .slide.txt-left .legende .content p:nth-of-type(3) {
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
}

#slider_homepage .owl-item.active .slide.txt-left .legende .content p:nth-of-type(3) {
    opacity: 1;
    transition-delay: 1400ms;
}

/* --------------- */

#slider_homepage .owl-nav {
	height: 0;
	position: absolute;
	top: 50%;
	width: 100%;
	z-index: 2;
	
	opacity: 0;
	transition: all 0.2s ease-in-out;
}

#slider_homepage:hover .owl-nav {
	opacity: 1;
}
#slider_homepage .owl-nav button {
	font-size: 0;
	line-height: 0;
	width: 40px;
	height: 80px;
	background-repeat: no-repeat;
	background-size: 20px auto;
	background-position: center;
	display: block;
	padding: 10px;
}
#slider_homepage .owl-nav .owl-prev {
	float: left;
	/*background-image: url(../media/img/arrow-left-blanc.png);*/
}
#slider_homepage .owl-nav .owl-next {
	float: right;
	/*background-image: url(../media/img/arrow-right-blanc.png);*/

}
#slider_homepage .owl-dots {
	position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    column-gap: 10px;
	bottom: 35px;
	right: 50px;
	width: auto;
	z-index: 4;
}
#slider_homepage .owl-dots button {
	display: block;
	border: solid 1px #FFF;
	background-color: transparent;
	width: 12px;
	height: 12px;
    border-radius: 100%;
}
#slider_homepage .owl-dots button.active {
	background-color: var(--or);
    border-color: var(--or);
}


.promo {
	display: block;
}
.promo p {
	margin: 0;
    line-height: normal;
    display: block;
}
.promo .link {
    padding: 7px 10px;
    margin-left: 10px;
}



/* galeries isotope */

.filters {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

.filters a,
.filters .sep {
    display: block;
    color: var(--noirmat);
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 400;
    line-height: normal;
    padding: 5px 10px 5px 15px;
    text-transform: uppercase;
}

.filters a {
    cursor: pointer;
    border:solid 1px transparent;
}
.filters a:hover {
    border:solid 1px var(--or);
}
.filters a.up,
.filters a.active {
    background-color: var(--or);
    color: #FFF;
}

.grid .item a
 {
    display: block;
    text-decoration: none;
    margin-bottom: 15px;
}

.grid .item a figure {
    display: block;
    height: 400px;
    margin-bottom: 25px;
}

.grid .item a .overlay {
    background-color: rgba(255,255,255,0.9);
    opacity: 0;
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0;
}

.grid .item a:hover .overlay {
    opacity: 1;    
}

.grid .item a .overlay span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: normal;
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
}

.grid .item a:hover .overlay span {
    opacity: 1;
    transition-delay: 400ms;
}

.grid .item a h3 {
    font-size: 20px;
    line-height: normal;
    font-weight: normal;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.grid .item a p {
    font-size: 12px;
    letter-spacing: 4px;
    line-height: normal;
    font-weight: 400;
    text-transform: uppercase;
}

.masonry::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-image: url('../media/img/loader.gif');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;   
}
.masonry.complete::before {
    display: none;
}

.masonry .item {
    opacity: 0;
    transition: opacity 400ms cubic-bezier(0.25, 1, 0.5, 1);
    padding: 5px;
}
.masonry.complete .item {
    opacity: 1;
}

.masonry .item a {
    display: block;
    width: 100%;
    height: auto;
    color: var(--or);
}

.masonry .item a img {
    display: block;
    width: 100%;
    height: auto;
}

.masonry .item a figure {
    position: relative;
}

.masonry .item a figure .overlay {
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 15px;
    background-color: rgb(255,255,255,0.85);
    opacity: 0;
    transition: all 500ms cubic-bezier(0.25, 1, 0.5, 1);
}

.masonry .item a:hover figure .overlay {
    opacity: 1;
}

.masonry .item a figure .overlay span {
    display: block;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: normal;
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
}
.masonry .item a:hover figure .overlay span {
    transition-delay: 400ms;
    opacity: 1;
}
.masonry .item a figure .overlay span.legende {
    font-family: "Blair";
    font-size: 14px;
    font-weight: 400;

}




/* grid de 6 coionnes  */
.grid-container {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-auto-rows: 90px;
    gap: 10px;
}

.grid-container .item {
    position: relative;
    grid-column: auto / span 2;
    grid-row: auto;
    padding: 0;
    
}

.grid-container .item a {
    display: block;
    width: 100%;
    height: 100%;
    
    position: relative;
}

.grid-container .item a figure {
    display: block;
    width:100%;
    height: 100%;
    /*height: 400px;*/
    
}

.grid-container .item a .overlay {
    opacity: 0;
    background-color: rgba(255,255,255,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 400ms cubic-bezier(0.25, 1, 0.5, 1);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.grid-container .item a:hover .overlay {
    opacity: 1;
}

.grid-container .item a .overlay span {
    font-size: 11px;
    line-height: normal;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0;
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0ms;
    color: rgb(27,27,27);
}

.grid-container .item a:hover .overlay span {
    opacity: 1;
    transition-delay: 400ms;
}


.grid-container .item.w-1 {
    grid-column: auto / span 1;
}
.grid-container .item.w-2 {
    grid-column: auto / span 2;
}
.grid-container .item.w-3 {
    grid-column: auto / span 3;
}
.grid-container .item.w-4 {
    grid-column: auto / span 4;
}
.grid-container .item.w-5 {
    grid-column: auto / span 5;
}
.grid-container .item.w-6 {
    grid-column: auto / span 6;
}
.grid-container .item.w-7 {
    grid-column: auto / span 7;
}
.grid-container .item.w-8 {
    grid-column: auto / span 8;
}
.grid-container .item.w-9 {
    grid-column: auto / span 9;
}
.grid-container .item.w-10 {
    grid-column: auto / span 10;
}


.grid-container .item.h-1 {
    grid-row: auto / span 1;
}
.grid-container .item.h-2 {
    grid-row: auto / span 2;
}
.grid-container .item.h-3 {
    grid-row: auto / span 3;
}
.grid-container .item.h-4 {
    grid-row: auto / span 4;
}
.grid-container .item.h-5 {
    grid-row: auto / span 5;
}
.grid-container .item.h-6 {
    grid-row: auto / span 6;
}
.grid-container .item.h-7 {
    grid-row: auto / span 7;
}
.grid-container .item.h-8 {
    grid-row: auto / span 8;
}
.grid-container .item.h-9 {
    grid-row: auto / span 9;
}

figure.lazy {
    background-image: none !important;
}


figure > .placeholder {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(230,230,230);
    z-index: 0;
    transition: all 400ms ease-in-out;
    opacity: 0;
}

figure.lazy > .placeholder {
    opacity: 1;
    z-index: 2;
}



#blog article a {
    display: block;
    text-decoration: none;
}

#blog article a figure {
    width: 100%;
    height: 200px;
    background-color: rgba(0, 0, 0, 0.1);
}


#auth .wrapper {
	display:block;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
}

form p {
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 10px;
    margin-top: 10px;
    column-gap: 10px;
}
form p.noflex {
    display: block;
}

form p span:first-of-type {
    width: 150px;
}

form p input[type=text],
form p input[type=date],
form p input[type=password],
form p select,
form p textarea
{
	display:block;
	padding:10px;
	border-bottom :solid 1px rgba(0, 0, 0, 1);
	width:100%;
	margin:0;
    border-radius: 0px;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: normal;
    line-height: normal;
    flex: 1;
    padding-left: 0;
    padding-right: 0;
    font-family: "Poppins";
    text-transform: uppercase;
    outline: none;
}

form p input[type=text]::placeholder,
form p textarea::placeholder {
    opacity: 1;
    color: #000;
}

form p textarea {
    min-height: 100px;
}

form p input[type=submit]
{
    font-size: 11px;
    letter-spacing: 1px;
	margin-bottom:0;
    border-radius: 4px;
    width: 100%;
    background-color: var(--or);
    color: #FFF;
    display: block;
    flex-grow: 1;
    flex-shrink: 1;
    font-family: "Poppins";
    text-transform: uppercase;
    margin-top: 15px;
}

form p input[type=submit]:hover {
    background-color: var(--noirmat);
    color: #FFF;
}


form h2 {
    margin-top: 50px;
    margin-bottom: 25px;
}

.toggle-password {
    font-size: 16px;
    color: #1b1b1b;
    position: absolute;
    z-index: 2;
    right: 20px;
    top: auto;
    cursor: pointer;
}

#auth h1 {
    margin-top: 25px;
    margin-bottom: 25px;
}

#scrollSentinelle {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 0;
    height: 100px;
    visibility: hidden;
}

.policy h1 {
    font-size: 35px;
    line-height: normal;
    margin-bottom: 30px;    
    font-weight: normal;
    color: var(--or);
}

.policy .content h2 {
    font-size: 18px;
    line-height: normal;
    margin-top: 50px;    
    font-weight: normal;
}

.wrapper-form .success {
    text-align: center;
    background-color: rgba(149,134,97, 0.2);
    padding: 50px;
}
.wrapper-form .success p {
    display: block;
    text-align: center;
}
.wrapper-form .success p:first-of-type {
    margin-top: 0;
}
.wrapper-form .success p:last-of-type {
    margin-bottom: 0;
}

#mentionslegales,
#rgpd {
    margin-top: 0;
}

.fancybox-slide--iframe .fancybox-content { 
    max-width: 900px !important;
}


.back {
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 40px;
    top: 30px;
    background-image: url('../media/img/arrow-prev-noir.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
    opacity: 1;
    z-index: 2;
    text-decoration: none;
    color: rgb(29,29,27);
    transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
    /*border: solid 1px rgb(24,23,22);
    border-radius: 100%;
    */
}

.back:hover {
    opacity: 1;
}

.back span {
    display: block;
    transform: translateX(70px);
    opacity: 0;
    position: relative;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: normal;
    transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
    top: 3px;
    white-space: nowrap;
}

.back:hover span {
    transform: translateX(50px);
    opacity: 1;
}


.bg-noirmat {
    background-color: var(--noirmat);
}
.f-noirmat {
    color: var(--noirmat);
}
.b-noirmat {
    border-color: var(--noirmat);
}

.bg-or {
    background-color: var(--or);
}
.f-or {
    color: var(--or);
}
.b-or {
    border-color: var(--or);
}

.bg-orfonce {
    background-color: var(--orfonce);
}
.f-orfonce {
    color: var(--orfonce);
}
.b-orfonce {
    border-color: var(--orfonce);
}

.bg-beige {
    background-color: var(--beige);
}
.f-beige {
    color: var(--beige);
}
.b-beige {
    border-color: var(--beige);
}

.bg-mauve {
    background-color: var(--mauve);
}
.f-mauve {
    color: var(--mauve);
}
.b-mauve {
    border-color: var(--mauve);
}

.bg-mauvepale {
    background-color: var(--mauvepale);
}
.f-mauvepale {
    color: var(--mauvepale);
}
.b-mauvepale {
    border-color: var(--mauvepale);
}



.link {
    padding: 7px 35px;
    text-align: center;
}

.coquillage {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-top: 25px;
    margin-bottom: 25px;
}

.coquillage.mauve {
    background-image: url('../media/img/coquillage-mauve.png');
}
.coquillage.blanc {
    background-image: url('../media/img/coquillage-blanc.png');
}
.coquillage.or {
    background-image: url('../media/img/coquillage-or.png');
}



.intro .wrapper-content {
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

.intro .coquillage {
    margin-top: 50px;
    margin-bottom: 30px;
    
}

.intro .wrapper-content .diapo .slide {
    height: 700px;
}

.intro .diapo {
    margin-bottom: 25px;
}



.arrows {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
}
.arrows a {
    display: block;
    width: 40px;
    height: 30px;
    padding: 0px;
    border-right: solid 1px var(--noirmat);
    cursor: pointer;
}

.bg-noirmat .arrows a {
    border-right: solid 1px #FFF;
}
.arrows a:last-of-type {
    border-right: solid 1px transparent;
}

.arrows .arrow-prev {
    background-image: url('../media/img/arrow-prev-noir-or.png');
    background-size: auto 200%;
    background-repeat: no-repeat;
    background-position: left top;
}

.bg-noirmat .arrows .arrow-prev {
    background-image: url('../media/img/arrow-prev-blanc-or.png');
}



.arrows .arrow-prev:hover {
    background-position: left bottom;
}

.arrows .arrow-next {
    background-image: url('../media/img/arrow-next-noir-or.png');
    background-size: auto 200%;
    background-repeat: no-repeat;
    background-position: right top;
}
.bg-noirmat .arrows .arrow-next {
    background-image: url('../media/img/arrow-next-blanc-or.png');
}

.arrows .arrow-next:hover {
    background-position: right bottom;
}


/*
.arrows a img {
    display: block;
    width: 100%;
    height: auto;
    transition: all 200ms cubic-bezier(0.25, 1, 0.5, 1);
}
.arrows .arrow-prev:hover img {
    transform: translateX(-5px);
}
.arrows .arrow-next:hover img {
    transform: translateX(5px);
}
*/



.intro .preintro {
    display: block;
    position: relative;
    z-index: 2;
}

.intro .preintro .vline {
    display: block;
    content: "";
    position: absolute;
    z-index: 2;   
    width: 1px;
    background-color: var(--or);
    top: 0;
    left: 0;
}


.intro .preintro .content {
    transform: translateY(120px);
    margin-bottom: -50px;
}

.intro .preintro .content p {
    margin: 0;
    font-family: "Blair";
    font-size: 26px;
    line-height: 35px;
    font-weight: 300;
}

.intro .content h4 {
    margin: 0;
    font-family: "Blair";
    font-size: 20px;
    line-height: normal;
    font-weight: 300;
    letter-spacing: 1px;
}


.visuel.offset,
#famille .visuel {
    background-color: rgb(216,202,199);
    position: relative;
}

#famille .visuel img {
    display: block;
    position: relative;
    top: 50px;
    left: 50px;
}

.visuel.offset img {
    display: block;
    position: relative;
    top: 50px;
    right: 50px;
}


#famille .content {
    transform: translateY(50px);
}

.content h2 {
    font-size: 32px;
    line-height: normal;
    font-weight: 300;
    letter-spacing: 1px;
}

.pattern-blanc-9 {
    background-image: url('../media/img/pattern-blanc-9.png');
    background-repeat: repeat;
    background-position: center;
    background-size: 140px auto;
}
.pattern-mauve-15 {
    background-image: url('../media/img/pattern-mauve-15.png');
    background-repeat: repeat;
    background-position: center;
    background-size: 140px auto;
}


.hotels .vline {
    display: block;
    content: "";
    position: absolute;
    z-index: 2;   
    width: 1px;
    /*height: 100px;*/
    background-color: var(--noirmat);
    top: 0;
    left: 0;
}


.hotels .wrapper-carousel {
    margin-left: 10%;
}

.hotels .carousel .slide {
    padding: 20px;
}


.hotels .carousel .slide a {
    display: block;
    text-decoration: none;
}

.hotels .carousel .slide a figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 400px;
    height: 520px;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
    z-index: 1;
}

.hotels .carousel .slide a figure .overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    opacity: 0;
    width: 100%;
    height: 0%;
    left: 0;
    bottom: 0;
    top: auto;
    background-color: rgba(255,255,255,0.4);
    transition: all 500ms cubic-bezier(0.25, 1, 0.5, 1);
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
}

.hotels .carousel .slide a figure .overlay .coquillage {
    width: 50px;
    height: 50px;
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    transition: all 250ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0ms;
}

.hotels .carousel .slide a:hover figure .overlay .coquillage {
    opacity: 1;
    transform: scale(1) translateY(0px);
    transition-delay: 400ms;
}


.hotels .carousel .slide a:hover figure .overlay {
    height: 100%;
    border-radius: 0;
    opacity: 1;
}

.hotels .carousel .slide a figure figcaption {
    display: block;
    padding: 40px 20px 10px 20px;
    background-color: #fff;
    color: var(--noirmat);
    text-align: center;
    flex-grow: 0;
    flex-shrink: 0;
    width: 100%;
    transition: all 350ms cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    z-index: 3;
}

.hotels .carousel .slide a:hover figure figcaption {
    padding-bottom: 30px;
}


.hotels .carousel .slide a figure figcaption h1 {
    font-size: 18px;
    line-height: normal;
    margin-bottom: 5px;
}
.hotels .carousel .slide a figure figcaption h2 {
    font-size: 12px;
    line-height: normal;
    color: var(--mauve);
    font-family: "Poppins";
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hotels .carousel .slide a:hover figure figcaption h2 {
    color: var(--noirmat);
}



.hotels .titre {
    position: relative;
    padding-left: 40px;
    padding-top: 80px;
}

.titre h1 {
    font-size: 32px;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 1px;
}

.hotels .titre {
    margin-left: 50px;
    margin-bottom: 60px;
}

.hotels .wrapper-carousel .arrows {
    margin-right: 50px;
    margin-top: 25px;
}

.emotions .visuel {
    position: relative;
    z-index: 1;
}

.emotions .wrapper-content {
    position: relative;
    z-index: 2;
}

.emotions .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.emotions .content h3 {
    font-weight: 300;
    font-size: 22px;
    line-height: 30px;
}

.emotions .content .vline {
    display: block;
    content: "";
    position: absolute;
    z-index: 2;   
    width: 1px;
    /*height: 100px;*/
    background-color: var(--orfonce);
}

.emotions .content .vline:first-of-type {
    top: -40px;
}
.emotions .content .vline:last-of-type {
    top: 240px;
}



.wrapper-insta .content .coquillage {
    margin-top: 0;
    margin-bottom: 10px;
}

.wrapper-insta .content p {
    margin: 0;
}

.wrapper-insta .content p small {
    font-size: 13px;
    line-height: normal;
}

.wrapper-insta .content p a {
    font-size: 24px;
    line-height: normal;
    font-weight: 300;
    color: var(--noirmat);
    text-decoration: none;
}

.wrapper-insta .content p a:hover {
    text-decoration: none;
}

.wrapper-insta .flux {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}

.wrapper-insta .flux .item {
    padding: 5px;
}

.wrapper-insta .flux .item figure {
    display: block;
    width: 270px;
    height: 270px;
}

.wrapper-newsletter .titre h2 {
    font-weight: 300;
    font-size: 25px;
}

.wrapper-newsletter .titre p {
    line-height: normal;
}

.wrapper-newsletter .newsletter input[type=text] {
    font-family: "Poppins";
    border: solid 1px #FFF;
    font-size: 12px;
    line-height: normal;
    color: #FFF;
    background-color: transparent;
    outline: none;
    padding: 7px;
}

.wrapper-newsletter .newsletter input[type=text]:focus {
    color: var(--noirmat);
    border-color: var(--noirmat);
}
.wrapper-newsletter .newsletter .link:hover {
    background-color: var(--noirmat);
    border-color: var(--noirmat);
    color: #FFF;
}




footer .wrapper-cols {
    column-gap: 20px;
    row-gap: 40px;
    align-items: center;
    justify-content: center;
}

footer h4 {
    font-size: 13px;
    letter-spacing: 1px;
    line-height: normal;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--orfonce);
}

footer p {
    margin: 0;
    font-size: 13px;
    line-height: normal;
}

footer .social {
    padding-top: 10px;
}

footer .wrapper-logo {
    width: 250px;
    height: auto;
    flex-grow: 0;
    flex-shrink: 0;
}

footer .wrapper-logo .logo {
    display: block;
    width: 100%;
    height: auto;
}

footer .credits hr {
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    margin-top: 0;
}

footer .credits p {
    font-size: 10px;
    line-height: normal;
}

footer .adresse a {
    color: #FFF;
    text-decoration: none;
}
footer .adresse a:hover {
    color: var(--orfonce);
}


footer .adresse a i {
    color: var(--orfonce);
    margin-right: 5px;
}

.experiences {
    row-gap: 50px;
}

.experiences .experience a {
    text-decoration: none;
    color: var(--noirmat);
}

.experiences .experience a .coquillage {
    margin-top: 0;
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
}

.experiences .experience a h2 {
    font-size: 22px;
    line-height: normal;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.experiences .experience a h3 {
    color: var(--mauve);
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    font-family: "Poppins";
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

/*
#hotels .titre h1::before {
    content: "";
    display: block;
    height: 80px;
    width: 1px;
    background-color: var(--noirmat);
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
*/

body.light > section {
    margin-top: 100px;
}


#galerie .titre .vline,
#histoire .titre .vline,
#experience .titre .vline,
#hotels .titre .vline {
    display: block;
    content: "";
    position: absolute;
    z-index: 2;   
    width: 1px;
    /*height: 100px;*/
    background-color: var(--noirmat);
    top: 0;
    left: 50%;
}


#hotels .wrapper-hotels {
    flex-wrap: wrap;
}

#hotels .wrapper-hotels .hotel {
    padding: 40px 10px;
}

#hotels .wrapper-hotels .hotel article {
    display: block;
    text-decoration: none;
}

#hotels .wrapper-hotels .hotel article figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 500px;
    padding-left: 100px;
    padding-right: 100px;
}

#hotels .wrapper-hotels .hotel article figure figcaption {
    display: block;
    /*height: 140px;*/
    padding: 40px 20px 10px 20px;
    background-color: #fff;
    color: var(--noirmat);
    text-align: center;
    flex-grow: 0;
    flex-shrink: 0;
    width: 100%;
    
}

#hotels .wrapper-hotels .hotel article figure figcaption h1 {
    font-size: 21px;
    line-height: normal;
    margin-bottom: 5px;
}
#hotels .wrapper-hotels .hotel article figure figcaption h3 {
    font-size: 14px;
    line-height: normal;
    color: var(--mauve);
    font-family: "Poppins";
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}


#hotels .wrapper-hotels .hotel article .links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    padding-top: 25px;
}



.presentation .diapo {
    line-height: 0;
}

#experience.alt .wrapper-hotels article .wrapper-visuel figure,
.presentation .diapo .slide figure {
    display: block;
    width: 600px;
    height: 600px;
}

.presentation .arrows {
    position: absolute;
    left: calc(50% + 20px);
    bottom: 0;
}

.presentation .content .links {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    column-gap: 10px;
}

.presentation .wrapper-content {
    padding-left: 200px;
}

#histoire .presentation.alt .flex-row .wrapper-content {
    padding-right: 75px;
    padding-left: 75px;
}


#histoire .presentation .flex-row .wrapper-content {
    padding-left: 0;
    padding-right: 100px;
}

.highlight .content h2,
.presentation .content h2 {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1px;
    font-weight: 300;
}


.highlight .content h2::after,
.presentation .content h2::after,
#experience.alt .titre h3::after
{
    content: "";
    display: block;
    width: 200px;
    height: 1px;
    background-color: var(--noirmat);
    margin-top: 20px;
    margin-bottom: 20px;
}
#experience.alt .titre h3::after,
#esprit .presentation .content h2::after {
    margin-left: auto;
    margin-right: auto;
}

#esprit .presentation .content .links {
    justify-content: center;
    text-align: center;
}

.highlight .content h2::after {
    background-color: #fff;
}


.highlight .content h2::after {
    margin-left: auto;
    margin-right: auto;
}
/*
.presentation .content h2::after {
    content: "";
    display: block;
    width: 200px;
    height: 1px;
    background-color: var(--noirmat);
    margin-top: 20px;
    margin-bottom: 20px;
}
*/


#esprit .presentation .titre,
#hotel .presentation .titre,
#experience .presentation .titre {
    position: absolute;
    z-index: 3;
    width: 300px;
}

.presentation .titre h1 {
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 5px;
}
.presentation .titre h3 {
    font-size: 14px;
    line-height: normal;
    color: var(--mauve);
    font-family: "Poppins";
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.others {
    border-bottom: solid 1px var(--mauve);
}

.others .titre h2 {
    font-size: 32px;
    line-height: normal;
    letter-spacing: 1px;
    font-weight: 300;
}


.others .titre h2::before {
    content: "";
    display: block;
    height: 150px;
    width: 1px;
    background-color: var(--mauve);
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    transform: translateY(-50px);
    margin-bottom: -20px;
}


.others .wrapper .item {
    padding: 20px;
}

.others .wrapper .item a {
    display: block;
    text-decoration: none;
}

.others .wrapper .item a figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 450px;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
}

.others .wrapper .item a figure .overlay {
    
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    top: auto;
    background-color: rgb(27,27,27, 0.5);
    transition: all 500ms cubic-bezier(0.25, 1, 0.5, 1);
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
}

.others .wrapper .item a:hover figure .overlay {
    height: 100%;
    opacity: 1;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}


.others .wrapper .item a figure .overlay .coquillage {
    width: 50px;
    height: 50px;
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    transition: all 250ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0ms;
}

.others .wrapper .item a:hover figure .overlay .coquillage {
    opacity: 1;
    transform: scale(1) translateY(0px);
    transition-delay: 400ms;
}




.others .wrapper .item a figure figcaption {
    display: block;
    padding: 40px 20px 20px 20px;
    background-color: var(--noirmat);
    color: #FFF;
    text-align: center;
    flex-grow: 0;
    flex-shrink: 0;
    width: 100%;
    transition: all 350ms cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    z-index: 3;
}

.others .wrapper .item a:hover figure figcaption {
    padding-bottom: 30px;
}

.others .wrapper .item a figure figcaption h1 {
    font-size: 18px;
    line-height: normal;
    margin-bottom: 5px;
}
.others .wrapper .item a figure figcaption h2 {
    font-size: 12px;
    line-height: normal;
    color: var(--mauve);
    font-family: "Poppins";
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.others .wrapper .item a:hover figure figcaption h2 {
    color: #FFF;
}


.links .link,
.content .link {
    position: relative;
    transition: all 250ms cubic-bezier(0.65, 0, 0.35, 1);
}

.links .link::before,
.content .link::before {
    content: "";
    display: block;
    position:absolute;
    z-index: -1;
    background-color: var(--or);
    height: 100%;
    width: 0%;
    left: 0;
    top: 0;
    transition: all 250ms cubic-bezier(0.65, 0, 0.35, 1);
}

.bg-mauvepale .content .link::before {
    background-color: var(--mauve);
}



.bg-mauve .content .link::before {
    background-color: #FFF;
    color: var(--mauve);
}

.bg-mauvepale .content .link:hover {
    color: #FFF;
    border-color: var(--mauve);
}

.bg-mauve .content .link:hover {
    border-color: var(--mauve);
    color: var(--mauve);
}





.links .link:hover::before,
.content .link:hover::before {
    width: 100%;
}


.links .link:hover,
.content .link:hover {
    border-color: var(--or);
    color: #FFF;
}

.grecaptcha-badge {
    display: none;
}

#experience.famille .content.intro h2::after {
    display: none;
}

#experience.famille .presentation .content .links p {
    margin-bottom: 0;
}




#experience.famille .presentation .content .links {
    justify-content: flex-start;
}


#experience.famille .presentation .flex-row .wrapper-content {
    padding-right: 40px;
}

#experience.famille .presentation .flex-row-reverse .wrapper-content {
    padding-left: 40px;
    padding-right: 175px;
}


#esprit .parallax-container {
    height: 600px;
}


#esprit .parallax-container .overlay p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    margin: 0;
}

#esprit .parallax-container .overlay hr {
    margin-top: 25px;
    margin-bottom: 25px;
    background-color: #fff;
    height: 1px;
    width: 100px;
}

#esprit .presentation .flex-row-reverse .wrapper-content,
#esprit .presentation .flex-row .wrapper-content {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#esprit .presentation .flex-row-reverse .wrapper-content .content,
#esprit .presentation .flex-row .wrapper-content .content {
    width: 400px;
}

#esprit .emotions .content .vline:last-of-type {
    top: 270px;
}

.bandeau-large {
    padding-top: 200px;
    padding-bottom: 0px;
}

.bandeau-large .titre {
    margin-bottom: 50px;
}

.bandeau-large .titre .coquillage {
    width: 150px;
    height: 150px;
}
.bandeau-large .titre h1 {
    font-size: 40px;
    line-height: normal;
}
.bandeau-large .highlight p:first-child {
    margin-top: 0;
}
.bandeau-large .highlight p:last-child {
    margin-bottom: 0;
}


#contact .bandeau-large {
    padding-top: 150px;
    padding-bottom: 25px;
}


#histoire .flex-row-reverse .wrapper-content {
    padding-left: 0;
    padding-right: 100px;
}


.bg-coquillage-mauve {
    background-image: url('../media/img/coquillage-mauve-10.png');
    background-repeat: no-repeat;
    background-position: calc(50% - 600px) calc(100% + 100px);
    background-size: 600px;
}

#contact .bg-coquillage-mauve { 
    background-position: calc(50% - 450px) calc(100% + 100px);
}

#histoire .bg-coquillage-mauve.align-right {
    background-position: calc(50% + 600px) calc(100% + 100px);
}


#histoire .sophie .visuel {
    width: 450px;
    height: auto;
    margin-left: 25px;
}


.bg-noirmat .presentation .content h2::after {
    background-color: #fff;
}


#contact .coordonnees p {
    font-size: 18px;
    line-height: 28px;
    margin: 0;
}

#contact .coordonnees p a:not(.link) {
    text-decoration: none;
    color: var(--or);
}

#contact .coordonnees h3 {
    font-size: 18px;
    line-height: normal;
    color: var(--mauve);
}

#contact .coordonnees h3::after {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    margin-bottom: 25px;
    background-color: var(--noirmat);
}