/*-------------
 	General
-------------*/
 @font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-Book.eot');
	src: local('Gotham Book'), local('Gotham-Book'),
		url('../fonts/Gotham-Book.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Gotham-Book.woff2') format('woff2'),
		url('../fonts/Gotham-Book.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
 }

  @font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Light.eot');
    src: local('Gotham Medium'), local('Gotham-Light'),
        url('../fonts/Gotham-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gotham-Light.woff2') format('woff2'),
        url('../fonts/Gotham-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.eot');
    src: local('Gotham Medium'), local('Gotham-Medium'),
        url('../fonts/Gotham-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gotham-Medium.woff2') format('woff2'),
        url('../fonts/Gotham-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

  /* @font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-Bold.eot');
	src: local('Gotham Bold'), local('Gotham-Bold'),
		url('../fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Gotham-Bold.woff2') format('woff2'),
		url('../fonts/Gotham-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
  } */

:root {
	--Brown: #705840;
	--Green:#496451;
	--Lightgreen:#a9c0a4;
	--whiteColor:#fff;
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html{

	
}
body {
	font-family: 'Gotham', Arial, Helvetica, sans-serif;
	font-weight: 300;
	font-size: 18px;
	background: #927f6d;
	color: var(--Brown);
	/* height: 95vh;
	max-height: 95vh; */
}
body.noscroll {overflow:hidden; position: fixed; width: 100%;}
nav{
	list-style: none;
}
section ul {
	padding-left: 34px;
	list-style: none;

}
section ul li {
	margin-bottom: 20px;
	position: relative;
}
section ul li::before {
	content: "";
	position: absolute;
	background: url('../img/icons/check.svg');
	width: 26px;
	height: 26px;
	left: -36px;
	top: 0;
}
	
a{
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.h-lines,
.v-lines {
  position:absolute;
  top:var(--horizontal-offset,0);
  right:var(--vertical-offset,0);
  bottom:var(--horizontal-offset,0);
  left:var(--vertical-offset,0);
  transition:transform .8s;
  will-change:transform;
  z-index:-1
}
.btn,
.nav-mobile {
  -moz-transition:.5s;
  -o-transition:.5s;
  -webkit-transition:.5s
}
.h-lines::before,
.v-lines::before {
  content:"";
  position:absolute;
  border:inherit;
}
.h-lines {
  --vertical-offset:calc(var(--offset) * -1);
  border-top:var(--border-size) solid currentcolor;
  border-bottom:var(--border-size) solid currentcolor;
  top:calc(var(--border-size) * -1);
  bottom:calc(var(--border-size) * -1)
}
.h-lines::before {
  top:calc(var(--vertical-offset) - var(--border-size));
  bottom:calc(var(--vertical-offset) - var(--border-size));
  left:calc(var(--offset) - var(--border-size));
  right:calc(var(--offset) - var(--border-size))
}
.v-lines {
  --horizontal-offset:calc(var(--offset) * -1);
  border-left:var(--border-size) solid currentcolor;
  border-right:var(--border-size) solid currentcolor;
  right:calc(var(--border-size) * -1);
  left:calc(var(--border-size) * -1)
}
.v-lines::before {
  top:calc(var(--offset) - var(--border-size));
  bottom:calc(var(--offset) - var(--border-size));
  left:calc(var(--horizontal-offset) - var(--border-size));
  right:calc(var(--horizontal-offset) - var(--border-size))
}
.btn {
  --offset:7px;
  --border-size:1px;
  color:var(--Lightgreen);
  background:0 0;
  position:relative;
  margin:15px;
  padding:15px 25px;
  border:1px solid currentcolor;
  font-weight:400;
  font-size:1rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  line-height:1;
  outline:0;
  cursor:pointer;
  -webkit-border-radius:0;
  -moz-border-radius:0;
  border-radius:0;
  transition:.5s;
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none
}
.btn:active,
.btn:focus,
.btn:hover {
  background:0 0;
  border-color:var(--Lightgreen);
  color:var(--Lightgreen);
  -webkit-box-shadow:none;
  -moz-box-shadow:none;
  box-shadow:none
}
.btn-dark.disabled .h-lines,
.btn-dark:disabled .h-lines,
.btn-light.disabled .h-lines,
.btn-light:disabled .h-lines,
.btn-primary.disabled .h-lines,
.btn-primary:disabled .h-lines,
.btn.reverse .h-lines,
.btn:active .h-lines,
.btn:focus .h-lines,
.btn:hover .h-lines {
  transform:scaleX(0)
}
.btn-dark.disabled .v-lines,
.btn-dark:disabled .v-lines,
.btn-light.disabled .v-lines,
.btn-light:disabled .v-lines,
.btn-primary.disabled .v-lines,
.btn-primary:disabled .v-lines,
.btn.reverse .v-lines,
.btn:active .v-lines,
.btn:focus .v-lines,
.btn:hover .v-lines {
  transform:scaleY(0)
}

.btn.reverse:active .h-lines,
.btn.reverse:focus .h-lines,
.btn.reverse:hover .h-lines,
.element .image:hover .hover-info .h-lines {
  transform:scaleX(1)
}
.btn.reverse:active .v-lines,
.btn.reverse:focus .v-lines,
.btn.reverse:hover .v-lines,
.element .image:hover .hover-info .v-lines {
  transform:scaleY(1)
}p.ab
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
  background:rgba(142,174,186,.05);
  border-color:var(--Lightgreen);
  color:var(--Lightgreen)
}
.btn-primary:active:focus {
  -webkit-box-shadow:0 0 0 .25rem rgba(142,174,186,.2);
  -moz-box-shadow:0 0 0 .25rem rgba(142,174,186,.2);
  box-shadow:0 0 0 .25rem rgba(142,174,186,.2)
}
.btn-primary.disabled,
.btn-primary:disabled {
  color:var(--Lightgreen);
  background-color:rgba(142,174,186,.05);
  border-color:var(--Lightgreen)
}
.btn-light.disabled,
.btn-light:active,
.btn-light:disabled,
.btn-light:focus,
.btn-light:hover {
  background:rgba(255,255,255,.2);
  border-color:#fff;
  color:#fff
}
.btn-light:active:focus {
  -webkit-box-shadow:0 0 0 .25rem rgba(255,255,255,.2);
  -moz-box-shadow:0 0 0 .25rem rgba(255,255,255,.2);
  box-shadow:0 0 0 .25rem rgba(255,255,255,.2)
}
.btn-light {
  color:#fff;
  background:var(--Brown);
  border:2px solid var(--whiteColor)
}
.btn-dark {
  color:#fff;
  background:var(--Lightgreen);
  border:2px solid var(--Green)
}
.btn-dark .h-lines {
  border-top-color:var(--Green);
  border-bottom-color:var(--Green)
}
.btn-dark .v-lines {
  border-left-color:var(--Green);
  border-right-color:var(--Green)
}
.btn-dark.disabled,
.btn-dark:active,
.btn-dark:disabled,
.btn-dark:focus,
.btn-dark:hover {
  background:rgba(115,119,123,.1);
  border-color:var(--Green);
  color:var(--Green)
}
.btn-dark:active:focus {
  -webkit-box-shadow:0 0 0 .25rem rgba(115,119,123,.2);
  -moz-box-shadow:0 0 0 .25rem rgba(115,119,123,.2);
  box-shadow:0 0 0 .25rem rgba(115,119,123,.2)
}
::selection {
	background: var(--Lightgreen);
	color: #fff;
}
hr {
	border: 0;
	padding: 20px;
}
section {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px;
	max-width: 1080px;
	margin: 0 auto;
	background: var(--whiteColor);
	z-index: 0;
	position: relative;
}
img {
	box-sizing: border-box;
	height: auto;
	max-width: 100%;
}
fieldset {
	border: 0;
}

select, input[type="text"],  textarea {
	border: solid 1px #ccc;
	border-radius: 0;
	padding: .95em 1.5em;
	width: 100%;
	font-size: 0.75em;
	text-transform: none;
	font-family: 'Gotham', Arial, Helvetica, sans-serif;
	line-height: 1;
	color: var(--textColor);
	display: block;
	min-height: 40px;
	font-weight: 300;
	background: transparent;
	margin: 5px 0 15px;
}
input, textarea, select {
	outline: none;
}

input:active, textarea:active {outline:none;}
:focus {outline:none;}

input::-webkit-input-placeholder,textarea::-webkit-input-placeholder { opacity:1;}
input::-moz-placeholder,textarea::-moz-placeholder { opacity:1;}
input:-ms-input-placeholder,textarea:-ms-input-placeholder { opacity:1;}
input:-moz-placeholder,textarea:-moz-placeholder { opacity:1;}


.chevron-box {
	position: relative;
	width: 60px;
	height: 60px;
	display: block;
}
.in-view .chevron {
  position: absolute;
  width: 60px;
  height: 2px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.in-view .chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.in-view .chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

p {
	margin: 20px 0;
	line-height: 1.3;
}
strong {
	font-weight: 500;
}
iframe {
	max-width: 100%;
}
.grid{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.t-t-up{text-transform: uppercase;}
.f-s-16{font-size: 16px;}
.f-s-30{font-size: 30px;}
.normal{font-weight: normal;}
.medium{font-weight: 500;}
.text-center {text-align: center;}
.l-s {letter-spacing: clamp(1px, 0.1vw, 2px);}
.p-absolute{position: absolute;}
.p-relative{position: relative;}
.o-hidden {overflow: hidden;}
.h-100{min-height: 100vh;}
.w-100{width: 100%;}
.d-flex{display: flex;} 
.f-d-column{flex-direction: column;} 
.al-center{align-items: center}
.j-c-center{justify-content: center;}
.bg-green {background: var(--Green);}
.bg-white {background: var(--whiteColor);}
.c-brown{color:var(--Brown)}
.c-white {color: var(--whiteColor);}




/*-------------
 	Header
-------------*/

header{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 35px;
	flex-direction: column;	
}
.menu-box {
	z-index: 100;
	transition: all .5s ease;
	transform: translateX(100%);
	top: 0;
	padding: 30px;
}
.menu-box.in-view   {
	transform: translateX(0);
}
.box-wrapper.h-100 {
	min-height: calc(100vh - 60px);
}
nav li {
	padding: 1vh;
	margin: 2vh;
}
#close {
	position: absolute;
	bottom: -10px;
	right: 0;
	transform: rotate(45deg);
	font-size: 40px;
	opacity: .8;
}
.box-wrapper {
	position: relative;
	--offset: 11px;
	--border-size: 1px;
	padding: 15px;
}
.flowers-top,.flowers-bottom {
	width: 362px; 
	height: 327px; 
	position: absolute;
	opacity: .8;
}
.flowers-top,.flowers-top span {top: 0;}
.flowers-bottom,.flowers-bottom span {bottom: 0;}
.flowers-top span, .flowers-bottom span {
	background-image: url(../img/flowers.webp);
	width: 362px;
	height: 327px;
	position: absolute;
	width: 362px; 
	height: 327px;
	display:block;
}
.in-view .flowers-top,.in-view .flowers-bottom {
  transition-delay: 1s;
  animation: shake 3s linear 1;
}

@keyframes shake {
  10% {
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    transform: translateX(1px) rotate(0);
  }

  100% {
    transform: translateX(-1px) rotate(0);
  }
}


.menu-box .flowers-top {
	right: -80px;
	top: -180px;
}
.menu-box .flowers-bottom {
	left: -150px;
	bottom: -150px;
}

.menu-box .flowers-top span {
	transform: rotate(0deg) rotateY(180deg);
}
.menu-box .flowers-bottom span{
	transform: rotate(15deg);
}

/*----------------
 	Hero Section
----------------*/

.hero{
	position: relative;
	justify-content: center;
	height: 100vh;
	color: #fff;
	text-align: center;
}

.hero .background-image {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover !important;
	z-index: -1;
	background-position: center !important;
}
/* .hero .background-image:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #414a4f;
	opacity: 0.75;
} */
.heading,.clock-timer {
	font-size: clamp(30px, 8vw, 44px);
	font-weight: 500;
	margin: 20px 0;
}
.hero .heading {
	margin: 10px 0;
}
.description-box {
	bottom: 30px;
	padding: 20px;
	max-width: 380px;
	background: rgba(112,88,64,.7);
}

/*--------------------
 	HOWTO
---------------------*/
.accordion {width: 100%;}
.accordion-toggle {
	border: 1px solid currentcolor;
	padding: 15px 35px 15px 15px;
	cursor: pointer;
	margin-bottom: 15px;
	position: relative;
}
.accordion-content {
	display: none;
	padding: 15px;
	margin-top: -15px;
	margin-bottom: 15px;
}
.accordion-content.default {display: block;}

.accordion h3 span {
	width: 28px;
	height: 28px;
	display: inline-block;
	background: var(--Lightgreen);
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	border-radius: 100%;
	margin-right: 5px;
	line-height: 28px;
}
.accordion-toggle::after {
	content: url(../img/icons/bird.svg);
	width: 25px;
	display: inline-block;
	text-align: center;
	transform: rotate(-90deg);
	position: absolute;
	right: 7px;
	top: 50%;
	height: 25px;
	margin-top: -13px;
	line-height: 25px;
}
.active:after{
transform: rotate(0deg);
}
#transfer .accordion-content {
	display: none !important;
}
/*--------------------
 	ACCOMMODATION_MORE
---------------------*/


#ACCOMMODATION_MORE .flowers-top {
	right: -100px;
	top: -200px;
}
#ACCOMMODATION_MORE .flowers-bottom {
	left: -100px;
	bottom: -215px;
}

#ACCOMMODATION_MORE .flowers-top span {
	transform: rotate(120deg);
}
#ACCOMMODATION_MORE .flowers-bottom span {
	transform: rotate(225deg) rotateY(180deg);
}


/*--------------------
 	ADDITIONAL_MORE
---------------------*/

#ADDITIONAL_MORE p {
	margin-top: 0;
}

/*--------------------
 	#CONFIRM_MORE
---------------------*/
#CONFIRM .heading {
	margin-top: -40vh;
}
#CONFIRM_MORE .accordion-content, #CONFIRM_MORE .accordion-toggle {
	border: 1px solid var(--Green);
}
#logistic .accordion-toggle {
	flex-basis: calc(50% - 7.5px);
}
#logistic .accordion-toggle:first-child {
	margin-right: 15px;
}
/* #logistic .accordion-toggle:after {
	content: '';
} */
#CONFIRM_MORE .flowers-top {
	left: -220px;
	top: -170px;
}
#CONFIRM_MORE .flowers-bottom {
	right: -180px;
	bottom: -150px;
}
#CONFIRM_MORE .flowers-top span {
	transform: rotate(50deg) rotateY(180deg);

}
#CONFIRM_MORE .flowers-bottom span {
	transform: rotate(-160deg);

}
.background-image.video {
	background: black;
	zoom:1%
}
form {width: 100%;}
input[type="text"].label {
	font-weight: bold;
	font-size: 16px;
	padding: 0;
	margin: 0;
	border: 0;
	line-height: 1;
	min-height: inherit;
}
.accordion-toggle input[type="radio"] {
	position: absolute;
	z-index: 1000;
	display: block;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	opacity: 0;
}
.toggleall .hide {display: none !important;}
video {
position: absolute; 
right: 0; 
top: 0;
min-width: 100%; 
min-height: 100%;
width: auto; 
height: auto; 
opacity: .7;
}


/*--------------------
 	FOOTER
---------------------*/

footer{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 30px;
}

#countdown {
	z-index: 1;
}
.clock-label {
	font-size: 14px;
	list-style: none;
	min-width: 70px;
}
.clock-timer {
	color: var(--Lightgreen);
	display: block;
	margin: 0;
}


@media (min-width: 900px){

	/* .grid li{
		flex-basis: 100%;
	} */

#ADDITIONAL_MORE {
	z-index: 100;
}
video {
	transform: translateY(-35%);
}

}




