@charset "UTF-8";
/* CSS Document */
* {
	margin:0;
	padding:0;
} 
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
html {
	font-size: 62.5%;
	height: 100%;
}
body {
	min-height: 100%;
	font-family: 'Lato', sans-serif;
	font-size: 1.7rem;
	font-weight: 300;
	color: #333333;
	text-align: center;
	background-color: #FFF;
	-webkit-text-size-adjust: 100%;
  	display: flex;
    flex-flow: column;
}
body:not(.itemid-101) {
	padding-top: 60px;

} 
img{
	border-style:none;
}
ul {
	list-style-type:none;
}
a {
	color: #2D412C;
	text-decoration:none;
	outline:none;
	display: block;
}
a:hover,
.nav-header:hover {
	color: #BDC5BF;
}
br {
	letter-spacing: normal;
}
iframe {
	border: none;
}
fieldset {
	border: none;
}
span.text-br {
	display:inline-block;
}
span.br:before {
    content: '\A';
    white-space: pre;
}
h1 {
	font-size: 4.6rem;
	font-weight: 300;
	color: #819B80;
}
h2 {
	font-family: 'DM Serif Display', serif;
	font-size: 3.8rem;
	font-weight: 300;
	color: #819B80;
	
}
h2.titre {
	font-size: 7rem;
	color: #819B80;
	text-align: left;
	line-height: 0.55em;
	letter-spacing: 0.04em;
	margin-bottom: 30px;
	margin-left: 10%;
}
h2.titre span {
	font-size: 3.8rem;
	display: block;
	margin-left: 55px;
}
h3 {
	font-family: 'DM Serif Display', serif;
	font-size: 2.4rem;
	letter-spacing: 0.1em;
	line-height: 1.1em;
	margin-bottom: 15px;
}
h4 {
	font-family: 'DM Serif Display', serif;
	font-size: 1.8rem;
	line-height: 1.2em;
	letter-spacing: 0.05em;
	color: #819B80;
	margin: 20px 0;
}
h5 {
	font-size: 2.0rem;
	font-weight: 400;
	line-height: 1.2em;
	letter-spacing: 0.05em;
	color: #333333;
	margin: 0 0 10px;
}
p {
	font-size: 1.7rem;
	line-height: 1.5em;
	letter-spacing: 0.05em;
}
.btn {
	border: 1px solid #2D412C;
	border-radius: 3px;
	background-color: #FFF;
	display: inline;
	font-size: 1.4rem;
	font-weight: 400;
	text-transform: uppercase;
	padding: 4px 8px;
}
.wrapper {
	width: 100%;
	min-height: 100%;
	padding-bottom: 30px;
	position: relative;
	top: 0;
	transition: all .5s;
	flex: 1;
	overflow-x: hidden;
}
body:not(.itemid-101) .wrapper {
	min-height: calc(100% - 215px);
}
body.itemid-101 .wrapper {
	padding-bottom: 0;
}
.scroll-off {
	position: fixed;
}
.overflow-hidden {
	overflow: hidden;
}
section {
	width: 100%;
	position: relative;
	padding: 30px 0;
}
.container {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding: 0 24px;
	position: relative;
	text-align: center;
}


header {
	width:100%;
	height:60px;
	background-color: rgba(255, 255, 255, 0);
	min-height: 1px;
	margin-right: auto;
	margin-left: auto;
	padding: 0px 20px;
	position:fixed;
	top:0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	transition: all 1s;
	z-index:1000;
}
header > div {
	width: 33.33333333%;
	position: relative;
}
header .btn_reservation a {
	font-size: 1.6rem;
	text-transform: uppercase;
	text-align: left;
	letter-spacing: 0.1em;
	color: #FFF;
	padding: 10px;
}
header .logo_header {
	text-align: center;
	display: none;
}
header .logo_header img {
	height: 36px;
}

/*Main Menu*/
.btn-trigger {
  	width: 28px;
  	height: 24px;
  	cursor: pointer;
	position: fixed;
	top: 18px;
	right: 30px;
	z-index: 1003;
}
.btn-trigger span {
  	width: 100%;
  	height: 1px;
  	background-color: #FFF;
	position: absolute;
  	left: 0;
}
.btn-trigger, 
.btn-trigger span {
  	display: inline-block;
  	transition: all .5s;
}

.btn-trigger span:nth-of-type(1) {
	top: 0;
	-webkit-animation: bar01 .75s forwards;
	animation: bar01 .75s forwards;
}
@-webkit-keyframes bar01 {
  0% {
    -webkit-transform: translateY(12px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(12px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes bar01 {
  0% {
    transform: translateY(12px) rotate(45deg);
  }
  50% {
    transform: translateY(12px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.btn-trigger span:nth-of-type(2) {
	top: 11.5px;
	transition: all .25s .25s;
	opacity: 1;
}
.btn-trigger span:nth-of-type(3) {
	bottom: 0;
	-webkit-animation: bar03 .75s forwards;
	animation: bar03 .75s forwards;
}
@-webkit-keyframes bar03 {
  0% {
    -webkit-transform: translateY(-12px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-12px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes bar03 {
  0% {
    transform: translateY(-12px) rotate(-45deg);
  }
  50% {
    transform: translateY(-12px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.btn-trigger.active span:nth-of-type(1) {
  -webkit-animation: active-bar01 1s forwards;
  animation: active-bar01 1s forwards;
}
@-webkit-keyframes active-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(12px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(12px) rotate(45deg);
  }
}
@keyframes active-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(12px) rotate(0);
  }
  100% {
    transform: translateY(12px) rotate(45deg);
  }
}
.btn-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.btn-trigger.active span:nth-of-type(3) {
  -webkit-animation: active-bar03 1s forwards;
  animation: active-bar03 1s forwards;
}
@-webkit-keyframes active-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-12px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-12px) rotate(-45deg);
  }
}
@keyframes active-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-12px) rotate(0);
  }
  100% {
    transform: translateY(-12px) rotate(-45deg);
  }
}
.menu-overlay {
	width: 100%;
	height: 100%;
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	display: none;
	z-index: 1001;
}
.menu-overlay.active {
	display: block;
}

header.white {
	background-color: rgba(255, 255, 255, 1);
}
header.white .btn_reservation a {
	color: #2D412C;
}
header.white .logo_header {
	display: block;
}
header.white + .btn-trigger span,
.btn-trigger.active span {
  	background-color: #2D412C;
}

nav.navigation {
	background-color: rgba(255, 255, 255, 1);
	position: fixed;
	top: 0;
	right: -460px;
	bottom: 0;
	padding: 30px 0 30px;
	overflow: scroll;
	opacity: 0;
	z-index: 1002;
	transition: all 1s;
	display: flex;
	flex-flow: column;
}
.btn-trigger.active + nav.navigation {
	right: 0;
	opacity: 1;
}
nav.navigation {
	letter-spacing: 0.3em;
	text-align: center;
}
nav.navigation ul {
	width: 460px;
	padding: 45px 0 0;
}
nav.navigation ul > li {
	padding: 18px 0;
}
nav.navigation ul > li a,
nav.navigation ul > li span {
	font-size: 1.6rem;
	font-weight: 300;
	display: inline;
	position: relative;
	cursor: pointer;
}
nav.navigation ul.nav > li:not(.item-119).active > a::before,
nav.navigation ul.nav > li.active > span::before {
	width: 18px;
	height: 22px;
	content: "";
	background: url("../images/icon_menu_active.png") no-repeat center;
	background-size: contain;
	display: block;
	position: absolute;
	left: -30px;
	top: 1px;
	
}
.itemid-101 nav.navigation ul.nav > li.active > a:hover,
.itemid-101 nav.navigation ul.nav > li.active > span:hover {
	color: #2D412C;
}
body:not(.itemid-101) nav.navigation ul.nav > li.parent .nav-header {
	color: #2D412C;
	cursor: default;
}

nav.navigation ul > li ul {
	width: 100%;
	padding: 0;
}
nav.navigation ul > li ul li {
	display: inline-block;
	padding: 10px 2px;
}
nav.navigation ul > li:not(.item-123) ul li:not(:last-child)::after {
	content: "·";
    color: #819B80;
    margin-left: 8px;
    vertical-align: -1px;
}
nav.navigation ul > li ul li a {
	font-size: 1.4rem;
	color: #888;
	letter-spacing: 0.1em;
}
nav.navigation ul > li ul li a:hover,
nav.navigation ul > li ul li.active a {
	color: #333;
}

nav.navigation ul > li.item-121,
nav.navigation ul > li.item-122,
nav.navigation ul > li.item-123 {
	padding: 2px 0;
}
nav.navigation ul > li.item-120 {
	padding: 40px 0 15px;
}
nav.navigation a.btn {
	width: 120px;
	font-size: 1.3rem;
	font-weight: 300;
	letter-spacing: 0.3em;
	margin: 0 auto;
}
nav.navigation .nav-contact {
	font-size: 1.4rem;
	letter-spacing: 0.1em;
}
a.sns  {
	display: inline-block;
	padding: 3px;
}
a.sns img {
	width: 24px;
	height: auto;
}
nav.navigation ul.menu > li.item-119,
nav.navigation ul > li.item-122 {
	display: none;
}
li.item-123 span {
	display: none !important;
}

/*Sous Menu*/
nav.sub-menu {
	width: 100%;
    height: 60px;
    background-color: #FFF;
	padding: 15px 0;
    position: fixed;
    top: 60px;
	z-index: 1000;
}
.itemid-101 nav.sub-menu,
.itemid-101 nav.sub-menu ul {
	display: none;
}
nav.sub-menu ul {
}
nav.sub-menu ul li {
	display: inline-block;
	margin: 0 20px;
}
nav.sub-menu ul li a {
	font-size: 2.0rem;
	letter-spacing: 0.1em;
	position: relative;
	padding-bottom: 3px;
}
nav.sub-menu ul li.current a {
	border-bottom: 1px solid #2D412C;
}
nav.sub-menu ul li.current a:hover {
	color: #2D412C;
}
nav.sub-menu .modal-close {
  	width: 28px;
  	height: 24px;
  	cursor: pointer;
	position: fixed;
	top: 68px;
	right: 30px;
	z-index: 1001;
	display: none;
}
nav.sub-menu .modal-close span {
  	width: 100%;
  	height: 1px;
  	background-color: #2D412C;
	position: absolute;
  	left: 0;
}
nav.sub-menu .modal-close span:nth-child(1) {
	transform: translateY(12px) rotate(45deg);
}
nav.sub-menu .modal-close span:nth-child(2) {
	transform: translateY(12px) rotate(-45deg);
}

/*Modal Contents*/
.modal-wrap {
	width: 100%;
	height: 100%;
	background-color: #FFF;
	position: fixed;
	transform: scale(0);
	transform-origin: 50% 50%;
	transition: all 0.7s 0.5s;
	z-index: 999;
	overflow: hidden;
}
.modal-wrap.on {
	transform: scale(1);
}
.modal-wrap .modal-contents {
	width: 100%;
	height: 100%;
	padding-bottom: 30px;
	position: relative;
    top: 120px;
	overflow-x: hidden;
	overflow-y: auto;
}
#focus {
    width: 0;
    height: 0;
    opacity: 0;
    float: left;
}


/*.slideIn {
  transform : translate(0, 200px);
  transition : all 1s;
}
.slideIn.active{
  transform : translate(0, 0);
}*/

section.image-slider {
	min-height: 100vh;
	padding: 0;
}
section.image-slider .slider-top {
    overflow-y: hidden;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
section.image-slider .slider-top img {
    width: 100%;
    min-height: 100vh;
    object-fit: cover;
}
@supports (-webkit-touch-callout: none) {
	section.image-slider,
	section.image-slider .slider-top img {
		/* The hack for Safari */
		min-height: -webkit-fill-available;
	}
}
section.image-slider .slider-text {
	width: 100%;
	position: absolute;
	top: calc(50% - 170px);
	padding-bottom: 70px;
}
section.image-slider .slider-text .logo {
	width: 100%;
	height: auto;
	max-height: 200px;
	opacity: 0;
	animation: fadeIn 5s 4s forwards;
}
@keyframes fadeIn {
  0% {
	opacity: 0;
  }
  100% {
	opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
	opacity: 1;
  }
  100% {
	opacity: 0;
  }
}
section.image-slider .slider-text .logo img {
	width: 80%;
	max-width: 500px;
}
section.image-slider .slider-text h1 {
	width: 100%;
	font-size: 2.2rem;
	letter-spacing: 0.5em;
	color: #FFF;
	position: absolute;
	bottom: 0;
	animation: zoomH1 7s 0s forwards;
}
@keyframes zoomH1 {
  0% {
    transform: scale(0) translateY(-40px);
  }
  50% {
	opacity: 1;
  }
  60% {
    transform: scale(2.5) translateY(-40px);
	opacity: 0;
  }
  90% {
    transform: scale(1) translateY(-30px);
	opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
	opacity: 1;
  }
}
@keyframes zoomH1_mb {
  0% {
    transform: scale(0) translateY(-30px);
	  letter-spacing: 0.5em;
  }
  50% {
	opacity: 1;
  }
  60% {
    transform: scale(2) translateY(-30px);
	opacity: 0;
	  letter-spacing: 0.5em;
  }
  90% {
    transform: scale(1) translateY(-20px);
	opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
	opacity: 1;
	  letter-spacing: 0.2em;
  }
}

section.image-slider .nuage {
	width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    background: url(../images/brume.png) no-repeat bottom center;
    background-size: contain;
	padding: 0;
}


.indicator {
	width: 100%;
	height: 60px;
	text-align: center;
	padding: 0;
	position: absolute;
	bottom: 0;
}
.indicator .scrollIndicator {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.3);
    overflow: hidden;
    position: absolute;
    left: 50%;
    color: #fff;
    mix-blend-mode: exclusion;
    opacity: 1;
    -webkit-transition: opacity 600ms cubic-bezier(0.65, 0, 0.35, 1);
    transition: opacity 600ms cubic-bezier(0.65, 0, 0.35, 1);
}
.indicator .scrollIndicator:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rosybrown;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-animation: scrollIndicatorAnimation 3s infinite cubic-bezier(0.83, 0, 0.17, 1);
    animation: scrollIndicatorAnimation 3s infinite cubic-bezier(0.83, 0, 0.17, 1);
}
@-webkit-keyframes scrollIndicatorAnimation {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  5% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  45% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  55% {
    -webkit-transform: translateY(0) scaleY(1);
            transform: translateY(0) scaleY(1);
  }
  95% {
    -webkit-transform: translateY(100%) scaleY(1);
            transform: translateY(100%) scaleY(1);
  }
  100% {
    -webkit-transform: translateY(100%) scaleY(1);
            transform: translateY(100%) scaleY(1);
  }
}
@keyframes scrollIndicatorAnimation {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  5% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  45% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  55% {
    -webkit-transform: translateY(0) scaleY(1);
            transform: translateY(0) scaleY(1);
  }
  95% {
    -webkit-transform: translateY(100%) scaleY(1);
            transform: translateY(100%) scaleY(1);
  }
  100% {
    -webkit-transform: translateY(100%) scaleY(1);
            transform: translateY(100%) scaleY(1);
  }
}


section.domaine {
	background: url('../images/evenement-2.jpg') no-repeat center bottom #FFF;
	background-size: contain;
	overflow: hidden;
}
section.domaine .plan-wrap {
	width: 1200px;
	position: relative;
	left: calc(50% - 900px);
}
section.domaine .plan {
	width: 100%;
	height: 1000px;
	background: url('../images/plan.jpg') no-repeat right top;
	mix-blend-mode: multiply;
}
section.domaine .plan-btn {
	width: 330px;
	height: 250px;
	position: absolute;
	right: 350px;
	top: 430px;
	z-index: 6;
}
section.domaine .plan-btn a.btn {
	position: absolute;
	box-shadow: 3px 3px 3px rgba(45, 65,44, 0.3);
}
section.domaine .plan-btn a.btn.active {
	color: #FFF;
	background-color: #2D412C;
	transition: 0.5s;
}
section.domaine .plan-btn a.btn:nth-child(1) {
	top: 32px;
	left: 65px;
}
section.domaine .plan-btn a.btn:nth-child(2) {
	top: 140px;
	left: 95px;
}
section.domaine .plan-btn a.btn:nth-child(3) {
	top: 80px;
	left: 200px;
}
section.domaine .plan-btn a.btn:nth-child(4) {
	top: 180px;
	left: 0;
}
section.domaine .container {
	width: 50%;
	max-width: 650px;
	position: absolute;
	left: 47%;
	top: 50px;
}
.domaine-content {
	position: relative;
	display: flex;
	justify-content: center;
	padding-bottom: 30px;
	margin: 0 auto;
	
}
.domaine-item {
	font-size: 1.4rem;
	margin: 0 15px;
}
.domaine-item h5 {
	color: #2D412C;
	font-size: 1.8rem;
	margin-top: -10px;
}
.domaine-item a {
	font-size: 7px;
	color: #333;
	background-color: transparent;
	border-color: #333;
	padding: 6px 8px;
	display: inline-block;
}
.domaine-item.active a,
.domaine-item a:hover {
	color: #FFF;
	background-color: #2D412C;
	border-color: #2D412C;
	transition: 1s;
}
section.domaine .domaine-picto {
	width: 100%;
}
section.domaine .domaine-picto ul {
	flex-wrap: wrap;
	justify-content: center;
	border-radius: 10px;
	padding: 0 0 20px;
	position: relative;
	z-index: 6;
	display: none;
}
section.domaine .domaine-picto ul.active {
	display: flex;
}
section.domaine .domaine-picto ul li {
	width: 80px;
	height: 75px;
}
section.domaine .domaine-picto ul li span {
	height: 20px;
	line-height: 1em;
}
section.domaine .domaine-picto ul li img {
	display: block;
	margin: 0 auto;
}
.nuage1 {
	width: 70%;
	height: 100%;
	background: url("../images/evenement-3.png") no-repeat center bottom;
	background-size: contain;
	position: absolute;
	top: -130%;
	left: -15%;
	z-index: 1;
}
.nuage2 {
	width: 30%;
	height: 100%;
	background: url("../images/evenement-4.png") no-repeat center bottom;
	background-size: contain;
	position: absolute;
	top: -100%;
	right: -20%;
}


section.evenement {
}
section.evenement .bg {
	width: 100%;
	height: 0;
	background: url('../images/evenement-1.jpg') no-repeat center top;
	background-size: 100% auto;
	position: absolute;
	top: 0;
	padding-top: calc(730 / 1600 * 100%);
	z-index: 1;
}
section.evenement .couple {
	width: 45%;
	height: 75%;
	background: url('../images/evenement-4.png') no-repeat center top;
	background-size: contain;
	position: absolute;
	left: 8%;
	bottom: 16%;
}
section.evenement .fille {
	width: 32%;
	height: 100%;
	background: url('../images/evenement-5.png') no-repeat center bottom;
	background-size: contain;
	position: absolute;
	left: 10%;
	bottom: 16%;
}
section.evenement .plume1 {
	width: 200px;
	height: 100px;
	background: url("../images/plume-1.png") no-repeat center;
	position: absolute;
	top: 450px;
	left: 75%;
	z-index: 2;
}
section.evenement .container {
	height: calc(100% - 80px);
	padding: 0;
	position: absolute;
	top: 0;
	
}
section.evenement .titre-wrap {
	padding: 0 24px;
	position: absolute;
	left: 50%;
	top: 0;
}
section.evenement h2.titre {
	color: #FFF;
	text-align: center;
	margin-bottom: 30px;
	margin-left: 0;
}
section.evenement h2.titre span {
	margin-left: 0;
}

.content-box {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: stretch;
	z-index: 10;
}
section.evenement .content-box {
	position: absolute;
	bottom: 0;
	background: url('../images/evenement-6.png') no-repeat center 40px;
	background-size: 100% auto;
}
.content-item {
	width: 22vw;
	height: 22vw;
	max-width: 280px;
	max-height: 280px;
	position: relative;
	margin: 0 20px;
    padding: 1vw 2vw 2vw;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	z-index: 6;
}
.content-item * {
	position: relative;
}
.content-item .item-bg {
	width: 100%;
	height: 22vw;
	max-height: 280px;
	border-radius: 140px;
	position: absolute;
	top: 0;
	left: 0;
}
.content-item h3 {
	color: #50565F;
	margin: 15px 0;
	display: grid;
	place-items: center;
}
.content-item p {
	min-height: 90px;
	font-size: 1.6rem;
	color: #50565F;
	line-height: 1.2em;
}
.content-item a.btn {
	font-size: 1.2rem;
	color: #50565F;
	background-color: transparent;
	border-color: #50565F;
	margin-top: 15px;
}

section.evenement .content-item:nth-child(1) .item-bg {
	background-color: #F1F6F2;
}
section.evenement .content-item:nth-child(2) .item-bg  {
	background-color: #EAE9E2;
}
section.evenement .content-item:nth-child(3) .item-bg  {
	background-color: #EFE9D3;
}


section.galerie {
	min-height: 550px;
	padding-bottom: 60px;
}
section.galerie .titre-wrap {
	width: 75%;
}
section.galerie h2.titre {
	color: #2D412C;
	text-align: center;
	margin-bottom: 20px;
	margin-left: 0;
	margin-right: 280px;
}
section.galerie h2.titre span {
	display: inline;
	margin-right: 10px;
	vertical-align: 8px;
}
.itemid-111 section.galerie .titre-wrap {
	width: 100%;
}
.itemid-111 section.galerie h2.titre {
	margin-right: 0;
}
.itemid-111 h2.titre span {
    margin-left: 0;
}

.slider-galerie {
	width: 100%;
	padding: 30px 0 0;
}
.slider-galerie li {
	margin: 0 50px;
}
.slider-galerie li img {
	height: 650px;
	max-width: 650px;
	max-height: 650px;
	margin: 0 auto;
}
.slider-galerie.slick-initialized li img {
	height: auto;
}
.slider-top,
.slider-galerie,
.slider-modal {
  opacity: 0;
  transition: opacity .3s linear;
}
.slick-initialized {
  opacity: 1;
}
.caption {
	margin: 10px 0 0;
	display: none;
}
.slick-current .caption {
	display: block;
}
.slick-prev,
.slick-next {
	height: 100% !important;
}
.slick-prev:before,
.slick-next:before{
	content: "" !important;
	display: block;
}
.slider-btn {
	display: flex;
	justify-content: center;
	position: relative;
	margin: 10px auto;
}
.slider-btn .prev,
.slider-btn .next {
	width: 20px;
    height: 10px;
    position: relative;
	cursor: pointer;
}
.slider-btn .prev::before,
.slider-btn .next::before {
	width: 10px;
    height: 10px;
	content: "";
    position: absolute;
	top: 4px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.slider-btn .prev::before{
    left: 0;
    border-bottom: 1px solid #819B80;
    border-left: 1px solid #819B80;
}
.slider-btn .next::before{
    right: 0;
    border-top: 1px solid #819B80;
    border-right: 1px solid #819B80;
}
.img-num {
	font-size: 1.3rem;
}
.video-wrap {
	width: 100vw;
	max-width: 450px;
	max-height: 450px;
}
.video-wrap + p.caption {
	margin: 10px 0 0;
	display: block;
}


section.reservation {
	background: url("../images/reservation_fond.jpg") no-repeat;
	background-size: cover;
	padding: 80px 0 45px;
}
section.reservation .titre-wrap {
	width: 90%;
	max-width: 700px;
	margin: 0 auto;
}
section.reservation h2.titre,
section.reservation p {
	color: #fff;
	text-align: center;
	margin-left: 0;
	padding: 0 15px;
}
section.reservation .contact-wrap {
	margin-top: 30px
}
section.reservation .contact-wrap a.btn {
	width: 170px;
	color: #FFF;
	background-color: transparent;
	border-color: #FFF;
	padding: 8px 20px;
	margin: 0 12px 15px;
	display: inline-block;
}
section.reservation .contact-wrap a.btn:nth-child(2) {
	margin-bottom: 20px;
}
section.reservation .contact-wrap a:not(.btn) {
	font-family: 'DM Serif Display', serif;
	color: #FFF;
}


section.philosophie {
	height: 760px;
	background: url("../images/philosophie-fond.jpg") no-repeat center top;
	background-size: 100% 700px;
	padding: 90px 0 30px;
}
section.philosophie .container {
	max-width: 1000px;
	
}
section.philosophie .titre-wrap {
	max-width: 650px;
	position: relative;
	z-index: 5;
}
section.philosophie h2.titre {
	color: #55505D;
	margin-left: 30px;
}
section.philosophie h2.titre span {
	margin-left: 155px;
}
section.philosophie .el-1 {
	width: 43%;
	height: 700px;
	background: url("../images/philosophie-1.png") no-repeat left bottom;
	position: absolute;
	top: 0;
	left: 57%;
	z-index: 1
}
section.philosophie .el-2 {
	width: 100%;
	height: 200px;
	background: url("../images/philosophie-2.png") no-repeat left top;
	background-size: cover;
	position: absolute;
	top: 600px;
	left: 0;
	z-index: 3;
}
section.philosophie .el-3 {
	width: 300px;
	height: 240px;
	background: url("../images/plume-2.png") no-repeat left top;
	background-size: cover;
	position: absolute;
	top: 30px;
    left: 50%;
	z-index: 2;
}
section.philosophie .el-4 {
	width: 170px;
	height: 170px;
	background: url("../images/plume-3.png") no-repeat left top;
	background-size: cover;
	position: absolute;
	top: 380px;
    left: 10%;
	z-index: 2;
}
section.philosophie .content-box {
	width: 700px;
	min-height: 320px;
	position: absolute;
	top: 340px;
	left: -30px;
}
section.philosophie .content-item {
	min-width: 260px;
	min-height: 260px;
	margin: 0 10px;
}
section.philosophie .item-bg {
	min-width: 260px;
	min-height: 260px;
}
section.philosophie .content-box h3 {;
	color: #55505D;
	letter-spacing: 0.05em;
}
section.philosophie .content-item p {
	color: #50565F;
	line-height: 1.2em;
}
section.philosophie .content-item a.btn {
	color: #50565F;
	border-color: #50565F;
	margin-top: 10px;
}
section.philosophie .content-item:nth-child(1) .item-bg {
	background-color: #F2EEEE;
}
section.philosophie .content-item:nth-child(2) .item-bg {
	background-color: #EFEEEC;
}


section.autour {
	min-height: 1200px;
	background: url("../images/autour_fond.jpg");
	background-size: cover;
	z-index: 5;
	margin-bottom: -200px;
}
section.autour .titre-wrap {
	width: calc(50% + 200px);
	max-width: 700px;
	background: url("../images/autour-2.png") no-repeat left top;
	padding: 90px 20px 0 140px;
	position: relative;
	left: calc(50% - 200px);
	z-index: 2;
}
section.autour .titre-wrap h2 {
	color: #2D412C;
	margin-left: 0;
}
section.autour .container {
	width: 100%;
	overflow-x: scroll;
	position: relative;
	top: -200px;
	z-index: 1;
}
section.autour .carte {
	width: 1000px;
	height: 860px;
	background: url("../images/autour-1.png") no-repeat center 30px;
	position: relative;
	top: 0;
	left: calc(50% - 500px);
}
.carte .panneau {
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.1em;
	color: #8E847D;
	position: absolute;
}
.carte .panneau:nth-child(1) {
	left: 129px;
	top: 177px;
}
.carte .panneau:nth-child(2) {
	left: 508px;
	top: 249px;
}
.carte .panneau:nth-child(3) {
	left: 585px;
	top: 457px;
}
.carte .panneau:nth-child(4) {
	left: 389px;
	top: 579px;
}
.carte .panneau:nth-child(5) {
	left: 793px;
	top: 654px;
}
.carte .panneau:nth-child(6) {
	left: 698px;
	top: 772px;
}
.carte .ville {
	font-size: 2rem;
	font-family: 'DM Serif Display', serif;
	line-height: 1em;
	letter-spacing: 0.05em;
	color: #2D412C;
	position: absolute;
}
.carte .ville:nth-child(8) {
	left: 259px;
	top: 296px;
}
.carte .ville:nth-child(9) {
	left: 687px;
	top: 283px;
}
.carte .ville:nth-child(10) {
	left: 763px;
	top: 333px;
}
.carte .ville:nth-child(11) {
	left: 262px;
	top: 686px;
}
.carte .ville:nth-child(12) {
	left: 352px;
	top: 740px;
}
.carte .ville span {
	font-size: 1.5rem;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	letter-spacing: 0;
	display: block;
}
.carte .distance {
	font-size: 1.3rem;
	color: #8E847D;
	position: absolute;
}
.carte .distance:nth-child(13) {
	left: 422px;
	top: 522px;
}
.carte .distance:nth-child(14) {
	left: 516px;
	top: 462px;
}
.carte .distance:nth-child(15) {
	left: 350px;
	top: 364px;
}
.carte .distance:nth-child(16) {
	left: 726px;
	top: 576px;
}
.carte .distance:nth-child(17) {
	left: 33px;
	top: 250px;
}
.carte .distance:nth-child(18) {
	left: 832px;
	top: 822px;
}
.carte div:nth-child(7) {
	width: 268px;
	position: absolute;
	left: 244px;
	top: 408px;
}
.carte div:nth-child(19) {
	position: absolute;
	left: 258px;
	top: 166px;
}
.carte div:nth-child(20) {
	position: absolute;
	left: 910px;
	top: 440px;
}
.carte span.rond {
	width: 23px;
	height: 23px;
	border-radius: 11.5px;
	background-color: #8E847D;
	position: absolute;
}
.carte span.rond:nth-child(21) {
	left: 182px;
	top: 89px;
}
.carte span.rond:nth-child(22) {
	left: 545px;
	top: 347px;
}
.carte span.rond:nth-child(23) {
	left: 522px;
	top: 510px;
}
.carte span.rond:nth-child(24) {
	left: 476px;
	top: 516px;
}
.carte span.rond:nth-child(25) {
	left: 892px;
	top: 735px;
}
.carte span.rond:nth-child(26) {
	left: 653px;
	top: 705px;
}
section.autour .scroll-icon {
	width: 100px;
	height: 100px;
	background: url("../images/icon_scrollLR.png") no-repeat center center rgba(190,190,190,0.6);
	background-size: 50%;
	border-radius: 10px;
	position: absolute;
	left: calc(50% - 50px);
	bottom: 450px;
	z-index: 3;
	display: none;
}


section.contact {
	background: url("../images/autour_fond.jpg");
	background-size: cover;
	padding-bottom: 60px;
	z-index: 6;
}
section.contact h2 {
	color: #2D412C;
	text-align: center;
	margin: 0 0 50px;
}
section.contact a.btn {
	padding: 8px 20px;
}
section.contact .contact-wrap {
	max-width: 350px;
	margin: 30px auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
section.contact .contact-wrap * {
    line-height: 1em;
	letter-spacing: 0.05em;
}
p.holaires,
span.holaires {
	font-size: 1.3rem !important;
	letter-spacing: 0.1em;
	color: #2D412C;
	display: block !important;
	margin-top: 5px;
}
p.holaires {
	font-size: 1.6rem !important;
}
section.contact .gmap {
	width: 100%;
	max-width: 780px;
	height: 450px;
	padding: 25px 0;
	margin: 0 auto;
}
section.contact .gmap iframe {
	width: 100%;
	height:  100%;
	border-radius: 10px;
	filter:sepia(40%) saturate(60%);
	-webkit-filter:sepia(40%) saturate(60%);
}
section.contact .gmap iframe:hover {
	filter:sepia(0%) saturate(60%);
	-webkit-filter:sepia(0%) saturate(60%);
}


.slider-modal {
	width: 450px;
	padding: 0;
}
.slider-modal .slider-content img {
	height: 450px;

}
.container.modal {
	width: 100%;
	max-width: 1100px;
    padding: 90px 15px 30px;
	
}
.modal-wrap .container.modal {
    padding-top: 30px;
}
.container.modal .content-wrap {
	width: 100%;
    display: flex;
	justify-content: space-between;
	padding-bottom: 80px;
}
.container.modal h2 {
	font-size: 3.4rem;
	line-height: 1em;
	letter-spacing: 0.05em;
	color: #2D412C;
	margin-bottom: 20px;
}
.container.modal p {
	margin-bottom: 10px;
}

.container.modal .col-R {
	width: 650px;
	padding: 0 30px;
	position: relative;
}
.container.modal .col-R ul.liste {
	padding: 15px 0;
	margin-left: 20px;
	list-style: circle;
}
.container.modal .col-R ul.liste li {
	text-align: left;
	line-height: 1.3em;
	margin-bottom: 10px;
}
.container.modal .col-R .tarif {
	padding: 20px 0;
}
.container.modal .col-R .tarif a {
	padding: 8px 15px;
}

ul.jump {
	width: 100%;
	padding: 10px 0 0;
	display: none;
}
ul.jump li {
	font-size: 1.3rem;
	color: #999;
	padding: 5px 3px;
	margin: 0 3px;
	display: inline-block;
	cursor: pointer;
	border: 0.5px solid #999;
	border-radius: 3px;
	position: relative;
}
ul.jump li:hover,
ul.jump li.active {
	font-weight: 400;
	color: #2D412C;
	border: 1px solid #2D412C;
	top: 0px;
	left: 0px;
	margin: 0 2px;
}


/* Pictos */
ul.picto {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 10px;
	margin: 0 auto;
}
ul.picto li {
	text-align: center;
	padding-bottom: 15px;
	margin: 0 5px;
}
.detail:not(.generic) ul.picto li {
	margin: 0 5px;
}
ul.picto li img {
	vertical-align: middle;
}
/* Tooltip */
.tooltip {
  position: relative;
  cursor: pointer;
}

.tooltip-text {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  display: inline-block;
  padding: 3px 8px;
  white-space: nowrap;
  font-size: 1.3rem;
  color: #333;
  transition: 0.3s ease-in;
}

.tooltip:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}


/* Contact */
.container.contact {
	max-width: 600px;
	min-height: 1000px;
	margin: 0 auto;
	padding: 40px 0;
}
.container.contact h2 {
	margin-bottom: 20px;
}
.container.contact .objet {
	display: flex;
	justify-content: space-between;
	
	padding: 30px 0;
}
.container.contact .objet a {
	width: 31%;
	font-size: 18px;
	color: #819B80;
	border: 1px solid #819B80;
	border-radius: 5px;
	padding: 8px 20px;
}
.container.contact .objet a.active {
	color: #FFF;
	background-color: #819B80;
}
.container.contact form {
	padding-top: 30px;
	display: none;
}
.container.contact form.active {
	display: flex;
	flex-wrap: wrap;
}

.container.contact form .row {
	width: 100%;
	padding: 10px 0;
	font-size: 1.6rem;
	line-height: 1.2em;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 10px;
}
.container.contact form .row-wrap {
	width: 100%;
}
.container.contact form .row.w0,
.container.contact form .row .col.w0 {
	width: initial;
}
.container.contact form .row .col {
	width: 100%;
}
.container.contact form label {
	font-size: 1.4rem;
	display: block;
	margin-bottom: 5px;
}
.container.contact form .row-wrap {
	display: none;
}
.container.contact form .row-wrap.active {
	display: block;
	animation-name: fadeIn;
  	animation-duration: 0.5s;
}
.container.contact form .col span:nth-child(2),
.container.contact form .row.pro {
	display: none;
}


.container.contact input {
	width: 100%;
	font-size: 1.6rem;
	font-weight: 300;
	color: inherit;
	font-family: inherit;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 5px;
	padding: 12px;
}
.container.contact input:focus {
	border: 1px solid rgba(0, 0, 0, 0.32);
	box-shadow: none;
	outline: none;
}
.container.contact textarea {
	width: 100%;
	height: 200px;
	font-size: 1.6rem;
	font-weight: 300;
	color: inherit;
	font-family: inherit;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 5px;
	padding: 12px;
}
.container.contact textarea:focus {
	border: 1px solid rgba(0, 0, 0, 0.32);
	box-shadow: none;
	outline: none;
}

.container.contact .radio input[type="radio"],
.checkbox input[type="checkbox"]{
	width: inherit;
    position: absolute;
	opacity: 0;
	z-index: 2;
}
.container.contact .radio input[type="radio"] + label,
.container.contact .checkbox input[type="checkbox"] + label {
	font-size: 1.6rem;
	z-index: 1;
}
.container.contact .radio input[type="radio"] + label:before,
.container.contact .checkbox input[type="checkbox"] + label:before {
	width: 24px;
	height: 24px;
	content: '';
	border: 1px solid darken(#f4f4f4, 25%);
	background: #f4f4f4;
	border-radius: 100%;
	display: inline-block;
	position: relative;
	top: -0.1em;
	margin-right: 6px; 
	vertical-align: top;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
}
.container.contact .radio input[type="radio"]:checked + label:before,
.container.contact .checkbox input[type="checkbox"]:checked + label:before {
	background-color: #819B80;
	box-shadow: inset 0 0 0 4px #f4f4f4;
}
.container.contact .radio input[type="radio"]:focus + label:before,
.container.contact .checkbox input[type="checkbox"]:focus + label:before {
	outline: none;
	border-color: #819B80;
}
.container.contact .radio input[type="radio"]:disabled + label:before,
.container.contact .checkbox input[type="checkbox"]:disabled + label:before {
	box-shadow: inset 0 0 0 4px #f4f4f4;
	border-color: darken(#f4f4f4, 25%);
	background: darken(#f4f4f4, 25%);
}
.container.contact .radio input[type="radio"]:empty + label:before,
.container.contact .checkbox input[type="checkbox"]:empty + label:before {
	margin-right: 6px;
}

.container.contact select {
	width: 100%;
	height: 45.5px;
	font-size: 1.4rem;
	font-family: inherit;
	font-weight: 300;
	line-height: 1.2em;
	color: inherit;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background: transparent url(https://haniwaman.com/cms/wp-content/uploads/2018/12/form-css-arrow.png) no-repeat center right 6px/12px 12px;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 5px;
	cursor: pointer;
	padding: 10px;
	padding-right: 35px;
}
.container.contact select::-ms-expand {
	display: none;
}
.container.contact select:focus {
	border: 1px solid rgba(0, 0, 0, 0.32);
	box-shadow: none;
	outline: none;
}

.container.contact input#date-sejour.selected {
	border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.container.contact input[name="nuit"] {
	width: 84px;
    text-align: center;
    border-left-color: transparent;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
	display: none;
}

.container.contact .spinner {
	width: 169px;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 5px;
	text-align: center;
}
.container.contact .btnspinner{
    -ms-user-select: none;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
.container.contact .spinner input {
	width: 60px;
	height: 46px;
	text-align: center;
	border-top: none;
	border-bottom: none;
	border-radius: 0;
	padding: 0;
}
.container.contact .spinner input::-webkit-inner-spin-button,
.container.contact .spinner input::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
    -moz-appearance:textfield !important;
}
.container.contact .spinner input[type="button"]{
	width: 50px;
    cursor: pointer;
	border: none;
}

.container.contact form .btn {
    width: 150px;
	font-family: 'Lato', "sans-serif";
	font-weight: 300;
	color: #2D412C;
    border: 1px solid #2D412C;
    background-color: #FFF;
    font-size: 1.4rem;
    padding: 10px 15px;
}
.container.contact form button[type="submit"] {
	color: #FFF;
	background-color: #2D412C;
}

.container.contact .succes,
.container.contact .erreur {
	display: none;
}
.container.contact .succes.active,
.container.contact .erreur.active {
	display: block;
}
.container.contact .succes p:nth-child(2) {
	margin-bottom: 30px;
}
.container.contact .erreur a {
	display: inline-block;
}

.date-picker-wrapper {
	width: auto;
	font-family: 'Lato', 'sans-serif';
	font-size: 14px;
	color: #333;
	border: none;
	background-color: #FFF;
	border-radius: 3px;
	-webkit-box-shadow: 2px 2px 10px rgb(0 0 0 / 20%);
	box-shadow: 2px 2px 10px rgb(0 0 0 / 20%);
	z-index: 4;
}
.drp_top-bar {
	display: none;
}
.date-picker-wrapper .month-wrapper {
	border: none;
}
.date-picker-wrapper .caption {
	display: table-row;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.05em;
}
.date-picker-wrapper .select-wrapper {
	margin: 0 5px;
}
.date-picker-wrapper .selected-days {
	display: inline-block;
}
.date-picker-wrapper .month-wrapper table .week-name {
	height: 30px;
	line-height: 30px;
	color: #819B80;
}
.date-picker-wrapper .month-wrapper table .day {
	font-size: 16px;
	font-weight: 600;
	padding: 8px;
	margin-bottom: 0;
	text-decoration: line-through;
}
.date-picker-wrapper .month-wrapper table .day.real-today {
	background-color: transparent;
}
.date-picker-wrapper .month-wrapper table .day.valid,
.date-picker-wrapper .month-wrapper table .day.tmp {
	text-decoration: none;
}
.date-picker-wrapper .month-wrapper table .day.min-sejour {
	color: #333 !important;
	background-color: rgba(129, 155, 128, 0.3);
}
.date-picker-wrapper .first-date-selected, 
.date-picker-wrapper .last-date-selected {
	background-color: #819B80 !important;
	border-radius: 50%;
}
.date-picker-wrapper .start {
	background: linear-gradient(90deg, #FFF 0%, #FFF 50%, rgba(129, 155, 128, 0.3) 50%, rgba(129, 155, 128, 0.3) 100%);
}
.date-picker-wrapper .end {
	background: linear-gradient(90deg, rgba(129, 155, 128, 0.3) 0%, rgba(129, 155, 128, 0.3) 50%, #FFF 50%, #FFF 100%);
}
.date-picker-wrapper .month-wrapper table .day.checked,
.date-picker-wrapper .month-wrapper table .day.toMonth.hovering {
	background-color: rgba(129, 155, 128, 0.3);
}
.date-picker-wrapper .date-range-length-tip {
	background-color: #FFF;
	padding: 3px 6px;
	margin-left: 2px;
}
.date-picker-wrapper .date-range-length-tip:after {
	border-top: 4px solid #FFF;
}
.date-picker-wrapper .clear,
.date-picker-wrapper .close {
	font-size: 14px;
	font-weight: 500;
	color: #819B80;
	margin: 0 10px;
	cursor: pointer;
}

section.tarifs {
	width: 100%;
}
section.tarifs .tarif-wrap {
	width: 100%;
	max-width: 350px;
	margin: 0 auto;
}
section.tarifs h2 {
	font-size: 3.2rem;
	letter-spacing: 0.05em;
}
section.tarifs h2 span,
section.tarifs h2 + p,
section.tarifs .forfait + p {
	font-size: 1.4rem;
}
section.tarifs .forfait + p {
	line-height: 1.2em;
}
section.tarifs h2 span {
	vertical-align: super;
}
section.tarifs .forfait {
	text-align: left;
	border: 1px solid #819B80;
	border-radius: 5px;
	padding: 15px 20px;
	margin: 15px 0;
}
section.tarifs .forfait h5 {
	text-transform: uppercase;
	color: #819B80;
	margin-bottom: 0;
}
section.tarifs .forfait h5 + p {
	color: #2D412C;
}
section.tarifs .forfait p {
	font-weight: 400;
}
section.tarifs .forfait .condition,
section.tarifs .forfait .menage {
	font-size: 1.4rem;
	font-weight: 300;
	line-height: 1.2em;
	white-space: pre-wrap;
	margin-top: 5px;
}
section.tarifs .forfait .prix-wrap {
	margin-top: 5px;
}
section.tarifs .forfait .prix-wrap p {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.container.modal + section.tarifs {
	width: 95%;
    max-width: 420px;
	height: 100%;
	background-color: #FFF;
    overflow-y: scroll;
	padding-bottom: 50px;
	position: fixed;
	right: -420px;
	top: 0;
	z-index: 1005;
	transition: all 1s;
}
.container.modal + section.tarifs.on {
	right: 0;
}	
section.tarifs + .close {
	width: 100%;
	height: 100%;
    background-color: rgba(0,0,0,0.5);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
    z-index: 1004;
	display: none;
}



footer {
	max-width: 100%;
	background-color: #333;
	overflow-x: hidden;
	padding: 30px 15px 60px;
	position: relative;
	display: flex;
	justify-content: space-around;
	row-gap: 10px;
	column-gap: 30px;
}
footer .credit {
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	
}
footer .credit div {
	flex-grow:1;
}
footer .credit p {
	font-size: 1.2rem;
	color: #FFF;
	line-height: 1.2em;
    margin-top: 5px;
}
footer .credit p:last-child {
	margin-top: 0;
}
footer .credit p a {
	color: #FFF;
	display: inline-block;
}
footer .credit p a:hover {
	color: #CCC;
}

footer ul.mod-menu {
	width: 100%;
	max-width: 650px;
	height: 132px;
	margin: 0 0;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	row-gap: 5px;
	column-gap: 15px;
}
footer ul.mod-menu li {
	text-align: left;
	margin-right: 5px;
}
footer ul.mod-menu li a,
footer ul.mod-menu li span {
	font-size: 1.4rem;
	color: #FFF;
	vertical-align: top;
	
}
footer ul.mod-menu > li {
	flex-basis: auto;
}
footer ul.mod-menu > li:nth-child(7) {/*Autour*/
	order: 1;
}
footer ul.mod-menu > li:nth-child(6) {/*Philosophie*/
	order: 2;
}
footer ul.mod-menu > li:nth-child(9) {/*ML*/
	order: 3;
	margin-top: 38px;
}
footer ul.mod-menu > li:nth-child(5) {/*Reservation*/
	order: 4;
}
footer ul.mod-menu > li:nth-child(8) {/*contact*/
	order: 5;
	justify-content: flex-start;
}
footer ul.mod-menu > li:nth-child(12) {/*tel*/
	order: 6;
	justify-content: flex-start;
	flex-grow:1;
}
footer ul.mod-menu > li:nth-child(13) {/*sns*/
	order: 7;
	justify-content: flex-end;
}
footer ul.mod-menu > li:nth-child(10)/*btn reserver*/,
footer ul.mod-menu > li:nth-child(11)/*email*/{
	display: none;
}
footer ul.mod-menu li ul {
	 margin-top: -5px;
}
footer ul.mod-menu li:not(.itemid-122) ul li {
	margin-top: 2px;
}
footer ul.mod-menu > li span:not(.holaires) {
	color: #CCC;
	font-size: 1.2rem;
	font-weight: 600;
}
footer ul.mod-menu > li:nth-child(2) ul li:nth-child(1) a::after {
	content: " 4 Plumes"
}
footer ul.mod-menu > li:nth-child(2) ul li:nth-child(2) a::after {
	content: " La Palme"
}
footer ul.mod-menu > li:nth-child(2) ul li:nth-child(3) a::after {
	content: " Le Nid"
}
footer ul.mod-menu > li:nth-child(2) ul li:nth-child(4) a::before {
	content: " Le "
}
footer ul.mod-menu > li:nth-child(13) ul li {
	display: inline-block;
	margin-right: 10px;
}
footer ul.mod-menu > li:nth-child(13) ul li a {
	width: 24px;
	height: 24px;
	background: url("../images/icon_sns_fb_wh.png") no-repeat;
	background-size: cover;
}
footer ul.mod-menu > li:nth-child(13) ul li:nth-child(2) a {
	background: url("../images/icon_sns_ig_wh.png") no-repeat;
	background-size: cover;
}
footer ul.mod-menu > li:nth-child(13) ul li img {
	display: none;
}
footer ul.mod-menu .holaires {
	letter-spacing: 0;
}


.m-legal {
	width: 100%;
	max-width: 700px;
	padding: 30px 15px;
	margin: 0 auto;
}
.m-legal h3 {
	margin-bottom: 30px;
}
.m-legal h5 {
	font-size: 1.8rem;
	margin-top: 20px;
}
.m-legal p {
	margin-bottom: 8px;
}
.m-legal a {
	display: initial;
}

/* Animation */
.fadeIn {
	opacity: 0;
	transition: opacity 1s;
}
.fadeIn.is-show {
  opacity: 1;
}
.fadeIn_up {
	opacity: 0;
	transform: translate(0, 50px);	
	transition: transform 2s, opacity 1s;
	transition-delay: 0.3s;
	z-index: 5;
}
.fadeIn_up.is-show {
	transform: translate(0, 0);
	opacity: 1;
}
.fadeIn_down {
	opacity: 0;
	transform: translate(0, -50px);
	transition: transform 2s, opacity 1s;
}
.fadeIn_down.is-show {
	transform: translate(0, 0);
	opacity: 1;
}
.fadeIn_left {
  opacity: 0;
  transform: translate(-50px, 0);
  transition: transform 1.5s, opacity 1s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
.fadeIn_right {
  opacity: 0;
  transform: translate(50px, 0);
  transition: transform 1.5s, opacity 1s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.domaine-item.fadeIn_up:nth-child(2),
section.evenement .content-item.fadeIn_right:nth-child(2),
section.philosophie .content-item.fadeIn_left:nth-child(2) {
	transition-delay: 0.5s;
}
.domaine-item.fadeIn_up:nth-child(3),
section.evenement .content-item.fadeIn_right:nth-child(3) {
	transition-delay: 1s;
}
.domaine-item.fadeIn_up:nth-child(4) {
	transition-delay: 1.5s;
}

.domaine-item.fadeIn_up {
	transform: translate(0, 100px);	
}
.domaine-item.fadeIn_up.is-show {
	transform: translate(0, 0);
}
.nuage1.fadeIn_up {
	opacity: 1;
	transform: translate(10%, 40%);	
	transition: transform 15s;
}
.nuage1.fadeIn_up.is-show {
	transform: translate(0, 0);
}
.nuage2.fadeIn_up {
	opacity: 1;
	transform: translate(-30%, 40%);
	transition: transform 15s;
}
.nuage2.fadeIn_up.is-show {
	transform: translate(0, 0);
}
.plume1.fadeIn_down {
	opacity: 1;
	transform: translate(-500px, -1000px) rotate(-340deg);	
	transition: transform 40s;
}
.plume1.fadeIn_down.is-show {
	transform: translate(0, 0) rotate(0deg);
}
section.galerie.fadeIn_up {
	transition-delay: 0.6s;
}
section.philosophie .el-3.fadeIn_down {
	opacity: 1;
	transform: translate(80%, -150%) rotate(90deg);	
	transition: transform 15s;
}
section.philosophie .el-3.fadeIn_down.is-show {
	transform: translate(0, 0) rotate(0deg);
}
section.philosophie .el-4.fadeIn_down {
	opacity: 1;
	transform: translate(-30%, -100%) rotate(-90deg);	
	transition: transform 15s;
}
section.philosophie .el-4.fadeIn_down.is-show {
	transform: translate(0, 0) rotate(0deg);
}


@media screen and (max-height: 768px) {
	.slider-galerie li img {
		height: 70vh;
		max-width: 70vh;
		max-height: 70vh;
	}
}


@media screen and (max-width: 1120px) {
	section.evenement .titre-wrap {
		top: -10vw;
	}
	section.evenement .content-box {
		padding-bottom: 0;
	}
	section.evenement .content-item {
		width: 33.333vw;
		max-width: 280px;
		height: auto;
		max-height: none;
		position: relative;
		margin: 0 20px;
		padding: 0;
		display: flex;
		flex-flow: column;
		justify-content: flex-start;
		align-items: center;
	}
	section.evenement .content-item .item-bg {
		width: 180px;
		height: 180px;
		min-height: 180px;
		left: calc(50% - 90px);
	}
	section.evenement .content-item h3 {
		height: 180px;
		font-size: 2rem;
		margin-top: 0;
		margin-bottom: 10px;
	}
	section.evenement .content-item p {
		min-height: 70px;
		flex-grow: 1;
	}
}


@media screen and (max-width: 1000px) {	
	.container.modal .content-wrap {
		flex-wrap: wrap;
		justify-content: center;
	}
	.slider-modal {
		width: 100vw;
		min-height: 0;
	}
	.slider-modal .slider-content {
	}
	.slider-modal .slider-content img {
		width: auto;
		max-height: 450px;
		margin: 0 auto

	}
	.slider-modal .slick-prev {
		width: 15%;
		left: 0;
	}
	.slider-modal .slick-next {
		width: 15%;
		right: 0;
	}
	.container.modal .col-R {
		padding-top: 30px; 
	}
	ul.jump {
		display: block;
	}

	section.autour .carte {
		left: 0;
	}
	section.autour .scroll-icon {
		display: block;
	}
}

@media screen and (max-width: 834px) {
	header.white .btn_reservation a {
		padding: 10px 0;
	}
	.btn-trigger {
		right: 20px;
	}
	nav.sub-menu .modal-close {
		right: 20px;
	}
	section.domaine {
		min-height: 1024px;
	}
	section.domaine .plan-wrap {
		width: 100%;
		left: 0;
	}
	section.domaine .container {
		width: 60%;
		left: 40%;
	}
	section.domaine .plan {
		height: 800px;
		background-position: calc(50% - 250px) top;
		background-size: auto 730px;
	}
	section.domaine .plan-btn {
		width: 330px;
		height: 250px;
		position: absolute;
		left: calc(50% - 380px) ;
		right: inherit;
		top: 300px;
	}
	section.domaine .plan-btn a.btn:nth-child(1) {
		top: 35px;
		left: 90px;
	}
	section.domaine .plan-btn a.btn:nth-child(2) {
		top: 140px;
		left: 110px;
	}
	section.domaine .plan-btn a.btn:nth-child(4) {
		top: 180px;
		left: 60px;
	}
	.domaine-item {
		margin: 10px;
	}
	section.domaine .domaine-picto {
    	display: none;
	}
	
	section.evenement .fille {
		left: 5%;
	}
	section.evenement .titre-wrap {
		width: 62%;
		position: absolute;
		top: -12vw;
		left: inherit;
		right: 0;
	}
	
	.slider-galerie li {
		margin: 0 30px;
	}
	
	section.philosophie .content-box {
		width: 580px;
		left: 0;
	}
	section.philosophie .content-item {
		margin: 0 10px;
	}
	
	.container.modal {
		max-width: 100%;
	}

}


@media screen and (max-width: 768px) {
	
}


@media screen and (max-width: 640px) {
	body {
		padding-top: 60px;
	}
	header {
		padding: 0 15px;
	}
	header .btn_reservation {
		display: none;
	}
	header .logo_header {
		text-align: left;
	}
	.btn-trigger {
		right: 15px;
	}
	nav.navigation {
		right: -100vw;
	}
	nav.navigation ul {
		width: 100vw;
		padding: 45px 0 0;
	}
	nav.sub-menu .modal-close {
		right: 15px;
	}
	.modal-wrap .modal-contents {
	    top: 50px;
	}
	.container.modal {
		padding-top: 50px;
	}
	
	section.image-slider {
		height: 60vh;
		min-height: 0;
		padding: 0;
	}
	section.image-slider .slider-top {
		overflow-y: hidden;
		position: fixed;
		top: 60px !important;
		bottom: 0;
		left: 0;
		right: 0;
	}
	section.image-slider .slider-top img {
		width: 100%;
		height: 60vh;
		min-height: 0;
		object-fit: cover;
	}
	section.image-slider .slider-text {
		top: calc(38vh - 145px);
		padding-bottom: 40px;
	}
	section.image-slider .slider-text .logo img {
		width: 65%;
		filter: drop-shadow(0 0 4px rgba(0,0,0,0.5));
	}
	section.image-slider .slider-text h1 {
		font-size: 1.6rem;
		letter-spacing: 0.2em;;
		animation: zoomH1_mb 7s 0s forwards;
		filter: drop-shadow(0 0 4px rgba(0,0,0,0.5));
	}
	.indicator {
		display: none;
	}
	section.image-slider .nuage {
		background: url(../images/brume_480.png) no-repeat bottom center;
		background-size: 100%;
		padding: 0;
	}
	
	.titre-wrap {
		width: 100% !important;
		left: inherit;
		right: inherit;
	}
	h2.titre {
		font-size: 14vw;
		font-size: clamp(30px, 14vw, 70px);
		text-align: center;
		margin-left: 0 !important;
		margin-right: 0 !important;
		margin-bottom: 20px !important;
	}
	h2.titre span {
		font-size: 8vw;
		font-size: clamp(24px, 8vw, 38px);
	}
	.container {
		width: 100% !important;
	}
	
	section.domaine {
		padding-top: 0;
	}
	section.domaine .plan-wrap {
		bottom: 130px;
		mix-blend-mode: multiply;
		z-index: 1;
	}
	section.domaine .plan {
		height: 700px;
		background-position: 60% bottom;
		background-size: auto 700px;
		
	}
	section.domaine .plan-btn {
		left: calc(60% - 195px);
		top: inherit;
		bottom: 170px;
	}
	section.domaine .plan-btn a.btn:nth-child(1) {
		top: 50px;
		left: 60px;
	}
	section.domaine .container {
		width: 100%;
		position: relative;
		left: 0;
		top: 0;
		z-index: 2;
	}
	section.domaine .titre-wrap h2.titre span {
		margin-left: -20vw;
	}
	.domaine-content {
		flex-wrap: wrap;
	}
	
	section.evenement .titre-wrap {
		top: calc((328px - 33vw) * -1);
		z-index: 5;
	}
	section.evenement .titre-wrap h2.titre {
		color: #80A3C0;
	}
	section.evenement .content-box {
		flex-wrap: wrap;
		background-position: center 20px;
		bottom: -20px;
	}
	section.evenement .content-item {
		width: 100%;
		margin-bottom: 20px;
	}
	section.evenement .content-item p {
		min-height: inherit;
	}
	
	section.galerie h2.titre span {
		margin-left: 0;
	}
	
	section.philosophie {
    	height: auto;
		background-image: url(../images/philosophie-fond_mb.jpg);
    	background-size: auto calc(100% + 0px);
    	background-position: calc(50% + 0px) top;
		padding-top: 60px;
	}
	section.philosophie .container{
	}
	section.philosophie .titre-wrap {
		padding-bottom: 60px;
	}
	section.philosophie h2.titre {
		margin-bottom: 30px !important;
	}
	section.philosophie h2.titre span {
		margin-left: 0;
	}
	section.philosophie .content-box {
		width: 100%;
		flex-wrap: wrap;
		position: relative;
		top: 0;
	}
	section.philosophie .content-item {
		height: auto;
		max-height: none;
		position: relative;
		margin: 0 20px;
		padding: 0;
		margin-bottom: 20px;
	}
	section.philosophie .content-item .item-bg {
		width: 180px;
		height: 180px;
		min-height: 180px;
		min-width: 180px;
		left: calc(50% - 90px);
	}
	section.philosophie .content-item h3 {
		height: 180px;
		font-size: 2rem;
		margin-top: 0;
		margin-bottom: 10px;
	}
	section.philosophie .content-item p {
		min-height: 0;
	}
	section.philosophie .el-1 {
		display: none;
	}
	section.philosophie .el-2 {
		position: relative;
		top: inherit;
		display: none;
	}
	
	.slider-galerie li {
		margin: 0;
	}
	
	section.autour {
		margin-bottom: -180px;
	}
	section.autour .titre-wrap {
		width: 100%;
		max-width: 550px;
		left: 0;
		padding-left: 10px;
		padding-right: 10px;
		margin: 0 auto;
		background-position: calc(50% - 120px) top;
	}
	section.autour .titre-wrap h2 {
		text-align: left;
		color: #2D412C;
		margin-left: 32vw !important;
		margin-bottom: 70px !important;
		padding-right: 10px;
	}
	section.autour .container {
		top: -140px;
	}
	section.autour .carte {
		left: 0;
	}
	
	section.contact {
		padding-bottom: 0px;
	}
	section.contact h2.titre {
		margin-bottom: 30px !important;
	}
	
	.container.modal .col-R {
		width: 100%;
		padding: 30px 0 0;
	}
	
	
	.container.contact {
		min-height: 100vh;
		padding: 20px 0 40px;
	}
	.container.contact h2 {
		font-size: clamp(28px, 7vw, 38px);
	}
	.container.contact .objet {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}
	.container.contact .objet a {
		width: calc(100% - 60px);
	}
	.container.contact form {
		padding: 0 30px;
	}
	.container.contact form .row:nth-child(1) {
		flex-wrap: wrap;
	}
	.container.contact form .row:nth-child(1) > .col:first-child {
		width: 100%;
	}
	.container.contact form .row:nth-child(1),
	.container.contact form .row:nth-child(2) {
		justify-content: left !important;
	}
	.container.contact form .row:nth-child(3),
	.container.contact form .row:nth-child(4),
	.container.contact form .row:nth-child(5) {
		flex-wrap: wrap;
	}
	#form1 .row:nth-child(1) > .col {
		width: 100%;
		text-align: left;
	}
	#form1 .row:nth-child(1) > .col label {
		text-align: left;
	}
	#form1 .row:nth-child(2),
	#form2 .row:nth-child(2){
		flex-wrap: wrap;
	}
	.date-picker-wrapper {
		width:  256px;
	}
	
	
	footer {
		padding: 15px 15px 20px;
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	footer .credit {
		text-align: center;
	}
	footer ul.mod-menu {
		height: 115px;
		justify-content: flex-start;
	}
	footer ul.mod-menu li,
	footer .credit div {
		display: none;
	}
	footer ul.mod-menu > li:nth-child(9) {/*ML*/
		display: block;
		order: 8;
		margin-top: 0;
	}
	footer ul.mod-menu > li:nth-child(5) {/*Reservation*/
		display: block;
		order: 5;
	}
	footer ul.mod-menu > li:nth-child(8) {/*contact*/
		display: block;
		order: 6;
	}
	footer ul.mod-menu > li:nth-child(12) {/*tel*/
		display: block;
		order: 7;
		flex-grow:1;
	}
	footer ul.mod-menu > li:nth-child(13) {/*sns*/
		display: block;
		order: 8;
		text-align: right;
	}
	footer ul.mod-menu > li:nth-child(13) ul li {
		margin-right: 0;
		margin-left: 10px;
	}
	
}

@media screen and (max-width: 470px) {
	nav.sub-menu {
		height: auto;
		padding: 3vw 0;
	}
	nav.sub-menu ul li {
		margin: 0 3vw;
	}
	nav.sub-menu ul li a {
		font-size: 4vw;
	}
	.modal-wrap .container.modal {
		padding-top: 0px;
	}
	.slider-modal {
		max-height: none;
		padding-bottom: 0;
	}
	.slider-modal .slider-content img {
		max-height: 100vw;
	}
	.caption {
		font-size: clamp(14px, 3.5vw, 17px);
    	padding: 0 10px;
	}
	ul.jump li {
		margin-bottom: 10px;
	}
	.container.modal .col-R {
		padding-top: 0;
	}
	ul.picto {
    	width: 100% !important;
	}
	.domaine-content {
		max-width: 280px;
	}
	.domaine-item {
		margin: 0 20px 15px;
	}
	
	.container.modal + section.tarifs {
		width: 90%;
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 100px;
	}
	section.tarifs .forfait p {
		font-size: 1.6rem;
	}
	
}


.itemid-160.layout-edit .options-form .control-group {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.itemid-160.layout-edit .options-form .control-group:nth-child(1),
.itemid-160.layout-edit .options-form .control-group:nth-child(2),
.itemid-160.layout-edit .options-form .control-group:nth-child(8),
.itemid-160.layout-edit .options-form .control-group:nth-child(14),
.itemid-160.layout-edit .options-form .control-group:nth-child(20) {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
  padding-bottom: 20px;
}
.itemid-160.layout-edit .options-form .control-group .control-label {
  width: 130px;
  text-align: left;
}
.itemid-160.layout-edit .options-form .control-group .controls input {
    width: 100%;
    font-size: 1.6rem;
    font-weight: 300;
    color: inherit;
    font-family: inherit;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 5px;
    padding: 8px;
}
.itemid-160.layout-edit .options-form .control-group .controls textarea {
    width: 300px;
    height: 100px;
    font-size: 1.6rem;
    font-weight: 300;
    color: inherit;
    font-family: inherit;
	white-space: pre-wrap;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 5px;
    padding: 12px;
}
.itemid-160.layout-edit .options-form .CodeMirror + p {
  display: none;
}
.itemid-160.layout-edit .options-form .CodeMirror {
    min-height: unset;
    max-height: unset;
    height: fit-content;
}
.itemid-160.layout-edit .options-form .form-grid {
    width: fit-content;
    margin: 20px auto;
}
.itemid-160.layout-edit .mb-2 button:nth-child(3) {
  display: none;
}

.view-login .login {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  padding: 50px 0;
}
.view-login .login form {
  width: 300px;
}
.view-login .login form .control-group,
.view-login .login form .com-users-login__remember{
  margin-bottom: 20px;
}
.view-login .login .control-label,
.view-login .login .form-check {
    font-size: 1.3rem;
    text-align: left;
}
.view-login .login input#username,
.view-login .login input#password {
  	min-width: 100%;
    width: 100%;
    font-size: 1.6rem;
    font-weight: 300;
    color: inherit;
    font-family: inherit;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 5px;
    padding: 8px;
}

.view-login .login button.input-password-toggle,
.view-login .login .com-users-login__remember + .com-users-login__submit {
    display: none
}
.view-login .login .com-users-login__submit button[type="submit"] {
    width: 100%;
    color: #FFF;
    background-color: #2D412C;
    padding: 8px;
}
.view-login .login .com-users-login__options.list-group {
    font-size: 1.3rem;
    line-height: 2em;
}