@charset "UTF-8";

/* Normalize
–––––––––––––––––––––––––––––––––––––––––––––––––– */
progress,sub,sup{vertical-align:baseline}button,hr,input{overflow:visible}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}button,input,select,textarea{font-family:inherit;font-weight:300}optgroup{font-weight:700}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-input-placeholder{color:inherit;opacity:1}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}

/* Base
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	   -moz-text-size-adjust: 100%;
	    -ms-text-size-adjust: 100%;
	        text-size-adjust: 100%;
	font-size: 62.5%;
}
body {
	margin: 0;
	padding: 0;
	font-family: 'Fira Sans', sans-serif;
	font-size: 1.7em;
	line-height: 1.6;
	color: #173A64;
	font-weight: 300;
}
body.has-active-menu {
	overflow: hidden;
}
.pg-wrapper {
	-webkit-transition: -webkit-transform 0.3s;
	        transition: -webkit-transform 0.3s;
	        -o-transition: transform 0.3s;
}
.pg-mask {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 0;
	height: 0;
	background-color: #000;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	-webkit-transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
	     -o-transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
	        transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
}
.pg-mask.is-active {
	width: 100%;
	height: 100%;
	-webkit-transition: opacity 0.3s;
	     -o-transition: opacity 0.3s;
	        transition: opacity 0.3s;
               opacity: 0.7;
}
.pg-width {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}
.pg-width-narrow {
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 480px) {
	body {
		font-size: 1.5em;
	}
}

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 10px;
}
h1 { font-size: 5rem; line-height: 1.2; }
h2 { font-size: 4rem; line-height: 1.2; }
h3 { font-size: 3.5rem; line-height: 1.3; }
h4 { font-size: 2.5rem; line-height: 1.3; }
h5 { font-size: 1.8rem; line-height: 1.3; }
p { margin-top: 0; }
strong { font-weight: bold !important; }

.text-center {
	text-align: center;
}
.text-para1 {
	font-size: 2rem;
}
.text-sm {
	font-size: 1.3rem;
}
.text-highlight_beige {
	color: #B2A384;
}

@media only screen and (max-width: 768px) {
	h1 { font-size: 4rem; line-height: 1.2; }
	h2 { font-size: 3rem; line-height: 1.2; }
	h3 { font-size: 3rem; line-height: 1.3; }
	h4 { font-size: 2.2rem; line-height: 1.3; }
}
@media only screen and (max-width: 480px) {
	h1 { font-size: 3.5rem; line-height: 1.2; }
	h2 { font-size: 2.5rem; line-height: 1.2; }
	h3 { font-size: 2.2rem; line-height: 1.3; }
	h4 { font-size: 2rem; line-height: 1.3; }
	
	.text-para1 {
		font-size: 1.7rem;
	}
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a, a:visited {
	text-decoration: none;
	color: #00A3AD;
}
a:hover {
	color: #173A64;
}

/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.column {
	float: left;
	overflow: hidden;
	padding: 20px 30px 20px 30px;
	  -webkit-box-sizing: border-box;
	          box-sizing: border-box;
}
.one.column 		{ width: 8.3333333%; }
.two.column 		{ width: 16.6666667%; }
.three.column 		{ width: 25%; }
.four.column 		{ width: 33.3333333%; }
.five.column 		{ width: 41.6666667%; }
.six.column 		{ width: 50%; }
.seven.column 		{ width: 58.3333333%; }
.eight.column 		{ width: 66.6666667%; }
.nine.column 		{ width: 75%; }
.ten.column 		{ width: 83.3333333%; }
.eleven.column 		{ width: 91.6666667%; }
.twelve.column 		{ width: 100%; }

/* Column - Feature
––––––––––––––-----–––––––– */
.column-feature {
	float: left;
	overflow: hidden;
	margin: 0 1% 0 1%;
	padding: 40px;
	background: rgba(153,214,234,0.3);
	border-radius: 15px;
	  -webkit-box-sizing: border-box;
	     -moz-box-sizing: border-box;
	          box-sizing: border-box;
}
.one.column-feature		{ width: 6.3333333%; }
.two.column-feature 		{ width: 14.6666667%; }
.three.column-feature 		{ width: 23%; }
.four.column-feature 		{ width: 31.3333333%; }
.five.column-feature 		{ width: 39.6666667%; }
.six.column-feature 		{ width: 48%; }
.seven.column-feature 		{ width: 56.3333333%; }
.eight.column-feature 		{ width: 64.6666667%; }
.nine.column-feature 		{ width: 73%; }
.ten.column-feature 		{ width: 81.3333333%; }
.eleven.column-feature 		{ width: 91.6666667%; }
.twelve.column-feature 		{ width: 98%; }

@media only screen and (max-width: 768px)  {
	.column {
		padding: 20px;
		width: 100% !important;
		max-width: 550px;
		float: none;
		margin: 0 auto;
	}
	.column-feature {
		padding: 30px;
		width: 90% !important;
		max-width: 550px;
		float: none;
		margin: 5% auto;
	}
}

/* Structure
–––––––––––––––––––––––––––––––––––––––––––––––––– */
header.main {
	position: relative;
	background-image: url(../images/bg_blue.svg);
	background-size: 60px 60px;
	background-position: top;
	background-repeat: repeat-x;
}
main {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	clear: both;
	overflow: hidden;
	padding: 80px 0;
}
section {
	overflow: hidden;
	clear: both;
}
section.banner-internal {
	position: relative;
	height: 400px;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}
section.bold {
	background: #173A64;
	color: #FFF;
}
section.light {
	background: #99D6EA;
}
section.subtle {
	background: rgba(153,214,234,0.3);
}
.slider ul {
	height: 400px;
	list-style: none;
	margin: 0 0 10px 0;
	background: #000;
	overflow: hidden;
	border-radius: 5px;
}
.slider ul li {
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}
footer.main {
	background: #173A64;
	padding: 40px 0 20px 0;
	overflow: hidden;
	clear: both;
	color: #FFF;
}

@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 480px) {
	main {
		padding: 30px 0;
	}
}


/* Banner
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#hero {
	background-color: #000;
	height: 600px;
	width: 100%;
	position: relative;
}
img.banner-overlay {
	position: absolute;
	width: 100%;
	height: auto;
	bottom: -1px;
	z-index: 50;
}

#hero-slider {
	position: relative;
}
#hero-slider .slides {
	width: 100%;
	margin: 0 auto;
}
#hero-slider .slides li {
	height: 600px;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}
#hero-slider .slides .flex-caption {
	width: 60%;
	max-width: 1024px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	top: 130px;
	padding: 40px 0;
	border-top: solid 3px #FFF;
	border-bottom: solid 3px #FFF;
}
#hero-slider .slides .flex-caption h1 {
	font-size: 5rem;
	line-height: 1;
	color: #FFF;
	position: relative;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
	font-weight: 400;
	filter: alpha(opacity=0);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	opacity: 0;
	zoom: 1;
}
#hero-slider .slides .flex-caption h3 {
	font-size: 3rem;
	font-weight: 400;
	color: #FFF;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
	margin-top: 24px;
	filter: alpha(opacity=0);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	opacity: 0;
	zoom: 1;
}

/* BUTTONS
--------------------------------------------------*/
a.btn-hero-slider {
	background: #C79F00;
	color: #FFF;
	line-height: 2;
	clear: both;
	width: 120px;
	display: block;
	font-size: 1.5rem;
	text-shadow: none;
	border-radius: 5px;
	font-weight: 700;
	margin: 30px auto 0 auto;
}
a.btn-hero-slider:hover {
	background: #152F63;
	color: #FFF;
	-moz-transition: ease-in-out 0.5s;
    -webkit-transition: ease-in-out 0.5s;
	transition: ease-in-out 0.5s;
}

/* for oldIE - IE9 
--------------------------------------------------*/
.oldie #hero-slider .slides .flex-caption h1 {
	filter: alpha(opacity=100);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	opacity: 1;
	zoom: 1;
}
.oldie #hero-slider .slides .flex-caption h3 {
	filter: alpha(opacity=100);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	opacity: 1;
	zoom: 1;
}

@media only screen and (max-width:768px) {
	#hero-slider {
		min-height: auto;
		height: 400px;
	}
	#hero-slider .slides li {
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
		background-position: center top;
		background-attachment: inherit;
	}
	#hero-slider .slides .flex-caption {
		top: 100px;
	}
	#hero-slider .slides .flex-caption h1 {
		font-size: 4rem;
	}
	#hero-slider .slides .flex-caption h3 {
		font-size: 2rem;
	}
}

@media only screen and (max-width:480px) {
	#hero {
		height: 500px;
	}
	#hero-slider .slides li {
		height: 500px;
	}
	#hero-slider {
		min-height: auto;
		height: 300;
	}
	#hero-slider .slides .flex-caption {
		top: 70px;
		width: 80%;
	}
	#hero-slider .slides .flex-caption h1 {
		font-size: 3rem;
	}
	#hero-slider .slides .flex-caption h3 {
		font-size: 1.8rem;
	}
	a.btn-hero-slider {
		font-size: 1.2rem;
	}
}

/* Navigation Control 
------------------------*/
#hero .flex-control-nav {
	display: none;
}

/* Navigation
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.trigger, .trigger-close {
	display: none;
}
input[type=checkbox] {
	display: none;
}
input[type=checkbox]:checked ~ #menu {
	display: block;
}
ul.nav-primary {
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
}
ul.nav-primary li {
	float: left;
	font-size: 1.5rem;
}
ul.nav-primary li a {
	display: block;
	padding: 0 20px;
	color: #FFF;
	line-height: 60px;
}
ul.nav-primary li a:hover {
	color: #99D6EA;
	-webkit-transition: ease-in-out 0.5s;
	   -moz-transition: ease-in-out 0.5s;
	     -o-transition: ease-in-out 0.5s;
	        transition: ease-in-out 0.5s;
}

@media only screen and (max-width:1024px) {
	ul.nav-primary {
		right: 15px;
	}
	ul.nav-primary li {
		font-size: 1.4rem;
	}
	ul.nav-primary li a {
		padding: 0 12px;
	}
}

@media only screen and (max-width:768px) {
	nav.menu-wrapper {
		position: fixed;
		z-index: 200;
		background-color: #173A64;
		-webkit-transition: transform 0.3s;
		     -o-transition: transform 0.3s;
				transition: -webkit-transform 0.3s;
				transition: transform 0.3s;
				transition: transform 0.3s, -webkit-transform 0.3s;
	}
	nav.menu-slide {
		height: 100%;
		width: 80%;
		max-width: 320px;
		top: 0;
		left: 0;
		overflow-y: scroll;
		-webkit-transform: translateX(-100%);
			-ms-transform: translateX(-100%);
				transform: translateX(-100%);
	}
	nav.menu-slide.is-active {
		-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
				transform: translateX(0);
	}
	ul.nav-primary {
		overflow: hidden;
		position: relative;
		margin-top: 20px;
	}
	ul.nav-primary li {
		float: none;
		font-size: 1.7rem;
	}
	ul.nav-primary li a {
		display: block;
		padding: 0 60px;
		color: #FFF;
		line-height: 50px;
		background-image: url(../images/icons/ic_arrow-right_white.svg);
		background-size: 15px 15px;
		background-repeat: no-repeat;
		background-position: right 30px center;
	}
	ul.nav-primary li a:hover {
		color: #99D6EA;
		-webkit-transition: ease-in-out 0.5s;
		   -moz-transition: ease-in-out 0.5s;
			 -o-transition: ease-in-out 0.5s;
				transition: ease-in-out 0.5s;
	}
	.trigger {
		position: absolute;
		width: 60px;
		height: 60px;
		display: block;
		top: 0;
		right: 5px;
		background: url(../images/icons/ic_menu.svg) center center no-repeat;
		background-size: 25px 25px;
		border: none;
		-webkit-box-shadow: none;
		        box-shadow: none;
	}
	.trigger:focus {
		outline: none;
	}
	.trigger-close {
		position: absolute;
		width: 50px;
		height: 50px;
		display: block;
		top: 0;
		right: 0;
		background: url(../images/icons/ic_close.svg) center center no-repeat;
		background-size: 15px 15px;
		border: none;
		-webkit-box-shadow: none;
		        box-shadow: none;
	}
	.trigger-close:focus {
		outline: none;
	}
}


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
li {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

/* Bullets
–––––––––––––––––––––––––– */
ul.bullets {
	overflow: hidden;
	list-style: disc;
	margin: 0 0 20px 0;
}
ul.bullets li {
	margin: 0 0 10px 30px;
}

ul.bullets-half {
	overflow: hidden;
	list-style: disc;
	margin: 20px 0 0 0;
}
ul.bullets-half li {
	margin: 0 0 10px 30px;
	font-size: 1.5rem;
	width: 40%;
	float: left;
}

@media only screen and (max-width: 768px) {
	ul.bullets-half li {
		width: 90%;
	}
}

/* Header Actions
–––––––––––––––––––––––––– */
ul.header-actions {
	overflow: hidden;
	position: absolute;
	top: 90px;
	right: 0;
}
ul.header-actions li {
	float: left;
	font-size: 1.5rem;
	padding: 0 20px;
	line-height: 1.2;
}
ul.header-actions li.phone a {
	color: #B2A384;
	font-size: 2rem;
	font-weight: bold;
}
ul.header-actions li.phone a:hover {
	color: #99D6EA;
	-webkit-transition: ease-in-out 0.5s;
	   -moz-transition: ease-in-out 0.5s;
	     -o-transition: ease-in-out 0.5s;
	        transition: ease-in-out 0.5s;
}
ul.header-actions li.btn a {
	color: #FFF;
	background: #173A64;
	font-size: 1.7rem;
	padding: 10px 20px;
	border-radius: 3px;
	display: inline-block;
	float: left;
	margin: 0 2px;
}
ul.header-actions li.btn a:hover {
	background: #99D6EA;
	-webkit-transition: ease-in-out 0.5s;
	   -moz-transition: ease-in-out 0.5s;
	     -o-transition: ease-in-out 0.5s;
	        transition: ease-in-out 0.5s;
}

@media only screen and (max-width: 768px) {
	ul.header-actions {
		top: 78px;
	}
	ul.header-actions li {
		font-size: 1.3rem;
	}
	ul.header-actions li.phone {
		display: none;
	}
	ul.header-actions li.btn a {
		font-size: 1.5rem;
	}
}
@media only screen and (max-width: 480px) {
	ul.header-actions {
		top: 78px;
	}
	ul.header-actions li.btn a {
		font-size: 1.1rem;
		padding: 10px 10px;
	}
}

/* Feature Items
–––––––––––––––––––––––––– */
ul.featitems {
	overflow: hidden;
	list-style: none;
	display: table;
	margin: 40px auto 40px auto;
	width: 768px;
	padding: 10px;
}
ul.featitems li {
	float: left;
	width: 31.333%;
	margin: 0 1%;
	border-radius: 10px;
	font-size: 2rem;
	background-size: 35px 35px;
	background-position: left 20px center;
	background-repeat: no-repeat;
}
ul.featitems li:hover {
	-webkit-transform: scale(1.05);
	   -moz-transform: scale(1.05);
	     -o-transform: scale(1.05);
	        transform: scale(1.05);
}
ul.featitems li:nth-child(1) {
	background-color: #173A64;
	background-image: url(../images/icons/ic_apartment_white.svg);
}
ul.featitems li:nth-child(2) {
	background-color: #00A3AD;
	background-image: url(../images/icons/ic_star_white.svg);
}
ul.featitems li:nth-child(3) {
	background-color: #B2A384;
	background-image: url(../images/icons/ic_photos_white.svg);
}
ul.featitems li a {
	display: block;
	padding: 30px 0 30px 25px;
	color: #FFF;
}

@media only screen and (max-width: 768px) {
	ul.featitems {
		width: 100%;
	}
	ul.featitems li {
		float: left;
		width: 100%;
		margin: 0 0 15px 0;
		text-align: left;
	}
	ul.featitems li a {
		padding: 30px 0 30px 70px;
	}
}
@media only screen and (max-width: 480px) {
}

/* Accommodation Quick Guide
–––––––––––––––––––––––––– */
ul.accomm-quickguide {
	overflow: hidden;
	margin: 30px 0;
	border-top: solid 2px #173A64;
	border-bottom: solid 2px #173A64;
	clear: both;
	padding: 10px 20px;
}
ul.accomm-quickguide li {
	float: left;
	padding: 10px 20px 10px 40px;
	background-size: 30px 30px;
	background-repeat: no-repeat;
	background-position: left center;
}

@media only screen and (max-width: 768px) {
	ul.accomm-quickguide li {
		width: 100%;
		text-align: left;
		padding: 5px 20px 5px 40px;
		background-position: left center;
	}
}
@media only screen and (max-width: 480px) {
}

/* Sleeping Quick Guide
–––––––––––––––––––––––––– */
ul.sleeping-quickguide {
	overflow: hidden;
	margin: 30px 0;
	clear: both;
	padding: 10px 0;
	text-align: center;
}
ul.sleeping-quickguide li {
	float: left;
	width: 31.333%;
	background-color: rgba(255,255,255,0.2);
	border-radius: 5px;
	padding: 70px 20px 20px 20px;
	margin: 0 1%;
	background-image: url(../images/icons/ic_bed-outline_navy.svg);
	background-size: 60px 60px;
	background-repeat: no-repeat;
	background-position: top 10px center;
}
ul.sleeping-quickguide li h5 {
	font-size: 1.5rem;
	margin: 0;
}
ul.sleeping-quickguide li p {
	margin: 0;
	font-size: 1.3rem;
}

@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 480px) {
	ul.sleeping-quickguide li {
		padding: 70px 15px 15px 15px;
	}
	ul.sleeping-quickguide li h5 {
		font-size: 1.3rem;
	}
	ul.sleeping-quickguide li p {
		font-size: 1.1rem;
	}
}

/* Facilities
–––––––––––––––––––––––––– */
ul.facilities {
	overflow: hidden;
	margin-bottom: 30px;
	padding: 30px;
	background: rgba(153,214,234,0.2);
	border-radius: 15px;
}
ul.facilities li {
	background-size: 30px 30px;
	background-repeat: no-repeat;
	background-position: left center;
	padding: 5px 0 5px 45px;
	width: 50%;
	font-size: 1.5rem;
	float: left;
	text-align: left;
}

@media only screen and (max-width: 768px) {
	ul.facilities li {
		width: 100%;
	}
}

/* Region
–––––––––––––––––––––––––– */
ul.region {
	overflow: hidden;
}
ul.region li {
	width: 50%;
	float: left;
	padding: 30px 50px 30px 0;
	font-size: 1.5rem;
}
ul.region li:nth-child(2n+1) {
	clear: left;
}
ul.region li h4 {
	color: #00A3AD;
}
ul.region li a {
	border-top: solid 1px #173A64;
	display: block;
	padding: 5px 0;
}

@media only screen and (max-width: 768px) {
	ul.region li {
		width: 100%;
		float: left;
		padding: 10px 50px 10px 0;
		font-size: 1.5rem;
	}
}

/* Social Icons
–––––––––––––––––––––––––– */
ul.social-icons {
	overflow: hidden;
	margin-bottom: 30px;
	margin-top: 30px;
}
ul.social-icons li {
	width: 60px;
	float: left;
	margin: 0 2px;
}
ul.social-icons li img {
	width: 100%;
	height: auto;
	display: block;
}


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

/* Contact Details
–––––––––––––––––––––––––– */
ul.contact-details {
	overflow: hidden;
	margin-bottom: 10px;
}
ul.contact-details li {
	padding: 10px 0;
	line-height: 1.2;
}
ul.contact-details li a {
	font-size: 2rem;
	color: #B2A384;
}
ul.contact-details li a:hover {
	color: #00A3AD;
}

/* Sitemap
–––––––––––––––––––––––––– */
ul.sitemap {
	overflow: hidden;
	display: table;
	margin: 0 auto 30px auto;
}
ul.sitemap li {
	float: left;
	font-size: 1.5rem;
}
ul.sitemap li a {
	color: #FFF;
	padding: 5px 15px;
	display: block;
}
ul.sitemap li a:hover {
	color: #99D6EA;
}

@media only screen and (max-width: 768px) {
	ul.sitemap li {
		width: 100%;
		text-align: center;
	}
	ul.sitemap li a {
		color: #FFF;
		padding: 5px 15px;
	}
}
@media only screen and (max-width: 480px) {
}

ul.list-centered {
	display: table;
	margin-left: auto;
	margin-right: auto;
}


/* Testimonials
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.testimonials-wrapper {
	position: relative;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 40px 60px 40px 60px;
	z-index: 1;
	text-align: center;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.testimonial-content {
	max-width: 1024px;
	width: 100%;
	margin: 0 auto 30px auto;
}
.testimonials {
	list-style: none;
	padding: 0;
	margin: 0;
}
.testimonials > li {
	position: absolute;
	opacity: 0;
}
.testimonials > li:first-child {
	position: relative;
	opacity: 1;
}
.testimonial-content p {
	padding: 0;
	font-size: 1.6rem;
	opacity: 0.8;
}

@media only screen and (max-width: 768px) {
	.testimonial-content p {
		font-size: 1.4rem;
	}
}

/* ------ Navigation ------ */

.flex-direction-nav a {
	text-decoration: none;
	display: block;
	width: 50px;
	height: 100%;
	margin: 0px 0 0;
	position: absolute;
	z-index: 9999;
	top: 0;
	overflow: hidden;
	opacity: 1;
	background: rgba(245, 245, 245, 0);
	cursor: pointer;
	color: rgba(255,255,255,0);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.flex-direction-nav a:before {
	font-size: 40px;
	position: absolute;
	display: block;
	top: 50%;
	padding: 14px 10px 14px 10px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.flex-direction-nav a.flex-next:before {
	padding: 14px 20px 14px 10px;
}
.flex-direction-nav .flex-prev {
	left: 0px;
	background-image: url(../images/icons/ic_arrow-circle-circle_navy.svg);
	background-repeat: no-repeat;
	background-size: 30px 30px;
	background-position: center center;
}
.flex-direction-nav .flex-next {
	right: 0px;
	text-align: right;
	background-image: url(../images/icons/ic_arrow-right-circle_navy.svg);
	background-repeat: no-repeat;
	background-size: 30px 30px;
	background-position: center center;
}
.flexslider:hover .flex-direction-nav .flex-prev {
	opacity: 1;
	left: 0px;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
	opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-next {
	opacity: 1;
	right: 0px;
}
.flexslider:hover .flex-direction-nav .flex-next:hover {
	opacity: 1;
}
.flex-direction-nav .flex-disabled {
	opacity: 0!important;
	filter: alpha(opacity=0);
	cursor: default;
}
.flex-control-paging li a {
	width: 12px;
	height: 12px;
	display: block;
	background: #666;
	background: rgba(23,58,100,0.4);
	cursor: pointer;
	text-indent: -9999px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}
.flex-control-paging li a:hover {
	background: #333;
	background: rgba(23,58,100,0.7);
}
.flex-control-paging li a.flex-active {
	background: #000;
	background: rgb(23,58,100);
	cursor: default;
}
.flex-control-nav {
	bottom: 0;
	left: 0;
	position: absolute;
	margin: 0 auto;
	padding: 0;
	text-align: center;
	width: 100%;
}
.flex-control-nav li {
	display: inline-block;
	padding: 0px 5px 0px 5px;
}


/* Gallery
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul.light-gallery {
	list-style: none;
	margin: 0;
}
ul.light-gallery li {
	width: 14.666%;
	height: auto;
	float: left;
	margin-right: 2%;
	margin-bottom: 15px;
	position: relative;
	z-index: 50;
	cursor: pointer;
}
ul.light-gallery li img {
	width: 100%;
	height: auto;
	display: block;
}

@media only screen and (max-width: 768px) {
	ul.light-gallery li {
		width: 23%;
		margin-bottom: 10px;
	}
}
@media only screen and (max-width: 480px) {
	ul.light-gallery li {
		width: 31.333%;
		margin-bottom: 10px;
	}
}

/* Images
–––––––––––––––––––––––––––––––––––––––––––––––––– */
img.logo {
	width: 250px;
	height: auto;
	display: inline-block;
	padding: 15px 20px 0 20px;
}
img.logo-menu {
	display: none;
}
img.logo-footer {
	width: 250px;
	height: auto;
	display: block;
	padding: 0;
	margin: 0 auto;
}
img.img-full {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 5px;
}

@media only screen and (max-width: 768px) {
	img.logo {
		width: 180px;
		height: auto;
		display: inline-block;
		padding: 15px 20px 0 20px;
	}
	img.logo-menu {
		width: 180px;
		height: auto;
		display: block;
		margin: 0 auto;
		padding: 15px 20px 0 20px;
	}
	img.logo-footer {
		width: 200px;
	}
}

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

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
form {
	max-width: 768px;
	margin: 0 auto;
}
ul.form {
	overflow: hidden;
}
ul.form li {
	width: 98%;
	float: left;
}
ul.form li.half {
	width: 48%;
	margin: 0 2% 0 0;
}
ul.form li.third {
	width: 31.333%;
	margin: 0 2% 0 0;
}

input[type="email"],
input[type="text"],
input[type="tel"],
input[type="date"],
textarea,
select {
	width: 100%;
	padding: 20px 10px;
	margin-bottom: 10px;
	background-color: rgba(255,255,255,0.4);
	border: none;
	border-radius: 5px;
	-webkit-box-shadow: none;
	        box-shadow: none;
	font-size: 1.2rem;
	color: #173A64;
	-webkit-appearance: none;
	background-position: right 10px center;
	background-repeat: no-repeat;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
textarea {
	min-height: 130px;
}
input[type="email"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus, 
select:focus {
	outline: 0;
	-webkit-transition: ease-in-out 0.5s;
            -o-transition: ease-in-out 0.5s;
            transition: ease-in-out 0.5s;
}
input[type="submit"],
input[type="reset"],
input[type="button"] {
	width: 98%;
	display: block;
	padding: 20px 40px;
	margin: 10px 0 0 0;
	background: #00A3AD;
	color: #FFF;
	cursor: pointer;
	height: auto;
	text-align: center;
	border: none;
	font-size: 1.5rem;
	border-radius: 5px;
	-webkit-font-smoothing: inherit;
	-webkit-transition: all 0.3s ease-in-out;
	     -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	color: #FFFFFF;
	background: #173A64;
}
label {
	font-size: 1.2rem;
	text-align: left;
	display: block;
}
.required {
	color: red;
}
fieldset {
	margin: 0;
	padding: 10px;
	border-width: 0;
	width: 50%;
	float: left;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
	fieldset {
		width: 100%;
	}
}
@media only screen and (max-width: 480px) {
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a.btn-primary {
	color: #FFF;
	background-color: #00A3AD;
	display: inline-block;
	padding: 10px 30px;
	font-size: 1.7rem;
	border-radius: 5px;
	margin-bottom: 5px;
}
a.btn-primary:hover {
	background-color: #173A64;
}

a.btn-secondary {
	color: #FFF;
	background-color: #B2A384;
	display: inline-block;
	padding: 10px 30px;
	font-size: 1.7rem;
	border-radius: 5px;
	margin-bottom: 5px;
}
a.btn-secondary:hover {
	background-color: #173A64;
}

a.btn-cta {
	color: #FFF;
	background-color: #00A3AD;
	display: inline-block;
	padding: 10px 0;
	font-size: 2.2rem;
	border-radius: 5px;
	width: 100%;
	text-align: center;
	border: solid 1px #FFF;
}
a.btn-cta:hover {
	background-color: #173A64;
}

a.btn-photos {
	width: 70px;
	height: 70px;
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	bottom: 30px;
	background-image: url(../images/icons/ic_photo-gallery.svg);
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 100;
}
a.btn-photos:hover {
	-webkit-transform: scale(1.1);
	   -moz-transform: scale(1.1);
	     -o-transform: scale(1.1);
	        transform: scale(1.1);
}

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

/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.padding20 {
	padding-top: 20px;
	padding-bottom: 20px;
}
.padding40 {
	padding-top: 40px;
	padding-bottom: 40px;
}
.padding60 {
	padding-top: 60px;
	padding-bottom: 60px;
}
.padding80 {
	padding-top: 80px;
	padding-bottom: 80px;
}
.no-padding {
	padding: 0;
}
.no-margin {
	margin: 0;
}

@media only screen and (max-width: 768px) {
	.padding20,
	.padding40,
	.padding60,
	.padding80 {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.clearfix {
	clear: both;
}
.virtual-tour {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    display: block;
}
hr {
  height: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
hr.divide-sm {
	border-top: solid 1px rgba(23,58,100,0.3);
	border-bottom: none;
	margin: 30px 0;
}
.byline {
	text-align: left;
	font-size: 1.1rem;
	padding: 20px 20px 0 20px;
	color: rgba(255,255,255,0.7);
	clear: both;
	border-top: solid 1px rgba(221,215,188,0.2);
	width: 100%;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.byline img {
	float: right;
	height: 25px;
	padding: 0;
	width: auto;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}
.byline img:hover {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}

@media only screen and (max-width: 768px) {
	.byline {
		text-align: center;
		font-size: 0.9rem;
	}
	.byline img {
		float: none;
		clear: both;
		display: block;
		margin: 0 auto;
		padding: 12px 0;
	}
}
@media only screen and (max-width: 480px) {
	.byline {
		max-width: 320px;
		margin: 0 auto;
	}
}