@font-face {
	font-family: 'opensans_regular';
	src: url('../fonts/opensans_regular.eot');
	src: url('../fonts/opensans_regular.eot?#iefix') format('embedded-opentype'), url('../fonts/opensans_regular.woff') format('woff'), url('../fonts/opensans_regular.ttf') format('truetype'), url('../fonts/opensans_regular.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

html {
	height: 100%;
}

body {
	height: 100%;
	margin: 0;
	padding: 0;
	font: 15px Tahoma;
}

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

header, footer, article, section, nav, menu, a, blockquote, img, h1, h2, h3, form, ul, ol, p, input, select, textarea {
   display: block;
   margin: 0;
   padding: 0;
}

a {
	text-decoration: none;
}

img {
	border: none;
}
img.fullWidth {
	width: 100%;
}
img.opacityTransition {
	transition: opacity .5s;
	-webkit-transition: opacity .5s;
	-moz-transition: opacity .5s;
	-o-transition: opacity .5s;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
a:hover img.opacityTransition {
	opacity: .6;
	-webkit-opacity: .6;
	-moz-opacity: .6;
}

ul, ol {
	list-style: none;
}

h1, h2, h3 {
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 25px;
}
h1 {
	font-size: 35px;
}
h2 {
	font-size: 30px;
}
h3 {
	font-size: 25px;
}

p:not(:first-child) {
	margin-top: 15px;
}

input, select, textarea {
	outline: none;
	background: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
input[type=submit], input[type=button] {
	cursor: pointer;
	border: none;
	padding: 10px;
	min-width: 100px;
	font: 12px Arial;
	font-weight: bold;
	text-transform: uppercase;
}
input[type=submit]:hover, input[type=button]:hover {
	opacity: .8;
	-webkit-opacity: .8;
	-moz-opacity: .8;
}
textarea {
	resize: none;
}

.smoothTransition {
	transition: all .5s;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
}

.table, .tableCell {
	width: 100%;
	height: 100%;
}
.table {
	display: table;
}
.tableCell {
	display: table-cell;
	vertical-align: middle;
}

.container {
	position: relative;
	width: 95%;
	max-width: 1170px;
	margin: 0 auto;
}

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}

.loadingIcon {
	position: absolute;
	width: 60px;
	height: 60px;
	top: 50%;
	left: 50%;
	background: url(../images/loading_icon.gif);
	background-size: 100%;
	margin-left: -30px;
	margin-top: -30px;
}

a.scrollPage {
	position: fixed;
	right: 2.5%;
	bottom: 10px;
	z-index: 1000;
	width: 30px;
	height: 30px;
	background: #ef7c00 url(../images/nav_arrow_down.png) center no-repeat;
	border: 1px solid #fff;
}
a.scrollPage:hover {
	background-color: #5d6162;
}
a.scrollPage.up {
	background-image: url(../images/nav_arrow_up.png);
	bottom: 51px;
}

.sep {
	margin: 35px 0;
	height: 1px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

.titleContainer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, .8);
	background: linear-gradient(bottom, black, rgba(0,0,0,1)(0,0,0,0));
	background: -webkit-linear-gradient(bottom, rgba(0,0,0,1), rgba(0,0,0,0));
	background: -moz-linear-gradient(bottom, rgba(0,0,0,1), rgba(0,0,0,0));
    background: -o-linear-gradient(bottom, rgba(0,0,0,1), rgba(0,0,0,0));
	color: #fff;
	font-size: 14px;
	padding: 15px 13px;
}
.titleContainer h3 {
	font: 15px 'opensans_regular';
	text-align: left;
	color: #fff;
	font-weight: bold;
	margin-bottom: 5px;
}

a.navNext, a.navPrev {
	position: absolute;
	top: 50%;
	width: 38px;
	height: 62px;
	margin-top: -31px;
	background-size: 100%;
}
a.navNext {
	right: 0;
}
a.navPrev {
	left: 0;
}

.blackOverlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0,.8);
}

.mobileContent {
	display: none;
}

header {
	height: 120px;
}
header .container, header #logo, header .floatRight, header #headerInfo, header #flags, header #flags a, header #headerInfo .iconContainer, header #headerInfo .info {
	height: 100%;
}
header #logo {
	width: 12%;
	min-width: 120px;
}
header #headerInfo, header #flags, header #flags a, header #headerInfo .iconContainer, header #headerInfo .info {
	float: left;
}
header #headerInfo {
	/*padding-right: 50px;
	margin-right: 30px;
	background: url(../images/header_sep.png) right center no-repeat;*/
}
header #headerInfo .icon {
	width: 48px;
	height: 48px;
	border-width: 1px;
	border-style: solid;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 23px 23px;
	margin-right: 20px;
}
header #headerInfo .info {
	line-height: 25px;
}
header #flags a {
	width: 30px;
}
header #flags a:not(:last-child) {
	margin-right: 6px;
}
header #flags a img {
	border-width: 1px;
	border-style: solid;
}
header .ad {
	margin-left: 20px;
}
header .ad a {
	display: inline-block;
}

nav {
	position: relative;
	z-index: 500;
	width: 100%;
	height: 60px;
	min-height: 60px;
	top: 0;
	left: 0;
	text-align: center;
}
nav a.mobile {
	position: absolute;
	width: 36px;
	height: 36px;
	right: 2.5%;
	top: 12px;
	background-image: url(../images/mobile_nav_icon.png);
	background-position: center;
	background-repeat: no-repeat;
	display: none;
}
nav.sticky {
	position: fixed;
}
nav ul.main, nav ul li.main, nav ul li.main a {
	height: 100%;
}
nav ul li {
	position: relative;
}
nav ul li.main {
	display: inline-block;
}
nav ul li a {
	font-family: 'opensans_regular';
	letter-spacing: 1px;
	font-weight: bold;
	text-transform: uppercase;
}
nav ul li.main a {
	padding: 0 20px;
	font-size: 14px; 
}
nav ul li ul {
	position: absolute;
	width: 200px;
	top: 0;
	left: 100%;
	visibility: hidden;
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
}
nav ul li.main ul.first {
	top: 100%;
	left: 0;
}
nav ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	-webkit-opacity: 1;
	-moz-opacity: 1;
}
nav ul li.sub a {
	font-size: 13px;
	text-align: left;
	padding: 12px 20px;
}
nav ul li.sub:not(:last-child) {
	border-bottom: 1px dashed #8e8e8e;
}
nav ul li.sub a.hasSub {
	background-image: url(../images/nav_arrow.png);
	background-position: right 12px center;
	background-repeat: no-repeat;
}

#mainSlider {
	height: 400px;
	height: calc(100% - 180px);
	height: -webkit-calc(100% - 180px);
	height: -moz-calc(100% - 180px);
	position: relative;
	overflow: hidden;
}
#mainSlider.inner {
	text-align: center;
	height: 350px;
	background-position: center;
	background-size: cover;
}
#mainSlider.inner h1, #mainSlider.inner h2 {
	margin-bottom: 0;
}
#mainSlider.inner .blackOverlay {
	background: rgba(0,0,0,.5);
}
#mainSlider.inner .table {
	position: relative;
}
#mainSlider.sticky {
	margin-top: 60px;
}
#mainSlider #slidesContainer {
	height: 100%;
	position: relative;
}
#mainSlider #slidesContainer .slide {
	position: absolute;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	visibility: hidden;
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	transform: scale(1.1,1.1);
	-webkit-transform: scale(1.1,1.1);
	-moz-transform: scale(1.1,1.1);
	-ms-transform: scale(1.1,1.1);
	-o-transform: scale(1.1,1.1);
	transition: all 1.5s;
	-webkit-transition: all 1.5s;
	-moz-transition: all 1.5s;
	-o-transition: all 1.5s;
}
#mainSlider #slidesContainer .slide .messageBox {
	position: absolute;
	bottom: 8.8%;
	left: 13.9%;
	font-family: 'opensans_regular';
}
#mainSlider #slidesContainer .slide .messageBox h2 {
	display: inline-block;
	margin-bottom: 0;
	background: #f58220;
	padding: 7px 13px;
	font-size: 16px;
	color: #000;
}
#mainSlider #slidesContainer .slide .messageBox .desc {
	width: 262px;
	background: rgba(77,105,168,.9);
	padding: 7px 13px;
	font-size: 14px;
	color: #fff;
	line-height: 22px;
	position: relative;
}
#mainSlider #slidesContainer .slide .messageBox .desc a {
	display: inline-block;
	color: #fff;
	text-decoration: underline;
}
#mainSlider #slidesContainer .slide .messageBox .desc a.viewMore {
	display: block;
	text-decoration: none;
	position: absolute;
	bottom: 0;
	right: 0;
	background: #f58220;
	padding: 2px 5px;
	font-size: 10px;
	color: #000;
}
#mainSlider #slidesContainer .slide .messageBox .desc img {
	max-width: 100%;
}
#mainSlider #slidesContainer .slide .messageBox .desc ul {
	list-style: disc;
}
#mainSlider #slidesContainer .slide .messageBox .desc a.viewMore:hover {
	background: #5d6162;
	color: #fff;
}
#mainSlider #slidesContainer .slide .messageBox .desc a.viewMore:before {
	content: "VIEW MORE";
}
#mainSlider #slidesContainer .slide.active {
	visibility: visible;
	opacity: 1;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-ms-transform: scale(1,1);
	-o-transform: scale(1,1);
}
#mainSlider #slidesDots {
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
	text-align: center;
	cursor: default;
	display: none;
}
#mainSlider #slidesDots a {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid #fff;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	margin: 0 3px;
}
#mainSlider #slidesDots a:hover, #mainSlider #slidesDots a.active {
	background: #fff;	
}
#mainSlider a.navNext {
	right: 10px;
}
#mainSlider a.navPrev {
	left: 10px;
}

article {
	padding: 60px 0;
}
article ul {
	list-style: disc;
	margin: 15px 0;
}
article ul li {
	margin-left: 20px;
}
article ul li:not(:first-child) {
	margin-top: 15px;
}
article a {
	display: inline-block;
	text-decoration: underline;
}
article a:hover {
	text-decoration: none;
}
article img {
	max-width: 100%;
}
article .row:first-child {
	margin-bottom: 5%;
}
article section {
	float: left;
}
article section h1, article section h2, article section h3 {
	font-weight: normal;
}

article #template_a section, article #template_c .row:nth-child(2) section, article #template_d .row:first-child section, article #template_e .row:first-child section {
	width: 100%;
}
article #template_b section:first-child, article #template_c .row:first-child section:first-child, article #template_d .row:nth-child(2) section:first-child, article #template_d .row:nth-child(3) section:first-child, article #template_f .row:first-child section:first-child {
	width: 30%;
	margin-right: 5%;
}
article #template_b section:nth-child(2), article #template_c .row:first-child section:nth-child(2), article #template_d .row:nth-child(2) section:nth-child(2), article #template_d .row:nth-child(3) section:nth-child(2), article #template_f .row:first-child section:nth-child(2) {
	width: 65%;
}
article #template_d.project .row:nth-child(2) section:first-child, article #template_d.project .row:nth-child(2) section:nth-child(2) {
	width: 30%;
}
article #template_e .row:nth-child(2) section, article #template_f .row:nth-child(2) section {
	width: 30%;	
}
article #template_e .row:nth-child(2) section:not(:nth-child(3)), article #template_f .row:nth-child(2) section:not(:nth-child(3)), article #template_d.project .row:nth-child(2) section:nth-child(2) {
	margin-right: 5%;
}

article .downloadBtns {
	padding-top: 15px;
}
article .downloadBtns input {
	float: left;
	min-width: 140px; 
	margin-right: 5px;
	margin-bottom: 5px;
}
article .downloadBtns input.downloadFile {
	background-image: url(../images/download_icon.png);
	background-position: left 10px center;
	background-repeat: no-repeat;
	padding-left: 35px;
	padding-right: 10px;
}

article iframe {
	width: 100%;
	height: 500px;
}
.g-recaptcha iframe {
	height: 78px;
}

article ol.floorplans {
	text-align: center;
	position: relative;
	min-height: 200px;
}
article ol.floorplans a.navNext, article ol.floorplans a.navPrev {
	position: absolute;
	top: 50%;
	width: 38px;
	height: 62px;
	margin-top: -31px;
	background-size: 100%;
}
article ol.floorplans a.navNext {
	right: 0;
}
article ol.floorplans a.navPrev {
	left: 0;
	display: none;
}
article ol.floorplans li:not(:last-child) {
	margin-bottom: 15px;
}
article ol.floorplans li .img {
	display: inline-block;
	max-width: 100%;
	position: relative;
}
article ol.floorplans li .img img {
	max-width: 100%;
}
article ol.floorplans li .img .titleContainer h3 {
	text-align: center;
}

article ol.floorplans2 a {
	float: left;
	width: 32%;
	margin-right: 2%;
	margin-bottom: 2%;
	position: relative;
	background-position: center;
	background-size: cover;
	overflow: hidden;
	transition: opacity .5s;
	-webkit-transition: opacity .5s;
	-moz-transition: opacity .5s;
	-o-transition: opacity .5s;
}
article ol.floorplans2 a:nth-child(3n) {
	margin-right: 0;	
}
article ol.floorplans2 a .date {
	position: absolute;
	z-index: 100;
	bottom: 0;
	width: 100%;
	padding: 5px 3px;
	font: 12px Arial;
	font-weight: bold;
	text-align: center;
	color: #fff;
	background: rgba(0,0,0,.8);
}
article ol.floorplans2 a:hover {
	opacity: .8;
	-webkit-opacity: .8;
	-moz-opacity: .8;
}

article #comments {
	margin-bottom: 25px;
}
article #comments .comment {
	font-size: 13px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
article #comments .comment .name {
	font-weight: bold;
	margin-bottom: 5px;
}
article #comments .comment .name .date {
	font-weight: normal;
	font-style: italic;
}

article form {
	width: 100%;
	max-width: 550px;
}

article #share {
	margin-top: 25px;
	height: 32px;
}
article #share .txt, article #share a {
	height: 100%;
	float: left;
	margin-right: 5px;
}

form input[type=text], form input[type=email], form input[type=tel], form select, form textarea {
	width: 100%;
	border-width: 1px;
	border-style: solid;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	padding: 10px;
	font: 14px Arial;
	margin-bottom: 10px;
}
form input.half {
	width: 48%;
}
form input.half:first-child {
	float: left;
}
form input.half:nth-child(2) {
	float: right;
}
form textarea {
	height: 100px;
}
form .outputMsg {
	margin-top: 10px;
	font-weight: bold;
}
form .inputContainer {
	position: relative;
}
form .inputContainer input[type=file] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
}

#featured {
	margin-top: 25px;
}
#featured h2 {
	text-align: center;
}

#entries {
	position: relative;
	visibility: hidden;
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
}
#entries.active {
	visibility: visible;
	opacity: 1;
	-webkit-opacity: 1;
	-moz-opacity: 1;
}
#entries a {
	float: left;
	width: 30%;
	margin-right: 5%;
	margin-bottom: 5%;
	position: relative;
	overflow: hidden;
}
#entries a.new {
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
}
#entries a:nth-child(3n) {
	margin-right: 0;
}
#entries a .img {
	height: 100%;
	background-position: center;
	background-size: cover;
}
#entries a .hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,144,255,0);
}
#entries a:hover .hover {
	background: rgba(0,144,255,.4);
}
#entries a .titleContainer {
	transform: translate(0,70%);
	-webkit-transform: translate(0,70%);
	-moz-transform: translate(0,70%);
	-ms-transform: translate(0,70%);
	-o-transform: translate(0,70%);
	height: 125px;
}
#entries a:hover .titleContainer {
	transform: translate(0,0);
	-webkit-transform: translate(0,0);
	-moz-transform: translate(0,0);
	-ms-transform: translate(0,0);
	-o-transform: translate(0,0);
}

#entries .loadingIcon {
	top: auto;
	bottom: -30px;
	margin-top: 0;
}
#entries .clearLeft {
	clear: left;
}

#contact .floatLeft, #contact .floatRight {
	width: 45%;
}
#contact #contactInfo {
	margin: 40px 0;
}
#contact #contactInfo a {
	background-position: left center;
	background-repeat: no-repeat;
	padding-left: 55px;
	background-size: 33px auto;
}
#contact #contactInfo a:first-child {
	margin-bottom: 30px;
}
#contact #socialIcons a {
	float: left;
	width: 38px;
	height: 38px;
	border-style: solid;
	border-width: 1px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 20px 20px;
}
#contact #socialIcons a:not(:nth-last-child(2)) {
	margin-right: 9px;	
}
#contact #socialIcons a:hover {
	opacity: .8;
	-webkit-opacity: .8;
	-moz-opacity: .8;
}

#map {
	margin-top: 30px;
	height: 400px;	
}

footer {
	margin-top: 35px;
	text-align: center;
	height: 65px;
	position: relative;
}
footer a {
	display: inline-block;
	margin: 0 10px;
}
footer #poweredBy {
	position: absolute;
	width: 80px;
	bottom: 5px;
	right: 5px;
	font: 10px Arial;
	color: #323132;
	text-align: center;
}
footer #poweredBy a {
	margin: 5px 0 0;
	display: block;
}

#contact article .container {
	width: 100%;
}

#contactFormContainer {
	position: fixed;
	left: -250px;
	top: 50%;
	margin-top: -202px;
	width: 250px;
	z-index: 1500;
}
#contactFormContainer.active {
	transform: translate(250px,0);
	-webkit-transform: translate(250px,0);
	-moz-transform: translate(250px,0);
	-ms-transform: translate(250px,0);
	-o-transform: translate(250px,0);
}
#contactFormContainer form {
	background: #fff;
	padding: 20px;
	box-shadow: 0 0 5px rgba(0,0,0,.4);
	-webkit-box-shadow: 0 0 5px rgba(0,0,0,.4);
	-moz-box-shadow: 0 0 5px rgba(0,0,0,.4);
}
#contactFormContainer a.enquiry {
	background: #f38130;
	font-size: 16px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff;
	font-weight: bold;
	position: absolute;
	left: 210px;
	top: 50%;
	width: 120px;
	height: 40px;
	text-align: center;
	margin-top: -20px;
	box-shadow: 0 3px 5px rgba(0,0,0,.4);
	-webkit-box-shadow: 0 3px 5px rgba(0,0,0,.4);
	-moz-box-shadow: 0 3px 5px rgba(0,0,0,.4);
	transform: rotate(-90deg) translate3d(0,0,0);
	-webkit-transform: rotate(-90deg) translate3d(0,0,0);
	-moz-transform: rotate(-90deg) translate3d(0,0,0);
	-ms-transform: rotate(-90deg) translate3d(0,0,0);
	-o-transform: rotate(-90deg) translate3d(0,0,0);
}
#contactFormContainer a.enquiry:hover {
	background: #f89854;
}
#contactFormContainer a.close {
	background: url(../images/popup_close_btn2.png) center no-repeat;
	position: absolute;
	right: -40px;
	top: 0;
	width: 40px;
	height: 40px;
	text-align: center;
	visibility: hidden;
}
#contactFormContainer.active a.close {
	visibility: visible;
}
#contactFormContainer2 {
	float: left;
	width: 30%;
	background: #efefef;
	padding: 12px 24px;
}
#contactFormContainer2 h2 {
	text-align: center;
	font: 25px 'Tahoma';
	font-weight: bold;
	color: #333;
	margin-bottom: 11px;
}
#contactFormContainer2 input:not([type=submit]), #contactFormContainer2 textarea {
	background: #fff;
	font: 12px Tahoma;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	padding: 6px;
	border: none;
}
#contactFormContainer2 input[type=submit] {
	width: 100%;
}
#contactFormContainer2 .outputMsg {
	font-weight: normal;
	font-size: 12px;
	text-align: center;
}

#portfolio_overlay {
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(87,88,91,.9);
	text-align: center;
	overflow: hidden;
	display: none;
}
#portfolio_overlay .loadingPortfolioIcon {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	margin-left: -25px;
	background: url(../images/loading_icon2.png);
	background-size: 100%;
}
#portfolio_overlay .anim {
	position: absolute;
	top: 0;
	left: 0;
	width: 100000px;
	height: 100%;
}
#portfolio_overlay .anim ul, #portfolio_overlay .anim ul li {
	height: 100%;
}
#portfolio_overlay .anim ul {
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
}
#portfolio_overlay .anim ul.active {
	opacity: 1;
	-webkit-opacity: 1;
	-moz-opacity: 1;
}
#portfolio_overlay .anim ul li {
	float: left;
}
#portfolio_overlay .anim ul li img {
	max-width: 75%;
	max-height: 560px;
	margin: 0 auto;
}
#portfolio_overlay .anim ul li h3 {
	font: 1em 'opensans_regular';
	text-transform: none;
	color: rgba(255,255,255,.85);
	margin: .3em auto 0;
	width: 90%;
	max-width: 800px;
}
#portfolio_overlay a.navNext, #portfolio_overlay a.navPrev {
	position: absolute;
	top: 50%;
	width: 2.2em;
	margin-top: -1em;	
}
#portfolio_overlay a.navNext:hover, #portfolio_overlay a.navPrev:hover {
	transform: scale(1.1,1.1);
	-webkit-transform: scale(1.1,1.1);
	-moz-transform: scale(1.1,1.1);
	-ms-transform: scale(1.1,1.1);
	-o-transform: scale(1.1,1.1);
}
#portfolio_overlay a.navNext {
	right: 1.5em;
}
#portfolio_overlay a.navPrev {
	left: 1.5em;
}
#portfolio_overlay a.close {
	position: absolute;
	top: 1.5em;
	right: 1.5em;
	width: 2.2em;
}
#portfolio_overlay a.close img, #portfolio_overlay a.navNext img, #portfolio_overlay a.navPrev img {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
#portfolio_overlay a.close:hover {
	transform: rotate(180deg) scale(1.1,1.1);
	-webkit-transform: rotate(180deg) scale(1.1,1.1);
	-moz-transform: rotate(180deg) scale(1.1,1.1);
	-ms-transform: rotate(180deg) scale(1.1,1.1);
	-o-transform: rotate(180deg) scale(1.1,1.1);
}

@media screen and (max-width:1024px) {
	body, .titleContainer h3 {
		font-size: 13px;
	}
	h1, h2, h3 {
		margin-bottom: 19px;
	}
	h1 {
		font-size: 27px;
	}
	h2 {
		font-size: 23px;
	}
	h3 {
		font-size: 15px;
	}
	header #headerInfo {
		/*padding-right: 38px;
		margin-right: 23px;*/
	}
	header #headerInfo .icon {
		width: 36px;
		height: 36px;
		background-size: 18px 18px;
		margin-right: 15px;
	}
	header #headerInfo .info {
		line-height: 19px;
	}
	nav ul li.main a {
		padding: 0 15px;
		font-size: 11px;
	}
	nav ul li.sub a, input[type=submit], input[type=button], article #comments .comment {
		font-size: 10px;
	}
	form input[type=text], form input[type=email], form input[type=tel], form select, form textarea, .titleContainer {
		font-size: 11px;
	}
	#mainSlider.inner {
		height: 270px;
	}
	#map {
		height: 300px;
	}
	article {
		padding: 45px 0;
	}
	article iframe {
		height: 375px;
	}
	#featured {
		margin-top: 18px;
	}
	.sep {
		margin: 27px 0;
	}
	#map {
		margin-top: 23px;
	}
	footer {
		margin-top: 27px;
	}
	#contact #contactInfo a {
		background-size: 25px auto;
		padding-left: 42px;
	}
	#contact #socialIcons a {
		width: 29px;
		height: 29px;
		background-size: 15px 15px;
	}
	.loadingIcon {
		width: 45px;
		height: 45px;
		margin-left: -27px;
		margin-top: -27px;
	}
	#entries a .titleContainer {
		transform: translate(0,0);
		-webkit-transform: translate(0,0);
		-moz-transform: translate(0,0);
		-ms-transform: translate(0,0);
		-o-transform: translate(0,0);
		height: auto;
	}
}

@media screen and (max-width:768px) {
	.mobileContent {
		display: block;
	}
	.desktopContent {
		display: none;
	}
	.floatLeft, .floatRight {
		float: none;
		width: 100%;
	}
	a.scrollPage {
		width: 20px;
		height: 20px;
	}
	header {
		height: auto;
		padding: 20px 0;
	}
	header #logo {
		width: 150px;
		margin: 0 auto;
	}
	header .floatRight {
		margin-top: 10px;
		height: 63px;
	}
	header .ad {
		height: auto;
		margin-left: 0;
	}
	header #headerInfo {
		background: none;
		padding-right: 0;
		margin-right: 0;
	}
	header #flags {
		float: right;
	}
	nav a.mobile {
		display: block;
	}
	nav {
		height: auto;
	}
	nav ul.main {
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		display: none;
		overflow-y: auto;
	}
	nav ul.main, nav ul li.main, nav ul li.main a {
		height: auto;
	}
	nav ul li {
		position: static;
		border-bottom: 1px solid #8e8e8e;
	}
	nav ul li.main {
		display: block;
	}
	nav ul li.main a, nav ul li.sub a {
		text-align: center;
		padding: 20px 5px;
	}
	nav ul li ul {
		position: static;
		width: auto;
		top: 0;
		left: 0;
		visibility: visible;
		opacity: 1;
		-webkit-opacity: 1;
		-moz-opacity: 1;
		display: none;
	}
	nav ul li.main ul.first {
		top: 0;
	}
	nav ul li:hover>ul, nav ul li:active>ul {
		display: block;
	}
	nav ul li.sub a.hasSub {
		background-image: url(../images/nav_arrow_down.png);
	}
	
	article #template_b section:first-child, article #template_c .row:first-child section:first-child, article #template_d .row:nth-child(2) section:first-child, article #template_f .row:nth-child(2) section:first-child, article #template_f .row:nth-child(2) section:nth-child(2), article #template_e .row:first-child section:first-child, article #template_e .row:nth-child(2) section:first-child, article #template_e .row:nth-child(2) section:nth-child(2) {
		margin-bottom: 5%;
	}
	article #template_b section:first-child, article #template_c .row:first-child section:first-child, article #template_d .row:nth-child(2) section:first-child, article #template_f .row:first-child section:first-child {
		width: 100%;
		margin-right: 0;
	}
	article #template_b section:nth-child(2), article #template_c .row:first-child section:nth-child(2), article #template_d .row:nth-child(2) section:nth-child(2), article #template_f .row:first-child section:nth-child(2), article #template_e .row:nth-child(2) section, article #template_f .row:nth-child(2) section, article #template_d.project .row:nth-child(2) section:first-child, article #template_d.project .row:nth-child(2) section:nth-child(2) {
		width: 100%;
	}
	article #template_e .row:nth-child(2) section:not(:nth-child(3)), article #template_f .row:nth-child(2) section:not(:nth-child(3)), article #template_d.project .row:nth-child(2) section:nth-child(2) {
		margin-right: 0;
	}
	#entries a {
		width: 47.5%;
	}
	#entries a:nth-child(3n) {
		margin-right: 5%;
	}
	#entries a:nth-child(2n) {
		margin-right: 0;
	}
	#contact .floatLeft, #contact .floatRight {
		width: 100%;
	}
	#contact .floatRight {
		margin-top: 27px;
	}
	form input.half:first-child, form input.half:nth-child(2) {
		width: 100%;
		float: none;
	}
	footer {
		height: auto;
	}
	footer a {
		display: block;
		padding: 20px 5px;
		margin: 0;
	}
	footer a:not(:last-child) {
		border-bottom: 1px solid #000;
	}
	footer #poweredBy {
		position: static;
		top: 0;
		left: 0;
		margin: 0 auto;
		padding: 20px 0;
	}
	footer #poweredBy a {
		padding: 0;
		margin: 5px 0 0;
	}
	#mainSlider #slidesContainer .slide .messageBox h2 {
		padding-left: 35px;
		background-image: url(../images/slider_message_mobile_icon.png);
		background-position: left 10px center;
		background-repeat: no-repeat;
	}
	#mainSlider #slidesContainer .slide .messageBox .desc {
		display: none;
	}
	#mainSlider #slidesContainer .slide .messageBox .desc a.viewMore {
		width: 100%;
		text-align: center;
	}
	#contactFormContainer2 {
		width: 100%;
		min-width: 0;
		max-width: 450px;
		margin-top: 45px;
	}
	#contactFormContainer2 h2 {
		font-size: 18px;
	}
	#contactFormContainer2 input:not([type=submit]), #contactFormContainer2 textarea, #contactFormContainer2 .outputMsg {
		font-size: 11px;
	}
}

@media screen and (max-width:600px) {
	header .floatRight {
		height: auto;
	}
	header #headerInfo, header #flags, header .ad {
		height: 40px;
		float: none;
		text-align: center;
	}
	header .ad {
		height: auto;
	}
	header #headerInfo .iconContainer, header #headerInfo .info, header #flags a {
		display: inline-block;
		float: none;
	}
	header #headerInfo .info {
		text-align: left;
	}
	article iframe {
		height: 282px;
	}
	article #share {
		text-align: center;
		height: auto;
	}
	article #share .txt {
		display: block;
		margin-bottom: 10px;
	}
	article #share .txt, article #share a {
		float: none;
		height: auto;
	}
	article #share a {
		display: inline-block;
	}
	article ol.floorplans2 a {
		width: 49%;
	}
	article ol.floorplans2 a:nth-child(3n) {
		margin-right: 2%;	
	}
	article ol.floorplans2 a:nth-child(2n) {
		margin-right: 0;	
	}
}
@media screen and (max-width:425px) {
	article .downloadBtns input {
		float: none;
		width: 100%;
	}
	article .downloadBtns input.downloadFile {
		padding-right: 35px;
	}
}