/*------>>> TABLE OF CONTENTS <<<-------
	- FLEXNAV BASE STYLES [mobile menu]
	- MEDIA QUERIES [desktop menu lives here]
	- OLD IE STYLES [don't style]
*/

/************************************
/*----------------------------------
/* FLEXNAV BASE STYLES
/*----------------------------------
/*************************************/

.primary-nav {
	display:block;
	margin-left:-0.625rem;
	margin-right:0.625rem;
}
.flexnav,
.flexnav ul {
	list-style: none;
} 
.flexnav {
	width:100%;	
	max-height:0;
	overflow:hidden;
	position:absolute;
	top:100%;	
	margin:0 auto;
	padding:0;
	-webkit-transform-style:preserve-3d;
	transform-style:preserve-3d;
	-webkit-transition:all .5s cubic-bezier(0.77, 0, 0.175, 1);
	-moz-transition:all .5s cubic-bezier(0.77, 0, 0.175, 1);
	-ms-transition:all .5s cubic-bezier(0.77, 0, 0.175, 1);
	transition:all .5s cubic-bezier(0.77, 0, 0.175, 1);
}  
.flexnav.opacity {
	opacity:1;
}
.flexnav.flexnav-show {
	opacity:1;
	padding:0;	
	max-height:2000px;
	-webkit-transition:all .5s cubic-bezier(0.77, 0, 0.175, 1);
	-moz-transition:all .5s cubic-bezier(0.77, 0, 0.175, 1);
	-ms-transition:all .5s cubic-bezier(0.77, 0, 0.175, 1);
	transition:all .5s cubic-bezier(0.77, 0, 0.175, 1);
}
.flexnav.one-page {
	max-width:200px;
	position:fixed;
	top:50px;
	right:5%;
}
.flexnav li {
	overflow:hidden;
	position:relative;
	font-size:100%;
}
.flexnav li a {
	background:#fff;
	display:block;
	position:relative;
	overflow:hidden;
	padding:1.625rem 0;
	margin:0;
	font-family: 'Lato', sans-serif;
	font-size:1.125rem;
	font-weight:400;
	color:#1b314a;
	text-align:center;
	line-height:1.2;
	letter-spacing:0.10em;
	z-index:2;
}
.flexnav li:not(:last-of-type) a {
	border-bottom:1px dotted #e7ebef;
} 
/*- nested UL -*/
.flexnav li ul {
	margin:0;
	width:100%;
	padding:0;	
}
.flexnav li ul li {
	background:#0B203F;
	position:relative;
	overflow:hidden;
	font-size:100%;
}
.flexnav li ul.flexnav-show li {
	overflow:visible;
}
.flexnav li ul li a {
	background:#0B203F;
	color:#fff;
	padding:0.8125rem 0;
}
.flexnav li ul li:first-of-type a {
	padding-top:1.625rem;
}
.flexnav li ul li:last-of-type a {
	padding-bottom:1.625rem;
}
.flexnav li ul li:not(:last-of-type) a {
	border:0;
}
/*- drop down arrows -*/
.flexnav .touch-button {
	display: inline-block;
	width:84px;
	height:74px;
	position: absolute;
	top: 0;
	right:0;
	background:transparent;
	text-align:center;
	z-index:999;
}
.flexnav .touch-button:after {
	display:none;
}
.flexnav .touch-button .touch-button-svg {
	fill:#C1AF91;
	width:25px;
	height:25px;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%, -50%);
	-webkit-transition:all 0.2s ease-in-out;
	transition:all 0.2s ease-in-out;
}
.flexnav .touch-button.active .touch-button-svg {
	transform:translate(-50%, -50%) rotate(180deg);
}
.flexnav .touch-button:hover {
	cursor:pointer;
}
.flexnav .touch-button .navicon {
	display:none;
}
/*- menu button [bars?] -*/
.menu-button {
	display:block;
	width:45px;
	height:45px;
	position:relative;
	cursor:pointer;
	z-index:10000;
}
.menu-button.one-page {
	position:fixed;
	top:0;
	right:5%;
	padding-right:45px;
}
.menu-button .touch-button {
	display:block;
	width:30px;
	height:100%;
	position:absolute;
	right:0.5rem;
	top:0;
}
.menu-button .touch-button .navicon {
	display:block;
	height:2px;
	width:100%;
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	left:0;
	right:0;
	margin:0 auto;
	background:#fff;
	-webkit-transition:background 0.2s;
	transition:background.2s;
	border-radius:3px;
}
.menu-button .touch-button .navicon:before {
	display:block;
	width:100%;
	height:2px;
	position:absolute;
	top:-8px;
	left:0;
	content:"";
	background-color:#fff;
	-webkit-transition-property:top, -webkit-transform;
	transition-property:top, transform;
	-webkit-transition-duration:.3s, .3s;
	transition-duration:.3s, .3s;
	-webkit-transition-delay:.3s, 0s;
	transition-delay:.3, 0s;
	border-radius:3px;
}
.menu-button .touch-button .navicon:after {
	display:block;
	width:100%;
	height:2px;
	position:absolute;
	left:0;
	bottom:-8px;
	content:"";
	background-color:#fff;
	-webkit-transition-property:bottom, -webkit-transform;
	transition-property:bottom, transform;
	-webkit-transition-duration:.3s, .3s;
	transition-duration:.3s, .3s;
	-webkit-transition-delay:.3s, 0s;
	transition-delay:.3s, 0s;
	border-radius:3px;
}
.menu-button .touch-button.active .navicon {
	background:transparent;
}
.menu-button .touch-button.active .navicon:before,
.menu-button .touch-button.active .navicon:after {
	-webkit-transition-duration:.3s, .3s;
	transition-duration:.3s, .3s;
	-webkit-transition-delay:.3s, 0s;
	transition-delay:0s, 0.3s;
}
.menu-button .touch-button.active .navicon:before {
	top:0;
	-webkit-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	transform:rotate(45deg);
}
.menu-button .touch-button.active .navicon:after {
	bottom:0;
	-webkit-transform:rotate(-45deg);
	-ms-transform:rotate(-45deg);
	transform:rotate(-45deg);
}
/*- JS -*/
.js-masthead-sticky .menu-button .touch-button:not(.active) .navicon {
	background:#cfaf91;
}
.js-masthead-sticky .menu-button .touch-button .navicon:before,
.js-masthead-sticky .menu-button .touch-button .navicon:after,
.js-has-open-menu .menu-button .touch-button .navicon:before,
.js-has-open-menu .menu-button .touch-button .navicon:after {
	background:#C1AF91;
}
/*- Booking Link -*/
.booking-link small {
	display:block;
	font-size:inherit;
	font-weight:inherit;
	color:#C1AF91;
	line-height:inherit;
	margin-top:0.313rem;
}



/************************************
/*----------------------------------
/* MEDIA QUERIES
/*----------------------------------
/*************************************/

@media all and (min-width:40rem) { /*- 640px and up -*/
	/*---> Desktop Menu <---*/
	.primary-nav {
		position:relative;
		width:100%;
	}
	.flexnav {
		position: relative;
		top:auto;
		max-width: none;
		height:100%;
		max-height:100%;
		margin: 0 auto 0 auto !important;
		overflow: visible;
		background: transparent;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: justify;
		-moz-box-pack: justify;
		-ms-flex-pack: justify;
		-webkit-justify-content: space-around;
		justify-content: space-around;
		-ms-flex-line-pack: center;
		-webkit-align-content: center;
		align-content: center;
		box-shadow: none;
		border-radius: 0;
		transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
	body.one-page {
		padding-top:70px;
	}
	.flexnav.opacity {
		opacity:1;
	}
	.flexnav.one-page {
		max-width:1080px;
		top:0;
		right:auto;
	}
	.flexnav li {
		display: block;
		position: relative;
		list-style: none;
		float: left;
		overflow: visible;
		flex-grow: 1;
		height: 100%;
	}
	.flexnav > li > a {
		padding:0;
		height:86px;
		display: -webkit-flex;
		display: flex;
		-webkit-align-items: center;
		align-items: center;
		-webkit-justify-content: center;
		justify-content: center;
		background: none;
		font-size:0.625rem;
		color:#fff;
		text-align:center;
		-webkit-transition: all 0.5s ease;
		transition: all 0.5s ease;
		border:0 !important;
	}	
	.flexnav li > a:before {
		content: "";
		display:block;
		width:0;
		height:100%;
		margin:0 auto;
		position:absolute;
		top:0;
		bottom:0;
		left: 0;
		right:0;
		background:rgba(1,32,63,0.06);
		transition: all 0.3s ease-in-out;
		z-index:-1;
	}
	.body-index .masthead:not(.js-masthead-sticky) .flexnav > li > a:before {
		display:none;
	}
	.flexnav li > a:hover:before,
	.flexnav li.active > a:before {
		width:calc(100% - 0.313rem);  
	}
	.flexnav > li:last-of-type > a {
		flex-direction:column;
	}
	/*- nested UL -*/
	.flexnav li ul {
		display:none;
	}
	.flexnav li > ul {
		width:150px;
		position:absolute;
		top:100%;
		right:-100%;
		left:-100%;
		margin:0 auto;
		background:#0b203f;
		padding:0 !important;
		-webkit-box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.16);
		-moz-box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.16);
		box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.16);
	}
	.flexnav li > ul::before {
		position: absolute;
		content: '';
		display: block;
		width: 0;
		height: 0;
		top: -7px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		-moz-transition: translateX(-50%);
		-o-transition: translateX(-50%);
		border: inset 0.5rem;
		border-color: transparent transparent #0b203f;
		border-bottom-style: solid;
		border-top-width: 0;
	}
	.flexnav li > ul li {
		width:100%;
		height:auto;
		padding:0.313rem !important;
		margin:0 !important;
		background:transparent;
	}
	.flexnav li > ul li + li {
		margin-top:-0.313rem !important;
	}
	.flexnav li > ul li a	{
		padding:0.5rem 0 !important;
		background:transparent;
		font-size:0.625rem;
		text-align:center;
		border:0 !important;
	}
	.flexnav li > ul li a:before {
		content: "";
		display:block;
		width:0;
		height:100%;
		margin:0 auto;
		position:absolute;
		top:0;
		bottom:0;
		left: 0;
		right:0;
		background:rgba(2551,255,255,0.1);
		transition: all 0.3s ease-in-out;
		z-index:-1;
	}
	.flexnav li ul li:hover > a:before,
	.flexnav li ul li > a.active:before {
		width:100%; 
	}
	.flexnav li ul.open {
		display:block;
		opacity:1;
		visibility:visible;
		z-index:1;
	}
	.flexnav li ul.open li {
		max-height:100px;
		overflow:visible;
	}
	.flexnav li ul.open ul.open {
		margin-left:100%;
		top:0;
	}
	/*- drop down arrows -*/
	.no-touch .flexnav .touch-button,
	.touch .flexnav .touch-button{
		display:none;
	}
	.flexnav .touch-button {
		width:100%;
		height:14px;
		margin:0 auto;
		top:auto;
		left:0;
		right:0;
		bottom:15px;
	}
	.flexnav .touch-button:after {
		position:absolute;
		margin:0 auto;
		top:auto;
		left:0;
		right:0;
		bottom:0;
	}
	.flexnav .touch-button.active:after {
		-webkit-transform:rotate(180deg);
		transform:rotate(180deg);
	}
	.flexnav .touch-button:hover {
		cursor:pointer;
	}
	/*- menu button -*/
	.menu-button {
		display:none;
	}
	/*- Booking Link -*/
	.booking-link span {
		display:none;
	}
	.booking-link small {
		color:#fff;
		font-weight:600;
		margin-top:0.125rem;
	}
	/*- Interior -*/
	.body-interior .flexnav > li > a {
		color:#143666;
	}
	.body-interior .flexnav > li.booking-link >  a {
		background:#C1AF91;
	}
	.body-interior .booking-link span {
		display:inline;
	}
	.body-interior .flexnav > li.booking-link >  a,
	.body-interior .flexnav > li.booking-link >  a  small {
		color:#fff;
	}
	.body-interior .flexnav > li.booking-link a:before {
		display:none;
	}
	.body-interior .flexnav > li.booking-link a:hover {
		background:#D1232C;
	}
	/*- JS -*/
	.js-masthead-sticky .flexnav > li > a {
		color:#143666;
	}
	.js-masthead-sticky .flexnav > li.booking-link >  a {
		background:#C1AF91;
	}
	.js-masthead-sticky .booking-link span {
		display:inline;
	}
	.js-masthead-sticky .flexnav > li.booking-link >  a,
	.js-masthead-sticky .flexnav > li.booking-link >  a  small {
		color:#fff;
	}
	.js-masthead-sticky .flexnav > li.booking-link a:before {
		display:none;
	}
	.js-masthead-sticky .flexnav > li.booking-link a:hover {
		background:#D1232C;
	}
}
@media all and (min-width:64rem) { /*- 1024px and up -*/
	.flexnav li a,
	.flexnav li > ul li a {
		font-size:0.875rem;
	}
	.flexnav li > ul {
		width:200px;
	}
}
@media all and (min-width:1180px) { /*- 1180px and up -*/
	.flexnav li a,
	.flexnav li > ul li a {
		font-size:1.063rem;
	}
	.flexnav li > ul {
		width:250px;
	}
}
/************************************
/*----------------------------------
/* OLD IE STYLES
/*----------------------------------
/*************************************/

.oldie body.one-page {
	padding-top:70px;
}
.oldie .flexnav {
	overflow:visible;
}
.oldie .flexnav.one-page {
	top:0;
	right:auto;
	max-width:1080px;
}
.oldie .flexnav li {
	position:relative;
	list-style:none;
	float:left;
	display:block;
	background-color:#a6a6a2;
	width:20%;
	min-height:50px;
	overflow:visible;
}
.oldie .flexnav li:hover > ul {
	display:block;
	width:100%;
	overflow:visible;
}
.oldie .flexnav li:hover > ul li {
	width:100%;
	float:none;
}
.oldie .flexnav li a {
	border-left:1px solid #acaca1;
	border-bottom:none;
	overflow:visible;
}
.oldie .flexnav li > ul {
	background:#acaca1;
	position:absolute;
	top:auto;
	left:0;
	display:none;
	z-index:1;
	overflow:visible;
}
.oldie .flexnav li ul li ul {
	top:0;
}
.oldie .flexnav li ul li a {
	border-bottom:none;
}
.oldie .flexnav li ul.open {
	display:block;
	width:100%;
	overflow:visible;
}
.oldie .flexnav li ul.open li {
	width:100%;
}
.oldie .flexnav li ul.open ul.open {
	margin-left:100%;
	top:0;
	display:block;
	width:100%;
	overflow:visible;
}
.oldie .flexnav ul li:hover ul {
	margin-left:100%;
	top:0;
}
.oldie .menu-button {
	display:none;
}
.oldie.ie7 .flexnav li {
	width:19.9%;
}