/*------------------------------------VARIABLES-----------------------------------------*/

:root{

	--brandTan01:#fff8f5;
	--brandSlate01:#413e3a;
	--brandGold01:#d19c2a;
	--brandGold02:#cf9a2a;
	--brandMauve01:#d0b5aa;
	--brandMauve02:#e3d3cc;
	--brandRust01:#9f5f26;

	--brandGrad1: linear-gradient(60deg, #cf9a2a, #9e5f26);

}


/*------------------------------------GENERAL-----------------------------------------*/
body{
	margin:0;
	padding:0;
	overflow-x: hidden;
}

html {
    height: 100%;
}

div, img, p, h1, h2, h3, h4, a{
	margin:0;
	padding:0;
	border:0;
}

p, h1, h2, h3, h4, h5, h6{
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
}

a{
	text-decoration:none;
	transition: 150ms;
}


.pageSection1{
	position:relative;
	width:calc(100vw-10px);
	height: 100vh;
	min-height:600px;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	box-sizing: border-box;
}

.pageSection2{
	position:relative;
	width:calc(100vw - 10px);
	top:0; 
	bottom:0;
	left:0;
	right:0;
	margin:auto;
}

.pageSection3{
	position:relative;
	width:100vw;
	margin:auto;
	box-sizing: border-box;
	/*opacity: 0;
	transform: translateY(10px);*/
}

.fitIMG,
.fitVid{
	position:relative;
	width:100%;
	height:100%;
	margin: 0% 0 0 0;
	object-fit: cover;
    object-position: center center;
}

.img_wrpr,
.vid_wrpr{
	position:relative;
	width:100%;
	height: 100%;
	overflow: hidden;
}

/*------------------------------------FONTS-----------------------------------------*/

@font-face{
    font-family:"boylanNeue";
    font-style:normal;
	font-weight:normal;
    src: url(/fonts/BoylanNeue-Regular.ttf) format('truetype');
}

@font-face{
    font-family:"boylanNeue-alt";
    font-style:normal;
	font-weight:normal;
    src: url(/fonts/BoylanNeue-Regular-alt1.otf) format('opentype');
}

@font-face{
    font-family:"cocomat";
    font-style:normal;
	font-weight:normal;
    src: url(/fonts/Cocomat-Pro-Light.ttf) format('truetype');
}

@font-face{
    font-family:"maiuscoletto";
    font-style:normal;
	font-weight:normal;
    src: url(/fonts/Cocosignum-Maiuscoletto-Light-v2.ttf) format('truetype');
}

@font-face{
    font-family:"corsivo";
    font-style:normal;
	font-weight:normal;
    src: url(/fonts/CocosignumCorsivoItalico-Lt-v2.ttf) format('truetype');
}

.pageTitle {
	font-family: "boylanNeue";
	text-align: center;
	line-height: 1em;
	color: rgba(0,0,0,0);
	-webkit-text-stroke: 1px var(--brandGold01);
	text-stroke: 1px var(--brandGold01);
}

.subTitle01{
	font-family: "corsivo";
	font-size:1.8em;
	color: var(--brandSlate01);
}

.subTitle02 {
    font-family: "corsivo";
    font-size: 1.33em;
    color: var(--brandSlate01);
}

.subTitle03{
	font-family:"cocomat";
	font-size:1em;
	margin: 10px auto;
}

.preTitle01 {
    font-family: "cocomat";
    font-size: 0.8em;
    color: var(--brandSlate01);
    margin: 5px 0;
}

.bodyCopy{
	font-family: "cocomat";
	font-size:0.8em;
	line-height: 1.6em;
	text-align: justify;
	color: var(--brandSlate01);

}

.bodyCopyLarge{
	font-family: "cocomat";
	font-size:1.2em;
	line-height: 1.6em;
	text-align: justify;
	color: var(--brandSlate01);
}

.bodyCopy-light{
	color: var(--brandTan01);
}

.bodyCopy-mauve{
	color: var(--brandMauve01);
}

.bodyCopy a{
	color: var(--brandGold01);
}

.bodyCopy a:hover{
	color: var(--brandRust01);
}

/*------------------------------------ANIMS-----------------------------------------*/


@keyframes float1 {
	0%{transform:translateY(-6px);}
	50%{transform:translateY(6px);}
	100%{transform:translateY(-6px);}
}

@keyframes float2 {
	0%{transform:translateY(-3px);}
	50%{transform:translateY(3px);}
	100%{transform:translateY(-3px);}
}

@keyframes rotate {
	0%{transform:rotate(0deg);}
	100%{transform:rotate(360deg);}
}



/*------------------------------------GLOBALS-----------------------------------------*/

.bgColor{
	position:fixed;
	width:100vw;
	height:100vh;
	margin: -5px 0 0 0;
	background-color:var(--brandTan01);
	z-index: -1;
}

.bgTan{
	background-color:var(--brandTan01);
}

.bgSlate{
	background-color:var(--brandSlate01);
}

.cornerIcon{
	position:absolute;
	width:60px;
	height: auto;
	opacity: 0;
	cursor: pointer;
	z-index: 101;
}

#sunIcon{
	top: 1px;
	left: 1px;
	transform:translateX(-15px);
}

#sunIcon:hover .st0{
	fill: var(--brandRust01);
	stroke: var(--brandRust01);
}

#moonIcon{
	top: 1px;
	right: 1px;
	transform:translateX(15px);
}

#moonIcon:hover .st0{
	fill: var(--brandMauve01);
	stroke: var(--brandMauve01);
}

.main{
	position:relative;
	padding: 0px;
	margin: 5px;
	border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	border: solid 1px #d19c2a;
	box-sizing: border-box;
	overflow: hidden;
}

.scrollIndText{
	font-family:"cocomat";
	font-size:0.8em;
	color: var(--brandSlate01);
	text-align: center !important;
}

.scrollIndText:nth-of-type(2){
	animation: float2 4000ms ease-out infinite;
}

.scrollIndCon{
	position:absolute;
	animation: float1 4000ms ease-out infinite;
}

#homePage .scrollIndCon{
	left:11%;
	bottom: 40px;
}

.cL1-outer{
	border-top-left-radius: 30px;
}

.cL1-inner{
	border-top-left-radius: 15px;
}

.cR1-outer{
	border-top-right-radius: 30px;
}

.cR1-inner{
	border-top-right-radius: 15px;
}

.icon .st0{
	fill: var(--brandGold01);
}


/*------------------------init-states-----------------------------*/


.o0{
	opacity: 0;
}

.y10o0{
	transform: translateY(10px);
	opacity: 0;
}

/*------------------------nav-----------------------------*/

.navWindow{
	position:fixed;
	width:100vw;
	height: 100vh;
	display: flex;
	margin: 0;
	z-index: -1000;
	pointer-events:none;
/*	display: none;*/
}

.navBG{
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	margin: -5px 0 0 0;
	background-color:var(--brandTan01);
	opacity: 0.66;
}

.mainNavCon{
	position:absolute;
	width:40vw;
	min-height: 90vh;
	top:0;
	bottom:0;
	right:0;
	margin:30px auto;
	display: flex;
    flex-direction: column;
	background-color:var(--brandMauve02);
	overflow: scroll;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	transform: translateX(100%);
}

.navMainWrpr{
	position: relative;
	padding: 0 40px;
    margin: 0;
	display: flex;
	flex-direction: column;
}

.navCol{
	position: relative;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.regNavCon{

}

.subListCon{
	position: relative;
}

.menuIconCon{
	position:fixed;
	width: fit-content;
    height: fit-content;
	top:20px;
	margin:auto;
	/*background-color:rgba(0,0,0,0.06);*/
	display: flex;
    z-index: 1000001;
    flex-direction: column;
    justify-content: space-between;
}

#menuLink-cntr{
	left:0;
	right:0;
}

#menuLink-right{
	left: unset;
	right:20px;
	opacity: 0;
	transform: translateX(-100px);
}

.menuLine{
	position:relative;
	width:100%;
	height: 1px;
	background-color:var(--brandSlate01);
}

.mLine1{
	 transform-origin: 0 0;
}

.closeBtnCon{
	position:relative;
	margin: 30px;
	display: flex;
    justify-content: flex-end;
}

.closeLink{
	font-family: "corsivo";
	font-size: 2.33vw;
	line-height: 1em;
	padding: 10px 40px;
	color: var(--brandGold01);
	border: 1px solid var(--brandGold01);
	border-radius: 60px;
	cursor: pointer;
	overflow: hidden;
}

.navItem{
	text-decoration: none;
	list-style: none;
}

.navLink{
	font-family: "cocomat";
    font-size: 3vw;
    line-height: 1.44em;
	letter-spacing: 0.07em;
	-webkit-font-smoothing: antialiased;
	position: relative;
	display: inline-block;
	margin: 0 4px;
	color: var(--brandSlate01);
}

.navLink:hover,
.subLink:hover{
	color: var(--brandMauve01);
}

.menuLink{
	font-size:1.5em;
	cursor: pointer;
}

#menuLink-cntr .menuLink{
	left: 5px;
}

.subList{
	position: absolute;
	width:140px;
	margin: 0 0 0 4px;
	opacity: 0;
}

.subLink{
	font-family: "cocomat";
	font-size: 0.7em;
	font-weight: normal;
	letter-spacing: 0.07em;
	-webkit-font-smoothing: antialiased;
	position: relative;
	display: block;
	margin: 10px 0;
	z-index: -1;
	color: var(--brandSlate01);
	opacity: 0;
	transform: translateX(-10px);
}

.bookLink{
	font-family:"corsivo";
	font-size: 3.33vw;
	line-height: 1.4em;
	position:relative;
	display: inline-block;
	margin: 0 0 0 10px;
	color: var(--brandGold02);
	-webkit-font-smoothing: antialiased;
}

.bookLink:hover{
	color: var(--brandMauve01);
}

.btn{
	transition: 150ms;
}

.subListArrow {
    font-size: 7px !important;
    margin: 0 0 0 -2px;
}

.bookNowBtn{
	font-family: "corsivo";
	color: var(--brandTan01);
	background:var(--brandGrad1);
    border: 1px solid rgba(0,0,0,0);
    background-size: 110% 100%;
    background-position: 90% 100%;
    -webkit-font-smoothing: antialiased;
}

.btn:hover{
	color: var(--brandGold01);
	background:var(--brandTan01);
    border: 1px solid var(--brandGold01);
}

.bookNowBtn-global{
	font-family: "corsivo";
    font-size: 1em;
    position: fixed;
    height: fit-content;
    padding: 10px 21px 10px 22px;
    bottom: 12px;
    right: 12px;
    border-radius: 60px;
    z-index: 100;
    color: var(--brandGold01);
	/*background:var(--brandTan01);*/
    border: 1px solid var(--brandGold01);
    -webkit-font-smoothing: antialiased;
}

.bookNowBtn-global:hover,
.closeLink:hover{
	color: var(--brandTan01);
	background:var(--brandGrad1);
    border: 1px solid rgba(0,0,0,0);
    background-size: 110% 100%;
    background-position: 90% 100%;
}


/*------------------------nav-v2-----------------------------*/


.mainNavCon .socialBlock {
    position: relative;
    width: auto;
    margin: 0 0 40px 40px;
    text-align: left;
    display: flex;
    align-items: flex-end;
    flex-grow: 1;
}

.mainNavCon .smNavLink{
	font-size:1.2em;
	color: var(--brandSlate01);
}




/*------------------------------------ANIMS-----------------------------------------*/

@keyframes bounce1 {
		0%{transform:translateY(0);}
		50%{transform:translateY(15px);}
		100%{transform:translateY(0px);}
}


/*------------------------------------HOMEPAGE-----------------------------------------*/

/*------------------------anouncementModal-----------------------------*/

.modalSection{
	position:fixed;
	width:100vw;
	height:100vh;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	z-index: 1000;
	opacity: 0;
	display:none;
}

.modalBG{
	position:absolute;
	width:100%;
	height:100%;
	background-color:var(--brandSlate01);
	opacity: 0.0;
}

.modalCon{
	position:absolute;
	width:700px;
	height:400px;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	padding: 2%;
	display:grid;
	grid-template-columns:33% 64%;
	grid-gap:2%;
	align-items: center;
	box-sizing: border-box;
	background-color:var(--brandTan01);
	z-index: 1001;
}

.modalConNoIMG{
	grid-template-columns:100%;
	grid-gap:0%;
	padding: 2% 5% 2% 5%;
}

.modalCon br{
	display: none;
}

.modalBorder{
	position:absolute;
	width:calc(100% - 10px);
	height:calc(100% - 10px);
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	pointer-events:none;
	border: solid 1px var(--brandGold01);
}

.modalXCon{
	position:absolute;
	width:40px;
	height:40px;
	top:10px;
	right:10px;
	margin:auto;
	cursor: pointer;
	z-index: 1002;
	transition: 300ms;
	/*background-color:rgba(0,0,0,0.08);*/
}

.modalXCon:hover{
	transform: rotate(-180deg) scale(1.2,1.2);
	transform-origin: center center;
}

.modalXLine{
	position:absolute;
	width: 100%;
	height: 1px;
	top:19px;
	cursor: pointer;
	background-color:var(--brandRust01);
}

.XLine1{
	transform: rotate(45deg);
}

.XLine2{
	transform: rotate(-45deg);
}

.modalIMGWrapper{
	position: relative;
    width: 210px;
    height: 100%;
    overflow: hidden;
    border-top-left-radius: 105px;
    border-top-right-radius: 105px;
}

.modalIMG{
	position:absolute;
	width:auto;
	height:100%;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
}

.modalTitle {
    font-family: "corsivo";
    font-size: 1.66em;
    margin: 15px 0 5px 0;
    color: var(--brandSlate01);
}

.modalLink{
	font-family: "corsivo";
    font-size: 1em;
    position: relative;
    margin: 10px 0 0 auto;
    display: block;
    color: var(--brandSlate01);
    transition: 200ms;
}

.modalLink:hover{
	color: var(--brandGold01);
	transform: translateX(3px);
}

/*------------------------entry-----------------------------*/

#hpEntrySection{
	display: flex;
	align-items: center;
}

.entryTitle{
	position:absolute;
	width:100%;
	height:16vw;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
}

.logoLetter{
	fill:var(--brandGold01);
	stroke:var(--brandGold01);
	stroke-width: 0.6px;
	stroke-miterlimit:0;
}

.entryLeftColumn,
.entryRightColumn{
	position:relative;
	width:25vw;
	height:100%;
}

.entryCentralColumn{
	position: relative;
    width: 50vw;
    margin: 0;
    display: flex;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
}

.videoSeal {
    position: absolute;
    width: 102%;
    height: 106%;
    top: -11%;
    left: -9%;
    border: 4vw solid var(--brandTan01);
    /* box-sizing: border-box; */
    z-index: 1;
}

.sealTan{
    border: 4vw solid var(--brandTan01);
}

.sealSlate{
    border: 4vw solid var(--brandSlate01);
}


.entryVidCon{
	position:relative;
	width: 100%;
    height: 51vw;
    min-height: 300px;
    top: 0;
	left:0;
	right:0;
	margin:10% 0 0 0;
	opacity: 0.9;
	/*background-color:rgba(0,0,0,0.05);*/
}

.hpVidClipper{
	position: absolute;
	width:100%;
	height: 101%;
	top:-0.5%;
	display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
	clip-path: url(#window-threeArch-path);
    -webkit-clip-path: url(#window-threeArch-path);
}

.hpVideoIMG{
	position:relative;
	width:auto;
	height:100%;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	object-fit: cover;
	/*opacity: 0.66;*/
}

.threeArchSVG{
	position:absolute;
	height:100%;
}

.hpSubtitleBlock{
	position: relative;
    text-align: center;
    height: 10%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hpSubtitle{
	font-family: "corsivo";
	font-size:1.66em;
	margin: 0 0 5px 0;
	color: var(--brandGold01);

}

.hpSubtitle2{
	font-family: "cocomat";
	font-size:0.8em;
	letter-spacing: 0.08em;
	margin: 5px 0;
	color: var(--brandSlate01);
}

.bigBookNowBtnCon{
	 position: absolute;
	 width:270px;
	 height: 88px;
	 top:48%;
	 bottom:0;
	 left:0;
	 right:0;
	 margin:auto;
}

.bookNowBtn-big{
    font-size: 2.3em;
    position: absolute;
    height: fit-content;
    padding: 15px 30px 15px 29px;
    border-radius: 60px;
    z-index: 2;
}


/*------------------------mission-----------------------------*/

#hpMissionSection{
	margin: 50px 0 150px 0px;
	display:grid;
	grid-template-columns:20% 60% 20%;
}

.hpMissionColumn{
	display:grid;
	align-items: center;
}

.floralFlourish{
	position: relative;
    margin: auto;
    height: auto;
    width: 37%;
    display: block;
}

.hpMissionText{
	font-family: "maiuscoletto";
	font-size: 2vw;
    letter-spacing: 0.05vw;
    line-height: 4.2vw;
    text-align: justify;
	color: var(--brandRust01);
}

.hpMissionText span{
	font-family: "boylanNeue";
	font-size: 3.3vw;
	color: var(--brandSlate01);
}


/*------------------------bookingPaths-----------------------------*/

#hpBookingPathsSection{
	width:98%;
	min-height: 90vh;
	display:grid;
	grid-template-columns:50% 50%;
}

.bookingCon{
	position:relative;
	width:100%;
	height:50vw;
	overflow: hidden;
}

.bookingCon-left{
	background-color: var(--brandSlate01);
}

.bookingCon-right{
	background-color: var(--brandMauve01);
}

.bookingIMGCon{
	position:relative;
	width: 96%;
	height: 66%;
	min-height: 240px;
    margin: 2% auto;
    overflow: hidden;
}

.bookingIMG{
	position:absolute;
	width: 100%;
    height: auto;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
}

.bookingLowerCon{
	position: relative;
    width: 100%;
    height: 30%;
    text-align: center;
}

.bookingCon .bodyCopy{
	position:relative;
	width:80%;
	min-width: 400px;
	margin:3% auto;
	display: block;
}

.bookingPathBtn{
	font-family: "corsivo";
	font-size: 2.66em;
	position: relative;
	width: 35%;
	min-width: 300px;
	padding: 15px 30px 15px 29px;
	margin: 3% auto 0 auto;
	display: block;
	border-radius: 60px;
}

.bookStayBtn{
	color: var(--brandRust01);
	background-color: var(--brandMauve01);
}

.bookStayBtn:hover{
	background-color: rgba(0,0,0,0);
	/*color: var(--brandSlate01);*/
}

.bookEventBtn{
	color: var(--brandRust01);
	background-color: var(--brandSlate01);
}

.bookEventBtn:hover{
	background-color: rgba(0,0,0,0);
	/*color: var(--brandMauve01);*/
}


.moonIcon-bookStay{
	position:absolute;
	width:80px;
	left:20px;
	bottom:20px;
}

.moonIcon-bookStay{
	fill: var(--brandMauve01);
}

.sunIcon-bookEvent{
	position:absolute;
	width:80px;
	right:20px;
	bottom:20px;
}

.sunIcon-bookEvent{
	fill: var(--brandSlate01);
}


/*------------------------exploreSection-----------------------------*/

#hpExploreSliderSection{
	margin: 0 0 50px 0;
}

.exploreTitleCon{
	position: relative;
	width:100%;
	z-index: 2;
}

.exploreTitle{
	font-family:"boylanNeue-alt";
	font-size: 14.78vw;
	margin: 0 0 0 -1.2%;
}

.exploreCopy{
	position:relative;
	width:300px;
	margin: -1% 0 0 2%;
}

.sliderControlCon{
	position: absolute;
    width: 52vw;
    top: 28%;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    flex-direction: row;
    z-index: 100;
}

.sliderControl{
	position: relative;
	font-family: 'cocomat';
	font-size: 3em;
	color: var(--brandSlate01);
	cursor: pointer;
	transition: 200ms;
}

.sliderControl-next{
	margin: 0 0 0 auto;
}

.sliderControl-prev:hover{
	transform:translateX(-3px);
}

.sliderControl-next:hover{
	transform:translateX(3px);
}


.explSliderFrame{
	position:relative;
	width:100%;
	height: 50vw;
	margin: -13% 0 0 0;
	z-index: 1;
	/*background-color:rgba(0,0,0,0.08);*/
	/*transform: scale(0.63);*/
}

.explSliderWrapper{
	position:relative;
	width: 150vw;
	height:100%;
    left: -25vw;
	/*background-color:rgba(0,0,0,0.05);*/

}


/*.explSlideCon{
	position:relative;
	width:17.9%;
	margin: 0 2%;
	display: flex;
    flex-direction: column;
}*/

.middleMarker{
	position:absolute;
	width:2px;
	height:100%;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	/*background-color:rgba(0,0,0,0.5);*/
	z-index: 100;
}

.explSlideCon{
	position: absolute;
    width: 10.55%;
    bottom:10.2%;
    margin:auto;
    /*background-color: rgba(0,0,0,0.03);*/
    /*overflow: hidden;*/
    opacity: 0.66;
    transform:translateX(0);
}

/*#slide1{
	left:0;
}

#slide2{
	left:-66.33%;
    right:0;
}

#slide3{
	left:-43%;
    right:0;
}

#slide4{
	left:0;
    right:0;
}

#slide5{
	left:0;
    right:-43%;
}

#slide6{
	left:0;
    right:-66.33%;
}

#slide7{
    right:0;
}*/

.activeSlide{
	/*height: 50vw;*/
	/*width:30.33%;*/
	bottom: 6%;
	opacity: 1;
}

.singleToStacked01-a,
.singleToStacked01-u{
	position:absolute;
	z-index: -1;
	fill: none;
}

#singleArchPath-a,
#stackedArchPath-a,
#singleArchPath-u,
#stackedArchPath-u{
	fill: none;
}

.explIMGClipper{
	transform-origin: bottom;
	overflow: hidden;
}

.clipPath-u{
	position:relative;
	height: 25vw;
	/*clip-path: url(#singleArchClip-u);
    -webkit-clip-path: url(#singleArchClip-u);*/
}

.clipPath-a{
	position:relative;
	/*height: 87%;*/
	/*clip-path: url(#singleArchClip-a);
    -webkit-clip-path: url(#singleArchClip-a);*/
}

.cp-1{
	clip-path: url(#singleArchClip-1);
    -webkit-clip-path: url(#singleArchClip-1);
}

.cp-2{
	clip-path: url(#singleArchClip-2);
    -webkit-clip-path: url(#singleArchClip-2);
}

.cp-3{
	clip-path: url(#singleArchClip-3);
    -webkit-clip-path: url(#singleArchClip-3);
}

.cp-4{
	clip-path: url(#singleArchClip-4);
    -webkit-clip-path: url(#singleArchClip-4);
}

.cp-5{
	clip-path: url(#singleArchClip-5);
    -webkit-clip-path: url(#singleArchClip-5);
}

.cp-6{
	clip-path: url(#singleArchClip-6);
    -webkit-clip-path: url(#singleArchClip-6);
}

.cp-7{
	clip-path: url(#singleArchClip-7);
    -webkit-clip-path: url(#singleArchClip-7);
}


.slideIMG{
	position:absolute;
	width:auto;
	height:100%;
	top:0;
	bottom:0;
	left:-32%;
	right:0;
	margin:auto;
}

.clipPath-a .slideIMG{
	width:100%;
	height: auto;
}

.slideCopyBlock{
	position:relative;
}

.sliderTitle{
	font-family: "corsivo";
	font-size:0.8em;
	color: var(--brandSlate01);
	margin: 10px 0 0px 0;
}

.sliderCopy{
	position: absolute;
    width: 70%;
}

.activeSlide .sliderTitle{
	font-size:1.66em;
	margin: 20px 0 10px 5px;
}


.explSlideCon .sliderCopy,
.explSlideCon  .explSliderLink{
	display: none;
	opacity: 0;
}

.activeSlide .sliderCopy,
.activeSlide .explSliderLink{
	margin: 0 0 0 5px;
}

.explSliderLink{
	font-family: "corsivo";
	font-size:0.8em;
	position:absolute;
	bottom:15px;
	right:10px;
	margin:auto;
	color: var(--brandSlate01);
	transition: 200ms;
}

.explSliderLink:hover{
	color: var(--brandGold01);
	transform:translateX(5px);
}

.exploreAllLink{
	font-family: "corsivo";
	font-size:1.66em;
	position:absolute;
	bottom:0;
	right:40px;
	margin:auto;
	color: var(--brandSlate01);
	z-index: 1;
	transition: 200ms;
}

.exploreAllLink:hover{
	color: var(--brandGold01);
	transform:translateX(10px);
}







.explClipperTester{
	position:relative;
	width:100%;
	text-align: center;
	clip-path: url(#singleArchClip);
    -webkit-clip-path: url(#singleArchClip);
	display: none;
}


/*---------CLIPPER TESTING---------



.singleToStacked01{
	position:relative;
	width:30%;
	margin: auto;
	display:block;
}

#singleArchPath{
	fill: var(--brandMauve01);
}

#stackedArchPath{
	fill: none;
}

.slideIMG{
	clip-path: url(#singleArchClip);
    -webkit-clip-path: url(#singleArchClip);
}*/




/*------------------------story-history-section-----------------------------*/

#storySection{
	width:98%;
	min-height: 90vh;
	margin: 200px auto 50px auto;
}

.storySubSection{
	position:relative;
	height:50vw;
	display:grid;
	grid-template-columns:50% 50%;
}

.storyIMGBlock{
	position:relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
}

.storyIMG{
	position:relative;
	width:auto;
	height:100%;
	margin:auto;
}

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

.historyCopyBlock{
	background-color:var(--brandMauve01);
}

.storyTitle{
	font-family: 'boylanNeue';
	font-size:10vw;
	line-height: 1em;
	text-align:center;
	margin: 3% 0 1% 0;
}

.historyCopyBlock .storyTitle{
	color: var(--brandSlate01);
}

.storyCopy{
	width:55%;
	min-width: 400px;
	max-width: 600px;
	margin: 20px 0;
}

.storyLink{
	font-family: "corsivo";
	font-size:2em;
	color: var(--brandSlate01);
}

.ourStoryCopyBlock{
	background-color:var(--brandSlate01);
}

.ourStoryCopyBlock .storyTitle,
.ourStoryCopyBlock .storyCopy,
.ourStoryCopyBlock .storyLink{
	color: var(--brandMauve01);
}

.storyLink:hover{
	color: var(--brandGold01);
	transform:translateX(5px);
}


/*------------------------contact-section-----------------------------*/

#contactSection{
	margin: 0 0 100px 0;
}

.contactRow{
	position:relative;
	width:100%;
	/*height: 33%;*/
}

.contactRow:last-of-type{
	margin:2% auto;
}

.contactRow:nth-of-type(3){
	display: grid;
    grid-template-columns: 36.5% 27% 36.5%;
    align-items: center;
    margin: -6% 0 0 0;
}

.contBtnRow{
	display: flex;
	flex-direction:row;
	margin: 2% 0 0 0;
}

.contactCopy{
	font-size: 1.1em;
    width: 25%;
    min-width: 300px;
    max-width: 600px;
    margin:0 0 0 2%;
}

/*#singleStackArch{

}*/

.contIMGClipper{
	position:relative;
	width: 27vw;
    height: 33vw;
	left:0;
	right:0;
	margin:auto;
	clip-path: url(#singleStackClip);
    -webkit-clip-path: url(#singleStackClip);
    background-color:rgba(0,0,0,0.03);
}

.contactIMG{
	position:absolute;
	width:auto;
	height:100%;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	opacity: 0.88;
}


.contBtnCon{
	position:relative;
	display: block;
}

.contEventCon{
	width:360px; 
	margin: auto;
}

.contStayCon{
	width: 300px;
	margin: auto;
}

.contBtn {
    font-family: "corsivo";
    font-size: 2.66em;
    position: relative;
    /* width: 35%; */
    /* min-width: 300px; */
    padding: 15px 30px 15px 29px;
    margin: 5% auto;
    display: block;
    border-radius: 60px;

    z-index: 1;
}

.contEventBtn{
	color: var(--brandRust01);
    background-color: var(--brandSlate01);
    border: 1px solid var(--brandTan01);
}

.contStayBtn{
	color: var(--brandRust01);
    background-color: var(--brandMauve01);
    border: 1px solid var(--brandTan01);
}

.contEventBtn2{
	color: var(--brandRust01);
    background-color: var(--brandMauve01);
    border: 1px solid var(--brandSlate01);
}

.contStayBtn2{
	color: var(--brandRust01);
    background-color: var(--brandTan01);
    border: 1px solid var(--brandSlate01);
}


.contEventBtn2:hover,
.contStayBtn2:hover{
	background:none;
}


.sunIcon-cont{
	position:relative;
	width:80px;
	margin: auto;
	display: block;
	fill:var(--brandRust01);
}

.contIcon{
	position:relative;
	width:80px;
	margin: auto;
	display: block;
	fill:var(--brandRust01);
}

.contIcon-sun{
	fill:var(--brandSlate01);
}

.contIcon-moon{
	fill:var(--brandMauve01);
}

.contactTitle{
	font-size: 20vw;
	margin: 0% ​auto 0 auto;
	cursor: default;
}

.contMainBtn{
	position:relative;
	width: 200px;
    height: 50px;
	margin: 6% auto 0 auto;
	padding: 15px 0 15px 40px;
	color: var(--brandTan01);
	background: var(--brandGrad1);
	border: 1px solid rgba(0,0,0,0);
    background-size: 110%;
    background-position: 30% 100%;
}

.contMainBtn:hover{
	color: var(--brandGold01);
	background:none;
	border: 1px solid var(--brandGold01);
}


/*------------------------footer-section-----------------------------*/


.footerCon{
	position:relative;
	width:100%;
	height: auto;
	padding: 100px 0 0 0;
	overflow: hidden;
	background-color:var(--brandSlate01);
}


.footerUpper{
	position:relative;
	width:96%;
	margin: 0 auto;
	display: grid;
	grid-template-columns:26% 22% 22% 26%;
	grid-gap:1%;
}

.footerLower{
	position:relative;
	width:99%;
	margin: 3% auto 0 auto;
}

.footerBlock{
	position:relative;
}

.footerLogo{
	position:relative;
	width:66%;
	margin:auto;
}

.footerLogoPath{
	fill:var(--brandGold01);
}

.ftContCon{
	position: relative;
    margin: 0 0 0 15%;
}

.ftContTitle{
	font-family: "corsivo";
	font-size:1.12em;
	margin: 0 0 5px 0;
	color:var(--brandTan01);
}

.ftContLink{
	font-family: "cocomat";
	font-size:1em;
	line-height: 1.5em;
	color:var(--brandTan01);
}

.ftContLink:hover{
	color:var(--brandGold01);
}

.ftNavLink{
	font-family: "cocomat";
    font-size: 0.7em;
    letter-spacing: 0.07em;
    line-height: 1.33em;
	text-align:center;
	margin: 0 auto 5px auto;
	display: block;
	text-transform:uppercase;
	color:var(--brandTan01);
}

.footerCopy{
	font-size:0.8em;
	color: var(--brandTan01);
}

.signUpCon{
	position:relative;
	display: grid;
	grid-template-columns:65% 30%;
	grid-gap:5%;
}

#mc_embed_signup form{
	text-align:left;
}

.emailInput{
	font-family: "cocomat";
	font-size:1em;
	position:relative;
	padding: 15px 0px 12px 15px;
	border-radius: 25px;
	border: none;
	color:var(--brandGold01);
	background-color:var(--brandTan01);
}

.signUpBtn{
	font-family: "cocomat";
	font-size:1em;
	position:relative;
	padding: 13% 19% 10% 23%;
	border-radius: 50px;
	border: none;
	color:var(--brandSlate01);
	background-color:var(--brandGold01);
	border: 1px solid rgba(0,0,0,0);
    background-size: 110%;
    background-position: 30% 100%;
    cursor: pointer;
}

.signUpBtn:hover{
    color: var(--brandSlate01);
	background-color: var(--brandMauve01);
}

.socialBlock{
	position:relative;
	width:100%;
	margin: 3% 0 3% 0;
	text-align: center;
}

.smNavLink{
	font-family: "corsivo";
	position:relative;
	display: inline-block;
	margin: 0 10px;
	color: var(--brandTan01);
}

.ftNavLink:hover,
.smNavLink:hover{
	color: var(--brandRust01);
}

.crBlock{
	height: 20px;
}

.copyrightText{
	font-family: "cocomat";
	font-size:0.6em;
	position:relative;
	color: var(--brandTan01);
}

/*----Flodesk updates-----*/

.ff-622f83c478ab99224ea6e9fa,
.ff-622f83c478ab99224ea6e9fa__container{
	background: rgba(0,0,0,0) !important;
}

.ff-622f83c478ab99224ea6e9fa .ff-622f83c478ab99224ea6e9fa__form{
	padding: 0 !important;
}

.ff-622f83c478ab99224ea6e9fa .ff-622f83c478ab99224ea6e9fa__content {
    position: relative;
    margin: -20px auto 0 auto !important;
    display: grid !important;
    grid-template-columns: 65% 30%;
    grid-gap: 5%;
}

.ff-622f83c478ab99224ea6e9fa .ff-622f83c478ab99224ea6e9fa__control,
.ff-622f83c478ab99224ea6e9fa .fd-form-control:focus {
	font-family: "cocomat" !important;
	font-size: 1em !important;
	height: auto !important;
	line-height: 1.1em !important;
	text-transform:uppercase !important;
	position: relative !important;
	padding: 15px 0px 12px 15px !important;
	border-radius: 25px !important;
	border: none !important;
	color: var(--brandSlate01) !important;
	background-color: var(--brandTan01) !important;
	background:var(--brandTan01) !important;
}

.ff-622f83c478ab99224ea6e9fa .ff-622f83c478ab99224ea6e9fa__label{
	font-family: "cocomat" !important;
	font-size: 1em !important;
	text-transform:uppercase !important;
	color: var(--brandGold01) !important;
}

.ff-622f83c478ab99224ea6e9fa__button{
	font-family: "cocomat" !important;
    font-size: 0.9em !important;
    line-height: 1.1em !important;
    text-transform:uppercase !important;
    position: relative !important;
    padding: 15px 18% 9px 18% !important;
    border-radius: 50px !important;
    border: none !important;
    color: var(--brandSlate01) !important;
    background-color: var(--brandGold01) !important;
    border: 1px solid rgba(0,0,0,0) !important;
    background-size: 110% !important;
    background-position: 30% 100% !important;
    cursor: pointer !important;
}

.ff-622f83c478ab99224ea6e9fa__success{
	font-family: "cocomat" !important;
	font-size: 1em !important;
	text-align: left !important;
	color: var(--brandGold01) !important;
}


/*------------------------------------------------MEDIAQS-----------------------------------------------------*/
/*------------------------------------------------MEDIAQS-----------------------------------------------------*/
/*------------------------------------------------MEDIAQS-----------------------------------------------------*/
/*------------------------------------------------MEDIAQS-----------------------------------------------------*/
/*------------------------------------------------MEDIAQS-----------------------------------------------------*/
/*------------------------------------------------MEDIAQS-----------------------------------------------------*/
/*------------------------------------------------MEDIAQS-----------------------------------------------------*/
/*------------------------------------------------MEDIAQS-----------------------------------------------------*/




/*------------------------------------------------------ASPECT-RATIO----*/
/*------------------------------------------------------ASPECT-RATIO----*/
/*------------------------------------------------------ASPECT-RATIO----*/



/*------ULTRA WIDE----*/

@media (min-aspect-ratio: 18/9) and (max-aspect-ratio: 30/9) {

.navMainWrpr{
	flex-direction: row;
	justify-content: space-between;
}

.navItem .navLink{
	font-size: 1.88vw;
}

.bookLink {
font-size: 2.33vw;

}


}



/*------SUPER WIDE----*/

@media (max-aspect-ratio: 18/9) {


.navItem .navLink{
	font-size: 1.66vw;
}

.bookLink {
font-size: 2.11vw;

}


}


/*------WIDE----*/

@media (max-aspect-ratio: 16/9) {


.navItem .navLink{
	font-size: 2vw;
}

.bookLink {
font-size: 2.66vw;

}


}





@media (max-aspect-ratio: 3/2) {


.navItem .navLink{
	font-size: 2vw;
}

.bookLink {
font-size: 2.66vw;

}


}



@media (max-aspect-ratio: 4/3) {


.navItem .navLink{
	font-size: 2.3vw;
}

.bookLink {
font-size: 3.33vw;

}


}




@media (max-aspect-ratio: 1/1) {

.mainNavCon{
	width: 56vw;
}

.navItem .navLink{
	font-size: 3.3vw;
}

.bookLink {
	font-size: 3.88vw;
}


}





/*------------------------------------------------------1600px----*/

@media (min-width:2200px){

.videoSeal {
    top: -11%;
}

}


/*------------------------------------------------------1600px----*/

@media (min-width:0px) and (max-width:1600px){

/*-------------GLOBALS*/

/*-------------ENTRY*/

.bigBookNowBtnCon{
	top:48%;
}



/*-------------EXPLORE*/

.activeSlide {
    bottom: 4.7%;
}

}




/*------------------------------------------------------1400px----*/

@media (min-width:0px) and (max-width:1400px){

/*-------------GLOBALS*/



/*-------------ENTRY*/

.entryVidCon {
	margin: 5% 0 0 0;
}

.bigBookNowBtnCon{
	width:220px;
	top:42%;
}

.entryLeftColumn .bigBookNowBtnCon{
	left: 5%;
}

.entryRightColumn .bigBookNowBtnCon{
	left: 10%;
}

.bookNowBtn-big {
    font-size: 1.66em;
}

.hpSubtitle {
    font-size: 1.5em;
}

.hpSubtitle2 {
    font-size: 0.66em;
}


/*-------------PATHS*/

.bookingPathBtn {
    font-size: 2.2em;
    width: 35%;
    min-width: 240px;
    margin: 4% auto;
}

.bookingIMGCon {
	 height: 60%;
    margin: 2.2% auto;
}

.bookingCon .bodyCopy {
    width: 90%;
}

.bookingPathBtn {
    margin: 6% auto;
}

.bookingLowerCon {
    height: 35%;
}

.sunIcon-bookEvent {
    right: 10px;
    bottom: 0;
}


.moonIcon-bookStay {
    left: 10px;
    bottom: 0;
}


/*-------------EXPLORE*/

.activeSlide {
    bottom: 3.8%;
}

/*-------------CONTACT*/

.contactCopy {
    font-size: 0.8em;
}

.contBtn {
    font-size: 2em;
}

.contStayCon{
	width:244px;
}

.contEventCon{
	width:280px;
}

.contMainBtn {
    width: 160px;
    height: 40px;
    margin: 0% auto 0 auto;
}

/*.contactTitle {
    margin: -10% 0 0 -0.8%;
}*/


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

.ftNavLink {
    font-size: 0.8em;
}

.ftContTitle {
    font-size: 1em;
}

.ftContLink {
    font-size: 0.8em;
}

.signUpCon {
    margin: 2% 0;
}

.ff-622f83c478ab99224ea6e9fa .ff-622f83c478ab99224ea6e9fa__content {
    grid-template-columns: 68% 30%;
    grid-gap: 2%;
}

.emailInput,
.ff-622f83c478ab99224ea6e9fa .ff-622f83c478ab99224ea6e9fa__control {
    font-size: 0.66em;
    padding: 10px 0px 7px 6px;
}

.ff-622f83c478ab99224ea6e9fa__button {
    padding: 15px 14% 9px 14% !important;
}

.ff-622f83c478ab99224ea6e9fa__control,
.ff-622f83c478ab99224ea6e9fa__label,
.ff-622f83c478ab99224ea6e9fa__button{
    font-size: 0.77em !important;
}

.signUpBtn {
    font-size: 0.7em;
}

.smNavLink{
	font-size:0.8em;
}

}



/*------------------------------------------------------1200px----*/

@media (min-width:0px) and (max-width:1200px){

/*-------------GLOBALS*/

.mainNavCon {
    margin: 2px 0 0 0;
}

.bodyCopy {
    font-size: 0.7em;
}

.cL1-inner {
    border-top-left-radius: 20px;
}

.cR1-inner {
    border-top-right-radius: 20px;
}

/*-------------ENTRY*/

.hpSubtitle {
    font-size: 1.6em;
}

.logoLetter {
    stroke-width: 1px;
}


/*-------------PATHS*/

.bookingPathBtn {
    font-size: 1.8em;
    min-width: 200px;
}

.bookingIMGCon {
    margin: 2.2% auto 0% auto;
}

.moonIcon-bookStay {
    width: 60px;
    left: 10px;
    bottom: 0px;
}

.sunIcon-bookEvent {
    width: 60px;
    right: 10px;
    bottom: 0px;
}



/*-------------EXPLORE*/

.explSliderFrame {
    margin: -15% 0 0 0;
}

.activeSlide .sliderTitle {
    font-size: 1.33em;
    margin: 11px 0 10px 5px;
}

.exploreCopy {
	font-size: 0.6em;
    position: relative;
    width: 250px;
    margin: 0% 0 0 1%;
}

.activeSlide {
    bottom: 5.8%;
}

.sliderCopy {
    width: 98.4%;
}

.exploreAllLink {
    font-size: 1.33em;
}

.activeSlide .sliderCopy {
    margin: -5px 0 0px 3px;
}

.activeSlide .explSliderLink {
    margin: auto;
    top: 7px;
    right: 3px;
}

/*-------------STORY*/

#storySection {
    margin: 100px auto 50px auto;
}

.storyLink {
    font-size: 1.5em;
}


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

.footerUpper {
    grid-template-columns: 24% 24% 22% 26%;
}

.signUpBtn {
    padding: 13% 16% 10% 18%;
}



}


/*------------------------------------------------------1000px----*/

@media (min-width:0px) and (max-width:1000px){

/*-------------------------GLOBALS*/

.cornerIcon {
    width: 45px;
}

.main {
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
}

/*-------------------------NAV*/

.mainNavCon {
    margin: 0px 0 0 0;
}

.navLink {
    font-size: 0.66em;
}

.bookLink {
    font-size: 3.88vw;
    margin: 0 0 0 5px;
}

.modalCon{
	width:640px;
	height:365px;
}

.modalIMGWrapper{
    width: 190px;
    height: 320px;
}

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

.footerCon {
    padding: 50px 0 0 0;
}

.footerBlock {
    position: relative;
    margin: 20px 0px;
    text-align: center;
}

.footerUpper {
    display: flex;
    flex-direction: column;
}

.footerLogo {
    width: 22%;
    margin: 0 auto;
}

.footerCon .ftContCon {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.signUpCon {
    margin: 2% auto;
    width: 50%;
}

.footerCopy{
	text-align:center;
}

.ff-622f83c478ab99224ea6e9fa__content{
	width: 400px;
}

.emailInput {
    font-size: 0.66em;
    padding: 10px 0px 7px 12px;
    text-align: left;
}



}


/*------------------------------------------------------iPad-Pro----*/

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (hover: none) {

/*-------------GLOBALS*/

.ff-622f83c478ab99224ea6e9fa__content{
	width: 50% !important;
	margin: 0 auto !important;
}


/*-------------NAVS*/

.mainNavCon{
/*	width: 40vw;*/
    height: 80vh;
    min-height: 80vh;
    margin: auto;
}

.navItem .navLink{
	font-size: 3.3vw;
}

.bookLink {
font-size: 3.88vw;

}



/*-------------ENTRY*/

#hpEntrySection {
    flex-direction: column;
}

.entryColumn{
	height: 7%;
}

.entryCentralColumn {
	width: 50.7vw;
	height: auto;
	margin: 25.4% auto 0 auto;
	justify-content: unset;
	transform: scale(1.25);
}

.entryLeftColumn{
	order: 2;
}

.entryRightColumn{
	order: 3;
}

.logoLetter {
    stroke-width: 1px;
}

.hpVideoIMG {
    position: relative;
    width: auto;
    height: 101%;
    top: -1%;
}

.entryTitle {
    top: -15%;
}

.hpSubtitleBlock {
    justify-content: unset;
    margin: 15px 0 0 0;
}

.entryLeftColumn {
    width: 100%;
    margin: 7% 0 0 0;
}

.bigBookNowBtnCon {
    top: 58%;
}

.entryLeftColumn .bigBookNowBtnCon{
	width: 210px;
	left:0;
}

.entryRightColumn .bigBookNowBtnCon{
	width: 200px;
	left:0;
}


#homePage .scrollIndCon {
    left: 0;
    right:0;
}

/*-------------PATHS*/

#hpBookingPathsSection {
    width: 98%;
    min-height: 37vh;
	margin: 30px 0 120px 0px;
}

.bookingPathBtn {
    font-size: 1.6em;
    width: 30%;
    min-width: 180px;
}

.moonIcon-bookStay,
.sunIcon-bookEvent {
    width: 70px;
}

/*-------------EXPLORE*/

.exploreCopy {
    width: 250px;
    margin: 0% 0 0 2%;
}

.explSliderFrame {
    position: relative;
    width: 100%;
    height: 50vw;
    margin: -15% 0 0 0;
}

.activeSlide {
    bottom: 5.9%;
}


/*-------------STORY*/

#storySection {
    width: 98%;
    min-height: 75vh;
}



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

.footerLogo {
    width: 85%;
    margin: 0 0 0 14%;
}

.footerUpper {
    grid-template-columns: 20% 24% 24% 29%;
}



.ftContLink {
    font-size: 0.7em;
}

}


/*------------------------------------------------------821px----*/

@media (min-width:0px) and (max-width:821px){

.modalCon {
    width: 500px;
    height: fit-content;
    padding: 4%;
}

.modalIMGWrapper {
    width: 140px;
    height: 250px;
}

.ff-622f83c478ab99224ea6e9fa__content{
	width: 50% !important;
	margin: 0 auto !important;
}


/*-------------NAVS*/

.mainNavCon{
	width: 50vw;
    height: 80vh;
    min-height: 80vh;
    margin: auto;
}

.navItem .navLink{
	font-size: 3.3vw;
}

.bookLink {
font-size: 3.88vw;

}

.mainNavCon .smNavLink {
    font-size: 0.8em;
}


/*-------------GLOBALS*/
/*.navLink {
    font-size: 0.5em;
}*/

/*.bookLink{
    font-size: 0.8em;
}*/

.cornerIcon {
    width: 40px;
}

.st0 {
    stroke-width: 1;
}

.main {
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
}



/*-------------ENTRY*/

#hpEntrySection {
    flex-direction: column;
}

.entryColumn{
	width: 100%;
	height: 9%;
}

.entryCentralColumn {
	width: 50.7vw;
	height: auto;
	margin: 36% auto 0 auto;
	justify-content: unset;
	transform: scale(1.25);
}

.entryLeftColumn{
	order: 2;
}

.entryRightColumn{
	order: 3;
}

.videoSeal {
    height: 103%;
}

.hpVideoIMG {
    position: relative;
    width: auto;
    height: 107%;
    top: -3px;
}

.entryTitle {
    top: -19%;
}

.logoLetter {
    stroke-width: 1px;
}

.hpSubtitleBlock {
    justify-content: unset;
    margin: 5px 0 0 0;
}

.hpSubtitle {
    font-size: 1.2em;
}

.hpSubtitle2 {
    font-size: 0.66em;
}


.entryLeftColumn {
    width: 100%;
    margin: 6% 0 0 0;
}

.bigBookNowBtnCon {
    top: 58%;
}

.entryLeftColumn .bigBookNowBtnCon{
	width: 210px;
	left:0;
}

.entryRightColumn .bigBookNowBtnCon{
	width: 200px;
	left:0;
}


.bigBookNowBtnCon {
    top: 62%;
}

#homePage .scrollIndCon {
    left: 20px;
}

/*-------------PATHS*/

#hpBookingPathsSection {
    width: 98%;
    min-height: 40vh;
    margin: 30px auto 30px auto;
}

.bookingCon {
    height: 55vw;
}

.bookingCon .bodyCopy {
    min-width: 320px;
    line-height: 1.5em;
}

.bookingPathBtn {
    font-size: 1.3em;
    width: 30%;
    min-width: 150px;
    margin: 3% auto;
}

.moonIcon-bookStay,
.sunIcon-bookEvent {
    width: 50px;
}


/*-------------EXPLORE*/

.exploreTitle {
    font-size: 14.7vw;
}

.explSliderFrame {
    margin: -15.5% 0 0 0;
}

.exploreCopy {
    font-size: 0.5em;
    width: 210px;
}

.activeSlide {
    bottom: 4%;
}

.activeSlide .sliderTitle {
    font-size: 1em;
    margin: 11px 0 10px 5px;
}

.sliderTitle {
    font-size: 0.6em;
    margin: 5px 0 0px 0;
}

.activeSlide .explSliderLink {
    top: 3px;
    font-size: 0.7em;
}

.exploreAllLink {
    font-size: 1.2em;
    bottom: -50px;
}

/*-------------STORY*/

#storySection {
    width: 98%;
    min-height: 75vh;
}


.storyCopy {
    width: 55%;
    min-width: 280px;
    max-width: 600px;
    margin: 10px 0;
}

.storyLink {
    font-size: 1.2em;
}


/*-------------CONTACT*/

#contactSection {
    max-height: 550px;
    min-height: 400px;
    margin: 0 0 50px 0;
}

.contIMGClipper {
    top: 21%;
}

.contactIMG {
    height: 102%;
}

.contBtn {
    font-size: 1.3em;
}

.contStayCon {
    width: 180px;
}

.contEventCon {
	 width: 208px;
    /*margin: 0 3% 0 auto;*/
}

.contMainBtn {
    width: 120px;
    height: 25px;
    margin: -2% auto 0 auto;
}

.contactTitle {
    margin: -4% 0 0 -0.8%;
}

.contactCopy {
    width: 23%;
    min-width: 220px;
}




}

/*------------------------------------------------------600px----*/

@media (min-width:0px) and (max-width:600px){

.closeLink {
    font-size: 4.33vw;
}

.mainNavCon{
	width:calc(100% - 30px) !important;
	height:calc(100% - 250px) !important;
	min-height: 60vh;
	top: -40px;
}


.menuLine{
	position:relative;
	width:100%;
	height: 1px;
	background-color:var(--brandSlate01);
}

.navItem .navLink {
    font-size: 5vw;
}

.bookLink {
    font-size: 5.88vw;
}

#menuLink-cntr .menuLink {
    left: 0px;
}

.mLine1{
	 transform-origin: 0 0;
}

/*.mLine3{
	 transform-origin: 0 0;
}*/

.subList {
    width: 94%;
}

.subLink{
	text-align: center;
}

.subLink {
    font-size: 0.9em;
    margin: 15px auto;
}

/*.navLink, .bookLink {
    text-align: center;
    display: block;
    transform: translateY(20px);
    opacity: 0;
}*/

/*.navLink {
    font-size: 1.5em;
    margin: 4% 0;
    color: var(--brandSlate01) !important;
}*/

/*.bookLink{
	font-size: 1.66em;
	margin: 0% 0 3% 0;
}
*/


.entryCentralColumn {
    margin: 26% auto 0 auto;
}

.videoSeal {
    height: 95%;
}

.hpVidClipper {
    height: 90%;
}

.hpSubtitle {
    font-size: 1em;
}

.hpSubtitle2 {
    font-size: 0.4em;
}

.hpSubtitleBlock {
    justify-content: unset;
    margin: -15px 0 10px 0;
}

}

/*------------------------------------------------------600px----*/

@media (min-width:0px) and (max-width:600px){


/*-------------GLOBALS/NAV*/




/*-------------ENTRY*/


.modalCon {
    width: 80%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7%;
}


.entryLeftColumn {
	height: auto;
    margin: 14% 0 4% -5px;
}

.bigBookNowBtnCon{
	position:relative;
	height: auto;
	top:0;
}

.entryCentralColumn {
	width: 63vw;
    margin: 28% auto 0 auto;
}

.entryRightColumn{
	height: 11%;
}

.entryVidCon {
    height: 67vw;
    min-height: auto;
    margin:5% auto -5% auto;
}

.videoSeal {
    width: 103%;
    height: 96%;
    top: -8%;
}

.hpSubtitleBlock {
    margin: 0% 0 0 0;
}

.logoLetter {
    stroke-width: 2px;
}

.hpSubtitle {
    font-size: 0.8em;
}

.hpSubtitle2 {
    font-size: 7px;
    margin: 0px;
}

.bookNowBtn-big {
    font-size: 1.3em;
}

.entryLeftColumn .bigBookNowBtnCon {
    width: 180px;
    height: 60px;
    margin:0 auto 7px auto;
}

.entryRightColumn .bigBookNowBtnCon {
    width: 180px;
    height: 60px;
}

.bookNowBtn-global{
	opacity: 0;
	z-index: -1;
	display: none;
}

#homePage .scrollIndCon {
    bottom: 10px;
}

/*-------------MISSION STATEMENT*/

#hpMissionSection{
	width:97%;
}

.hpMissionColumn {
    align-items: normal;
}

#hpMissionSection .floralFlourish {
	margin: -100% auto 0 auto;
    width: 70%;
}

.hpMissionText {
    font-size: 4.7vw;
    line-height: 8vw;
}

.hpMissionText span {
    font-size: 4.7vw;
}


/*-------------PATHS*/

#hpBookingPathsSection {
    display: block;
    margin: 30px auto 50px auto;
}

.bookingCon{
    height: auto;
	margin: 0 auto 5px auto;
/*	border-top-left-radius: 30px;
	border-top-right-radius: 30px;*/
}



.bookingIMGCon {
    height: auto;
    /*border-top-left-radius: 20px;
	border-top-right-radius: 20px;*/
}

.bookingPathBtn {
    font-size: 1em;
    width: 30%;
    min-width: 110px;
    margin: 6% auto;
}

.moonIcon-bookStay,
.sunIcon-bookEvent {
    bottom: 0px;
}

/*-------------EXPLORE*/

#hpExploreSliderSection {
    margin: 0 0 150px 0;
    height: 125vw;
}

.exploreTitle {
    font-size: 14.4vw;
    margin: 0 0 0 -1.2%;
}

.sliderControlCon {
    top: 37%;
}

.sliderControl {
    font-size: 2em;
}

.exploreCopy {
    font-size: 0.7em;
    width: 80%;
    margin: 10px auto 0 auto;
}

.explSliderFrame {
    height: 80vw;
    margin: -26.5% 0 0 0;
    transform: scale(1.5);
    /*transform: scale(0.66);*/
    /*background-color:rgba(0,0,0,0.06);*/
}

.explSliderWrapper {
    left: -25vw;
    /*background-color:rgba(0,0,0,0.06);*/
}

.activeSlide .sliderTitle {
    font-size: 0.6em;
    margin: 11px 0 10px 1px;
}

.sliderTitle {
    font-size: 5px;
}

.sliderCopy {
	 width: 96%;
    margin: -5px 0 0px 0px;
    font-size: 8px;
    line-height: 12px;
}

.activeSlide .explSliderLink {
    top: 180px;
    font-size: 9px;
    right: auto;
    left: 0px;
}

.exploreAllLink {
    font-size: 1.2em;
    bottom: -110px;
    right: 20px;
}

.historyCon {
    height: auto;
    margin: 0 0 5px 0;
    display: flex;
    flex-direction: column;
}

.ourStoryCon {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
}

.storyIMGBlock {
    display: block;
    /*justify-content: center;*/
    height: 300px;
}

.ourStoryCon .storyIMGBlock{
	border-top-right-radius: 30px;
}

.storyBlock {
    border-radius: 0;
    padding: 30px 0;
}

.storyTitle {
    font-size: 18vw;
}

/*-------------CONTACT*/

.contactCopy,
.contBtnCon {
   display: none;
}

.contactRow:nth-of-type(2){
	height: 0;
}

.contactRow:nth-of-type(3) {
    display: block;
     margin: 0% 0 0 0;
    /*transform: scale(2.5);*/
}

.contIMGClipper {
    width: 69vw;
    height: 85vw;
}

.contactRow:last-of-type {
    margin: 8% auto 0 auto;
}

/*.contIMGClipper {
    transform: scale(1.66);
}*/

/*.contactTitle {
	font-size:20.4vw;
    margin: 25% 0 0 -0.8%;
}*/

.contactTitle {
    font-size: 19.6vw;
    /*margin: 29% 0 0 0%;*/
}

.newsletterSection .contMainBtn{
	top:0;
}


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

.footerCon {
    padding: 50px 0 0 0;
}

.footerBlock {
    position: relative;
    margin: 20px 0px;
    text-align: center;
}

.footerUpper {
    display: flex;
    flex-direction: column;
}

.footerLogo {
    width: 66%;
    margin: 0 auto;
}

.ftContCon {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.signUpCon {
    margin: 2% auto;
    width: 90%;
}

.footerCopy {
    text-align: center;
    width: 66%;
    margin: 0 auto;
}

.emailInput {
    font-size: 0.66em;
    padding: 10px 0px 7px 12px;
    text-align: left;
}

.copyrightText {
    font-size: 0.4em;
    margin: 30px auto 0 auto;
    text-align: center;
}

/*#stayBookingPage .main{
	z-index: 1000000;
}*/

}


/*------------------------------------------------------375px----*/

@media (min-width:0px) and (max-width:375px){

.navMainWrpr {
    padding: 0 20px;
}

.closeBtnCon {
    margin: 20px;
}

.navItem .navLink {
    font-size: 5.33vw;
}

.bookLink {
    font-size: 5.88vw;
}

.mainNavCon .socialBlock {
    margin: 0 0 30px 20px;
}

.entryTitle {
    top: -19%;
}

.hpSubtitle2 {
    font-size: 6px;
}

.entryLeftColumn {
    margin: 11% 0 0 0;
}

.entryCentralColumn {
    margin: 33% auto 0 auto;
}

.hpSubtitle {
    font-size: 0.7em;
}

.bookingCon .bodyCopy {
    font-size: 0.68em;
}

.activeSlide .sliderCopy {
    margin: -5px 0 0px 0px;
    line-height: 10px;
}

.activeSlide .explSliderLink {
    top: 70px;
}



}



/*------------------------------------------------------iPhone10+----*/

@media only screen and (min-width:0px) and (max-width:375px) and (min-height:812px) {

.entryTitle {
    top: -28%;
}


.entryLeftColumn {
    margin: 18% 0 0 0;
}

.entryCentralColumn {
    margin: 44% auto 0 auto;
    transform: scale(1.5);
}

.hpSubtitleBlock {
    margin: 0% 0 0 0;
}

.hpSubtitle2 {
    font-size: 6px;
}


}


/*------------------------------------------------------iPhone10+----*/

@media only screen and (min-width:0px) and (max-width:375px) and (min-height:665px) {


.mainNavCon {
    min-height: 80vh;
    top: -40px;
}

}


/*------------------------------------------------------320px----*/

@media (min-width:0px) and (max-width:320px){

.modalCon {
    width: 90%;
    padding: 5%;
}

.modalIMGWrapper {
    width: 160px;
    height: 260px;
}


.mainNavCon {
    width: 96vw !important;
    height: 97vh;
    top: 3%;
}

.navLink {
    font-size: 1.4em;
    line-height: 0.8em;
}

#homePage .scrollIndCon {
    bottom: 10px;
}

.videoSeal {
    width: 103%;
    height: 96%;
    top: -7%;
}

.entryTitle {
    top: -19%;
    left: 0;
    width: 94%;
}

.hpSubtitle {
    font-size: 0.6em;
}

.hpSubtitle2 {
    font-size: 5px;
}

.bigBookNowBtnCon {
    top: 58%;
}

.bookingIMGCon {
    height: 200px;
    min-height: 200px;
}

.bookingCon .bodyCopy {
    min-width: 270px;
}

.moonIcon-bookStay, .sunIcon-bookEvent {
    display: none;
}

.cL1-inner {
    border-top-left-radius: 25px;
}

.cR1-inner {
    border-top-right-radius: 25px;
}

.exploreAllLink {
    font-size: 1em;
    bottom: -120px;
}

.activeSlide {
    bottom: 1.8%;
}

.activeSlide .explSliderLink {
    top: 170px;
    font-size: 8px;
}

.storyIMG{
	left: -14%;
}

#contactSection {
    max-height: auto;
    min-height: 340px;
    margin: 0 0 20px 0;
}

.contMainBtn {
    top: 260px;
}

.footerCopy {
    width: 90%;
}


}





/*------------------------------------COLORS-----------------------------------------*/

.tan1{
	color:var(--brandTan01) !important;
}

.slate1{
	color:var(--brandSlate01) !important;
}

.gold1{
	color:var(--brandGold01) !important;
}

.tanBG1{
	background-color:var(--brandTan01);
}

.slateBG1{
	background-color:var(--brandSlate01);
}

.goldBG1{
	background-color:var(--brandGold01);
}

.rustBG1{
	background-color:var(--brandRust01);
}

.mauveBG1{
	background-color:var(--brandMauve01);

}

.tanFill1{
	fill:var(--brandTan01);
}

.slateFill1{
	fill:var(--brandSlate01);
}

.goldFill1{
	fill:var(--brandGold01);
}

.rustFill1{
	fill:var(--brandRust01);
}







