﻿/*font sizes*/
/*calc(12px + .15vw);*/
/* misc */
:root {
  font-size: clamp(12px, 1vw, 18px);
}

body {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, Helvetica, sans-serif;
  background-color: rgb(255, 255, 255);
  color: rgb(30, 30, 30);
  font-size: clamp(14px, clamp(12px, 1vw, 18px), 18px);
  line-height: 1.5;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

a, a:visited {
  color: rgb(30, 30, 30);
  opacity: 1;
  transition: opacity 0.3s linear;
  text-decoration: none;
}
a:hover, a:visited:hover {
  opacity: 0.7;
}

a.btn, input[type=submit] {
  background: rgb(255, 255, 255);
  color: rgb(30, 30, 30);
  padding: 1rem 2rem;
}
a.btn.axial, input[type=submit].axial {
  background: rgb(145, 44, 42);
  color: rgb(255, 255, 255);
}
a.btn.harmon, input[type=submit].harmon {
  background: rgb(63, 134, 97);
  color: rgb(255, 255, 255);
}
a.btn.novel, input[type=submit].novel {
  background: rgb(107, 149, 65);
  color: rgb(255, 255, 255);
}
a.btn.office, input[type=submit].office {
  background: rgb(87, 155, 191);
  color: rgb(255, 255, 255);
}
a.btn.render, input[type=submit].render {
  background: rgb(124, 180, 165);
  color: rgb(255, 255, 255);
}
a.btn.portfolio, input[type=submit].portfolio {
  margin: 0 0 2rem 0;
  display: inline-block;
}

h1, h2 {
  line-height: 1.1;
}

#brand {
  background: rgb(30, 30, 30);
  padding: 1rem 2rem;
  display: inline-block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
#brand.axial {
  background: rgb(30, 30, 30);
}
#brand.axial img#logo {
  width: auto;
  height: 65px;
}
#brand.harmon {
  background: rgb(222, 212, 192);
}
#brand.harmon img#logo {
  width: auto;
  height: 90px;
}
#brand.novel {
  background: rgb(77, 78, 83);
}
#brand.novel img#logo {
  width: auto;
  height: 63px;
}
#brand.office {
  background: rgb(32, 50, 77);
}
#brand.office img#logo {
  width: auto;
  height: 89px;
}
#brand.render {
  background: rgb(226, 158, 68);
}
#brand.render img#logo {
  width: auto;
  height: 74px;
}

#hero {
  position: relative;
}
#hero #slider .hero-slide {
  width: 100vw;
  height: 90vh !important;
}
#hero #slider .hero-slide.darken-overlay::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 90vh;
  background-color: rgba(30, 30, 30, 0.05);
}
#hero #slider ul.slick-dots {
  display: inline-block;
  width: auto;
  right: 8vw;
}
#hero #slider ul.slick-dots li button {
  height: 20px;
  width: 20px;
  border: 1px solid rgb(30, 30, 30);
  border-radius: 50%;
  padding: 0;
  position: relative;
}
#hero #slider ul.slick-dots li button::before {
  content: "";
  height: 11px;
  width: 11px;
  background: rgb(30, 30, 30);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
#hero #slider ul.slick-dots li.slick-active button:before {
  opacity: 1;
}
#hero .content {
  position: absolute;
  z-index: 998;
  top: 20vh;
  color: rgb(255, 255, 255);
  margin-left: 8vw;
  max-width: 70vw;
}
#hero .content h2 {
  font-size: 1.3rem;
  font-weight: 400;
}
#hero .content h1 {
  font-size: 5.25rem;
  margin: 0;
}
#hero #box {
  background: rgb(30, 30, 30);
  color: rgb(255, 255, 255);
  padding: 3rem;
  border-top-left-radius: 50px;
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  bottom: 0;
  transform: translateY(8vh);
  z-index: 2;
  margin-left: 8vw;
}
#hero #box.render {
  background: rgb(226, 158, 68);
}
#hero #box .inner {
  display: flex;
  flex-direction: column;
}
#hero #box a.btn {
  margin: 2rem auto 0;
}
#hero #box #form {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
  /*&.error {*/ /* added to form to change placeholder */
  /*::-webkit-input-placeholder { color:red !important; }
      ::-moz-placeholder { color:red !important;}
      :-ms-input-placeholder { color:red !important; }
      :-moz-placeholder { color:red !important; }
  }
  .error {*/ /* added to input to change border */ /*border-bottom:1px solid red!important; }*/
}
#hero #box #form h2 {
  margin: 0 0 1rem;
}
#hero #box #form.false {
  display: none;
}
#hero #box #form input[type=text], #hero #box #form input[type=email] {
  width: 100%;
  display: block;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
}
#hero #box #form input[type=email] {
  margin-top: 1.5rem;
}
#hero #box #form ::-webkit-input-placeholder {
  color: rgb(255, 255, 255) !important;
  opacity: 0.7 !important;
}
#hero #box #form ::-moz-placeholder {
  color: rgb(255, 255, 255) !important;
  opacity: 0.7 !important;
}
#hero #box #form :-ms-input-placeholder {
  color: rgb(255, 255, 255) !important;
  opacity: 0.7 !important;
}
#hero #box #form :-moz-placeholder {
  color: rgb(255, 255, 255) !important;
  opacity: 0.7 !important;
}
#hero #box #form a.btn, #hero #box #form input[type=submit] {
  display: block;
  margin: 1rem auto 0;
  border: none;
  letter-spacing: 0.1rem;
  font-size: clamp(12px, 1vw, 18px);
}
#hero #box #form .error {
  color: red;
  font-size: 0.8rem !important;
}
#hero #box #thanks {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: rgb(30, 30, 30);
  color: rgb(255, 255, 255);
  border-top-left-radius: 50px;
  /*img.close { height:15px; width:auto; display:block; justify-self:flex-end; 
      .st0 { fill:red!important; }
  }*/
}
#hero #box #thanks.axial {
  background: rgb(30, 30, 30);
}
#hero #box #thanks.harmon {
  background: rgb(222, 212, 192);
  color: rgb(30, 30, 30);
}
#hero #box #thanks.harmon svg.st0 {
  fill: rgb(30, 30, 30) !important;
}
#hero #box #thanks.novel {
  background: rgb(77, 78, 83);
}
#hero #box #thanks.office {
  background: rgb(32, 50, 77);
}
#hero #box #thanks.render {
  background: rgb(226, 158, 68);
}
#hero #box #thanks a.close-button svg, #hero #box #thanks a.close-button:visited svg {
  height: 15px;
  width: 15px;
  position: relative;
  z-index: 4;
  display: iinline-block;
  cursor: pointer;
  height: 25px;
  width: 25px;
  float: right;
  margin: 1rem 1rem 0 0;
}
#hero #box #thanks a.close-button svg .st0, #hero #box #thanks a.close-button:visited svg .st0 {
  fill: rgb(255, 255, 255);
  cursor: pointer;
}
#hero #box #thanks a.close-button:hover, #hero #box #thanks a.close-button:visited:hover {
  opacity: 1;
}
#hero #box #thanks .message {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text: center;
  transform: translateY(calc((18px + 1rem) * -1));
}
#hero #box #thanks.none {
  display: none;
}
#hero #box #thanks.block {
  display: block !important;
}

#intro {
  padding: 8vh 8vw 5rem;
  width: 65vw;
  font-size: 1.5rem;
  line-height: 1.5;
}
#intro.extra-padding {
  padding-top: 5rem;
}
#intro h2 {
  font-size: 2.8rem;
}

#map {
  width: 100%;
  height: 45vh;
}

#cta {
  padding: 5rem 0;
  display: flex;
  justify-items: stretch;
  background: rgb(30, 30, 30);
  color: rgb(255, 255, 255);
  /*&.axial { background:$axial-primary; }
  &.harmon { background:$harmon-primary; color:$black; svg.st0 { fill:$black!important; } }
  &.novel { background:$novel-primary; }
  &.office { background:$office-primary; }
  &.render { background:$render-primary; }*/
  /*.img-container .img { min-height:50vh; }*/
}
#cta .copy {
  margin-left: 16vw;
  width: 32vw;
  margin-right: 2vw;
  padding: 3rem 0;
}
#cta .copy h3 {
  font-size: 1.3rem;
  margin: 0;
  font-weight: 400;
}
#cta .copy h2 {
  font-size: 2.8rem;
  margin: 0;
}
#cta .copy a.btn {
  margin-top: 2rem;
  display: inline-block;
}
#cta .img {
  width: 32vw;
}

#boilerplate {
  padding: 5rem 0 0 8vw;
}
#boilerplate .left {
  width: 32%;
  margin-right: -4rem;
  float: left;
  display: inline-block;
}
#boilerplate .left img.lifestyle {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
#boilerplate .left .lifestyle {
  width: 100%;
  height: 70vh;
  border-top-left-radius: 50px;
  position: relative;
  z-index: 2;
  filter: grayscale(100%);
}
#boilerplate .left .copy {
  padding: 3rem 7rem 0 0;
}
#boilerplate .right {
  width: calc(68% + 4rem);
  float: left;
  display: inline-block;
}
#boilerplate .right img.logo {
  margin-bottom: 2rem;
  width: 150px;
  height: auto;
}
#boilerplate .right h2 {
  font-size: 4.5rem;
  margin: 0;
}
#boilerplate .right .top {
  padding: 2rem 5rem 5rem 9rem;
}
#boilerplate .right .video-wrapper {
  height: 100%;
  overflow: hidden;
  position: relative;
  min-height: 80vh;
}
#boilerplate .right .video-wrapper .video-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; /* z-index:-1;*/
  display: flex;
  justify-content: center;
  align-items: center;
}
#boilerplate .right .video-wrapper .video-inner::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 90vh;
  background-color: rgba(30, 30, 30, 0.1);
}
#boilerplate .right .video-wrapper .video-inner video {
  display: block;
  width: auto;
  height: 100%;
  position: relative;
}
#boilerplate .right .video-wrapper .cta {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(255, 255, 255);
  font-weight: bold;
  display: flex;
  align-items: center;
}
#boilerplate .right .video-wrapper .cta svg {
  float: left;
  height: 4rem;
  width: 4rem;
  display: inline-block;
}
#boilerplate .right .video-wrapper .cta .fa-secondary {
  fill: rgb(255, 255, 255);
}
#boilerplate .right .video-wrapper .cta .fa-primary.axial {
  fill: rgb(145, 44, 42);
}
#boilerplate .right .video-wrapper .cta .fa-primary.harmon {
  fill: rgb(63, 134, 97);
}
#boilerplate .right .video-wrapper .cta .fa-primary.novel {
  fill: rgb(107, 149, 65);
}
#boilerplate .right .video-wrapper .cta .fa-primary.office {
  fill: rgb(87, 155, 191);
}
#boilerplate .right .video-wrapper .cta .fa-primary.render {
  fill: rgb(124, 180, 165);
}
#boilerplate .right .video-wrapper .cta p {
  margin-bottom: 0;
  padding-left: 1rem;
}

#footer {
  background: rgb(30, 30, 30);
  color: rgb(255, 255, 255);
  width: 100%;
  clear: both;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  font-size: 0.8rem;
}
#footer .col {
  display: flex;
  align-items: center;
}
#footer .col.crescent {
  padding: 2rem 0 2rem 8vw;
}
#footer .col.address {
  background: rgb(44, 45, 44);
  padding: 2rem;
  font-size: 1rem;
}
#footer .col.legal {
  padding: 2rem 8vw 2rem 0;
}
#footer img.logo {
  height: 10vh;
}
#footer a, #footer a:visited {
  color: rgb(255, 255, 255);
}
#footer ul {
  padding: 2rem 0;
  list-style: none;
  display: flex;
  align-items: center;
}
#footer ul li {
  margin: 0 0 0 2rem;
}
#footer img#accommodations {
  height: 15px;
  width: auto;
  margin-left: 2rem;
}
#footer img#accommodations.axial {
  display: none;
}
#footer img#accommodations.office {
  display: none;
}

.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  right: 1rem !important;
}

.grecaptcha-badge:hover {
  width: 256px !important;
}

@media (max-width: 1200px) {
  #boilerplate {
    display: flex;
    flex-direction: column-reverse;
    padding: 3rem 0 0;
  }
  #boilerplate .col {
    width: 100%;
    display: block;
  }
  #boilerplate .left .lifestyle {
    display: none;
  }
  #boilerplate .left .copy {
    padding: 3rem 8vw;
  }
  #boilerplate .right .top {
    padding: 0 8vw 3rem;
  }
  #boilerplate .right h2 {
    margin: 0;
  }
  #boilerplate .right .video-wrapper {
    min-height: 45vh;
  }
  #boilerplate .right .video-wrapper video {
    width: 100% !important;
    height: auto !important;
  }
}
@media (max-width: 992px) {
  #cta {
    flex-direction: column;
    padding: 3rem 0;
  }
  #cta .copy {
    margin-left: 8vw;
    width: 84vw;
    margin-right: 0;
    padding: 3rem 0;
  }
  #cta .img {
    margin-left: 8vw;
    width: 84vw;
    min-height: 40vh;
  }
  #footer {
    flex-direction: column;
  }
  #footer .col {
    justify-content: center;
    margin: 0;
    text-align: center;
    padding: 2rem !important;
  }
}
@media (max-width: 700px) {
  .main-content {
    padding-top: 86px;
  }
  #brand {
    width: 100%;
  }
  #brand.novel img#logo, #brand.render img#logo {
    width: auto;
    max-width: 80%;
    height: auto;
  }
  #hero #slider .hero-slide {
    height: auto !important;
    aspect-ratio: 16/9;
  }
  #hero #box {
    width: auto;
    bottom: 0;
    margin: 0 8vw -10rem;
    transform: translateY(0);
  }
  #intro {
    width: 86%;
    padding-bottom: 3rem;
    font-size: 1.2rem;
    margin-top: 10rem;
  }
  #intro h2 {
    font-size: 2.5rem;
  }
  #boilerplate .right .video-inner video {
    height: 45vh !important;
    width: auto !important;
  }
}
