/* reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
a {text-decoration: none; color: inherit;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: '';content: none;}
table {border-collapse: collapse; border-spacing: 0;}
* {-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}

html {
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: CochinURWD-Rom;
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	color: black;
	width: 100%;
	height: 100%;
	position: relative;
	background: white;
}

.container {
	position: relative;
	min-height: 100vh;
	background: #231f20;
	transition: all .4s ease-out;
	-webkit-transition: all .4s ease-out;
}

.container.go-right {
	transform: translateX(350px);
	-webkit-transform: translateX(350px);
}

/***********************/

.mobile-block {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #231f20;
	z-index: 1000000000;
	overflow: hidden;
}

.mobile-block .inner {
	position: absolute;
	width: 220px;
	left: 50%;
	margin-left: -110px;
	top: 50%;
	margin-top: -169px;
	height: 338px;
}

.mobile-block .inner img {
	display: block;
	width: 200px;
	height: auto;
	margin: auto;
}

.mobile-block .inner p {
	margin-top: 20px;
	text-align: center;
	line-height: 20px;
}

.mobile-headline {
	display: none;
}

/***********************/

.thank-you-container {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #231f20;;
	z-index: 1000000000;
	overflow: hidden;
}

.thank-you-container .inner {
	position: absolute;
	width: 300px;
	left: 50%;
	margin-left: -150px;
	top: 50%;
	margin-top: -143px;
	height: 286px;
}

.thank-you-container .inner img {
	display: block;
	width: 200px;
	height: auto;
	margin: auto;
}

.thank-you-container .inner p {
	margin-top: 30px;
	text-align: center;
	line-height: 20px;
}

.thank-you-container .inner a {
	display: block;
	margin-top: 10px;
	text-align: center;
	line-height: 20px;
}

.thank-you-container .inner a span {
	padding-bottom: 5px;
	border-bottom: 1px solid #ca9e67;
}

/***********************/

.preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #231f20;;
	z-index: 100000;
	overflow: hidden;
}

.spinner {
	height: 30px;
	width: 30px;
	position: absolute;
	left: 50%;
	margin-left: -15px;
	top: 50%;
	margin-top: -15px;
	-webkit-animation: rotation .5s infinite linear;
	-moz-animation: rotation .5s infinite linear;
	border-left: 3px solid #ca9e67;
	border-right: 3px solid #ca9e67;
	border-bottom: 3px solid #ca9e67;
	border-top: 3px solid rgba(255,255,255,0.2);
	border-radius: 100%;
}

@-webkit-keyframes rotation {
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(359deg);}
}

@-moz-keyframes rotation {
from {-moz-transform: rotate(0deg);}
to {-moz-transform: rotate(359deg);}
}

.preloader-logo {
	position: absolute;
	width: 200px;
	height: auto;
	left: 50%;
	margin-left: -100px;
	top: 50%;
	margin-top: -106.5px;
}

#preloader-loader {
	position: absolute;
	height: 2px;
	width: 100%;
	top: 0px;
	left: -100%;
	background: white;
	z-index: 99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999;
}

/***********************/

.image-container {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	z-index: 100000;
}

.image-container-image {
	position: absolute;
	top: 25px;
	left: 25px;
	right: 25px;
	bottom: 25px;
	-webkit-background-size: contain !important;
	-moz-background-size: contain !important;
	background-size: contain !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
}

/***********************/

.section {
	position: relative;
	width: 100%;
	height: 100%;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	z-index: 1;
	background: white;
}

.full {
	position: relative;
	width: 100%;
	height: 100vh;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
	background-position: center center;
	background-repeat: no-repeat !important;
}

.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.7);
	z-index: 2;
}

.clear-both {
	clear: both;
}

.futura {
	font-family: 'FuturaBT-Light';
}

.CochinURWD-Rom {
	font-family: CochinURWD-Rom;
	font-weight: normal;
	font-style: normal;
}

p.futura.big {
	font-size: 20px;
}

h1 {
	font-size: 60px;
}

h2 {
	font-size: 50px;
}

.white {
	color: white;
}

.gold {
	color: #ca9e67;
}

.top-line {
	position: fixed;
	top: 0;
	left: 0;
	height: 10px;
	width: 100%;
	background: white;
	z-index: 2000;
}

/* .scale {
	transition: all 3s ease-out;
	-webkit-transition: all 3s ease-out;
}

.scale:hover {
	transform: scale(1.03);
	-ms-transform: scale(1.03);
	-moz-transform: scale(1.03);
	-webkit-transform: scale(1.03);
	-o-transform: scale(1.0);
} */

/***********************/

#fullpage {
	z-index: 2;
}

/***********************/

.fixed-bg {
	position: relative;
	top: 0;
	left: 0;
	background: url(../images/bg-big.jpg);
	width: 100%;
	height: 100vh;
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-attachment: fixed !important;
	z-index: 1;
	transition: all .4s ease-out;
	-webkit-transition: all .4s ease-out;
}

#mobile-play {
	display: none !important;
}

.video-popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 9999999;
}

.video-popup .iframe-wrapper {
	position: absolute;
	width: 100vw;
	height: 56.25vw;
	left: 0;
	top: 50%;
	margin-top: -28.125vw;
	overflow: hidden;
}

.video-popup .iframe-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-popup .close {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.video-popup .fa-times {
	position: absolute;
	top: 26px;
	right: 22px;
	z-index: 99999;
	width: 30px;
	height: 30px;
	text-align: center;
	font-size: 19px;
	color: white;
	cursor: pointer;
}

.bg {
	background: url(../images/172-gif.gif);
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none !important;
}

.fixed-bg.go-right {
	transform: translateX(350px);
	-webkit-transform: translateX(350px);
}

#first-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #231f20;
}

/* .fixed-bg-2 {
	position: absolute;
	left: 0;
	background: black;
	width: 100%;
	z-index: -1;
}

.fixed-bg-2-inner {
	position: absolute;
	top: 100px;
	left: 100px;
	right: 100px;
	bottom: 100px;
	background: url(http://172madisonave.com/images/172_Madison_Ave_Lobby-2.jpg);
	 -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
} */

/**************************/

.phone-container {
	position: fixed;
	top: 30px;
	right: 30px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #231f20;
	color: #ca9e67;
	z-index: 3000;
	font-size: 16px;
	text-align: center;
	line-height: 40px;
	vertical-align: middle;
	cursor: pointer;
	transition: all .4s ease-out;
	-webkit-transition: all .4s ease-out;
}

.phone-container.go-right {
	transform: translateX(350px);
	-webkit-transform: translateX(350px);
}

.phone-container:hover {
	background: #ca9e67;
	color: #231f20;
}

.phone-container i {
	margin-top: 12px;
}

/*****/

.center-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: table;
}

.center-wrapper .center {
	display: table-cell;
	vertical-align: middle;
}

/***********************/

.legal-container {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 12000;
}

.legal-container .inner {
	position: absolute;
	width: 700px;
	left: 50%;
	margin-left: -350px;
	height: 200px;
	top: 50%;
	margin-top: -100px;
	color: white;
	font-size: 12px;
	text-align: center;
	line-height: 22px;
}

.legal-container .inner img {
	height: 12px;
	width: auto;
	margin-right: 10px;
}

/***********************/

.fixed-desc {
	position: absolute;
	left: 0;
	width: 350px;
	height: 100%;
	background: black;
	padding: 100px;
	color: white;
	z-index: 1000;
}

.the-building-desc-inner {
	text-align: center;
	font-size: 14px;
	line-height: 24px;
}

.the-building-desc-inner p.first {
	margin-top: 0;
	font-size: 24px;
}

.the-building-desc-inner p.last {
	margin-top: 10px;
	font-size: 24px;
	line-height: 30px;
}

.the-building-desc-inner p {
	margin-top: 10px;
}

/***********************/

.arrow-down-container {
	position: fixed;
	height: 40px;
	width: 40px;
	left: 50%;
	margin-left: -20px;
	bottom: 50px;
	text-align: center;
	font-size: 20px;
	background: #231f20;
	border-radius: 50%;
	cursor: pointer;
	z-index: 6000;
	color: #ca9e67;
	transition: all .4s ease-out;
	-webkit-transition: all .4s ease-out;
}

.arrow-down-container.go-right {
	transform: translateX(350px);
	-webkit-transform: translateX(350px);
}

.arrow-down-container:hover {
	background: #ca9e67;
	color: #231f20;
}

.arrow-down-container.hide {
	opacity: 0;
	visibility: hidden;
}

.arrow-down-text {
	position: absolute;
	top: -22px;
	left: -49px;
	width: 136px;
	text-align: center;
	font-size: 14px;
	letter-spacing: 1px;
	color: #ca9e67;
}

.arrow-down-container i {
	margin-top: 12px;
	font-size: 15px;
}

/***********************/

.arrow-up-container {
	position: absolute;
	height: 40px;
	width: 40px;
	left: 50%;
	margin-left: -20px;
	bottom: 30px;
	text-align: center;
	font-size: 20px;
	border: 2px solid white;
	border-radius: 50%;
	cursor: pointer;
	z-index: 6000;
	color: white;
}

.arrow-up-container img {
	position: absolute;
	width: 19px;
	height: 11px;
	left: 50%;
	margin-left: -9.5px;
	top: 50%;
	margin-top: -5.5px;
}

.arrow-up-container i {
	margin-top: 9px;
}

/***********************/

/* .right-side-menu-container {
	position: fixed;
	right: 30px;
	width: 9px;
	height: 360px;
	z-index: 1000;
	margin-top: -180px;
}

.right-side-menu-container ul {
	margin-top: 50px;
}

.right-side-menu-container ul li {
	position: relative;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: 1px solid white;
	margin-bottom: 7px;
	text-align: center;
	line-height: 28px;
	vertical-align: middle;
	color: white;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.right-side-menu-container ul li:nth-child(9) {
	margin-bottom: 0;
}

.right-side-menu-container ul li.active {
	background: white;
}

.right-side-menu-container ul li:hover {
	background: white;
}

.right-side-menu-container ul li:hover .circle-title {
	right: 20px;
	opacity: 1;
}

.circle-title {
	position: absolute;
	right: 0px;
	opacity: 0;
	width: 300px;
	text-align: right;
	top: -1px;
	height: 12px;
	line-height: 12px;
	vertical-align: middle;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
} */

/***********************/

.left-side-menu-container {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100px;
	height: 100px;
	z-index: 8000;
	cursor: pointer;
	background: transparent;
}

.left-side-menu-container-inner-wrapper {
	position: absolute;
	top: 25px;
	left: 25px;
	width: 50px;
	height: 50px;
	background: #231f20;
}

.menu-inner-wrapper {
	position: absolute;
	top: 30px;
	left: 30px;
	width: 40px;
	height: 40px;
	background: #231f20;
}

.left-side-menu-container-inner {
	position: absolute;
	top: 50%;
	margin-top: -8px;
	left: 50%;
	margin-left: -11px;
	width: 22px;
	height: 16px;
}

.menu-line {
	position: absolute;
	width: 100%;
	height: 2px;
	background: #ca9e67 !important;
	left: 0;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-line.top {
	top: 0;
}

.menu-line.middle {
	top: 6px;
}

.menu-line.bottom {
	top: 12px;
}

/***********************/

.x-line {
	position: absolute;
	width: 100%;
	height: 2px;
	background: white;
	left: 0;
}

.x-line.top {
	top: 6px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}

.x-line.bottom {
	top: 6px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
}

/***********************/

.left-side-menu {
	position: fixed;
	width: 350px;
	height: 100%;
	top: 0;
	left: 0;
	background: #231f20;
	z-index: 0;
	box-shadow: -3px 0px 10px 0px #181818 inset;
}

.left-side-menu-items {
	position: absolute;
	left: 44px;
	height: 414px;
	top: 50%;
	margin-top: -207px;
	color: white;
	text-transform: uppercase;
}

.left-side-menu-items li {
	position: relative;
	height: 44px;
	line-height: 44px;
	vertical-align: middle;
	transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
	cursor: pointer;
}

.left-menu-item.active {
	color: #ca9e67;
}

.left-side-menu-items li:hover {
	color: #ca9e67;
}

.menu-legal {
	position: absolute;
	left: 44px;
	bottom: 30px;
	color: white;
}

#menu-legal {
	transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
	cursor: pointer;
}

#menu-legal:hover {
	color: #ca9e67;
}

/***********************/

.section.opening {
	background: transparent;
}

.logo-lines {
	display: block;
	width: 240px;
	height: auto;
	margin: auto;
}

/* .opening-headline {
	position: absolute;
	width: 100%;
	height: 126px;
	vertical-align: middle;
	text-align: center;
	left: 0;
	top: 50%;
	margin-top: -63px;
	color: white;
	z-index: 100;
}

.opening-headline h1 {
	font-size: 50px;
}

.opening-headline h2 {
	font-size: 90px;
} */

.video-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
	overflow: hidden;
}

.top-logo-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	transition: transform .4s ease-out;
	-webkit-transition: transform .4s ease-out;
}

.top-logo-wrapper.go-right {
	transform: translateX(350px);
	-webkit-transform: translateX(350px);
}

.top-logo-wrapper.absolute {
	position: absolute;
	top: 100vh;
}

.top-logo-wrapper img {
	display: block;
	width: 240px;
	height: auto;
	margin: -100px auto 0;
}

.video-wrapper iframe {
	width: 100vw;
	height: 56.25vw;
	min-height: 100vh;
	min-width: 177.77vh;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.special-none {
	opacity: 0;
	transition: opacity 2s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-transition: opacity 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.opening-1 {
	position: relative;
	background: #231f20;
}

.opening-1-2 {
	position: relative;
	background: transparent;
}

.fixed-logolines {
	position: relative;
	width: 240px;
	margin: auto;
	overflow: hidden;
	z-index: 10;
}

.fixed-logolines h2 {
	position: relative;
	margin-top: 30px;
	font-size: 29px;
	text-align: center;
	width: 100%;
}

.opening-2 {
	position: relative;
	text-align: center;
	background: #231f20;
	color: white;
}

.opening-2 .opening-text-inner {
	position: absolute;
	left: 50%;
	margin-left: -500px;
	top: 50%;
	margin-top: -125px;
	width: 1000px;
	height: 250px;
}

.opening-2 p {
	font-size: 18px;
	line-height: 24px;
	margin: 10px 0;
}

.opening-2 p.third {
	margin: 20px 0 10px;
	text-transform: uppercase;
	font-size: 36px;
	font-weight: 400;
	line-height: 44px;
	color: #ca9e67;
}

/**************************/

.no-need {
}

/**************************/

.section.the-building {
	height: auto;
	background: #231f20;
}

.the-building-img-container {
	position: relative;
	width: calc( 100% - 350px );
	margin-left: 350px;
	padding-bottom: calc( (100% - 350px) * 2 );
	background: url(../images/building-big.jpg);
	background-size: 100%;
}

.the-building-img-container-mobile {
	display: none;
	position: relative;
	width: 100%;
	padding-bottom: 200%;
	background: url(../images/mobile-building-big.jpg);
	background-size: 100%;
}

.the-building-img {
	display: block;
	width: calc( 100% - 350px );
	float: right;
}

.the-building-desc {
	float: left;
	width: 350px;
	min-height: 100vh;
	background: black;
	color: white;
	padding-top: 120px;
	padding-bottom: 50px;
}

/**************************/

.building-desc-mobile {
	display: none;
	position: relative;
	padding: 100px 0;
	background: black;
	color: white;
	text-align: center;
}

.building-desc-mobile p.first {
	font-size: 24px;
	line-height: 24px;
}

.building-desc-mobile p {
	margin-top: 10px;
	font-size: 16px;
	line-height: 20px;
}

.building-desc-mobile p.last {
	margin-top: 20px;
	font-size: 24px;
	line-height: 24px;
}

/**************************/

.category-opening-1 {
	text-align: center;
	background: #231f20;
	color: white;
}

.category-opening-1 .inner {
	position: absolute;
	width: 100%;
	height: 190px;
	left: 0;
	top: 50%;
	margin-top: -85px;
}

.category-opening-1 p.first {
	font-size: 36px;
	color: white;
}

.category-opening-1 p.second {
	margin-top: 10px;
	font-size: 180px;
}

/**************************/

.category-opening-2 {
	text-align: center;
	background: #231f20;
	color: white;
}

.category-opening-2 .inner {
	position: absolute;
	width: 100%;
	height: 204px;
	left: 0;
	top: 50%;
	margin-top: -102px;
}

.category-opening-2 p.first {
	font-size: 180px;
}

.category-opening-2 p.second {
	margin-top: -10px;
	font-size: 36px;
	color: white;
}

/**************************/

.section.welcome-to-more {
	text-align: center;
	background: transparent;
	color: white;
}

.welcome-to-more .inner {
	position: absolute;
	width: 100%;
	height: 190px;
	left: 0;
	top: 50%;
	margin-top: -85px;
}

.welcome-to-more p.first {
	font-size: 36px;
}

.welcome-to-more p.second {
	margin-top: 10px;
	font-size: 180px;
}

/**************************/

.title-on-big {
	position: absolute;
	left: 30px;
	bottom: 30px;
	color: white;
	width: 400px;
	text-align: left;
}

.title-on-big h2 {
	font-size: 24px;
}

.title-on-big p {
	margin-top: 4px;
	font-size: 14px;
	line-height: 18px;
	font-family: CochinURWD-Rom;
}

/**************************/

.title-on-big-special {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
	top: 50%;
	height: 74px;
	margin-top: -37px;
	color: white;
}

.title-on-big-special h2 {
	font-size: 100px;
}

.title-on-big-special p {
	margin-top: 4px;
	font-size: 24px;
	line-height: 18px;
}

/**************************/

.half {
	position: relative;
	width: 100%;
	height: 50vh;
	background: #231f20;
}

.half .inner .first {
	font-size: 36px;
}

.half .inner .second {
	margin-top: 10px;
	font-size: 14px;
	line-height: 24px;
	color: white;
	font-family: CochinURWD-Rom;
}

.half .inner .second.special {
	margin-top: 10px;
	font-size: 16px;
	line-height: 24px;
	color: white;
	font-family: CochinURWD-Rom;
}

/**************************/

.quarter {
	position: relative;
	float: left;
	width: 50%;
	height: 50vh;
	-webkit-background-size: cover !important;
   	-moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	cursor: pointer;
}

.quarter-big {
	position: relative;
	float: left;
	width: 50%;
	-webkit-background-size: cover !important;
   	-moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	cursor: pointer;
}

.quarter .overlay, .quarter-big .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	opacity: 0;
	transition: all 0.5s linear;
	-webkit-transition: all 0.5s linear;
}

.quarter .overlay:hover, .quarter-big .overlay:hover {
	opacity: 1;
}

.quarter .overlay .image-title, .quarter-big .overlay .image-title {
	position: absolute;
	width: 100%;
	left: 0;
	text-align: center;
	top: 50%;
	margin-top: -27px;
	height: 54px;
	color: white;
}

.quarter .overlay .image-title.special {
}

.quarter .overlay .image-title.special p {
	margin-top: 0;
	line-height: 54px;
	vertical-align: middle;
}

.quarter .overlay .image-title h2, .quarter-big .overlay .image-title h2 {
	font-size: 30px;
	text-transform: uppercase;
	color: #ca9e67;
}

.quarter .overlay .image-title p, .quarter-big .overlay .image-title p  {
	font-size: 14px;
	margin-top: 10px;
}

/**************************/

.clear-both {
	clear: both;
}

/**************************/

.welcome-1 {
	background: url(../images/lobby-2-2.jpg);
}

/**************************/

.welcome-2 .inner {
	position: absolute;
	width: 820px;
	left: 50%;
	margin-left: -410px;
	top: 50%;
	margin-top: -57px;
	text-align: center;
	height: 114px;
}

/**************************/

.welcome-3.quarter.top-left {
	background: url(../images/lobby.jpg);
}

.welcome-3.quarter.top-right {
	background: url(../images/lobby-closeup.jpg);
}

.welcome-3.quarter.bottom-left {
	background: url(../images/lounge.jpg);
}

.welcome-3.quarter.bottom-right {
	background: url(../images/sitting-area.jpg);
}

/**************************/

.welcome-4 {
	background: url(../images/pool-2.jpg);
}

/**************************/

.home-1 {
	background: url(../images/mansion.jpg);
}

/**************************/

.kitchen .inner {
	position: absolute;
	width: 900px;
	left: 50%;
	margin-left: -450px;
	top: 50%;
	margin-top: -70px;
	text-align: center;
	height: 140px;
}

.kitchen.quarter.top-left {
	background: url(../images/kitchen.jpg);
}

.kitchen.quarter.top-right {
	background: url(../images/kitchen-2.jpg);
}

/**************************/

.livingroom .inner {
	position: absolute;
	width: 820px;
	left: 50%;
	margin-left: -410px;
	top: 50%;
	margin-top: -45px;
	text-align: center;
	height: 90px;
}

/* .section.more-home-2 .quarter.bottom-left {
	background: url(../images/living-room.jpg);
}

.section.more-home-2 .quarter.bottom-right {
	background: url(../images/bath-1.jpg);
} */

/**************************/

.livingroom.full {
	/* background: url(../images/living-room.jpg); */
}

/********/

.img-wrapper {
	position: relative;
	height: auto !important;
}

.img-wrapper.half {
	width: 50%;
	float: left;
}

.img-wrapper img {
	display: block;
	width: 100%;
}

.go-up-5 {
	margin-top: -5px;
}

/**************************/

.bath .inner {
	position: absolute;
	width: 820px;
	left: 50%;
	margin-left: -410px;
	top: 50%;
	margin-top: -57px;
	text-align: center;
	height: 114px;
}

/**************************/

.bath.full {
	/* background: url(../images/bath-1.jpg); */
}

/**************************/

/* .bath.quarter.top-left {
	background: url(../images/bath-3.jpg);
	background-position: center bottom !important;
}

.bath.quarter.top-right {
	background: url(../images/bath-2.jpg);
	background-position: center bottom !important;
} */

/**************************/

.james.full {
	background: #231f20;
}

.james-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/james.jpg);
	-webkit-background-size: cover !important;
   	-moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
}

.james-desc {

}

.james-desc .inner {
	position: absolute;
	width: 300px;
	right: 200px;
	top: 50%;
	margin-top: -240px;
	text-align: center;
	height: 480px;
	color: white;
}

.james-desc .inner .first {
	font-size: 24px;
	line-height: 30px;
}

.james-desc .inner .second {
	font-size: 14px;
	line-height: 24px;
	margin-top: 20px;
}

/**************************/

.woman.full {
	background: #231f20;
}

.woman-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/woman.jpg);
	-webkit-background-size: cover !important;
   	-moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
}

.woman-desc {

}

.woman-desc .inner {
	position: absolute;
	width: 250px;
	left: 200px;
	top: 50%;
	margin-top: -150px;
	text-align: center;
	height: 300px;
	color: white;
}

.woman-desc .inner .first {
	font-size: 24px;
	line-height: 30px;
}

.woman-desc .inner .second {
	font-size: 14px;
	line-height: 24px;
	margin-top: 20px;
}

/**************************/

.park-img {
	position: absolute;
	top: 10px;
	left: 10px;
	right: calc( ( 100% - 50px ) / 4 + 20px );
	bottom: 0;
	background: url(../images/park.jpg);
	-webkit-background-size: cover !important;
   	-moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
}

.neighborhood-desc {
	position: absolute;
	top: 0;
	right: 0;
	width: calc( ( 100% - 50px ) / 4 + 20px );
	height: 100%;
	background: white;
}

.neighborhood-desc .inner {
	position: absolute;
	width: 260px;
	left: 50%;
	margin-left: -130px;
	top: 50%;
	margin-top: -235px;
	text-align: center;
	height: 470px;
}

.neighborhood-desc .inner .first {
	font-size: 30px;
	line-height: 30px;
}

.neighborhood-desc .inner .second {
	font-size: 16px;
	line-height: 24px;
	margin-top: 20px;
}

.neighborhood-desc .inner .third {
	margin-top: 20px;
	font-size: 30px;
	line-height: 30px;
	letter-spacing: 1px;
}

/************************/

.neighborhood-grid {
	height: auto;
	/* padding: 10px 10px 0 10px; */
	width: calc( 100% - 20px );
	margin: 10px auto 0;
	background: white;
	/* -moz-column-count: 4;
    -webkit-column-count: 4;
    column-count: 4;
    -moz-column-gap: 10px;
    -webkit-column-gap: 10px;
    column-gap: 10px; */
}

.grid-item {
	position: relative;
	/* display: inline-block;
	width: 100%;
	margin: 0 0 8px; */
	float: left;
	width: calc( (100% - 30px) / 4 );
	margin-bottom: 10px;
}

.grid-item img {
	display: block;
	width: 100%;
	height: auto;
}

.inner-bigger {
	/* position: absolute;
	top: -60px;
	height: calc( 100% + 120px );
	left: -60px;
	width: calc( 100% + 120px ); */
}

/**************************/

.skyhouse-2 {
	background: url(../images/skyhouse-1.jpg);
}

.skyhouse-2 .inner {
	position: absolute;
	width: 100%;
	height: 180px;
	top: 50%;
	margin-top: -90px;
	left: 0;
	vertical-align: middle;
	line-height: 180px;
	font-size: 180px;
	color: white;
	text-align: center;
}

/**************************/

.skyhouse .inner {
	position: absolute;
	width: 840px;
	left: 50%;
	margin-left: -420px;
	top: 50%;
	margin-top: -57px;
	text-align: center;
	height: 114px;
}

/**************************/

/* .desc-on-big {
	position: absolute;
	top: 30px;
	right: 30px;
	font-size: 12px;
	line-height: 16px;
	color: white;
	width: 400px;
} */

.skyhouse-3.quarter.top-left {
	background: url(../images/skyhouse-6.jpg);
}

.skyhouse-3.quarter.top-right {
	background: url(../images/skyhouse-5.jpg);
}

.skyhouse-3.quarter.bottom-left {
	background: url(../images/skyhouse-2.jpg);
}

.skyhouse-3.quarter.bottom-right {
	background: url(../images/skyhouse-3.jpg);
}

/**************************/

.team {
	position: relative;
	padding: 1px;
}

.team .left {
	position: relative;
	width: 50%;
	float: left;
	padding: 179px 49px 99px 99px;
}

.team .right {
	position: relative;
	width: 50%;
	float: right;
	padding: 179px 99px 99px 49px;
}

.team h3 {
	position: absolute;
	top: 100px;
	left: 100px;
	font-size: 50px;
}

.team .inner h4 {
	font-size: 18px;
	margin-top: 30px;
}

.team .inner p {
	font-size: 14px;
	line-height: 18px;
	margin-top: 10px;
}

.team .inner p span.strong {
	font-weight: 700;
}

.team .inner p span.italic {
	font-style: italic;
}

/********************************/

.contact {
	position: relative;
	background: #231f20;
	color: white;
}

.contact h3 {
	position: absolute;
	top: 100px;
	left: 100px;
	font-size: 50px;
}

.contact .inner {
	position: relative;
	padding: 180px 100px 100px 100px;
	text-transform: uppercase;
	line-height: 18px;
	font-size: 14px;
}

.contact .inner p {
	margin-top: 10px;
}

.contact .inner p a {
	padding-bottom: 5px;
	transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact .inner p a:hover {
	border-bottom: 1px solid white;
}

#contact_form {
	position: relative;
	margin-top: 40px;
	color: white;
}

.form-item {
	position: relative;
	float: left;
	margin-bottom: 15px;
}

.form-item.half {
	width: calc( 50% - 5px );
	height: auto !important;
}

.form-item.half.margin {
	margin-right: 10px;
}

.form-item label {
	display: block;
	margin-bottom: 5px;
}

.form-input {
	position: relative;
	height: 40px !important;
	border: 1px solid white;
	background: transparent;
	outline: 0;
	padding-left: 20px;
	width: 100%;
	-webkit-appearance: none;
    border-radius: 0;
}

.form-input.half {
	width: calc( 50% - 5px );
}

.form-input.half.margin {
	margin-right: 10px;
}

.form-input.message {
	margin-top: 10px;
	padding-top: 15px;
}

.form-send {
	position: absolute;
	bottom: 10px;
	right: 0;
	width: 200px;
	height: 50px;
	background: transparent;
	color: white;
	text-align: center;
	line-height: 38px;
	vertical-align: middle;
	border: 1px solid white;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	cursor: pointer;
	font-size: 14px;
	font-family: 'FuturaBT-Light';
}

.form-send:hover {
	background: white;
	color: #966d54;
}

#form_name {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	border: 2px solid white;
	background: transparent;
	outline: 0;
	padding-left: 30px;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	z-index: 1000;
}

#form_email {
	position: absolute;
	top: 70px;
	left: 0;
	width: 100%;
	height: 50px;
	border: 2px solid white;
	background: transparent;
	outline: 0;
	padding-left: 30px;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	z-index: 1000;
}

#form_message {
	position: absolute;
	top: 140px;
	left: 0;
	width: 100%;
	height: 50px;
	border: 2px solid white;
	background: transparent;
	outline: 0;
	padding-left: 30px;
	line-height: 50px;
	vertical-align: middle;
	padding-top: 0;
	margin-top: 0;
	resize: none;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	z-index: 1000;
}

#form_send {
	position: absolute;
	top: 140px;
	right: 0;
	width: 120px;
	height: 50px;
	border: 2px solid white;
	background: transparent;
	cursor:pointer;
	outline: 0;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	overflow: hidden;
	z-index: 5000;
	color: white;
	font-weight: 300;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	-webkit-transition: all .16s ease-out;
	transition: all .16s ease-out;
}

#form_send:hover {
	background: rgba(120,134,81,1);
}

.button.submit {
	display: block;
    width: 100%;
    height: 40px;
    text-align: center;
    line-height: 44px;
    background: #ca9e67;
    color: #231f20;
    font-size: 16px;
}

input[type=text]{
	color: white;
	font-family: 'FuturaBT-Light';
	font-size: 14px;
	-webkit-appearance: none;
    border-radius: 0;
}

input[type=tel]{
	color: white;
	font-family: 'FuturaBT-Light';
	font-size: 14px;
	-webkit-appearance: none;
    border-radius: 0;
}

input[type=email]{
	color: white;
	font-family: 'FuturaBT-Light';
	font-size: 14px;
	-webkit-appearance: none;
    border-radius: 0;
}

input[type=checkbox]{
	float: left;
	margin-right: 10px;
}

textarea {
	color: white;
	font-family: 'FuturaBT-Light';
	font-size: 14px;
	overflow: hidden;
	resize: none;
	padding-top: 10px;
}

::-webkit-input-placeholder {
	color: white;
	font-family: 'FuturaBT-Light';
	font-size: 14px;
}

:-moz-placeholder {
	color: white;
	font-family: 'FuturaBT-Light';
	font-size: 14px;
}

::-moz-placeholder {
	color: white;
	font-family: 'FuturaBT-Light';
	font-size: 14px;
}
:-ms-input-placeholder {
	color: white;
	font-family: 'FuturaBT-Light';
	font-size: 14px;
}

/****************************/

.map-wrapper {
	height: 400px;
}

#map_canvas {
	width: 100%;
	height: 100%;
}


/******************************/

/*======================================
  Selectric
======================================*/

.selectricWrapper {
  position: relative;
  cursor: pointer;
  width: 100%;
}

.selectricResponsive {
  width: 100%;
}

.selectric {
  border: 1px solid white;
  background: transparent;
  position: relative;
  height: 40px;
}
.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  line-height: 20px;
  color: white;
  height: 26px;
  padding-left: 20px;
}
.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 36px;
  height: 36px;
  color: white;
  text-align: center;
  font: 0/0 a;
  *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial;
}
.selectric .button:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: white;
  border-bottom: none;
}

.contact .inner .selectric p {
	font-size: 14px;
}

.selectricHover .selectric {
  border-color: white;
}
.selectricHover .selectric .button {
  color: white;
}
.selectricHover .selectric .button:after {
  border-top-color: white;
}

.selectricOpen {
  z-index: 9999;
}
.selectricOpen .selectric {
  border-color: white;
}
.selectricOpen .selectricItems {
  display: block;
}

.selectricDisabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectricHideSelect {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}
.selectricHideSelect select {
  position: absolute;
  left: -100%;
  display: none;
}

.selectricInput {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectricTempShow {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectricItems {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 2px solid white;
  z-index: -1;
  /* box-shadow: 0 0 10px -6px; */
}
.selectricItems .selectricScroll {
  height: 100%;
  overflow: auto;
}
.selectricAbove .selectricItems {
  top: auto;
  bottom: 100%;
}
.selectricItems ul, .selectricItems li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  min-height: 20px;
}
.selectricItems li {
  display: block;
  padding: 8px;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  color: black;
  cursor: pointer;
}
.selectricItems li.selected {
  background: #EFEFEF;
  color: black;
}
.selectricItems li:hover {
  background: #F0F0F0;
  color: black;
}
.selectricItems .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: white !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.selectricItems .selectricGroup .selectricGroupLabel {
  font-weight: bold;
  padding-left: 20px;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: none;
  color: white;
}
.selectricItems .selectricGroup.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}
.selectricItems .selectricGroup li {
  padding-left: 20px;
}

/****************************/

footer {
	position: relative;
	width: 100%;
	height: 400px;
	background: #231f20;
	color: white;
}

footer .headline {
	text-align: center;
	padding-top: 100px;
	font-size: 100px;
}

.footer-inner {
	position: absolute;
	width: 140px;
	height: 200px;
	left: 50%;
	margin-left: -70px;
	top: 50%;
	margin-top: -100px;
}

.footer-logo {
	position: absolute;
	width: 140px;
	height: 140px;
	top: 0;
	left: 0;
}

.footer-tagline {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
	font-size: 16px;
}

.footer-rights {
	position: absolute;
	bottom: 30px;
	right: 0;
	width: 100%;
	text-align: center;
}

#footer-legal {
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

#footer-legal:hover {
	color: #ca9e67;
}

/****************************/

.section.floor-plans {
	color: white;
	background: black;
}

.floor-plans-left {
	position: absolute;
	width: 350px;
	top: 0;
	left: 0;
	background: black;
	height: 100%;
}

.floor-plans-left .inner {
	position: absolute;
	top: 50%;
	margin-top: -35px;
	height: 70px;
	left: 0;
	width: 100%;
	text-align: center;
}

.floor-plans-left h2 {
	font-size: 24px;
	text-transform: uppercase;
}

.floor-plans-left p {
	margin-top: 10px;
	line-height: 18px;
}

.floor-plans-right {
	position: relative;
	background: #231f20;
	height: 100%;
	font-size: 14px;
	margin-left: 350px;
	width: calc( 100% - 350px );
}

.mobile-hand {
	display: none;
	position: absolute;
	width: 40px;
	height: auto;
	bottom: 80px;
	left: 50%;
	margin-left: -20px;
}

.floor-plans-right-bottom {
	position: absolute;
	height: 440px;
	left: 30px;
	right: 80px;
	top: 50%;
	margin-top: -220px;
}

.floor-plans-right-bottom-row {
	position: relative;
	height: 40px;
	width: 100%;
	border-bottom: 1px solid #ca9e67;
}

.floor-plans-right-bottom-row ul {
	position: absolute;
	height: 40px;
	left: 20px;
	bottom: 0;
	width: 900px;
}

.floor-plans-right-bottom-row ul li {
	float: left;
	width: 20%;
	line-height: 40px;
	vertical-align: middle;
}

.floor-plans-right-bottom-row ul li:nth-child(1), .floor-plans-right-top ul li:nth-child(1) {
	width: 20%;
}

.floor-plans-right-bottom-row ul li:nth-child(2), .floor-plans-right-top ul li:nth-child(2) {
	width: 17%;
}

.floor-plans-right-bottom-row ul li:nth-child(3), .floor-plans-right-top ul li:nth-child(3) {
	width: 17%;
}

.floor-plans-right-bottom-row ul li:nth-child(4), .floor-plans-right-top ul li:nth-child(4) {
	width: 20%;
}

.floor-plans-right-bottom-row ul li:nth-child(5), .floor-plans-right-top ul li:nth-child(5) {
	width: 10%;
	font-size: 18px;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.floor-plans-right-bottom-row ul li:nth-child(5):hover, .floor-plans-right-top ul li:nth-child(5):hover {
	color: #ca9e67;
}

/************/

.mobile-quarter {
	display: none;
	position: relative;
	width: 100%;
	height: auto;
	border-bottom: 2px solid #231f20;
}

.mobile-quarter.small {
	width: 50%;
	float: left;
	border-left: 2px solid #231f20;
	border-bottom: 0px solid #231f20;
}

.mobile-quarter img {
	display: block;
	width: 100%;
	height: auto;
}

.mobile-quarter h3 {
	position: absolute;
	left: 10px;
	max-width: 60%;
	text-align: left;
	bottom: 10px;
	background: rgba(35,31,32,0.6);
	padding: 6px 10px;
	color: white;
	font-family: 'FuturaBT-Light';
	z-index: 100;
}

.mobile-quarter h3.special {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
	bottom: 50%;
	margin-bottom: -25px;
	height: 50px;
	line-height: 50px;
	vertical-align: middle;
	background: rgba(0,0,0,0);
	padding: 0;
	color: white;
	font-family: 'FuturaBT-Light';
	font-size: 50px;
	text-align: center;
	max-width: 100%;
	z-index: 100;
}

#phone {
	display: block;
}

#phone-2 {
	display: none;
}

.swipe-icon {
	display: none;
}

/*****************/

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

	html {
	    -webkit-text-size-adjust: 100%;
	}

	body {
		background: #231f20;
	}

	/*****/

	#phone {
		display: none;
	}

	#phone-2 {
		display: block;
	}

	/******************/
	
	.preloader {
		display: none;
	}
	
	#logo-lines {
		opacity: 1;
	}
	
	#tag-line {
		bottom: 0;
	}
	
	.special-none {
		opacity: 1;
	}
	
	/******************/

	#right-side-menu-container{
		top: 50%;
	}

	#arrow-down-container{
		bottom: 30px;
	}

	#fixed-desc {
		top: 300%;
		height: 100%;
	}

	#map-wrapper {
		height: 70vh;
	}

	#footer {
		height: 50vh;
	}

	.half {
		height: 50vh;
	}

	.full {
		height: 100vh;
	}

	#fullpage {
		position: relative;
		left: 0;
		background: #231f20;
		/* position: relative;
		width: 100%;
		height: 100%; */
	}

	/*******************/
	
	.welcome-2.half {
		padding: 100px 20px !important;
		height: auto !important;
	}

	.the-building-img-container {
		display: none;
	}

	.the-building-img-container-mobile {
		display: block;
	}

	.mobile-quarter {
		display: block;
	}

	.quarter {
		display: none;
	}
	

	/* .welcome-1.full {
		display: none;
	} 

	.welcome-4.full {
		display: none;
	}

	.home-1.full {
		display: none;
	}

	.livingroom.full {
		display: none;
	}

	.bath.full {
		display: none;
	}

	.skyhouse-2.full {
		display: none;
	} */

	.section {
		position: relative;
		/* height: 100%;
		width: 100%;
		-webkit-overflow-scrolling: touch;
		-webkit-transform: translate3d(0,0,0); */
	}

	.fixed-bg {
		background-attachment: scroll !important;
		background: url(http://172madisonave.com/images/mobile-bg.jpg);
		background-position: top center !important;
	}

	.opening-1-2 {
		background: url(../images/bg-big-mobile.jpg);
	}

	.fixed-logolines {
		width: 180px;
		margin-left: -90px;
		height: 220px;
		margin-top: 0;
		top: 100px;
	}

	.logo-lines {
		width: 180px;
	}

	.fixed-logolines h2 {
		font-size: 21px;
	}

	.phone-container {
		top: 20px;
		right: 20px;
		width: 34px;
		height: 34px;
		line-height: 34px;
	}

	.phone-container i {
		margin-top: 5px;
	}

	.arrow-down-container {
		height: 34px;
		width: 34px;
		margin-left: -17px;
		z-index: 4000;
	}

	.arrow-down-text {
		position: absolute;
		top: -22px;
		left: -53px;
	}

	.arrow-down-container img {
		width: 15px;
		height: auto;
		margin-left: -7.5px;
		margin-top: -3.5px;
	}
	
	.left-side-menu-container {
		width: 70px;
		height: 70px;
	}

	.left-side-menu-container-inner-wrapper {
		top: 15px;
		left: 10px;
		width: 40px;
		height: 40px;
	}

	.left-side-menu-container-inner {
		margin-left: -10px;
		width: 20px;
	}

	.left-side-menu {
		width: 250px;
		height: 100vh;
		top: 0;
		left: 0;
		background: #231f20;
		z-index: 0;
		box-shadow: 3px 0px 10px 0px #181818;
	}

	.left-side-menu-items {
		left: 24px;
		height: 304px;
		margin-top: -152px;
	}

	.left-side-menu-items li {
		height: 34px;
		line-height: 34px;
	}

	.menu-legal {
		left: 24px;
		bottom: 20px;
		font-size: 12px;
	}

	#menu-legal {
		transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
		-webkit-transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
		cursor: pointer;
	}

	#menu-legal:hover {
		color: #ca9e67;
	}

	.legal-container .inner {
		position: absolute;
		width: 300px;
		left: 50%;
		margin-left: -150px;
		height: 370px;
		top: 50%;
		margin-top: -185px;
		color: white;
		font-size: 12px;
		text-align: center;
		line-height: 16px;
	}

	.legal-container .inner img {
		height: 12px;
		width: auto;
		margin-right: 10px;
	}
	
	.opening-2, .category-opening-1 {
		height: auto !important;
		padding: 100px 0 !important;
	}

	.opening-2 .opening-text-inner {
		position: relative;
		margin-left: 0;
		margin-top: 0;
		width: 100%;
		height: auto;
		left: 0;
		top: 0;
		padding: 0 20px;
	}

	.opening-2 p {
		font-size: 16px;
		line-height: 20px;
	}

	.opening-2 p.third {
		font-size: 24px;
		line-height: 26px;
	}

	.no-need {
		display: none;
	}

	.fixed-desc {
		display: none;
	}

	.the-building-img {
		width: 100%;
		margin-left: 0;
	}

	.building-desc-mobile {
		display: block;
	}

	.category-opening-1 {
	}

	.category-opening-1 .inner {
		position: relative;
		width: 100%;
		height: auto;
		top: 0;
		left: 0;
		margin-top: 0;
		margin-left: 0;
	}

	.category-opening-1 p.first {
		font-size: 21px;
	}

	.category-opening-1 p.second {
		margin-top: 10px;
		font-size: 100px;
	}

	.half .inner .first {
		font-size: 24px;
	}

	.half .inner .second {
		font-size: 16px;
		line-height: 20px;
	}

	.welcome-2 .inner {
		position: relative;
		width: 100%;
		height: auto;
		top: 0 !important;
		left: 0 !important;
		margin-left: 0;
		margin-top: 0;
	}

	.title-on-big-special {
	}

	.title-on-big-special h2 {
		font-size: 42px;
	}

	.title-on-big-special p {
	}

	.category-opening-2 {
		height: auto !important;
		padding: 150px 0 !important;
	}

	.category-opening-2 .inner {
		position: relative;
		width: 100%;
		height: auto;
		top: 0;
		left: 0;
		margin-top: 0;
		margin-left: 0;
	}

	.category-opening-2 p.first {
		font-size: 100px;
	}

	.category-opening-2 p.second {
		margin-top: -10px;
		font-size: 21px;
	}

	.title-on-big {
		left: 10px;
		bottom: 10px;
		width: 300px;
	}

	.title-on-big h2 {
		font-size: 24px;
	}

	.title-on-big p {
		margin-top: 4px;
		font-size: 16px;
		line-height: 20px;
	}

	.kitchen .inner {
		position: relative;
		width: 100%;
		height: auto;
		top: 0;
		left: 0;
		margin-left: 0;
		margin-top: 0;
	}

	.livingroom .inner {
		position: relative;
		width: 100%;
		height: auto;
		top: 0;
		left: 0;
		margin-left: 0;
		margin-top: 0;
	}

	.bath .inner {
		position: relative;
		width: 100%;
		height: auto;
		top: 0;
		left: 0;
		margin-left: 0;
		margin-top: 0;
	}

	.floor-plans-left {
		position: relative;
		width: 100%;
		height: 150px;
	}

	.floor-plans-right {
		height: auto;
		font-size: 14px;
		margin-left: 0;
		margin-top: 30px;
		width: 100%;
		background: black;
	}

	.mobile-hand {
		display: block;
	}

	.floor-plans-right-bottom {
		position: absolute;
		height: 440px;
		left: 10px;
		right: 10px;
		top: 0;
		margin-top: 0;
		overflow: scroll;
	}

	.floor-plans-right-bottom-row ul li {
		border-bottom: 1px solid #ca9e67;
	}

	.floor-plans-right-bottom-row ul li:nth-child(1), .floor-plans-right-top ul li:nth-child(1) {
		width: 20%;
	}

	.floor-plans-right-bottom-row ul li:nth-child(2), .floor-plans-right-top ul li:nth-child(2) {
		width: 20%;
	}

	.floor-plans-right-bottom-row ul li:nth-child(3), .floor-plans-right-top ul li:nth-child(3) {
		width: 20%;
	}

	.floor-plans-right-bottom-row ul li:nth-child(4), .floor-plans-right-top ul li:nth-child(4) {
		width: 20%;
	}

	.floor-plans-right-bottom-row ul li:nth-child(5), .floor-plans-right-top ul li:nth-child(5) {
		width: 20%;
	}

	.james {
		display: none;
	}

	.woman {
		display: none;
	}

	.park-img {
		top: 6px;
		left: 6px;
		right: 6px;
		bottom: 0;
	}

	.neighborhood-desc {
		width: 90%;
		height: 90%;
		top: 5%;
		right: 5%;
		left: 5%;
		bottom: 5%;
		background: rgba(0,0,0,0.7);
	}

	.neighborhood-desc .inner {
		width: 260px;
		left: 50%;
		margin-left: -130px;
		top: 50%;
		margin-top: -182px;
		height: 364px;
	}

	.neighborhood-desc .inner .first {
		font-size: 24px;
		line-height: 24px;
	}

	.neighborhood-desc .inner .second {
		font-size: 16px;
		line-height: 20px;
		margin-top: 10px;
		color: white;
	}

	.neighborhood-desc .inner .third {
		margin-top: 10px;
		font-size: 24px;
		line-height: 28px;
	}

	.neighborhood-grid {

	}

	.grid-item {
		width: calc( (100% - 10px) / 2 );

	}

	.skyhouse-2 .inner {
		width: 100%;
		height: 150px;
		margin-top: -75px;
		line-height: 80px;
		font-size: 90px;
	}

	.skyhouse .inner {
		position: relative;
		width: 100%;
		height: auto;
		top: 0;
		left: 0;
		margin-left: 0;
		margin-top: 0;
	}

	.half .inner .second.special {
		font-size: 16px;
		line-height: 20px;
	}

	.team .left {
		position: relative;
		width: 100%;
		float: left;
		padding: 140px 10px 30px 10px;
	}

	.team .right {
		width: 100%;
		float: left;
		padding: 0 10px 40px 10px;
	}

	.team h3 {
		position: absolute;
		top: 80px;
		left: 10px;
		font-size: 36px;
	}

	.team .inner h4 {
		font-size: 18px;
		margin-top: 30px;
	}

	.team .inner p {
		font-size: 14px;
		line-height: 16px;
		margin-top: 10px;
	}

	.team .inner p span.strong {
		font-weight: 700;
	}

	.team .inner p span.italic {
		font-style: italic;
	}

	.contact {

	}

	.contact h3 {
		position: absolute;
		top: 80px;
		left: 10px;
		font-size: 36px;
	}

	.contact .inner {
		padding: 140px 10px 40px 10px;
		text-transform: uppercase;
		line-height: 18px;
		font-size: 14px;
	}

	.contact .inner p {
		margin-top: 10px;
	}

	.form-input {
	}

	.form-input.half {
		width: 100%;
	}

	.form-input.half.margin {
		margin-right: 0;
	}

	.form-send {
		width: 100px;
	}
	
	
	.half.kitchen {
		padding: 100px 20px !important;
		height: auto !important;
	}
	
	.kitchen .inner {
		top: 0 !important;
		left: 0 !important;
	}
	
	.kitchen.quarter, .skyhouse-3.quarter, .welcome-3.quarter, .bath.quarter {
		display: block !important;
		width: 100% !important;
		float: none !important;
		height: 200px !important;
		background-position: center center !important;
		border-top: 2px solid #231f20;
	}
	
	.half.livingroom {
		height: auto !important;
		padding: 100px 20px !important;
	}
	
	.livingroom .inner {
		top: 0 !important;
		left: 0 !important;
	}
	
	.welcome-1.full, .welcome-4.full, .home-1.full, .skyhouse-2.full {
		height: 70vh !important;
		background-position: center center !important;
	}
	
	.half.bath, .half.skyhouse {
		height: auto !important;
		padding: 100px 20px !important;
	}
	
	.bath .inner, .skyhouse .inner {
		top: 0 !important;
		left: 0 !important;
	}

	#mobile-play {
		display: block !important;
	}

	.bg {
		display: block !important;
	}
	
	.menu-line {
		background: #ca9e67 !important;
	}
	
	.phone-container {
		border: 2px solid #ca9e67 !important;
		color: #ca9e67 !important;
	}
	
	.arrow-down-text {
		color: #ca9e67 !important;
	}
	
	.arrow-down-container {
		border: 2px solid #ca9e67 !important;
	}
	
	#arrow-down-gold {
		opacity: 1 !important;
	}
	
	#arrow-down-white {
		opacity: 0 !important;
	}
	
	#fullpage, #fixed-bg, #fixed-logolines, #fixed-desc, #arrow-down-container, #phone {
		transition: all .26s ease-out;
		-webkit-transition: all .26s ease-out;
	}
	
	.quarter .overlay, .quarter-big .overlay {
		opacity: 1;
	    width: auto;
	    padding: 6px 12px;
	    left: 10px;
	    bottom: 10px;
	    height: auto;
		background: #231f20;
		top: auto;
	}
	
	.quarter .overlay .image-title, .quarter-big .overlay .image-title {
		position: relative;
	    width: auto;
	    left: 0;
	    text-align: left;
	    top: 0;
	    margin-top: 0;
	    height: auto;
	    color: white;
	}
	
	.quarter .overlay .image-title h2, .quarter-big .overlay .image-title h2 {
		font-size: 14px;
	}
	
	.quarter .overlay .image-title p, .quarter-big .overlay .image-title p {
		display: none;
	}
	
	.legal-container {
		width: 100vw;
		height: 100vh;
	}
	
	.category-opening-1 p.first, .category-opening-2 p.second {
		font-size: 18px;
	}
	
	.category-opening-1 p.second, .category-opening-2 p.first {
		font-size: 90px;
	}
	
	.skyhouse-2 .inner {
		font-size: 50px;
	}
	
	.title-on-big-special {
		padding: 0 20px;
	}
	
	select {
		position: relative;
	    height: 40px !important;
	    border: 1px solid white;
	    background: transparent;
	    outline: 0;
	    padding-left: 10px;
	    width: 100%;
	    float: none;
	    -webkit-appearance: none;
	    border-radius: 0;
		color: white;
	}
	
	.footer-inner {
		height: 170px;
	}

	.swipe-icon {
		position: absolute;
		width: 40px;
		display: block;
		left: 50%;
		margin-left: -15px;
		bottom: 80px;
	}

	.form-item.half {
		float: none;
		width: 100%;
	}
	
	.form-item.half.margin {
		margin-right: 0;
	}

	.mobile-block {
		display: block !important;
	}

	.top-logo-wrapper img {
		width: 180px;
	}

	.top-logo-wrapper .fa-play {
		display: block;
		width: 60px;
		height: 60px;
		border: 3px solid #ca9e67;
		color: #ca9e67;
		text-align: center;
		font-size: 24px;
		padding-left: 5px;
		line-height: 54px !important;
		border-radius: 50%;
		cursor: pointer;
		margin: 30px auto 0;
	}

	.menu-inner-wrapper {
		top: 20px;
		left: 20px;
		width: 34px;
		height: 34px;
	}

	.container.go-right, .phone-container.go-right, .arrow-down-container.go-right, .top-logo-wrapper.go-right {
		transform: translateX(250px);
		-webkit-transform: translateX(250px);
	}

	.arrow-down-container i {
		margin-top: 7px;
	}

	.hide-on-m {
		display: none !important;
	}

	.top-logo-wrapper {
		position: absolute;
	}

	.the-building-desc {
		width: 100%;
		padding-top: 50px;
		min-height: 0;
	}

	.section.floor-plans {
		height: 300px;
	}
	
}