@import url(/css/reset.css);
@import url(/css/text.css);
/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/

/* Table of Content
==================================================
	#Site Styles
	#Page Styles
	#Media Queries
	#Font-Face */

/* #Site Styles
================================================== */
html {
	height: 100%;
}

body {
	font:
		16px/22px "futura-pt",
		Arial,
		sans-serif;
	color: #2e3652;
	background: #e6e7eb;
	height: 100%;
}

h2 {
	font-weight: normal;
	font-size: 34px;
	line-height: 1.1em;
}

h3 {
	font-weight: normal;
	font-size: 24px;
	line-height: 1.1em;
}

.resizeimg {
	max-width: 100%;
	height: auto;
}

.animatein {
	visibility: hidden;
}

.pageborder {
	position: fixed;
	background: #fff;
	z-index: 1000;
}

.topborder {
	top: 0;
	left: 0;
	width: 100%;
	height: 20px;
	transform-origin: top left;
}

.rightborder {
	top: 0;
	right: 0;
	width: 20px;
	height: 100vh;
	transform-origin: top right;
}

.bottomborder {
	bottom: 0;
	right: 0;
	width: 100%;
	height: 20px;
	transform-origin: bottom left;
}

.leftborder {
	top: 0;
	left: 0;
	width: 20px;
	height: 100vh;
	transform-origin: top left;
}

.downarrow {
	position: absolute;
	bottom: 40px;
	left: 0;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	padding-bottom: 30px;
	background: bottom center no-repeat url(/img/ui/downarrow.svg);
	background-size: auto 15px;
	cursor: pointer;
}

.caption {
	position: absolute;
	bottom: 20px;
	right: 20px;
	color: #fff;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.44);
}

/**** nav ****/
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	box-sizing: border-box;
	padding: 40px 20px 20px 20px;
	width: 100%;
	height: 108px;
	text-align: center;
	z-index: 950;
}

.navbar {
	background: #e6e7eb;
}

.navbar path {
	fill: #3c4664;
}

.navbutton {
	display: block;
	position: fixed;
	width: 72px;
	height: 68px;
	padding: 20px;
	top: 20px;
	right: 30px;
	cursor: pointer;
	box-sizing: border-box;
	z-index: 970;
}

.navbutton .navicon {
	position: relative;
	width: 100%;
	height: 100%;
}

.navbutton .navicon span {
	display: block;
	width: 100%;
	height: 2px;
	background: #3c4664;
	position: absolute;
	transition:
		top 0.2s 0.2s,
		transform 0.2s,
		opacity 0.2s 0.2s,
		background 0.5s;
}

.navbutton .navicon span:nth-child(1) {
	top: 15px;
}

.navbutton .navicon span:nth-child(2) {
	top: 23px;
	transform-origin: 50% 50%;
}

.navbutton .navicon span:nth-child(3) {
	top: 31px;
	transform-origin: 50% 50%;
}

.navholder {
	position: fixed;
	top: 0;
	right: 20px;
	font-size: 20px;
	overflow: hidden;
	height: 100vh;
	width: 0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	z-index: 960;
	transition: width 0.5s;
}

.nav {
	width: 30vw;
	height: 100vh;
	display: flex;
	align-items: center;
	background: #252c43;
	box-sizing: border-box;
	padding: 40px;
}

.nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.nav ul li {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 4px 0;
	margin: 0;
}

.nav ul li:first-child {
	border-top: none;
}

.nav ul li:last-child {
	border-bottom: none;
}

.nav ul li a {
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 8px 16px;
	line-height: 1em;
	background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%);
}

.nav ul li a:hover {
	background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 100%);
	transition:
		background 0.2s,
		color 0.2s;
}

.nav a.hassub {
	position: relative;
	cursor: pointer;
}

.nav a.hassub:after {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	transform-origin: 50% 50%;
	background: 50% 50% no-repeat url(/img/ui/navarrow.svg);
	background-size: contain;
	position: absolute;
	right: 10px;
	top: 10px;
	transition: transform 0.2s;
}

.nav.showsub a.hassub:after {
	transform: rotate(-180deg);
}

.nav .subnav {
	font-weight: 700;
	text-transform: none;
	font-size: 14px;
	line-height: 1em;
	padding-left: 16px;
	overflow: hidden;
	transition: max-height 0.2s;
	max-height: 0;
}

.nav .subnav li {
	border: none;
}

.nav.showsub .subnav {
	max-height: 150px;
}

.navoverlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 0;
	opacity: 0;
	height: 100vh;
	background: rgba(60, 70, 100, 0.8);
	z-index: 955;
	transition:
		opacity 0.5s 0s,
		width 0s 0.5s;
}

.s0 .navbar {
	background: transparent;
}

.s0 .navbar path {
	fill: #fff;
}

.s0 .navbutton .navicon span {
	background: #fff;
}

.s1.p10 {
	background: #f1dade;
}

.s1.p10 .navbar {
	background: #f1dade;
}

.s1.p10 .navbar path {
	fill: #77132d;
}

.s1.p10 .navbutton .navicon span {
	background: #77132d;
}

.s1.p10 h2,
.s1.p10 h3 {
	color: #77132d;
}

.s1.p14 {
	background: #dde2db;
}

.s1.p14 .navbar {
	background: #dde2db;
}

.s1.p14 .navbar path {
	fill: #2a4e1d;
}

.s1.p14 .navbutton .navicon span {
	background: #2a4e1d;
}

.s1.p14 h2,
.s1.p14 h3 {
	color: #2a4e1d;
}

.s1.p17 {
	background: #f2d5c5;
}

.p143 {
	background: #c6dcd7;
}

.s1.p17 .navbar {
	background: #f2d5c5;
}

.s1.p17 .navbar path {
	fill: #d57440;
}

.s1.p17 .navbutton .navicon span,
.s1.p17 .text .buttonlink {
	background: #d57440;
}

.s1.p17 h2,
.s1.p14 h3 {
	color: #d57440;
}

.s0 .nav .n0,
.s1 .nav .n1,
.s2 .nav .n2,
.s3 .nav .n3,
.s4 .nav .n4 {
	color: #5c6b99;
}

.nav .let span {
	opacity: 0.4 !important;
}

.menuopen .navbutton .navicon span {
	transition:
		top 0.2s,
		transform 0.2s 0.2s,
		opacity 0s 0.2s,
		background 0.5s;
	box-shadow: none;
	background: #fff !important;
}

.menuopen .navbutton .navicon span:nth-child(1) {
	border-color: transparent;
	top: 23px;
	opacity: 0;
}

.menuopen .navbutton .navicon span:nth-child(2) {
	border-color: transparent;
	top: 23px;
	transform: rotate(-45deg);
}

.menuopen .navbutton .navicon span:nth-child(3) {
	border-color: transparent;
	top: 23px;
	transform: rotate(45deg);
}

.menuopen .navholder {
	width: 30vw;
}

.menuopen .navhide {
	height: 100vh;
}

.menuopen .nav li a {
	top: 0;
	opacity: 1;
}

.menuopen .nav .navgrad {
	opacity: 1;
}

.menuopen .navoverlay {
	opacity: 1;
	width: 100%;
	transition:
		opacity 0.5s 0s,
		width 0s 0s;
}

.pic {
	background: 50% 50% no-repeat;
	background-size: cover;
	position: relative;
}

a.pic {
	display: block;
}

.buttonlink {
	display: inline-block;
	border: 1px solid #fff;
	padding: 16px 32px;
	margin-top: 10px;
	cursor: pointer;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
}

.buttonlink:hover {
	text-decoration: underline;
}

.blue-btn {

	color: #1A2B4B;
	text-decoration: none;
}

.redtext {
	color: #77132d;
}

.greentext {
	color: #2a4e1d;
}

.orangetext {
	color: #d57440;
}

.wholepage {
	padding: 108px 20px 0px 20px;
}

.pinktext {
	color: #bb8996;
}

.lightgreentext {
	color: #95a78e;
}

.lightorangetext {
	color: #f2d5c5;
}

/**** contact ****/
.contact {
	position: relative;
	min-height: calc(100vh - 108px);
	box-sizing: border-box;
	padding: 100px 10vw;
	display: flex;
	align-items: center;
	background: #E6E7EB;
	color: #1A2B4B;
}

.contact h2 {
	color: #1A2B4B !important;
}

.contact:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 50% 50% no-repeat url(/img/content/logomark.svg) fixed;
	background-size: 85vw auto;
	opacity: 0.05;
}

.contact .buttonlink {
	margin: 0;
}

.contact b {
	display: inline-block;
	margin-bottom: 10px;
}

.contactcontent {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	flex: 0 0 100%;
	position: relative;
	z-index: 50;
}

.contact .header {
	margin-bottom: 40px;
}

.agencies {
	display: flex;
}

.agency {
	flex: 0 0 50%;
	box-sizing: border-box;
	padding: 0 0 0 10%;
}

.agency:first-child {
	border-right: 1px solid #1A2B4B;
	padding: 0 10% 0 0;
}

.agentlogo {
	display: block;
	width: 140px;
	height: 70px;
	background: left center no-repeat;
	background-size: contain;
	margin-bottom: 40px;
}

.agents {
	display: flex;
}

.agent {
	margin-right: 20px;
	min-width: 45%;
}

.misrep {
	font-size: 11px;
	line-height: 13px;
	color: #1A2B4B;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 40px 10vw;
	z-index: 50;
}

.misrep a {
	color: #1A2B4B;
}

/* #Page Styles
================================================== */

/**** home ****/
.s0 {
	background: #3c4664;
	color: #fff;
}

.intrologoholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}

.intrologo {
	position: relative;
	width: 100%;
	height: 100vh;
}

.intrologoinner {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: 50% 50% no-repeat url(/img/content/logofull.svg);
	background-size: 55% auto;
}

.homesection {
	box-sizing: border-box;
	padding: 20px;
	position: relative;
	min-height: 100vh;
	overflow-x: hidden;

	@media (max-width: 960px) {
		min-height: unset;
	}
}

.triangle {
	content: "";
	display: block;
	height: 100vh;
	width: 20vw;
	position: absolute;
	bottom: 0;
	z-index: 0;
}

.lefttriangle .triangle {
	background: bottom right no-repeat url(/img/ui/triangleleft.svg);
	left: 0;
	background-size: 20vw auto;
}

.righttriangle .triangle {
	background: bottom left no-repeat url(/img/ui/triangleright.svg);
	right: 0;
	background-size: 20vw auto;
}

.dark-blue-back {
	background-color: #1a2b4b;
}

.homesection.textpic {
	display: flex;
	align-items: center;
	padding: 0;
}

.homesection-padd {
	padding: 7.5vw !important;
}

.homesection.leftpic.textpic {
	flex-direction: row-reverse;
}

.home-one {
	background-color: #1a2b4b;
	display: flex;
	flex-direction: column;
	padding: 5.5vw 7.5vw;
	justify-content: center;
	align-items: center;

	h2 {
		padding-bottom: 5.5vw;
	}

	img {
		width: 600px;

		@media (max-width: 960px) {
			width: 100%;
		}
	}
}

.caro-wrapper {
	background-color: #1a2b4b;
	padding: 7.5vw;
}

.carousel {
	position: relative;
	width: 100%;
	aspect-ratio: 16/8;
	overflow: hidden;

}

.carousel-item {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	display: flex;
	justify-content: center;
	align-items: center;
	background-size: cover;

	&:nth-child(1) {
		background-position: bottom;
	}

	&:nth-child(3) {
		background-position: bottom;
	}

	&:nth-child(3) {
		background-position: bottom;
	}

	&:nth-child(5) {
		background-position: bottom;
	}

	/* &:nth-child(11){		
		background-position: bottom;
	} */
	&:nth-child(12) {
		background-position: bottom;
	}
}

.carousel-item.active {
	opacity: 1;
}

.carousel img {
	height: 100%;
	width: auto;
	display: block;
	object-position: 100% 100%;
}

.carousel-caption {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 10px;

	@media screen and (max-width: 960px) {
		display: none;
	}
}

.carousel-indicators {}

}

.carousel-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: none;
	padding: 10px 15px;
	cursor: pointer;
	z-index: 10;
}

.carousel-control.prev {
	left: 10px;
}

.carousel-control.next {
	right: 10px;
}

.number-svg {
	height: 50px !important;
	width: unset !important;
}

.number-svg-weaver {
	height: 40px !important;
	width: unset !important;
}

.home-flexbox {
	display: flex;
	justify-content: center;
	gap: 40px;
	width: 100%;
	padding-top: 50px;

	@media screen and (max-width: 960px) {
		flex-direction: column;
	}
}

.orangeSection {
	display: flex;
	height: 100vh;
	width: 100%;
	flex-direction: row !important;

	.image-wrapper {
		width: 75%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		background-size: cover;
		height: 100%;

		@media screen and (max-width: 960px) {
			display: none;

		}
	}

}

.orangeBanner {
	width: 25%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #D57440;
	height: 100%;
	flex-direction: column;

	@media screen and (max-width: 960px) {
		width: 100%;

	}

	.logo-wrapper {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;

		&.bottom {
			padding: 64px;
			background-color: #dd8f65;

			img {
				width: 300px;
			}
		}

		img {
			width: 400px;
			max-width: calc(100% - 64px);
		}

	}
}

.let-available {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 20px;
	width: 300px;
	padding-top: 25px;

	@media screen and (max-width: 960px) {
		width: 100%;
	}

	h2 {
		padding-bottom: 1.1vw;
	}
}

.main-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.explore {
	padding: 80px 0;
	width: 900px;
	text-align: center;

	@media screen and (max-width: 960px) {
		width: 100%;
	}

	h2 {
		padding-bottom: 1em;
	}
}

.green {
	color: #006f5a;
}

.orange {
	color: #D57440;
}

.cyan {
	color: #2078AA;
}

.green-top {
	border-top: #006F5A 16px solid;
}

.orange-top {
	border-top: #D57440 16px solid;
}

.cyan-top {
	border-top: #2078AA 16px solid;
}

.accordion {
	width: 900px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 10px;

	@media (max-width: 960px) {
		width: 100%;
	}
}

.accordion-cell {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 10px;
	line-height: 1em;
	margin: 0;
	border-bottom: 1px solid white;

	p {
		margin: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	&.available {
		background-color: white;
		color: black;
	}
}

.accordion-cell svg {
	width: 30px;
	margin-left: 10px;
}


.accordion-item {
	&:first-child {
		.accordion-header {
			background-color: #D67340;
		}
	}

	&:nth-child(2) {
		.accordion-header {

			background-color: #2078AA;
		}
	}

	&:nth-child(3) {
		.accordion-header {
			background-color: #006F5A;

		}
	}

	&:nth-child(5) {
		.accordion-header {

			background-color: #6D1D2E;

		}
	}

	&:nth-child(6) {
		.accordion-header {
			background-color: #C56347;

		}
	}

	&:nth-child(7) {
		.accordion-header {
			background-color: #66A7C7;

		}
	}

	&:nth-child(8) {
		.accordion-header {
			background-color: #334D23;

		}
	}

	.accordion-header {
		padding: 15px 0;
		cursor: pointer;
		text-align: center;

		h3 {
			line-height: 1em;
			margin: 0;
		}
	}


}

.accordion-content {
	display: none;
	padding: 15px;

}


.introcopy {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 7.5vw;
	flex-direction: column;
	gap: 20px;

	p {
		font-size: 20px;
		text-align: center;
	}
}

.textpic .hidepic {
	overflow: hidden;
	max-width: 100%;
}

.white {
	color: white;
	text-decoration: none;
}

.textpic .pic,
.textpic .hidepic {
	flex: 0 0 55vw;
	width: 55vw;
	height: 60vh;
	position: relative;
	z-index: 50;
}

.textpic .text {
	margin-right: 7.5vw;
	flex: 0 0;
	flex-basis: calc(100% - 62.5vw);
	position: relative;
	z-index: 50;
}

.text .leftpic.textpic .text {
	margin-left: 7.5vw;
	margin-right: 0;
	text-align: right;
}

.pic.lightbox:before {
	content: "";
	display: block;
	background: #252c43 55% 50% no-repeat url(/img/ui/play.svg);
	background-size: 20px auto;
	width: 80px;
	height: 80px;
	border-radius: 40px;
	position: absolute;
	top: calc(50% - 40px);
	left: calc(50% - 40px);
	transform-origin: 50% 50%;
	transition: transform 0.2s;
}

.pic.lightbox:hover:before {
	transform: scale(1.1);
}

.homesection.spacesection {
	padding: 7.5vw;
}

/*.spaceinner {height:80vh;display:flex;flex-direction:column;background:url(/img/content/home/aerial.png) 10vw top no-repeat;background-size:50vw;position:relative;z-index:50}*/
.spaceinner {
	height: 80vh;
	display: flex;
	flex-direction: column;
	background: url(/img/content/home/aerial17.png) top left no-repeat;
	background-size: 50vw;
	position: relative;
	z-index: 50;
}

.spaceinner h2 {
	text-align: right;
	padding: 3vw 0;
}

.buildingsquares {
	display: flex;
	text-align: center;
	flex: 1 1;
	justify-content: center;
}

.buildingsquare {
	flex: 0 0 60%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #fff;
	background: 50% 50% no-repeat;
	background-size: cover;
	position: relative;
	padding: 40px 0;
}

.buildingsquare:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	mix-blend-mode: multiply;
}

.buildingsquare.ten:before {
	background: #77132d;
}

.buildingsquare.fourteen:before {
	background: #2a4e1d;
}

/*.buildingsquare.seventeen:before {background:#d57440}*/
.buildingsquare.seventeen:before {
	background: rgba(183, 183, 183, 0.7);
}

.buildingsquare img {
	margin-bottom: 30px;
}

.buildingsquare:first-child {
	margin-right: 4%;
}

.squareinner {
	position: relative;
}

/**** buildings ****/
.buildingbanner {
	background: 50% 50% no-repeat;
	background-size: cover;
	position: relative;
	height: calc(100vh - 128px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: #fff;
}

.buildingbanner:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: bottom left no-repeat;
	background-size: contain;
}

.buildingbanner.redtriangle:before {
	background-image: url(/img/ui/trianglered.svg);
}

.buildingbanner.greentriangle:before {
	background-image: url(/img/ui/trianglegreen.svg);
}

.buildingbanner.orangetriangle:before {
	background-image: url(/img/ui/triangleorange.svg);
}

.buildingbanner.bluetriangle:before {
	background-image: url(/img/ui/triangleblue.svg);
}

.bannercontent {
	position: relative;
	padding: 20px 20px 7.5vw 20px;
}

.bannercontent img {
	margin-left: 5vw;
}

.bannercontent h1 {
	font-weight: normal;
	font-size: 5.5vw;
	line-height: 1em;
	margin: 40px 0 0 0;
	display: flex;
	align-items: center;
}

.bannercontent h1:before,
.bannercontent h1:after {
	content: "";
	background: #fff;
	height: 4px;
	flex: 0 0;
	position: relative;
}

.bannercontent h1:before {
	flex-basis: calc(5vw - 20px);
	margin-right: 20px;
}

.bannercontent h1:after {
	flex: 1 1;
	margin-left: 20px;
}

.bannercontent h1.letheading {
	font-size: 1.8em;
	line-height: 1em;
	margin: 0;
}

.bannercontent h1.letheading:before,
.bannercontent h1.letheading:after {
	background: none;
}

.buildingsection {
	display: flex;
	/* min-height: 100vh; */
}

.buildingsection.rightpic {
	flex-direction: row-reverse;
}

.buildingsection>.pic {
	flex: 0 0 50%;
}

.buildingsection .text {
	box-sizing: border-box;
	padding: 10vw;
	display: flex;
	flex-direction: column;
	flex: 0 0 50%;
	align-items: flex-start;
}

.buildingsection .text .pic {
	width: 100%;
	flex: 1 1;
	margin-top: 30px;
}

.keyfeatures {
	list-style-type: none;
}

.keyfeatures li {
	position: relative;
	margin: 0 0 5px 0;
	padding-left: 18px;
}

.left-crop {
	background-position: 25%;
}

.banner143 {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;

	.logo143 {
		margin-left: 0 !important;
		width: 500px;
	}

	@media screen and (max-width: 767px) {
		.logo143 {
			width: 300px;
			margin-left: 0;
		}

	}
}

.banner143.patern {
	background-image: url(/img/content/waver-bg.jpg);
	background-size: cover;
	background-position: center;
}

.greenText {
	color: #006f5a;
}

.greenBtn {

	color: #006f5a;
	border-color: #006F5A;
}

.keyfeatures li:before {
	content: "";
	display: block;
	position: absolute;
	top: 7px;
	left: 0;
	width: 8px;
	height: 8px;
	background: top left no-repeat;
	background-size: contain;
}

.keyfeatures.redlist li:before {
	background-image: url(/img/ui/bulletred.svg);
}

.keyfeatures.greenlist li:before {
	background-image: url(/img/ui/bulletgreen.svg);
}

.keyfeatures.orangelist li:before {
	background-image: url(/img/ui/bulletorange.svg);
}

.keyfeatures.cyanlist li:before {
	background-image: url(/img/ui/bulletcyan.svg);
}

.keyfeatures.whitelist li:before {
	background-image: url(/img/ui/bulletwhite.svg);
}

.buildinggallery {
	width: 100%;
	height: calc(100vh - 128px);
	position: relative;

}

.buildinggallery .cycle-slideshow {
	width: 100%;
	height: 100%;
}

.buildinggallery .slide {
	width: 100%;
	height: 100%;
}

.buildinggallery .slide-arrow {
	background: 50% 50% no-repeat;
	background-size: 10px auto;
	width: 60px;
	height: 80px;
	position: absolute;
	z-index: 500;
	cursor: pointer;
}

.buildinggallery .slide-arrow:hover {
	background-color: #fff !important;
}

.buildinggallery .slide-prev {
	bottom: 0;
	left: 0;
}

.buildinggallery .slide-next {
	bottom: 0;
	left: 60px;
}

.s1.p7 {
	background-color: white;



	.diamondBack {
		display: flex;
		justify-content: center;
		align-items: center;

		position: relative;

		img {
			margin: 0;
		}

		;

		.back {
			height: 60vh;

		}

		.logo7 {
			position: absolute;
			z-index: 2;
			width: 50%;
			margin: 0;
			display: flex;
			gap: 20px;
			flex-direction: column;
			top: 40%;

			img {
				width: 100%;
				max-width: 500px;
			}

			p {
				text-align: center;
				font-size: 14px;
				line-height: 16px;
			}
		}
	}

	.bluetext {
		color: #6384b2;
	}

	.footer {
		position: absolute;
		bottom: 0;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: #cbdde9;
		height: 150px;

		img {
			max-width: 300px;
			margin: 0;
		}
	}

	.blueBtn {
		color: #6384b2;
		border-color: #6384b2;
	}
}

.s1.p10 .slide-arrow {
	background-color: #f1dade;
}

.s1.p10 .slide-prev {
	background-image: url(/img/ui/leftarrowred.svg);
}

.s1.p10 .slide-next {
	background-image: url(/img/ui/rightarrowred.svg);
}

.s1.p14 .slide-arrow {
	background-color: #dde2db;
}

.s1.p14 .slide-prev {
	background-image: url(/img/ui/leftarrowgreen.svg);
}

.s1.p14 .slide-next {
	background-image: url(/img/ui/rightarrowgreen.svg);
}



.buildingplans {
	border-top: 20px solid #fff;
	box-sizing: border-box;
	min-height: calc(100vh - 108px);
	display: flex;
}

.buildingplans.alt {
	flex-direction: row-reverse;
}

.buildingplans .text {
	background: #fff;
	box-sizing: border-box;
	padding: 5vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1 1;
}

.buildingplans .plansholder {
	flex: 0 0 65vw;
}

.lessbotpad {
	padding: 10vw 10vw 5vw;
}

.lessbotpad.patern-2 {
	background-image: url(/img/content/patern-bg-2.png);
	background-size: cover;
	background-position: center;
}

.patern-2 {
	background-image: url(/img/content/patern-bg-2.png) !important;
	background-size: cover !important;
	background-position: center !important;
}

.spec-content {
	padding: 2vw;
	background-color: rgba(255, 255, 255, 1);
}	

.tabholder {
	display: flex;
	flex-direction: column;
}

.tabs {
	display: flex;
	height: 80px;
}

.tabs a {
	box-sizing: border-box;
	flex: 1 1 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.tabs a.active {
	text-decoration: underline;
}

.s1.p10 .tabs a {
	background-color: #fef1f2;
	color: #77132d;
}

.s1.p10 .tabs a.active {
	background-color: #f1dade;
}

.s1.p14 .tabs a {
	background-color: #f2f4f1;
	color: #2a4e1d;
}

.s1.p14 .tabs a.active {
	background-color: #dde2db;
}

.tabbody {
	flex: 1 1 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tabbody img {
	max-width: 80%;
	max-height: 80%;
}

.otherspace {
	min-height: calc(100vh - 128px);
	border-top: 20px solid #fff;
	border-bottom: 20px solid #fff;
	position: relative;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}

.otherspace .text {
	margin-left: 5vw;
}

.otherspace .buildingsquare {
	text-align: center;
	padding: 5vw;
	box-sizing: border-box;
	margin: 0 5vw;
	flex: 0 0 60vw;
	position: relative;
	z-index: 50;
}

.otherspace .triangle {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: bottom right no-repeat;
	background-size: contain;
	z-index: 0;
}

.otherspace.greenspace {
	background: #dde2db;
}

.otherspace.greenspace h2 {
	color: #2a4e1d;
}

.otherspace.greenspace .triangle {
	background-image: url(/img/ui/trianglegreenright.svg);
}

.otherspace.orangespace {
	background: #f2d5c5;
}

.otherspace.orangespace h2 {
	color: #d57440;
}

.otherspace.orangespace .triangle {
	background-image: url(/img/ui/triangleorangeright.svg);
}

.otherspace.redspace {
	background: #f1dade;
}

.otherspace.redspace h2 {
	color: #77132d;
}

.otherspace.redspace .triangle {
	background-image: url(/img/ui/triangleredright.svg);
}

/**** amenities ****/
.triangleicon {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 8vw 2vw 2vw 8vw;
	background: bottom right no-repeat url(/img/ui/triangleright.svg);
	background-size: contain;
}

.triangleicon img {
	width: 3vw;
	min-width: 20px;
	max-width: 50px;
}

/**** location ****/
.walkingman {
	background: top center no-repeat url(/img/content/connections/walk.svg);
	background-size: auto 40px;
	padding: 60px 20px 10px 20px;
	display: inline-block;
	border-bottom: 2px solid #fff;
	margin-bottom: 40px;
}

.locationmap {
	background: #1a2b4b;
	color: #fff;
	border-top: 20px solid #fff;
	border-bottom: 20px solid #fff;
	min-height: calc(100vh - 128px);
	box-sizing: border-box;
}

.locationmap .tabs a {
	background: #e6e7eb;
	color: #1a2b4b;
}

.locationmap .tabs a.active {
	color: #e6e7eb;
	background: #1a2b4b;
}

.mapinner {
	display: flex;
	align-items: center;
	padding: 0px 0 40px;
}

.maptext {
	padding: 0 40px 0 7.5vw;
	min-width: 200px;
}

.maptext ul {
	max-height: 0px;
	transition: max-height 0.5s;
	overflow: hidden;
	margin: 0;
}

.maptext ul.active {
	max-height: unset;
}

.maptext li {
	cursor: pointer;
}

.maptext li:hover {
	text-decoration: underline;
}

.map {
	flex: 1 1 100%;
	display: flex;
	justify-content: space-between;
}

.map .st0 {
	transition: fill 0.2s;
}

.map svg {
	flex: 1 1 100%;
	width: 80%;
	height: 100%;
}

.highlight {
	fill: #fff !important;
}

#dishoom.highlight {
	fill: #a9cd9c !important;
}

/****************************************************
* Misc
****************************/
/*hide social stuff and headings on prettyphoto*/
.ppt {
	display: none !important;
}

.pp_social {
	display: none !important;
}

.pp_description {
	display: none !important;
}

.smallText {
	font-size: 11px;
}

.smallprint {
	font-size: 11px;
	color: #bbbdc0;
}

.smallprint a {
	color: #bbbdc0;
}

.padTop {
	margin-top: 30px;
}

.largeText {
	font-size: 13px;
}

.superscript {
	vertical-align: baseline;
	font-size: 0.8em;
	position: relative;
	top: -0.4em;
}

.subscript {
	vertical-align: baseline;
	font-size: 0.8em;
	position: relative;
	top: 0.4em;
}

.vmiddle {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.caps {
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.num {
	text-align: right;
}

.buildingplans-swiper {
	position: relative;

	.building-button-wrapper {
		position: absolute;
		bottom: 0;
		z-index: 20;
		cursor: pointer;
		align-items: center;
		display: flex;
		gap: 8px;
		left: 5vw;

		.building-swiper-button-next,
		.building-swiper-button-prev {
			width: 50px;
			height: 50px;
		}

		.building-swiper-button-next {


			transform: rotate(90deg);
		}

		.building-swiper-button-prev {

			transform: rotate(-90deg);
		}

		.swiper-pagination {
			position: relative !important;
			display: flex;
			justify-content: center;
			align-items: center;
			top: unset !important;
			bottom: unset !important;

			.swiper-pagination-bullet {
				background-color: #d57440;
				width: 12px;
				height: 12px;
				margin: 0 5px;
			}
		}
	}

}


/* #Media Queries
================================================== */

/* biggest desktop */
@media only screen and (max-width: 1230px) {}

/* bigger desktop */
@media only screen and (min-width: 1100px) and (max-width: 1229px) {}

/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 1099px) {
	.nav {
		width: 40vw;
	}

	.menuopen .navholder {
		width: 40vw;
	}

	h2 {
		font-size: 30px;
		line-height: 1.2em;
	}

	.agency {
		padding: 0 0 0 40px;
		flex: 1 1;
	}

	.agency:first-child {
		padding: 0 40px 0 0;
	}

	.agent {
		min-width: auto;
		flex: 1 1;
	}
}

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {
	.topborder {
		height: 10px;
	}

	.rightborder {
		width: 10px;
	}

	.bottomborder {
		height: 10px;
	}

	.leftborder {
		width: 10px;
	}

	/**** nav ****/
	.nav {
		width: 60vw;
	}

	.navholder {
		right: 10px;
	}

	.menuopen .navholder {
		width: 60vw;
	}

	.navbar {
		padding-top: 30px;
		height: 98px;
	}

	.navbutton {
		top: 10px;
		right: 20px;
	}

	/**** home ****/
	.homesection.textpic,
	.homesection.leftpic.textpic {
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
	}

	.homesection.textpic.videosection {
		justify-content: flex-end;
	}

	.textpic .pic,
	.textpic .hidepic {
		width: 85vw;
		flex: 0 0 35vh;
		height: 35vh;
	}

	.textpic .text {
		margin: 0 0 40px 0;
	}

	.videosection.textpic .hidepic {
		margin-bottom: 10vh;
	}

	.triangle {
		width: 50vw;
	}

	.lefttriangle .triangle,
	.righttriangle .triangle {
		background-size: 50vw auto;
	}

	.homesection.spacesection {
		background: url(/img/content/home/aerialmob.png) top left no-repeat;
		background-size: 50vw auto;
	}

	.spaceinner {
		background: none;
		height: auto;
	}

	.spaceinner h2 {
		padding: 0 0 7.5vw 0;
	}

	.buildingsquares {
		flex-direction: column;
	}

	.buildingsquare:first-child {
		margin-right: 0;
	}

	.buildingsquare {
		margin: 0 0 40px 0;
		padding: 40px 0;
	}

	.downarrow {
		bottom: 20px;
	}

	/**** contact ****/

	.contact {
		flex-direction: column;
		align-items: flex-start;
	}

	.contact:before {
		background-size: 100vh;
	}

	.contactcontent {
		width: 100%;
	}

	.agencies {
		flex-direction: column;
		width: 100%;
	}

	.agency {
		padding: 40px 0;
	}

	.agency:first-child {
		padding: 40px 0;
		border-right: none;
		border-bottom: 1px solid #fff;
	}

	.misrep {
		position: relative;
		padding: 80px 0 0 0;
	}

	/**** availability ****/
	.wholepage {
		padding: 98px 10px 0px 10px;
	}

	.buildingbanner {
		height: calc(100vh - 108px);
	}

	.buildingbanner:before {
		width: 100%;
	}

	.buildingsection,
	.buildingsection.rightpic {
		flex-direction: column;
	}

	.buildingsection>.pic {
		flex: 0 0 50vh;
	}

	.buildingsection .text .pic {
		flex: 0 0 35vh;
	}

	.buildinggallery {
		height: 60vh;
	}

	.buildingplans {
		flex-direction: column;
	}

	.planwindow {
		min-height: 60vh;
	}

	.otherspace {
		flex-direction: column;
		align-items: stretch;
		justify-content: center;
	}

	.otherspace .text {
		margin: 5vw;
	}

	.otherspace .triangle {
		width: 100%;
	}

	/**** location ****/
	.mapinner {
		flex-direction: column;
		padding: 5vw;
		align-items: flex-start;
	}

	.maptext {
		padding: 0 0 40px 0;
	}
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
	h2 {
		font-size: 26px;
		line-height: 1.3em;
	}

	.navbar {
		text-align: left;
		padding-left: 30px;
	}

	.nav {
		width: 100vw;
	}

	.menuopen .navholder {
		width: 100vw;
	}

	.contact {
		font-size: 14px;
		line-height: 18px;
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.agents {
		flex-direction: column;
	}

	.agent {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin: 0 0 20px 0;
	}

	.agent:last-child {
		margin: 0;
	}

	.contact .header {
		margin: 0;
	}

	/*.contact .buttonlink {padding:8px 16px}*/

	/**** buildings ****/
	.buildingbanner {
		height: 120vw;
	}

	/*.bannercontent {padding-bottom:60px}*/
	.bannercontent img {
		margin-left: 40px;
		width: 100px;
	}

	.bannercontent h1 {
		font-size: 30px;
		line-height: 1em;
		margin-top: 20px;
	}

	.bannercontent h1:before {
		flex: 0 0 20px;
	}

	.bannercontent h1:after {
		flex: 1 1 30vw;
	}

	.buildingbanner .downarrow {
		display: none;
	}

	.tabs {
		height: auto;
		flex-direction: column;
	}

	.tabs a {
		padding: 10px;
		align-items: flex-start;
		justify-content: flex-start;
	}

	.triangleicon {
		padding: 60px 20px 20px 60px;
	}
}

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {}

/* #Font-Face
================================================== */
/* 	This is the proper syntax for an @font-face file
		Just create a "fonts" folder at the root,
		copy your FontName into code below and remove
		comment brackets */

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

.subnav a {
	cursor: pointer;
}

#YogarRise {
	position: relative;
}

.spectext path {
	fill: white;
}


.indicative {
	display: flex !important;
	align-items: flex-end;
	justify-content: flex-end;

	p {
		padding: 20px 20px 0;
	}
}

.mercierplans img {
	display: none;
}

.mercierplans img.active {
	display: block;
}

.no-border {
	border: 0 !important;
}

.mercerstreet {
	background-color: #c7ddea !important;
	background: #c7ddea !important;
}

.mercerstreet .navbar {
	background-color: #c7ddea !important;
	background: #c7ddea !important;
}

.mercerstreet .navbar path {
    fill: #2078aa;
}

.mercerstreet .navbutton .navicon span {
	background: #2078aa;
}

/* .longacre-page {
	background-color: #338c7d !important;
	background: #338c7d !important;
} */

.longacre-page .navbar {
	background-color: #338c7d !important;
	background: #338c7d !important;
}

.longacre-page .navbar path {
    fill: #c6dcd7;
}
	
.longacre-page .navbutton .navicon span {
	background: #c6dcd7;
}

.leth3 {
	padding: 30px 0 0;
}

@media only screen and (max-width:1600px) {
	.agents {
		display: flex !important;
		flex-direction: column !important;
	}
}
