@charset "UTF-8";

/* color: grey: #75787a 929497 */

/* ====== Begin Boilerplate CSS ====== */

html {
	margin:0;
	padding:0;
	height:100%;
	box-sizing: border-box;
	background-color: #000; /* Color you see during overscroll */
}

body {
	position: relative;
	display: block;
	margin:0;
	padding:0;
	height:100%;
	min-height: 100%;
	overflow-y: auto;
	background-color: #fff;
	/*-webkit-font-smoothing: antialiased;*/
	/*-moz-osx-font-smoothing: grayscale;*/
	background-color: #000;
	color: #fff;
	font-family: 'Century Gothic';
	font-weight: normal;
	font-size: 12px;
}

*, *:before, *:after {
	box-sizing: border-box;
}

p { margin: 0; font-size: 12px; }

a { outline: 0; text-decoration: none; }

a:link,
a:visited,
a:hover,
a:active {
	text-decoration: none;
	color: #fff;
}

ul {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

h1,h2,h3,h4,h5,h6 {
	font-size: 12px;
	margin: 0;
	font-weight: normal;
}

.serif { font-family: serif; }
.sans-serif { font-family: sans-serif; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.vh {
	height: 100vh;
}

.table-table {
	position: relative;
	display: table;
	height: 100%;
	width: 100%;
}

.table-cell {
	position: relative;
	display: table-cell;
	height: 100%;
	width: 100%;
	vertical-align: middle;
}

.aspect-wrapper {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
}

.aspect-content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.aspect-16-9 {
	position: relative;
	display: block;
	padding-top: 56.25%;
}

.aspect-3-2 {
	position: relative;
	display: block;
	padding-top: 66.666%;
}

.aspect-4-3 {
	position: relative;
	display: block;
	padding-top: 75%;
}

.aspect-1-1 {
	position: relative;
	display: block;
	padding-top: 100%;
}

.opacity-0 {
	opacity: 0;
}

.modal-overlay {
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,0.75);
  opacity: 0;
  pointer-events: none;
}

.modal-cell {
  position: relative;
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}

.close {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  overflow: hidden;
  cursor: pointer;
}

.close::before, .close::after {
  content: '';
  position: absolute;
  height: 2px;
  margin-top: -1px;
  width: 100%;
  top: 50%;
  left: 0;
  background: #000;
  background-color: #fff;
}

.close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}



/* ====== Begin Custom CSS ====== */

body.menu {
	height: 100vh;
	overflow: hidden;
}

.landing-wrapper {
	position: relative;
	display: block;
	min-height: 100%;
	height: 100%;
	width: 100%;
	text-align: center;
	padding: 60px 15px 15px;
}

.intro-p {
	position: relative;
	display: block;
	font-size: 10px;
}

.landing-wrapper img.index-logo {
	position: relative;
	display: block;
	margin: 0 auto;
}

.logo-top {
	height: auto;
	width: 290px;
}

.logo-bottom {
	height: auto;
	width: 64.5px;
}

.landing-wrapper img.index-logo.logo-bottom {
	margin-bottom: 30px;
}

.index-landing-wrapper .intro-p {
	position: relative;
	display: block;
	margin: 0 auto;
	max-width: 480px;
	line-height: 24px;
}

.index-landing-wrapper .tour-button .border-button {
	position: relative;
	display: block;
	margin: 0 auto;
}

.index-landing-wrapper .logo-top {
	transition: opacity 2.5s ease-in-out 0.5s;
}

.index-landing-wrapper .logo-bottom {
	transition: opacity 2.5s ease-in-out 1.5s;
}

.index-landing-wrapper .index-span {
	transition: opacity 2.5s ease-in-out 3.5s;
}

.index-landing-wrapper .tour-button {
	transition: opacity 2.5s ease-in-out 5s;
}

.rbh {
	position: relative;
	display: block;
	height: 100%;
}

.border-button {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    width: 240px;
    border: 1px solid #fff;
    line-height: 42px;
    text-align: center;
    margin-bottom: 15px;
    cursor: pointer;
    transition: background-color 0.5s, color 0.5s !important;
}

.border-button:hover {
    background-color: #fff;
    color: #000;
}



/* ====== Nav Hamburger ====== */

#menu-toggle * {
	transition: width .25s ease-in-out, height .25s ease-in-out;
	box-sizing: border-box;
}

#menu-toggle span {
	display: block;
	background: #fff;
}

#menu-toggle {
	position: fixed;
	top: 15px;
	left: 15px;
	width: 29px;
	height: 29px;
	cursor: pointer;
}

.index-landing-wrapper .tour-button {
	position: absolute;
	bottom: 15px;
	left: 15px;
}

#menu-toggle #hamburger {
	position: absolute;
	height: 100%;
	width: 100%;
}

#menu-toggle #hamburger span {
	width: 29px;
	height: 1px;
	position: relative;
}

#menu-toggle #hamburger span:nth-child(1) {
	transition-delay: 0.5s;
	margin: 3px 0 10px;
}

#menu-toggle #hamburger span:nth-child(2) {
	transition-delay: 0.625s;
	margin: 0;
}

#menu-toggle #hamburger span:nth-child(3) {
	transition-delay: 0.75s;
	margin: 10px 0 3px;
}

#menu-toggle #cross {
	position: absolute;
	height: 100%;
	width: 100%;
	transform: rotate(45deg);
}

#menu-toggle #cross span:nth-child(1) {
	height: 0%;
	width: 1px;
	position: absolute;
	top: 0;
	left: 14px;
	transition-delay: 0s;
}

#menu-toggle #cross span:nth-child(2) {
	width: 0%;
	height: 1px;
	position: absolute;
	left: 0;
	top: 14px;
	transition-delay: 0.25s;
}

#menu-toggle.open #hamburger span {
	width: 0%;
}

#menu-toggle.open #hamburger span:nth-child(1) {
	transition-delay: 0s;
}

#menu-toggle.open #hamburger span:nth-child(2) {
	transition-delay: 0.125s;
}

#menu-toggle.open #hamburger span:nth-child(3) {
	transition-delay: 0.25s;
}

#menu-toggle.open #cross span:nth-child(1) {
	height: 100%;
	transition-delay: 0.625s;
}

#menu-toggle.open #cross span:nth-child(2) {
	width: 100%;
	transition-delay: 0.375s;
}



/* ====== Nav Menu ====== */

.nav-wrapper {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 60px 15px 30px;
	background-color: #000;
}
.nav-wrapper.closed {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease-out 1s;
}
.nav-wrapper.leaving {
	opacity: 1 !important;
}
.nav-wrapper.open {
	opacity: 1;
	transition: opacity 0.5s ease-out;
}

.nav-list-wrapper {
	position: relative;
	display: block;
	margin: 0 auto;
	margin-bottom: 60px;
	z-index: 1;
}

.nav-wrapper.closed .nav-list li {
	opacity: 0;
	transition: opacity 0.5s ease-out 0.25s; 
}

.nav-wrapper.open .nav-list li {
	opacity: 1;
	transition: opacity 0.75s ease-out;
}

.nav-wrapper.open .nav-list li:nth-child(1) { transition-delay: 0.75s }
.nav-wrapper.open .nav-list li:nth-child(2) { transition-delay: 0.8s }
.nav-wrapper.open .nav-list li:nth-child(3) { transition-delay: 0.85s }
.nav-wrapper.open .nav-list li:nth-child(4) { transition-delay: 0.9s }
.nav-wrapper.open .nav-list li:nth-child(5) { transition-delay: 0.95s }
.nav-wrapper.open .nav-list li:nth-child(6) { transition-delay: 1.0s }
.nav-wrapper.open .nav-list li:nth-child(7) { transition-delay: 1.05s }
.nav-wrapper.open .nav-list li:nth-child(8) { transition-delay: 1.1s }
.nav-wrapper.open .nav-list li:nth-child(9) { transition-delay: 1.15s }
.nav-wrapper.open .nav-list li:nth-child(10) { transition-delay: 1.2s }

.nav-list li {
	position: relative;
	display: block;
	margin-bottom: 12px;
	text-align: center;
}

.nav-list li a {
	position: relative;
	display: block;
	font-family: 'Century Gothic';
	font-size: 14px;
	letter-spacing: 1.5px;
	color: #929497;
	transition: color 0.25s ease-out;
	cursor: pointer;
}

a.index-inquire {
	font-family: 'Century Gothic';
	font-size: 14px;
	letter-spacing: 1.5px;
	color: #929497;
	transition: color 0.25s ease-out;
}

.nav-list li a:hover,
.index-inquire:hover  {
	color: #fff;
}

.nav-hover-bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.5s ease-out;
}

.nav-bg-go {
	opacity: 1;
}

.nav-logo-watermark-wrapper {
	position: relative;
	display: block;
	padding: 0;
}

.nav-logo-watermark-wrapper img {
	position: relative;
	display: inline-block;
}
.nav-wrapper.closed .nav-logo-watermark-wrapper img {
	opacity: 0;
	transition: opacity 0.625s; 
}
.nav-wrapper.open .nav-logo-watermark-wrapper .nav-logo-top {
	opacity: 1;
	transition: opacity 1.75s ease-in-out 1.35s;
}
.nav-wrapper.open .nav-logo-watermark-wrapper .nav-logo-bottom {
	opacity: 1;
	transition: opacity 1.75s ease-in-out 1.85s;
}
.nav-logo-img-wrapper {
	position: relative;
	display: block;
	max-width: 320px;
	margin: 0 auto;
}
/*.nav-logo-watermark-wrapper .nav-logo {
	position: relative;
	display: block;
	margin: 0 0 0 auto;
	height: 66px;
	width: auto;
}*/

.nav-logo-watermark-wrapper .nav-logo-top {
	position: relative;
	display: block;
	margin: 0 auto;
}

.nav-logo-watermark-wrapper .nav-logo-bottom {
	position: relative;
	display: block;
	margin: 0 auto;
}

.nav-tour-btn-wrapper {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0 15px 15px;
}

.nav-tour-button {
	position: relative;
	display: block;
	margin: 0 auto;
}

.nav-wrapper.closed .nav-tour-btn-wrapper {
	opacity: 0;
	transition: opacity 0.5s ease-out 0.3s;
}

.nav-wrapper.open .nav-tour-btn-wrapper {
	opacity: 1;
	transition: opacity 0.75s ease-out 1.25s;
}



/* ====== Animation Stuff ====== */

.index-landing-wrapper .logo-top.pre-load,
.index-landing-wrapper .logo-bottom.pre-load,
.index-landing-wrapper .index-span.pre-load,
.index-landing-wrapper .tour-button.pre-load {
	opacity: 0;
}

.index-landing-wrapper .logo-top.load-in,
.index-landing-wrapper .logo-bottom.load-in,
.index-landing-wrapper .index-span.load-in,
.index-landing-wrapper .tour-button.load-in {
	opacity: 1;
}


/* ====== Media Queries ====== */

/* iPhone 5 Portrait Landing */
@media screen and (min-width: 320px) and (max-width: 320px) and (min-height: 450px) and (max-height: 470px) { }

/* iPhone 6 Portrait Landing */
@media all and (min-width: 375px) and (max-width: 375px) and (min-height: 549px) and (max-height: 569px) { }

/* iPhone 7 Portrait Landing */

/* iPhone 5 Portrait */
@media all and (max-width : 320px) { }
/* Wider than iPhone 6 Portrait */
@media all and (min-width : 376px) { }
/* Wider than iPhone 6+ Portrait */
@media all and (min-width : 415px) { }
/* Wider than iPad 6+ Portrait */
@media all and (min-width : 769px) { }
/* Tablets and up, starting with Nexus 7 */
@media all and (min-width: 960px) and (min-height: 600px) and (orientation : landscape), all and (min-width: 600px) and (min-height: 960px) and (orientation: portrait) { }

@media all and (min-width: 960px) and (orientation : landscape) {

	.landing-wrapper {
        padding: 90px;
    }

}

@media all and (min-width: 600px) and (orientation: portrait) {

	.landing-wrapper {
        padding: 90px 30px;
    }

}

@media all and (min-width: 960px) and (orientation : landscape), all and (min-width: 600px) and (orientation: portrait) {

	body { font-size: 14px; }

	h1,h2,h3,h4,h5,h6 { font-size: 14px; }

	p { font-size: 14px; }

	.intro-p {
		font-size: 12px;
	}

	.logo-top {
		height: 56px;
		width: auto;
	}

	.logo-bottom {
		height: 10px;
		width: auto;
	}

	.landing-wrapper img.index-logo.logo-bottom {
		margin-bottom: 72px;
	}

	.index-landing-wrapper .intro-p {
		line-height: 28px;
	}

	#menu-toggle {
		top: 30px;
		left: 30px;
	}

	.index-landing-wrapper .tour-button {
		bottom: 30px;
		left: 30px;
	}

	.nav-wrapper {
		padding: 160px 32px 32px;
	}

	.nav-list-wrapper {
		max-width: 180px;
		margin: 0 auto 0 0;
	}

	.nav-list li {
		margin-bottom: 24px;
		text-align: left;
	}

	.nav-list li a {
		font-size: 16px;
	}

	.index-inquire {
		font-size: 16px;
	}

	.nav-logo-watermark-wrapper {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		padding: 32px 128px;
	}

	.nav-logo-img-wrapper {
		margin: 0 0 0 auto;
	}

	.nav-logo-watermark-wrapper .nav-logo-top {
		margin: 0 0 0 auto;
	}

	.nav-logo-watermark-wrapper .nav-logo-bottom {
		margin: 0 0 0 auto;
	}

	.nav-tour-btn-wrapper {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		padding: 0 30px 30px;
	}

	.nav-tour-button {
	margin: 0 auto 0 0;
	}

	.concept-hover-bg {
		/*background-image: linear-gradient(rgba(153,153,153,0.5), rgba(153,153,153,0.5)), url(../img/concept-nav-bg.jpg);*/
		background-image: url(../img/nav/nav-bg-concept.jpg);
	}
	.spaces-hover-bg {
		background-image: url(../img/nav/nav-bg-spaces.jpg);
	}
	.plans-hover-bg {
		background-image: url(../img/nav/nav-bg-plans.jpg);
	}
	.experiences-hover-bg {
		background-image: url(../img/nav/nav-bg-experiences.jpg);
	}
	.locale-hover-bg {
		background-image: url(../img/nav/nav-bg-locale.jpg);
	}
	.gallery-hover-bg {
		background-image: url(../img/nav/nav-bg-gallery.jpg);
	}
	.inquire-hover-bg {
		background-image: url(../img/nav/nav-bg-inquire.jpg);
	}

}

@media all and (min-width: 1200px) {


	.landing-wrapper {
		padding: 90px 180px;
	}


}

/* All size bigger than tablets, leaving off on Nexus 10 / ASUS transformer */
@media all and (min-width : 801px) and (min-height: 1281px) and (orientation : portrait),  all and (min-width : 1281px) and (min-height: 801px) and (orientation : landscape) { }



