﻿@charset "UTF-8";
/* CSS Document */

/***************** REFERENCES START*****************
================ FONTS ================
Body font-family: 'Source Sans Pro', Arial, 'Helvetica Neue', sans-serif
Font Two font-family: Tangerine, Arial, 'Helvetica Neue', sans-serif

H2 font-size: 30px
H3 font-size: 20px
Text Bigger font-size: 16px
Text Big font-size: 14px
Text Common font-size: 12px
Text Small font-size: 11px

================ COLORS ================
Text Common color: #333
Text Light One color: #999
Text Light Two color: #DDD
Text White color: #FFF
Text Black color: #000
***************** REFERENCES END *****************/

@import url(//fonts.googleapis.com/css?family=Tangerine);
@import url(//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,400italic);

body {
    margin: 0;
    font-family: 'Source Sans Pro', Arial, 'Helvetica Neue', sans-serif;
	font-weight: 300;
}

h2 {
	font-size: 40px;
	font-family: Tangerine, Arial, 'Helvetica Neue', sans-serif;
	font-weight: 400;
}
h3 {
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 400;
}
h2, h3 {
    margin: 0;
    padding: 0;
}

.font-one {
	font-family: 'Source Sans Pro', Arial, 'Helvetica Neue', sans-serif;
	font-weight: 300;
}
.font-two {
    font-family: Tangerine, Arial, 'Helvetica Neue', sans-serif;
}
.font-three {
	font-family: "Times New Roman", Times, serif;
	letter-spacing: 1px;
}

a {
	text-decoration: none;
}



/* ================ CREATIVEBUTTONS START ================ */
.btn {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.btn-1:hover, .btn-1:active {
	background: #193952;

}
.btn-2:hover, .btn-2:active {
	background: #A29C8C;
}
/* ================ CREATIVEBUTTONS END ================ */



/* ================ FADEIN START ================ */
#gallery {
	-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
	-moz-animation: fadein 2s; /* Firefox < 16 */
	-ms-animation: fadein 2s; /* Internet Explorer */
	-o-animation: fadein 2s; /* Opera < 12.1 */
	animation: fadein 2s;
}
@keyframes fadein {
from { opacity: 0; }
to   { opacity: 1; }
}
@-moz-keyframes fadein { /* Firefox < 16 */
	from { opacity: 0; }
	to   { opacity: 1; }
}
@-webkit-keyframes fadein { /* Safari, Chrome and Opera > 12.1 */
	from { opacity: 0; }
	to   { opacity: 1; }
}
@-ms-keyframes fadein { /* Internet Explorer */
	from { opacity: 0; }
	to   { opacity: 1; }
}
@-o-keyframes fadein { /* Opera < 12.1 */
	from { opacity: 0; }
	to   { opacity: 1; }
}
/* ================ FADEIN END ================ */



/* ================ FORM START ================ */
/*--- Dropdown list ---*/
.field-dropdown {
	display: inline-block;
	position: relative;
	overflow: hidden;
	height: 30px; /* Have to match with the height in .field-dropdown-select */
	width: 600px; /* Adjust width of dropdown bar */
	background: #DDD;
	margin: 7px 0 18px 0;
}
.dropdown-small {
	width: 200px;
	margin-bottom: 0;
}
.field-dropdown:before, .field-dropdown:after {
	content: '';
	position: absolute;
	z-index: 2;
	top: 9px;
	right: 10px;
	width: 0;
	height: 0;
	border: 4px dashed;
	border-color: #000 transparent;
	pointer-events: none;
}
.field-dropdown:before {
	border-bottom-style: solid;
	border-top: none;
}
.field-dropdown:after {
	margin-top: 7px;
	border-top-style: solid;
	border-bottom: none;
}
.field-dropdown-select {
	position: relative;
	width: 120%;
	margin: 0;
	padding: 6px 8px 6px 10px;
	height: 30px;
	line-height: 14px; /* Have to adjust according to font-size */
	font-size: 13px;
	color: #000;
	background: #f2f2f2; /* Fallback for IE 8 */
	background: rgba(0, 0, 0, 0) !important; /* "transparent" doesn't work with Opera */
	border: 0;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: window;
}
.field-dropdown-select:focus { /* Styles for when selecting options */
	z-index: 3;
	width: 100%;
	color: #000;
	outline: 2px solid #49aff2;
	outline: 2px solid -webkit-focus-ring-color;
	outline-offset: -2px;
}
/*--- Fix for IE 8 putting the arrows behind the select element. ---*/
.lt-ie9 .field-dropdown {
    z-index: 1;
}
.lt-ie9 .field-dropdown-select {
    z-index: -1;
}
.lt-ie9 .field-dropdown-select:focus {
    z-index: 3;
}
@-moz-document url-prefix() { /* Dirty fix for Firefox adding padding where it shouldn't. */
	.field-dropdown-select {
	  padding-left: 6px;
	}
}

.field-text {
	background: #DDD;
	width: 580px;
	height: 30px;	
	border: 0;
	padding: 0 10px;
}

.field-date {
	display: inline-block;
	background: #DDD;
	width: 222px;
	height: 30px;	
	border: 0;
	padding: 0 10px;
	color: #999;
}
.field-pre-date {
	display: inline-block;
	background: #DDD;
	width: 35px;
	height: 30px;
	line-height: 30px;
	vertical-align: top;
	padding-left: 10px;
}

.field-message {
	background: #DDD;
	width: 580px;
	height: 300px;	
	border: 0;
	padding: 10px;
}
.field-submit {
	background: none;
	width: 100px;
	height: 35px;
	line-height: 25px;
	text-align: center;
	font-weight: 100;
	border: 1px solid #000;
	text-transform: uppercase;
}

.error {
	color: #F00;
	font-size: 12px;
}
/* ================ FORM END ================ */



/* ================ POSITION START ================ */
.margin-right {
	display: inline-block;
	margin-right: 10px;
}
.margin-right-up {
	margin-right: 20px;
}

.margin-top {
	margin-top: 15px;
}
.margin-top-down {
	margin-top: 10px;
}
/* ================ POSITION END ================ */



/* ================ TEXT STYLE START ================ */
.text-color-common, .text-color-common a {
	color: #333;
}
.text-color-light-one, .text-color-light-one a {
	color: #999;
}
.text-color-light-one a:hover {
	color: #000;
}
.text-color-light-two {
	color: #DDD;
}
.text-color-black, .text-color-black a {
	color: #000;
}
.text-color-brown {
	color: #A09A8C;
}
.text-color-white, .text-color-white a  {
	color: #FFF;
}

.text-size-up-three {
	font-size: 35px;
}
.text-size-up-two {
	font-size: 16px;
}
.text-size-up-one {
	font-size: 14px;
}
.text-size-common {
	font-size: 16px;
}
.text-size-down-one {
	font-size: 12px;
}

.text-weight {
	font-weight: 400;
}
.text-weight-up-one {
	font-weight: 700;
}

.text-upper {
	text-transform: uppercase;
}
/* ================ TEXT STYLE END ================ */



/* ================ CONTAINER, SECTION, BLOCK START ================ */
/*--- MAIN PAGE (SPLIT INTO TWO) ---*/
.container-main {
	display: table-cell;
	position: relative;
	top: 37vh;
	background:rgba(26, 60, 88, 0.7);
	width: 100vw;
	text-align: center;
}
.block-main-links {
	margin-top: -5px;
	padding-bottom: 20px;
	font-size: 40px;
}
.block-main-links a {
	text-decoration: none;
}
.block-main-links a:hover {
	color: #DDD;
}

/*--- OVERALL ---*/
.container-page { /* Sidebar, main content, footer */
	position: relative;
	min-height: 100vh;
}
.container-wrapper { /* Sidebar, main content */
    margin: 0 auto;
	width: 960px;
	min-height: 600px;
	padding: 0 30px;
	padding-bottom: 200px;
	-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
	-moz-animation: fadein 1s; /* Firefox < 16 */
	-ms-animation: fadein 1s; /* Internet Explorer */
	-o-animation: fadein 1s; /* Opera < 12.1 */
	animation: fadein 1s;
}

/*--- SIDEBAR (LEFT COLUMN) ---*/
.container-sidebar {
	display: inline-block;
	background: rgba(255, 255, 255, .9);
	width: 250px;
	-webkit-box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, .5);
	-moz-box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, .5);
	box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, .5);
	text-align: center;
	padding: 25px 0;
}
.section-logo, .section-weather {
	margin-bottom: 25px;
}
.block-member-services {
	display: block;
	width: 200px;
	height: 40px;
	margin: 0 auto;
	border: 1px solid #666;
	line-height: 40px;
	background: #1F4664;
	font-size: 20px;
	font-weight: 400;
}
.block-weather {
	margin-top: 8px;
	line-height: 25px;
}
.block-icon-weather {
	display: inline-block;
	vertical-align: middle;
	margin-top: -3px;
}
.section-navigation {
	border-top: 1px solid #A29C8C;
}
.section-navigation a:last-of-type {
	border-bottom: 0;
	padding-bottom: 0;
}
.section-navigation a:hover {
	font-weight: 400;
}
.block-navigation {
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid #DDD;
}
.block-navigation-selected {
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid #DDD;
	font-weight: 400;
}

/*--- MAIN CONTENT (RIGHT COLUMN) ---*/
.container-main-content {
	display: inline-block;
	width: 650px;
	vertical-align: top;
	margin-left: 54px;
}
.container-main-content > div {
	border: 1px solid #EEE;
	overflow: auto; /* For background to appear for floated CMS images */
}
.container-main-content > div.container-index {
	border: 0;
}
.container-index { /* Resort Stay Index, Ownership Index */
	font-size: 30px;
	padding-top: 230px;
	/*text-shadow: 1px 1px 3px #FFF;*/
	text-align: center;
	color: #FFF;
	text-shadow: 1px 1px 10px #000;
}

/*--- PAGES WITHOUT TABS ---*/
.container-no-tab {
	background: rgba(255, 255, 255, .95);
	padding: 25px;
}
.section-no-tab {
	margin-top: 25px;
}

/*--- PAGES WITH TABS ---*/
.container-sub-navigation {
	background: rgba(255, 255, 255, .95);
	padding: 25px;
}
.block-image {
	display: block;
	width: 600px;
	margin-bottom: 15px;
}
a.block-download { /* Villas & Residences link style */
	border-bottom: 1px dashed #000;
	font-weight: bold;
}
.block-partners {
	margin: 18px 21px 0 0;
}
.block-partners:nth-child(5n) {
	margin-right: 0;
}
/*--- Club Activities & Promotions ---*/
.section-item {
	display: inline-block;
	width: 290px;
	margin-top: 15px;
	vertical-align: top;
}
.section-item:nth-child(even) {
	margin-right: 15px;
}
.block-item {
	display: block;
	width: 290px;
	margin-bottom: 10px;
}
.block-title {
	font-weight: 700;
	text-transform: uppercase;
}
.block-more {
	width: 80px;
	text-align: center;
	padding: 3px;
	margin: 10px 0;
	font-weight: 400;
	border: 1px solid #666;
}

/*--- FOOTER ---*/
.container-footer {
	background: #1F4664;
	position: absolute;
	bottom: 0;
	padding-top: 20px;
	width: 100%;
	min-width: 1020px;
	height: 75px;
}
.section-footer {
	width: 960px;
	margin: 0 auto;
	padding: 0 30px;
}
.section-footer-left {
	display: inline-block;	
}
.block-best-view {
	margin-top: 3px;
}
.section-footer-right {
	display: inline-block;
	float: right;
	text-align: right;
}
.block-social-media {
	display: inline-block;
	width: 30px;
	margin-top: 5px;
	margin-left: 10px;
}
/* ================ CONTAINER, SECTION, BLOCK END ================ */