﻿/*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: white;
  color: #1e1e1e;
  font-size: clamp(14px, clamp(12px, 1vw, 18px), 18px);
  line-height: 1.5;
  overflow-x: hidden;
  margin: 0;
  padding: 0; }

a, a:visited {
  color: #1e1e1e;
  opacity: 1;
  transition: opacity .3s linear;
  text-decoration: none; }
  a:hover, a:visited:hover {
    opacity: .7; }

a.btn, input[type=submit] {
  background: white;
  color: #1e1e1e;
  padding: 1rem 2rem; }
  a.btn.axial, input[type=submit].axial {
    background: #912c2a;
    color: white; }
  a.btn.harmon, input[type=submit].harmon {
    background: #3f8661;
    color: white; }
  a.btn.novel, input[type=submit].novel {
    background: #6b9541;
    color: white; }
  a.btn.office, input[type=submit].office {
    background: #579bbf;
    color: white; }
  a.btn.render, input[type=submit].render {
    background: #7cb4a5;
    color: white; }
  a.btn.portfolio, input[type=submit].portfolio {
    margin: 0 0 2rem 0;
    display: inline-block; }

h1, h2 {
  line-height: 1.1; }

#brand {
  background: #1e1e1e;
  padding: 1rem 2rem;
  display: inline-block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999; }
  #brand.axial {
    background: #1e1e1e; }
    #brand.axial img#logo {
      width: auto;
      height: 65px; }
  #brand.harmon {
    background: #ded4c0; }
    #brand.harmon img#logo {
      width: auto;
      height: 90px; }
  #brand.novel {
    background: #4d4e53; }
    #brand.novel img#logo {
      width: auto;
      height: 63px; }
  #brand.office {
    background: #20324d; }
    #brand.office img#logo {
      width: auto;
      height: 89px; }
  #brand.render {
    background: #e29e44; }
    #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 #1e1e1e;
      border-radius: 50%;
      padding: 0;
      position: relative; }
    #hero #slider ul.slick-dots li button::before {
      content: '';
      height: 11px;
      width: 11px;
      background: #1e1e1e;
      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: white;
    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: #1e1e1e;
    color: white;
    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: #e29e44; }
    #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: white;
        font-size: 1.2rem; }
      #hero #box #form input[type=email] {
        margin-top: 1.5rem; }
      #hero #box #form ::-webkit-input-placeholder {
        color: white !important;
        opacity: .7 !important; }
      #hero #box #form ::-moz-placeholder {
        color: white !important;
        opacity: .7 !important; }
      #hero #box #form :-ms-input-placeholder {
        color: white !important;
        opacity: .7 !important; }
      #hero #box #form :-moz-placeholder {
        color: white !important;
        opacity: .7 !important; }
      #hero #box #form a.btn, #hero #box #form input[type=submit] {
        display: block;
        margin: 1rem auto 0;
        border: none;
        letter-spacing: .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: #1e1e1e;
      color: white;
      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: #1e1e1e; }
      #hero #box #thanks.harmon {
        background: #ded4c0;
        color: #1e1e1e; }
        #hero #box #thanks.harmon svg.st0 {
          fill: #1e1e1e !important; }
      #hero #box #thanks.novel {
        background: #4d4e53; }
      #hero #box #thanks.office {
        background: #20324d; }
      #hero #box #thanks.render {
        background: #e29e44; }
      #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: white;
          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; }

#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: white;
        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: white; }
        #boilerplate .right .video-wrapper .cta .fa-primary.axial {
          fill: #912c2a; }
        #boilerplate .right .video-wrapper .cta .fa-primary.harmon {
          fill: #3f8661; }
        #boilerplate .right .video-wrapper .cta .fa-primary.novel {
          fill: #6b9541; }
        #boilerplate .right .video-wrapper .cta .fa-primary.office {
          fill: #579bbf; }
        #boilerplate .right .video-wrapper .cta .fa-primary.render {
          fill: #7cb4a5; }
        #boilerplate .right .video-wrapper .cta p {
          margin-bottom: 0;
          padding-left: 1rem; }

#footer {
  background: #1e1e1e;
  color: white;
  width: 100%;
  clear: both;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  font-size: .8rem; }
  #footer .col {
    display: flex;
    align-items: center; }
    #footer .col.crescent {
      padding: 2rem 0 2rem 8vw; }
    #footer .col.address {
      background: #2c2d2c;
      padding: 2rem;
      font-size: 1rem; }
    #footer .col.legal {
      padding: 2rem 8vw 2rem 0; }
  #footer img.logo {
    height: 10vh; }
  #footer a, #footer a:visited {
    color: white; }
  #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) {
  #footer {
    flex-direction: column; }
    #footer .col {
      justify-content: center;
      margin: 0;
      text-align: center;
      padding: 2rem !important; } }

@media (max-width: 700px) {
  #brand {
    width: 100%; }
  #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; } }
