@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: 20px/1.3em "basis-grotesque-regular", Arial, sans-serif;
  color: #323e48;
  background: #f8f0ed;
  height: 100%;
}

b {
  font-weight: normal;
  font-family: "basis-grotesque-bold";
}

.animatein {
  visibility: hidden;
}

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

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

h1 {
  font-weight: normal;
  font-family: "basis-grotesque-light", Arial, sans-serif;
  font-size: 4vw;
  line-height: 1.1em;
}
h2 {
  font-family: "basis-grotesque-bold";
  font-weight: normal;
  font-size: 2.5vw;
  margin-bottom: 20px;
  line-height: 1.2em;
}
h3 {
  font-weight: normal;
  font-size: 1.75vw;
  margin-bottom: 20px;
  line-height: 1.2em;
}

.text14 {
  font-size: 14px;
  line-height: 1.3em;
}

.buttonlink {
  color: #fff;
  border: 1px solid #fff;
  display: inline-block;
  border-radius: 2px;
  text-decoration: none;
  padding: 15px 30px;
  font-size: 14px;
  line-height: 1.2em;
}
.buttonlink:hover {
  text-decoration: underline;
}

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

.divider {
  height: 1px;
  width: 100%;
  background: #2c3740;
  margin: 40px 0;
  clear: both;
}

/**** nav ****/
.navholder {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 2.5vw;
  display: flex;
  justify-content: space-between;
  z-index: 2000;
  pointer-events: none;
}
.navholder a {
  pointer-events: all;
}
.navholder img {
  width: 7.5vw;
  min-width: 120px;
}
.navlinks {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.navlinks a {
  color: #2c3740;
  text-decoration: none;
}
.navlinks .textlink {
  margin: 0 1.25vw;
  transition: opacity 0.5s;
  padding: 6px 0 6px 0;
  font-size: 14px;
  line-height: 14px;
}
.s0 .navlinks .textlink {
  display: none;
}
.s1 .navlinks .textlink.n1,
.s2 .navlinks .textlink.n2 {
  padding: 6px 0 4px 0;
  border-bottom: 2px solid #2c3740;
}

.navbutton {
  display: block;
  width: 30px;
  height: 24px;
  padding: 0vw 0 0 1.25vw;
  z-index: 10000;
  cursor: pointer;
}
.navbutton .navicon {
  position: relative;
  width: 100%;
  height: 100%;
}
.navbutton .navicon span {
  display: block;
  width: 100%;
  height: 2px;
  background: #2c3740;
  position: absolute;
  transition: top 0.5s 0.5s, transform 0.5s, opacity 0.5s 0.5s, width 0.5s,
    left 0.5s, background 0.5s;
}
.navbutton .navicon span:nth-child(1) {
  top: 0px;
  width: 15px;
  left: 15px;
}
.navbutton .navicon span:nth-child(2) {
  top: 11px;
  transform-origin: 50% 50%;
  width: 23px;
  left: 7px;
}
.navbutton .navicon span:nth-child(3) {
  top: 22px;
  transform-origin: 50% 50%;
}

.navhide {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  transition: width 0.5s;
  width: 0vw;
  height: 100vh;
}
.nav {
  width: 30vw;
  height: 100vh;
  background: #2c3740;
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4vw;
}
.sectionnav {
  margin: 2vh 0;
}
.nav ul {
  list-style-type: none;
  padding: 0;
}
.nav li {
  margin: 0;
  padding: 0;
}
.nav a.biglink {
  font-size: 40px;
  line-height: 1em;
  margin-bottom: 2vh;
}
.nav a {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  line-height: 1em;
  padding: 1vh 0;
}
.nav a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: 2px;
  left: 0;
  transition: width 0.2s;
}
.nav a.active {
  color: #c1816a;
}
.nav a.active:after {
  width: 100%;
  background: #c1816a;
}
.nav a:hover:after {
  width: 100%;
}

.menuopen .navlinks .textlink {
  opacity: 0;
}
.menuopen .navbutton .navicon span {
  transition: top 0.5s, transform 0.5s 0.5s, opacity 0s 0.5s, width 0s 0.5s,
    left 0s 0.5s, background 0.5s;
  background: #fff;
}
.menuopen .navbutton .navicon span:nth-child(1) {
  border-color: transparent;
  top: 10px;
  opacity: 0;
}
.menuopen .navbutton .navicon span:nth-child(2) {
  border-color: transparent;
  top: 10px;
  transform: rotate(-45deg);
  width: 30px;
  left: 0;
}
.menuopen .navbutton .navicon span:nth-child(3) {
  border-color: transparent;
  top: 10px;
  transform: rotate(45deg);
}
.menuopen .navhide {
  width: 30vw;
}

/**** footer ****/
.footer {
  background: #323e48;
  color: #fff;
  padding: 7.5vw 2.5vw 2.5vw 2.5vw;
  font-size: 14px;
  line-height: 1.3em;
}
.footer a {
  color: #fff;
}
.footercontacts {
  display: flex;
  padding-bottom: 5vw;
  border-bottom: 1px solid #fff;
}
.addresscol {
  flex: 0 0 50%;
  box-sizing: border-box;
  padding-right: 5vw;
  font-size: 20px;
  line-height: 1.3em;
}
.agency {
  flex: 0 0 25%;
  box-sizing: border-box;
  padding-right: 5vw;
}
.agentlogo {
  display: block;
  background: bottom left no-repeat;
  background-size: contain;
  width: 120px;
  height: 60px;
  margin-bottom: 30px;
}
.footerlogos {
  padding: 2.5vw 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.dartriver {
  height: 60px;
}
.lifschutz {
  height: 20px;
}
.misrep {
  font-size: 11px;
  line-height: 13px;
}

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

/**** home ****/
.homeintro {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 2500;
}
.homeintro .bg {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background: #2c3740;
}
.homeintro .bg svg {
  width: 100%;
  height: 100vh;
}

.hometext {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #f8f0ed;
  width: 100%;
  height: 100vh;
}

.homeintro h1 span {
  position: relative;
}

.homecontent {
  display: border-box;
  padding: 10vw;
  display: block;
  height: 100vh;
  display: flex;
}
.viewcast .homecontent {
  align-items: center;
  flex-direction: row;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 100px 5vw 5vh 5vw;
}
.viewcastholder {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
}
.homecol {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homebox {
  flex: 0 0 35vw;
  height: 35vw;
  position: relative;
  transform-origin: 50% 50%;
  overflow: hidden;
  background: 50% 50% no-repeat;
  background-size: cover;
  transition: transform 0.5s;
  max-height: 90vh;
  font-size: 14px;
  line-height: 1.3em;
}
.homebox:hover {
  transform: scale(110%);
}

.boxlink {
  font-size: 3vw;
  line-height: 1em;
  position: absolute;
  top: 2vw;
  right: 2vw;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s, bottom 0.5s;
  opacity: 1 !important;
  z-index: 10;
}
.homebox:hover {
  .boxlink {
    &.l-blue {
      color: #323e48;
    }
  }
}
.hoverbox {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10vw 5vw 5vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  transition: opacity 0.5s;
  opacity: 0;
}
.hoverbox p,
.hoverbox a {
  position: relative;
}
.hoverbox h2 {
  position: absolute;
  top: 2vw;
  right: 2vw;
}
.hoverbox p {
  font-size: 20px;
  width: 95%;
  line-height: 22px;
  @media only screen and (max-width: 767px) {
    font-size: 16px;
    line-height: 18px;
  }
}
.hoverbox {
  &.orange {
    background: rgba(193, 128, 106, 0.8);
  }
}
.hoverbox {
  &.l-blue {
    background: rgba(190, 197, 205, 0.9);
  }
}
.hoverbox {
  &.l-blue {
    p,
    h2,
    a {
      color: #323e48;
      border-color: #323e48;
    }
  }
}
/*.hoverbox p:last-child {margin:0}*/
.hoverbox:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
/*.designbox .hoverbox:before {background:rgba(44,55,64,0.75);}
.detailbox .hoverbox:before {background:rgba(193,129,106,0.75);}*/
.hoverbox .homeboxvideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hoverbox .homeboxvideo video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.hoverbox a.buttonlink {
  margin-top: 2.5vw;
}

.homebox:hover .boxlink {
  opacity: 0;
  bottom: 0;
}
.homebox:hover .hoverbox {
  opacity: 1;
}

.sidetext {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100vh;
}
.sidetext.lefttext {
  left: 2.5vw;
  bottom: 0;
  transform: rotate(-90deg);
  transform-origin: 0% 0%;
}
.sidetext.righttext {
  right: 2.5vw;
  bottom: 0;
  transform: rotate(90deg);
  transform-origin: 100% 0%;
}
.sidetext span {
  margin: 0 2.5vh;
}

.foottext {
  font-size: 14px;
  line-height: 1.2em;
}
.designfoot {
  position: absolute;
  bottom: 2.5vw;
  left: 2.5vw;
}
.detailfoot {
  position: absolute;
  bottom: 2.5vw;
  right: 2.5vw;
}

/**** design ****/
.pagebanner {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.pagebanner h1 {
  position: relative;
  z-index: 55;
  text-align: center;
  flex: 0 0 65%;
}
.bannervideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*.bannervideo:before {content:'';display:block;position:absolute;z-index:50;width:100%;height:100%;top:0;left:0;background:rgba(44,55,64,0.45);}*/
.bannervideo video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.design-one {
  height: 100dvh;
  width: 100%;
  display: flex;
  @media only screen and (max-width: 767px) {
    width: 100%;
    flex-direction: column-reverse;
  }
}
.orange-banner {
  background: #c1816a;
  color: white;
  width: 25vw;
  padding: 2vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100vh - 4vw);
  @media only screen and (max-width: 767px) {
    width: 100%;
    padding: 0;
    height: 50%;
    justify-content: flex-end;
    h1 {
      padding: 5vw;
      font-size: 40px;
    }
    .bottom-flex-wrap {
      padding: 5vw;
    }
  }
}
.blue-banner {
  background: #bec5cd;
  color: #323e48;
  width: 25vw;
  padding: 2vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100vh - 4vw);
  @media only screen and (max-width: 767px) {
    width: 100%;
    padding: 0;
    height: 50%;
    justify-content: flex-end;
    h1 {
      padding: 5vw;
      font-size: 40px;
    }
    .bottom-flex-wrap {
      padding: 5vw;
    }
  }
}

.design-image-banner {
  background: url(/img/content/design/design-background-image.jpg) no-repeat
    center center;
  overflow: hidden;
  background-position: center center;
  width: 75vw;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 2vw;
  @media screen and (max-width: 767px) {
    width: 100%;
    height: 50%;
    padding: 0;
  }
  img {
    height: 80%;
  }
}
.detail-image-banner {
  background: url(/img/content/detail/detail-background-image.jpg) no-repeat
    center center;
  overflow: hidden;
  background-position: center center;
  width: 75vw;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 2vw;
  @media screen and (max-width: 767px) {
    width: 100%;
    height: 50%;
    padding: 0;
  }
  img {
    height: 80%;
  }
}

.bottom-flex-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  p {
    width: 75%;
  }
  .lds {
    margin-top: -20px;
    font-size: 14px;
  }
}

.quote {
  width: 50px;
  @media screen and (max-width: 767px) {
    width: 30px;
  }
}

.padding-pic-terrace {
  margin: 10vw 0 0;
}

.cityhero {
  background: url(/img/content/bg1.svg) bottom left -10vw no-repeat;
  background-size: 65vw auto;
  font-family: "basis-grotesque-light", Arial, sans-serif;
  padding: 5vw 10vw;
  box-sizing: border-box;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.cityhero .text {
  box-sizing: border-box;
  padding-right: 10vw;
  display: flex;
  flex-direction: column;
  flex: 0 0 50%;
}
.cityhero .pic {
  flex: 0 0 50%;
}

.zoompic {
  position: relative;
}
/*.zoom:hover {opacity:0.5}*/
.zoompic:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: 50% 50% no-repeat url(/img/ui/zoom.svg) rgba(0, 0, 0, 0.8);
  background-size: 60% auto;
  z-index: 1;
  border-radius: 50%;
  border: 2px solid #fff;
}

.ext2 {
  margin: 2.5vw;
  text-align: center;
}

.numbers {
  padding: 5vw;
}
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.stat {
  font-size: 2.8vw;
  line-height: 1em;
  box-sizing: border-box;
  position: relative;
  padding: 30px 4vw 30px 0;
  min-width: 180px;
  margin: 2.5vw 0;
  flex-basis: calc(100% / 5);
  font-family: "basis-grotesque-light";
}
.stat:last-child {
  margin-right: 0;
  padding-right: 0;
  min-width: auto;
}
.stat span {
  font-size: 1.5vw;
  margin-left: 10px;
}
.stat span span,
.stat p.aftertext span {
  margin-left: 0;
}
.stat p {
  font-size: 14px;
  line-height: 18px;
  position: absolute;
  margin: 0;
  padding-right: 4vw;
}
.stat p.beforetext {
  bottom: 85%;
}
.stat p.aftertext {
  top: 75%;
  padding-top: 10px;
}

.awards {
  padding: 0 5vw 5vw 5vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-wrap: wrap;
  font-family: "basis-grotesque-light", Arial, sans-serif;
  font-size: 14px;
}
.award {
  box-sizing: border-box;
  flex: 0 0 20%;
}
.award .icon {
  width: 100%;
  height: 7vw;
  background: left center no-repeat;
  background-size: contain;
  margin-bottom: 20px;
}

.aerial {
  padding: 2.5vw 2.5vw 0 2.5vw;
  text-align: center;
}
.aerial img {
  display: block;
  margin: 0 auto;
}
.aerial video {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.buildinggallery1 {
  padding-top: 10vw;
  background: url(/img/content/bg2.svg) 10% 0 no-repeat;
  background-size: 15vw auto;
}
.buildinggallery2 {
  padding: 10vw 0;
}
.buildingslick {
  height: 80vh;
}
.buildingslick .pic {
  height: 80vh;
  width: 35vw;
  margin: 0 10px;
}
.buildinggallery2 .buildingslick {
  height: 50vh;
}
.buildinggallery2 .buildingslick .pic {
  width: 40vw;
  height: 50vh;
}

.bg4 {
  background: url(/img/content/bg4.svg) no-repeat top right;
  background-size: auto 75%;
}
.quoteholder {
  position: relative;
  box-sizing: border-box;
  padding: 10vw 5vw;
  display: flex;
  justify-content: flex-end;
}
.quoteholder.haspic {
  padding-bottom: 25vw;
  margin-bottom: 10vw;
}
.quoteholder .pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: 50% 50% no-repeat;
  background-size: cover;
}
.quotebox {
  flex: 0 0 40%;
  position: relative;
}
.quotebox:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: bottom left no-repeat url(/img/ui/quote.svg);
  background-size: contain;
  margin-bottom: 10px;
}
.quotetext {
  font-size: 30px;
  line-height: 1.3em;
  margin-bottom: 20px;
}

.storypic {
  box-sizing: border-box;
  padding: 0 0 0 2.5vw;
  display: flex;
}
.storypic .pic {
  height: 90vh;
  flex: 0 0 70%;
}
.storypic .text {
  box-sizing: border-box;
  padding: 2.5vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.storypic .text p {
  margin: 0 0 10vw 0;
  width: 80%;
}

.tranquility {
  padding-top: 7.5vw;
}

.fitout {
  padding: 7.5vw 2.5vw 7.5vw 0;
  background: 5vw 20% no-repeat url(/img/content/bg2.svg);
  background-size: 15vw auto;
  justify-content: space-between;
}
.fitout .pic {
  height: 90vh;
  flex: 0 0 70%;
}
.fitout .text {
  box-sizing: border-box;
  padding: 2.5vw 2.5vw 2.5vw 5vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fitout .text p {
  margin: 0 0 10vw 0;
}

.storypic.breathing {
  padding-top: 10vw;
}
.storypic.breathing .pic {
  height: 70vh;
}
.storypic.breathing .text {
  justify-content: flex-start;
}
.storypic.breathing h2 {
  margin-top: 5vw;
}

.terrace.pic {
  width: 100%;
  height: 80vh;
  background-image: url(/img/content/design/terrace.jpg);
  background-position: bottom;
}

.footerlink {
  display: block;
  color: #fff;
  background: #c08069;
  padding: 4vw 0;
  text-align: center;
  font-size: 35px;
  line-height: 1em;
}

/**** detail ****/
.s2 {
  background-color: #f8f0ed;
}
.bg6 {
  background: url(/img/content/bg6.svg) no-repeat bottom left;
  background-size: 15vw auto;
}

.areas {
  display: flex;
  box-sizing: border-box;
  padding: 10vw 5vw;
}
.areas .text {
  flex: 1 1 50%;
  box-sizing: border-box;
  padding-right: 5vw;
}
.areas .pic {
  flex: 1 1 50%;
}
.availabletable {
  width: 100%;
  font-size: 14px;
  line-height: 1.3em;
}
.availabletable td {
  padding: 12px 2px;
  border-bottom: 1px solid #323e48;
}
.availabletable thead tr:first-child td {
  border: none;
  padding-bottom: 0;
}
.availabletable tfoot td {
  font-family: "basis-grotesque-bold", Arial, sans-serif;
  border: none;
}

#floorplans {
  margin: 2.5vw;
  background: #f3e6e1;
  padding: 2.5vw 0;
}
#floorplans .divider {
  width: calc(100% - 5vw);
  margin-left: 2.5vw;
}
.planintro {
  margin: 0 2.5vw;
}
.floor-slides .item,
.space-slides .item,
.unit-slides .item {
  margin-right: 20px;
}
.unit-slides .plantext {
  flex: 0 0 30vw;
}

.space-slides table tr td {
  padding: 8px 4px;
}
.space-slides table tr td:last-child {
  padding-left: 15px;
  font-family: "basis-grotesque-bold";
}

.plans {
  background: #f3e6e1;
  box-sizing: border-box;
  padding: 0;
  margin: 2.5vw;
  position: relative;
  overflow: hidden;
  transition: max-height 0.5s;
}

.plans h2 {
  margin-bottom: 30px;
}
.plans .slick-dots {
  list-style-type: none;
  margin: 0 0 40px 0;
  padding: 0;
  display: flex;
}
.plans .slick-dots li {
  margin: 0 10px 0 0;
  padding: 0;
  border: none;
  background: rgba(192, 128, 105, 0.2);
  padding: 15px 30px;
  border-radius: 5px;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.1em;
  font-size: 12px;
  line-height: 1em;
  font-family: "basis-grotesque-bold", Arial, sans-serif;
}
.plans.active .slick-dots li.slick-active {
  color: #fff;
  background: #323e48;
}
.plans .slick-dots li:hover {
  text-decoration: underline;
}

.plantext table td {
  padding: 2px;
}

.smallelevationholder {
  position: absolute;
  bottom: 2.5vw;
  left: 2.5vw;
}
.smallelevation {
  position: relative;
}
.smallelevation img {
  width: 10vw;
}
.smallelevation:after {
  content: "";
  display: block;
  background: #ecd9d2;
  mix-blend-mode: multiply;
  display: block;
  transition: all 0.2s;
  width: 100%;
  height: 0%;
  position: absolute;
  top: 100%;
  left: 0%;
  opacity: 0.5;
}
.smallelevation.lowerground:after {
  width: 100%;
  height: 10%;
  top: 84%;
  left: 0%;
}
.smallelevation.ground:after {
  top: 75%;
  height: 8%;
}
.smallelevation.first:after {
  top: 66%;
  height: 8%;
}
.smallelevation.second:after {
  top: 57%;
  height: 8%;
}
.smallelevation.third:after {
  top: 48%;
  height: 8%;
}
.smallelevation.fourth:after {
  top: 39%;
  height: 8%;
  left: 6%;
  width: 94%;
}
.smallelevation.fifth:after {
  top: 30%;
  height: 8%;
  left: 20%;
  width: 80%;
}
.smallelevation.sixth:after {
  top: 22%;
  height: 8%;
  left: 20%;
  width: 80%;
}
.smallelevation.seventh:after {
  top: 13%;
  height: 8%;
  left: 26%;
  width: 74%;
}
.smallelevation.rooftop:after {
  top: 4%;
  height: 8%;
  left: 26%;
  width: 74%;
}

.floor-slides,
.space-slides,
.unit-slides {
  display: flex;
  flex-direction: column-reverse;
}

.floorinner {
  display: flex;
  position: relative;
  justify-content: space-between;
}
.plans:before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url(/img/content/detail/north.svg) bottom right no-repeat;
  position: absolute;
  bottom: 2.5vw;
  right: 2.5vw;
}
.plans.nonorth:before {
  background: none;
}
.floorinner .plantext {
  padding-right: 5vw;
  font-size: 14px;
  line-height: 1.3em;
}
.plantext li {
  margin-bottom: 5px;
}
#units .plantext {
  flex: 0 0 25vw;
  padding-right: 10vw;
}
.unitareas {
  margin-top: 40px;
}
.unitareas thead {
  text-align: center;
}
.plantext table.unitareas td {
  padding: 8px 4px;
  border-top: 1px solid #000;
}
.unitareas tfoot {
  font-family: "basis-grotesque-bold";
  border-top: 2px solid #000;
}
.floorinner img {
  max-height: 70vh;
}

.plans:not(.active) {
  max-height: calc(2.5vw + 110px);
}
.plans:not(.active):before {
  background: none;
}
.plans:not(.active) .smallelevation {
  display: none;
}
.plans.active {
  max-height: 1200px;
}

.specification {
  padding: 5vw;
  background: #fff;
}
.speclist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  font-size: 14px;
  line-height: 1.3em;
  font-family: "basis-grotesque-light";
}
.specitem {
  flex: 0 0 20%;
  text-align: center;
  padding: 0 2vw;
  margin-bottom: 40px;
}
.speclist .specitem.spectitle {
  text-align: left;
  display: flex;
  align-items: center;
}
.specitem .icon {
  width: 8vw;
  height: 8vw;
  margin: 0 auto 20px auto;
  background-position: bottom center;
}

.sustainability {
  background: #f3e6e1;
  padding: 5vw;
  margin: 2.5vw 2.5vw 0 2.5vw;
}
.sustainability .stat p {
  padding-right: 20px;
}
.sustainability .stats .stat:first-child {
  padding: 0;
}
.sustainability .awards {
  padding: 2.5vw;
  justify-content: space-between;
}
.bg5 {
  /*background:url(/img/content/bg5.svg) no-repeat bottom right;background-size:65vw auto;*/
  padding-top: 10vw;
}

.traveltimes {
  padding: 0 5vw 5vw 5vw;
}
.traveltimes img {
  width: 100%;
  margin: 2.5vw 0 5vw 0;
}
.elizabethline h2 {
  background: left center no-repeat url(/img/content/detail/roundel.svg);
  background-size: auto 0.8em;
  padding-left: 1.5em;
}
/*.elizabethline img {margin-left:25%;width:75%}*/

.map {
  margin: 2.5vw 2.5vw 0 2.5vw;
  background: #f3e6e1;
  display: flex;
}
.map .pic {
  background: #ecdad4;
  display: flex;
  align-items: center;
}
.map img {
  display: block;
}
.map .text {
  padding: 2.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.occupiers {
  margin-top: 20px;
}
.map ol li {
  padding-left: 2vw;
}

.s2 .buildinggallery1 {
  background: none;
  padding: 0 0 5vw 0;
}
.bg7 {
  /*background:url(/img/content/bg7.svg) no-repeat bottom left;background-size:55vw auto;*/
  padding-top: 5vw;
}

.locationquotes .quoteholder.haspic {
  padding: 5vw;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}
.locationquotes h1 {
  padding: 5vw;
}
.locationquotes .quoteholder .pic {
  position: relative;
  flex: 0 0 45vw;
  height: 70vh;
}
.locationquotes .quoteholder:last-child {
  flex-direction: row-reverse;
  margin-bottom: 5vw;
}

/****************************************************
* 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 !important;
  position: relative;
  top: -0.4em;
}
.subscript {
  vertical-align: baseline;
  font-size: 0.8em !important;
  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;
}

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

/* biggest desktop */
@media only screen and (max-width: 1320px) {
  .plans .slick-dots li {
    padding: 10px 20px;
  }
}

/* bigger desktop */
@media only screen and (max-width: 1229px) {
  .hoverbox {
    padding: 3vw;
    font-size: 14px;
    line-height: 18px;
  }
}

/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 1099px) {
  .plans .slick-dots {
    flex-wrap: wrap;
  }
  .plans .slick-dots li {
    margin-bottom: 10px;
  }
}

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {
  body {
    font-size: 16px;
    line-height: 1.3em;
  }

  h1 {
    font-size: 24px;
    line-height: 1.3em;
  }
  h2 {
    font-size: 30px;
  }

  /*.terrace {flex-direction:column;padding:0 5vw;font-size:18px;line-height:22px}
		.terrace .pic {width:100%;flex:0 0 50vh}
		.terrace .text {padding:5vw 0 0 0}*/

  .fitout {
    flex-direction: column-reverse;
    padding: 0 5vw;
    font-size: 18px;
    line-height: 22px;
  }
  .fitout .pic {
    width: 100%;
    flex: 0 0 50vh;
  }
  .fitout .text {
    padding: 5vw 0 0 0;
  }

  .stat {
    font-size: 36px;
    line-height: 1em;
    margin-right: 40px;
    flex: 0 0 50%;
    margin-right: 0;
  }
  .stat span {
    font-size: 12px;
  }
  .stat p {
    font-size: 12px;
  }

  .award {
    flex: 0 0 40%;
    margin-bottom: 40px;
    margin-right: 10%;
  }
  .award .icon {
    height: 100px;
  }

  .footerlink {
    font-size: 24px;
  }
  .footercontacts {
    flex-wrap: wrap;
  }
  .addresscol {
    flex: 0 0 100%;
    margin-bottom: 40px;
  }
  .agency {
    font-size: 12px;
    line-height: 16px;
    flex: 0 0 45%;
  }

  /**** nav ****/
  .menuopen .navhide,
  .nav {
    width: 50vw;
  }

  /**** home ****/
  .homecontent {
    flex-direction: column;
    min-height: 100vh;
    height: auto;
  }
  .homecol {
    width: 100%;
    flex: 0 0 40vh;
    margin-bottom: 10vw;
  }
  .homebox {
    flex: 0 0 40vh;
    height: 40vh;
  }
  .boxlink {
    font-size: 30px;
    line-height: 1.2em;
  }
  .foottext {
    display: none;
  }

  .viewcast .homecontent {
    min-height: auto;
  }
  .viewcastholder {
    height: calc(100vh - 10vw);
    display: block;
    height: 60vw;
  }

  /**** design ****/
  .cityhero {
    flex-direction: column;
    min-height: auto;
  }
  .cityhero .text {
    margin-bottom: 5vw;
  }

  .buildingslick {
    height: 50vh;
  }
  .buildingslick .pic {
    height: 50vh;
  }

  .quotebox {
    flex: 0 0 50%;
  }
  .storypic {
    margin-bottom: 10vw;
  }
  .storypic .pic {
    height: 60vh;
  }

  .quoteholder.haspic {
    padding-bottom: 40vh;
  }

  /**** detail ****/
  .areas {
    flex-direction: column-reverse;
    align-items: flex-end;
  }
  .areas .pic {
    width: 60%;
  }
  .areas .text {
    width: 100%;
    margin: 10vw 0 0 0;
  }

  .plans:not(.active) {
    max-height: 140px;
  }
  .plans.active {
    max-height: 1500px;
  }

  .plans .slick-dots {
    flex-wrap: wrap;
  }
  .plans .slick-dots li {
    margin-bottom: 10px;
  }
  .floorinner {
    flex-direction: column;
  }
  .floorinner table {
    width: 50%;
  }

  .smallelevationholder {
    display: none;
  }

  .specitem {
    flex: 0 0 25%;
  }
  .specitem .icon {
    width: 120px;
    height: 120px;
  }

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

  .map {
    flex-direction: column;
  }

  .locationquotes .quoteholder.haspic {
    flex-direction: column;
    align-items: flex-end;
  }
  .locationquotes .quoteholder:last-child.haspic {
    align-items: flex-start;
  }
  .locationquotes .quoteholder .pic {
    margin-bottom: 5vw;
  }
  .locationquotes .quotebox {
    width: 80%;
    margin: 0 20% 0 0;
  }
  .locationquotes .quoteholder:last-child .quotebox {
    margin: 0 0 0 20%;
  }
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
  .stat {
    flex: 0 0 100%;
    padding: 10px 0;
  }
  .stat p {
    position: relative;
  }
  .stat p.beforetext {
    bottom: 0;
  }
  .stat p.aftertext {
    top: 0;
  }

  .footer {
    padding: 40px 20px;
  }
  .footerlink {
    padding: 10vw 0;
  }

  .footerlogos {
    flex-direction: column;
    align-items: center;
  }
  .footerlogos a {
    margin: 20px;
  }

  .addresscol {
    font-size: 18px;
    line-height: 1.3em;
  }

  .dartriver {
    height: 45px;
  }
  .lifschutz {
    height: 15px;
  }

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

  /**** nav ****/
  .menuopen .navhide,
  .nav {
    width: 100vw;
  }
  .navlinks .textlink {
    display: none;
  }

  /**** home ****/
  .homecontent {
    padding-top: 80px;
  }

  /**** design ****/
  /*.buildingslick {height:50vh}*/
  .buildingslick .pic {
    width: 90vw;
  }
  .quotebox {
    flex: 0 0 100%;
  }

  .storypic {
    flex-direction: column;
    padding: 5vw;
  }
  .storypic .pic {
    width: 100%;
    flex: 0 0 50vh;
  }
  .storypic .text {
    margin: 5vw 0 10vw 0;
    padding: 0;
  }

  .terrace.pic {
    height: 50vh;
  }

  .buildinggallery2 .buildingslick .pic {
    width: 90vw;
  }

  .quoteholder.haspic {
    padding: 5vw;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-end;
    margin: 0;
  }
  .quoteholder .pic {
    position: relative;
    flex: 0 0 45vw;
    height: 70vh;
    margin-bottom: 5vw;
  }
  .haspic .quotebox,
  .locationquotes .quoteholder:last-child .quotebox {
    width: 100%;
    margin: 0 0 5vw 0;
  }

  /**** detail ****/
  .bg6 {
    background-image: none;
  }
  .planintro {
    margin: 20px;
  }
  .plans {
    margin: 20px;
  }

  .floorinner table {
    width: 100%;
  }
  .specitem {
    flex: 0 0 30%;
  }

  #floorplansslides.plans:not(.active) {
    max-height: 230px;
  }

  .locationquotes .quoteholder .pic {
    width: 100%;
    flex: 0 0 90vw;
  }
}

/* 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; }
*/
@font-face {
  font-family: "basis-grotesque-light";
  src: url("/fonts/basis-grotesque-light.eot");
  src: url("/fonts/basis-grotesque-light.eot?#iefix")
      format("embedded-opentype"),
    url("/fonts/basis-grotesque-light.woff2") format("woff2"),
    url("/fonts/basis-grotesque-light.woff") format("woff"),
    url("/fonts/basis-grotesque-light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "basis-grotesque-regular";
  src: url("/fonts/basis-grotesque-regular.eot");
  src: url("/fonts/basis-grotesque-regular.eot?#iefix")
      format("embedded-opentype"),
    url("/fonts/basis-grotesque-regular.woff2") format("woff2"),
    url("/fonts/basis-grotesque-regular.woff") format("woff"),
    url("/fonts/basis-grotesque-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "basis-grotesque-bold";
  src: url("/fonts/basis-grotesque-bold.eot");
  src: url("/fonts/basis-grotesque-bold.eot?#iefix") format("embedded-opentype"),
    url("/fonts/basis-grotesque-bold.woff2") format("woff2"),
    url("/fonts/basis-grotesque-bold.woff") format("woff"),
    url("/fonts/basis-grotesque-bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
