@font-face {
    font-family: 'GothamMedium';
    src: url('/fonts/GothamMedium.eot');
    src: url('/fonts/GothamMedium.eot') format('embedded-opentype'),
         url('/fonts/GothamMedium.woff2') format('woff2'),
         url('/fonts/GothamMedium.woff') format('woff'),
         url('/fonts/GothamMedium.ttf') format('truetype'),
         url('/fonts/GothamMedium.svg#GothamMedium') format('svg');
}

@font-face {
    font-family: 'GothamHTFBook';
    src: url('/fonts/GothamHTFBook.eot');
    src: url('/fonts/GothamHTFBook.eot') format('embedded-opentype'),
         url('/fonts/GothamHTFBook.woff2') format('woff2'),
         url('/fonts/GothamHTFBook.woff') format('woff'),
         url('/fonts/GothamHTFBook.ttf') format('truetype'),
         url('/fonts/GothamHTFBook.svg#GothamHTFBook') format('svg');
}

:root {
	--mainBlack: #000;
	--mainWhite: #fff;
	--mainPink: #f1b8a8;
	--mainBrown: #ded1c3;
	--mainGrey: #d4d3cf;
	--medium: "GothamMedium";
	--book: "GothamHTFBook";
}

.animated {
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .animated.infinite {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }

.popoUp {
    position: fixed;
    top: 0;
    z-index: 100;
    height: 100%;
    width: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.8s;
    overflow: initial;
    background: #fff;
}
.close {
    cursor: pointer;
    position: absolute;
    top: 15px;
    margin: 0 auto;
    right: 20px;
    width: 40px;
    height: 40px;
    padding: 6px;
    display: block;
    background-position: 10px center;
    overflow: hidden;
    font-size: 0;
    line-height: 1;
    text-align: center;
    z-index: 1050;
    background: none !important;
    opacity: 0.8;
}

    .close:after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 1px;
        height: 30px;
        transform: rotate(45deg);
        transform-origin: center;
        -webkit-transform: rotate(45deg);
        -webkit-transform-origin: center;
        background: #000;
    }

    .close:before {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 1px;
        height: 30px;
        transform: rotate(-45deg);
        transform-origin: center;
        -webkit-transform: rotate(-45deg);
        -webkit-transform-origin: center;
        background: #000;
    }

.mainContainer.fixed {
    height: calc(100vh + 1px);
    overflow: hidden;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}



@-webkit-keyframes fadeInLeft {
	from {
	  opacity: 0;
	  -webkit-transform: translate3d(-100%, 0, 0);
	  transform: translate3d(-100%, 0, 0);
	}
  
	to {
	  opacity: 1;
	  -webkit-transform: translate3d(0, 0, 0);
	  transform: translate3d(0, 0, 0);
	}
  }
  
  @keyframes fadeInLeft {
	from {
	  opacity: 0;
	  -webkit-transform: translate3d(-100%, 0, 0);
	  transform: translate3d(-100%, 0, 0);
	}
  
	to {
	  opacity: 1;
	  -webkit-transform: translate3d(0, 0, 0);
	  transform: translate3d(0, 0, 0);
	}
  }
  
  .fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
  }
  


html {
	font-size: 10px;
}

.clear, * html .clearfix, *:first-child+html .clearfix {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0
}
*{
	text-size-adjust: none;
	-webkit-text-size-adjust: none
}

.clearfix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
	width: 0;
	height: 0
}
*, *:before, *:after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
a {
	text-decoration: none;
	cursor: pointer;
	color: #000000;
}
img {
	border: none;
	max-width: 100%;
}

a, img {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}
textarea:focus, input:focus, select:focus {
	outline: none;
}
/* General */
body {
	font-family: "GothamHTFBook", "Gotham", sans-serif;
	font-size: 1.9rem;
	line-height: 1.4;
	background:#ffffff;
	color: #000000;
	margin: 0;
	padding: 0;
	text-align: center;
}
.img {
	width: 100%;
	margin: 0;
	display: block;
}

p {
	margin: 0;
}
/* Headings */
h1, h2, h3, h4, h5 {
	margin: 0;
	font-weight: normal;
	font-family: "GothamMedium";
}

h1 {
	font-size: 4rem;
}
h2 {
	font-size: 3.5rem;
}
h3 {
	font-size: 2.5rem; 
}
h4 {
	font-size: 2rem;
	font-size: 1.9rem;
}
/* Navigation */ 
header {
	margin: 0 auto;
	padding: 3.5rem 5rem;
	width: 100%;
	display: block;
	position: fixed;
	text-align: center;
	top:0;
	z-index:9;
	transition: all 0.4s ease;
}

header.bg-white {
	background: #ffffff;
	border-bottom: 1px solid #f3f3f3;
}

.logo {
	margin: 0 auto;
	display: block;
	width: 28rem;
	margin-top: -10px;
	position: absolute;

}
.logo svg {
	width: 100%;
	height: 61px;
}
.logo svg * {
	fill: #ffffff;
	transition: all 1.3s ease;
}
header.bg-white .logo svg * {
	fill: #000000;
}

nav {
	margin: 0 auto;
	margin-right: 0;
	padding: 0;
	width: 60%;
}

#nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#nav li {
	list-style: none;
	position: relative;
}
#nav li a {
	font-size: 1.5rem;
	letter-spacing: 4px;
	font-family: "GothamMedium";
	color: #ffffff;
	text-transform: uppercase;
	transition: all 0.4s ease ;
}

header.bg-white #nav li a {
	color: #000000;
}

#page-apartments #nav li a.apartments,
#page-penthouse #nav li a.penthouse,
#page-location #nav li a.location,
#nav li a:hover {
	color: #f1b8a8!important;
}


#nav li #enq-btn {
	display: block;
	color: #000000;
	background: #f1b8a8;
	padding: 1rem 3rem;
}

#nav li #enq-btn:hover {
	background: #000000;
	color: #f1b8a8;
}

/* nav-toggle */
#nav-toggle {
	position: absolute;
	top: 20px;
	right: 15px;
	z-index: 10;
	cursor: pointer;
	width: 30px;
	height: 30px;
	display: none;
}
#nav-toggle span, #nav-toggle span:after, #nav-toggle span:before {
	cursor: pointer;
	height: 3px;
	width: 30px;
	background: #fff;
	position: absolute;
	display: block;
	content: '';
	top: 10px;
	-webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}
#nav-toggle span:before {
	top: -10px
}
#nav-toggle span:after {
	bottom: -10px
}
#nav-toggle.active span {
	background-color: transparent !important;
}
#nav-toggle.active span:after, #nav-toggle.active span:before {
	top: 0
}
#nav-toggle.active span:before {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: a rotate(45deg)
}
#nav-toggle.active span:after {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: a rotate(-45deg)
}
/* enquiry */
.register {
	width: 100%;
	margin: 0 auto;
	background: #d4d3cf;
	padding: 10rem 0;
}
.formbox {
	margin: 0 auto;
	width: 54rem;
	max-width: calc(100% - 10rem );
}
.popoUp .formbox
{
margin: 0 auto;
    width: 57rem;
    max-width: 100%;
    padding: 60px 20px 0 20px;
    background: #fff;
        
}
form > div {
	margin-bottom: 20px;
}

input, select, label, textarea {
	font-size: 1.6rem;
	margin: 0 auto;
	padding: 0.5rem 0;
	width: 100%;
	color: #000000;
	border: 0 none;
	background: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
	border-bottom: 1px solid #000000;
	text-align: left;
}

input.b_submit {
    color: #000000;
    background: #f1b8a8;
    padding: 2rem 4.5rem;
    border: none;
    width: 20rem;
    text-align: center;
    font-family: var(--mdedium);
    font-weight: bold;
	margin: 3rem auto 4rem;
	cursor: pointer;
	transition: all 0.4s ease;
}
input.b_submit:hover {
	color: #f1b8a8;
    background: #000000;
}

textarea {
	/* height: 2.9rem; */
	max-width: 100%;

}
label {
	text-align: left;
	border: 0;
	display: block;
	font-family: "GothamMedium";
}


select {
	padding: 0.5rem 0;
	text-align-last: left; 
	text-align: left;
	-ms-text-align-last: left;
}
select option {
	padding: 0.5rem 0;
	background: #fff;
	text-align-last: left; 
	text-align: left;
	-ms-text-align-last: left;
}
.privacy-btn, .diligence-btn {
	font-size: 1.2rem;
	font-family: "GothamMedium";
	text-decoration: underline;

}
.chk_holder {
	margin: 10px auto 0 auto;
	color: #fff;
}
#chkInternational {
	border: 0 none;
	clip: rect(0px, 0px, 0px, 0px);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 13px;
	line-height: 25px;
	width: 20px;
	text-align: left;
}
#chkInternational + label {
	background: url("/images/buttons/uncheck.png") no-repeat left center;
	color: #fff;
	padding: 2px 0 2px 26px;
}
#chkInternational:checked + label {
	background: url(/images/buttons/check.png) no-repeat left center;
}
input:-webkit-input-placeholder, textarea:-webkit-input-placeholder {
color: #fff;
opacity: 1;
}
 input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
color: #fff;
opacity: 1;
}
 input:-moz-placeholder, textarea:-moz-placeholder {
color: #fff;
opacity: 1;
}
 input::-moz-placeholder, textarea::-moz-placeholder {
color: #fff;
opacity: 1;
}
 input:-ms-input-placeholder, textarea:-ms-input-placeholder {
color: $form-field-text;
opacity: 1;
}
 input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
color: transparent;
}
 input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
color: transparent;
}
 input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
color: transparent;
}
 input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
color: transparent;
}

/* Token Style */
ul.token-input-list-project {
	border: none;
	width: 100%;
	margin: 0 auto;
	max-width: 100%;
	text-align: left;
	text-align-last: left;
	text-align: -moz-left;
	text-align: -webkit-left;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0;
	border-bottom: 1px solid #525252;
	clear: both;
}
li.token-input-input-token-project {
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 100%
}
ul.token-input-list-project li input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	width: 100% !important;
	margin-bottom: 0;
}
li.token-input-token-project p {
	display: inline;
	padding: 0;
	margin: 0 5px 0 0;
	line-height: 20px;
	font-size: 11px
}
li.token-input-token-project {
	overflow: hidden;
	height: 25px;
	margin: 0;
	padding: 2px 5px;
	background-color: #ccc;
	color: #000;
	cursor: default;
	border: 1px solid #525252;
	font-size: 12px;
	white-space: nowrap;
	list-style: none;
	display: inline-block;
}
div.token-input-dropdown-project {
	position: absolute;
	width: 100%;
	background-color: #fff;
	overflow-x: hidden;
	cursor: default;
	font-size: 11px;
	z-index: 13;
	color: #000000;
}
div.token-input-dropdown-project ul {
	margin: 0;
	padding: 0;
	display: block !important;
	max-height: 205px;
}
div.token-input-dropdown-project ul li {
	background-color: #fff;
	font-size: 14px;
	padding: 3px;
	margin: 0;
	list-style-type: none;
	font-weight: 100 !important;
}
div.token-input-dropdown-project ul li.token-input-dropdown-item-project {
	background-color: #fff;
}
div.token-input-dropdown-project ul li.token-input-dropdown-item2-project {
	background-color: #fff;
}
div.token-input-dropdown-project ul li em {
	font-weight: bold;
	font-style: normal;
}
div.token-input-dropdown-project ul li.token-input-selected-dropdown-item-project {
	background-color: #ccc;
	color: #fff;
}
/* Parsley-error */
ul.parsley-errors-list.filled, ul.parsley-errors-list {
	font-size: 10px;
	list-style: outside none none;
	margin: 0 auto;
	padding: 0;
	position: relative;
	text-align: left;
	top: 0;
}
ul.parsley-errors-list.filled li, ul.parsley-errors-list li {
	padding:0;
	text-align: left;
	color: #F00D0D;
	position: absolute;
}
*{
	text-size-adjust: none;
	-webkit-text-size-adjust: none
}

.left-align {
	text-align:left;
}

.btn {
	display: block;
	margin-left: auto;
	margin-right: auto;
	font-family: "GothamMedium";
	font-size: 1.6rem;
	width: 35rem;
	padding: 1.5rem 0;
	border: 2px solid #000000;
	text-align: center;
	transition: all 0.4s ease;
}

.btn:hover {
	color: #ffffff;
	background: #000000;
}
#page-floorplan .btn {
    margin-bottom: 20px;
}
.w1450, .w800, .w1200 {
	width: 145rem;
	max-width: calc(100% - 10rem);
	margin-left: auto;
	margin-right: auto;
}

.w800 {
	width: 80rem;
	margin-left: auto;
	margin-right: auto;
}

.w1200 {
	width: 120rem;
}


.grid-2 {
	display: flex;
	justify-content: space-between;
	grid-column-gap: 10rem;
	flex-wrap: wrap;
}

.grid-2 > div, .grid-2 > img {
	width: calc(50% - 5rem);
}

#page-location .grid-2 > div{
	width: calc(50% - 2.75rem);
	margin-bottom: 5.5rem;
	position: relative;
}



.grid-3 {
	display: flex;
	justify-content: space-between;
	grid-column-gap: 3.5rem;
	flex-wrap: wrap;
}

.grid-3 > div {
	width: calc(33.33% - 2.33rem);
}

.flex-grid3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}


.grid-gap-200 > p{
	width: calc(50% - 10rem);
}


.grid-align-center {
	align-items: center;
}
.bg-brown {
	background: #ded1c3;
	overflow: auto;
	padding: 6rem 0 5rem;
}

.bg-pink {
	background: #f1b8a8;
	overflow: auto;
	overflow: overlay;
}

.ml0 {
	margin-left: 0;
}

.plr1 {
	padding-left: 1rem;
	padding-right: 1rem;
}

.pr20{
	padding-right: 2rem;
}

.pink-facade, .brown-facade {
	position: relative;
}
.pink-facade:after, .brown-facade:after {
	background: #f1b8a8;
	content: '';
	position: absolute;
	left: 0;
	top:0;
	bottom: 0;
	margin: auto;
	width: 50%;
	max-height: 90%;
	height: 65rem;
	z-index: -1;
	transform: translateX(-100%);
	transition: all 0.6s ease;
}

.pink-facade.slideIn:after {
	transform: none;
}

#page-apartments .pink-facade:after, #page-penthouse .pink-facade:after  {
	height: 45rem;
}

#page-location .pink-facade::after {
	width: calc(50% + 5rem);
	height: 45rem;
}

.brown-facade:after {
	background: #ded1c3;
	height: 60%;
	left: auto;
	right: 0;
}
/*footer*/ 
footer {
    width: 100%;
    padding: 5rem;
	background: #ffffff;
	font-size: 1.2rem;
}

#footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footerlogo {
	    height: 30px;
	width:120px;
	    display: inline-block;
}

.flexslider .slides li > h1 {
	position: absolute;
	bottom: 20rem;
	z-index: 1;
	left: 0;
	right: 0;
	color: #ffffff;
	text-align: center;
        font-size: 3rem;
}

.flexslider .slides li > h2 {
	position: absolute;
    bottom: 12rem;
    z-index: 1;
    left: 0;
    right: 0;
    color: #000000;
    text-align: center;
    font-size: 1.6rem;
    display: block;
    max-width: 60rem;
	width: 80%;
    margin: 0 auto;
    background: rgb(222, 209, 195,0);
    background: #E8DEC3;
    padding: 1rem 3rem;
    letter-spacing: 2px;
    font-family: "GothamMedium";
    text-transform: uppercase;
}

a h2 {
	position: absolute;
    bottom: 12rem;
    z-index: 1;
    left: 0;
    right: 0;
    color: #000000;
    text-align: center;
    font-size: 1.6rem;
    display: block;
    max-width: 60rem;
	width: 80%;
    margin: 0 auto;
    background: rgb(222, 209, 195,0);
    background: #E8DEC3;
    padding: 1rem 3rem;
    letter-spacing: 2px;
    font-family: "GothamMedium";
    text-transform: uppercase;
}


.fluid-design {
	width: 100%;
	position: relative;
}

.fluid-design > img {
	width: 50%;
    margin: auto 0 auto auto;
    display: block;
}

.fluid-design > .grid-2 {
	position: absolute;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.location-tile > div {
	position: relative;
	display: inherit;
	cursor: pointer;
}

.location-tile > div > .content{
	/* display: none; */
	position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    background: #f1b8a8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	padding: 5rem;
	visibility: hidden;
	opacity: 0;
	transition: all 0.4s ease;
	display: block;
}

.location-tile > div:hover > .content{
	opacity: 1;
	visibility: visible;
}

#map-grid ol {
	max-width: 55rem;
	display: block;
	margin: 0 0 0 auto;
	padding-left: 2rem;
}

#map-grid ol li {
	padding-bottom: 5px;
}

#map-grid div {
	padding-left: 10rem;
}
.playvideo{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 2;
}

#page-floorplan .register {
    padding-top: 20rem;
}
.btnFloorplan {
    /*display: block;*/
    color: #000000;
    background: #f1b8a8;
    padding: 1.5rem 3rem;
    width: 330px;
    margin: 0 auto;
	font-family: "GothamMedium";
    letter-spacing: 2px;
    font-size: 1.5rem;
}

.btnFloorplan:hover{
	color: #f1b8a8;
    background: #000000;
	    transition: all 0.4s ease;
}
.justmobile{
	display: none ;
}
.img-holder{
	display: block;
	position: relative;
}
 

.img-holder h2 {
	position: absolute;
    bottom: 13rem;
    z-index: 1;
    left: 0;
    right: 0;
    color: #000000;
    text-align: center;
    font-size: 1.6rem;
    display: block;
    max-width: 60rem;
    width: 80%;
    margin: 0 auto;
    background: rgb(222, 209, 195,0);
    background: #E8DEC3;
    padding: 1rem 3rem;
    letter-spacing: 2px;
    font-family: "GothamMedium";
    text-transform: uppercase;
}
 
@media screen and (max-width : 1300px) {

	.grid-2 > div, .grid-2 > img{
		width: calc(50% - 2.5rem);
	}
	.grid-2.grid-gap-200 > p{
		width: calc(50% - 5rem);
	}
	

	html {
		font-size: 9px;
	}
}

@media screen and (max-width : 1200px) {
	html {
		font-size: 8px;
	}
	.logo {
		width: 25rem;
		margin-top: -5px;
	}

	.logo > svg {
		height: 44px;
	}

	header {
		padding: 2.5rem 3rem;
	}
	nav {
		width: 65%;
	}

	#nav li a {
		letter-spacing: 2px;
	}

	.w1450, .w800, .w1200 {
		max-width: calc(100% - 6rem);
	}

	footer {
		padding: 3rem;
	}

	.grid-2 > div, .grid-2 > img {
		width: calc(50% - 1.5rem);
	}

	 .grid-3  > div{
		width: calc(33.33% - 2rem);
	}

	#page-location .grid-2 > div{
		width: calc(50% - 1.5rem);
		margin-bottom: 3rem;
	}

	
}

@media screen and (max-width : 900px) {
	html {
		font-size: 7px;
	}

	.pr20 {
		padding-right: 0;
	}

}

@media screen and (max-width : 760px) {
.img-holder h2 {
    display: block;
    position: relative;
    width: 100%;
    max-width: 100%;
    bottom: 0;
}
	.justmobile{
	display: block;
}
 #enq-btn.justmobile {
    display: block;
    color: #000000;
    background: #f1b8a8;
    padding: 1rem 3rem;
	 width: 100%;
	 left: 0;
	 bottom: 0;
	 position: fixed;
	 z-index: 5;
}
	.grid-2.grid-gap-200 > p {
		width: 100%;
	}
	
	#page-location .grid-2 {
		flex-wrap: wrap;
	}
	
	#page-location .grid-2 > div {
		width: 100%;
		display: block;
		margin-bottom: 4rem;
	}

	#nav-toggle {
		display: block;
	}

	nav {
		width: 100%;
		height: 100vh;
		background: #ffffff;
		position: fixed;
		left: 0;
		top: 0;
		z-index: 9;
		padding-bottom: 30px;
		transition: all 0.6s ease;
	    transform: translateX(-50%) rotateY(-90deg);
	}

	header.active_nav nav {
		transform: none;
	}

	main#main, footer {
		transition: all 0.6s ease;
	}

	header.active_nav + main#main, header.active_nav + main#main + footer {
		transform: translateX(50%) rotateY(90deg);
	}


	
	#nav {
		justify-content: center;
		flex-direction: column;
		height: 100%;
	}

	#nav li {
		padding: 2vh 0;
	}
	header {
		padding-left:15px;
		padding-right:15px;
	}

	.w1450, .w800, .w1200 {
		max-width: calc(100% - 30px);
	}
	header.bg-white #nav li a, #nav li a {
		color: #000000;
		font-size: 2.3rem;
	}

	header.bg-white #nav-toggle span, header.bg-white #nav-toggle span:after, header.bg-white #nav-toggle span:before,
	header.active_nav #nav-toggle span, header.active_nav #nav-toggle span:after, header.active_nav #nav-toggle span:before {
		background: #000000;
	}

	.logo {
		position: static;
		margin: 0;
		width: 20rem;
	}

	.logo > svg {
		height: 30px;
	}
	
	.flexslider .slides li > h1 {
		padding: 0 15px;
		   font-size: 1.4em;
    bottom: 22rem;
	}
		.flexslider .slides li > h2 {
		padding: 10px 15px;
    	bottom: 8rem;	}

	h1 {
		font-size: 3.5rem;
	}
	.flex-control-nav {
		bottom: 20px;
	}
	.flex-control-paging li a {
		width: 12px;
		height: 12px;
	}

	.grid-2 > div, .grid-2 > img,  .grid-3 > div {
		width: 100%;
		margin-bottom: 40px;
	}

	.pink-facade:after, .brown-facade:after {
		display: none;
	}
	.pink-facade {
		background: #f1b8a8;
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.flex-grid3 {
		flex-direction: column;
		align-items: baseline;
	}

	.flex-grid3 > * {
		margin-bottom: 20px;
	}

	.fluid-design > .grid-2 {
		position: relative;
	}

	.fluid-design > img {
		width: 100%;
		margin-bottom: 20px;
	}

	#map-grid div {
		padding-left: 20px;
	}

	.location-tile > div > .content {
		position: static;
		visibility: visible;
		opacity: 1;
	}
	#page-location .grid-2 {
		grid-row-gap:15px;
		grid-column-gap: 15px;
	}
	.location-tile > div {
		/* -webkit-box-shadow: 0px 0px 6px 6px rgba(0,0,0,0.59);
-moz-box-shadow: 0px 0px 6px 6px rgba(0,0,0,0.59);
box-shadow: 0px 0px 6px 6px rgba(0,0,0,0.59); */
	}
}

@media screen and (max-width: 760px) and (orientation: portrait) {
	.flexslider .slides > li {
		height: 400px;
	}
}

@media screen and (max-width : 420px) {
}