/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Injected Fonts
   ========================================================================== */
  

 @font-face {
    font-family: "Caslon Pro";
    src:  url("../fonts/caslon-pro-regular.ttf") format("ttf"),
    url("../fonts/caslon-pro-regular.woff") format("woff")
}
  

@font-face {
  font-family: "Gotham Book";
  src:  url("../fonts/gothambook-webfont.woff") format("woff");
}

@font-face {
  font-family: "Gotham Medium";
  src:  url("../fonts/gotham-medium.woff") format("woff");
}



.gotham-light {
  font-family: "Gotham Light" !important;
}

.gotham-medium {
  font-family: "Gotham Medium" !important;
}

.gotham-book {
  font-family: "Gotham Book" !important;
}

.times-new-roman {
  font-family: "times new roman" !important;
}

.caslon-pro {
  font-family: "Caslon Pro" !important;
}

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}



/* Custom Scroll Bar
---------------------------*/

::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #C3A05C; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #C3A05C; 
}


/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

   * {
     box-sizing: border-box;
   }
 
   body.menu-active {
      width: 100vw;
      height: 100vh;
      position: fixed;
      overflow-y: hidden;
      overflow-x: hidden;
   }

   /* Fonts Styles 
   --------------------------------------------------------------------------*/

   h1, h2, h3, h4, h5 {
    font-family: "Gotham Book", Montserrat, sans-serif;
    font-weight: 300;
    margin-top: 0;
    letter-spacing: normal;
  }

  .button {
    font-family: "Gotham Book", sans-serif;
    border-radius: 4px;
  }

  p, a, span, ul, ul li {
    font-family: "caslon pro", sans-serif;
  }

  p {
    line-height: 1.4em;
    color: #111;
  }

  a {
    text-decoration: none;
    color: #A82D14;
  }

  ul {
    margin-left: 0;
    padding-left: 20px;
  }

  .button {
    text-align: center;
    height: 55px;
    background: #C3A05C;
    color: #fff;
    width: 100%;
    max-width: 210px;
    padding: 0px 15px;
    position: relative;
    display: block;
    line-height: 55px;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
  }

  .button:before {
    content: '';
    width: 100%;
    left: 50%;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 8px;
    transform: translateX(-50%);
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
    opacity: 1;
  }

  .button:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
    opacity: 1;
  }

  .button:hover {
    background: #ccc;
  }

  .button:hover:before {
    top: 0;
    opacity: 0;
  }

  .button:hover:after {
    bottom: 0;
    opacity: 0;
  }

  .uppercase {
    text-transform: uppercase !important;
  }

  /* Layout Styles
  --------------------------------------------------------------------------*/

  .full-width-section {
    width: 100%;
    position: relative;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .inner-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 1180px;
  }

  .flex {
    display: flex;
  }

  .one-half {
    width: 50%;
  }

  .one-third {
    width: 33%;
  }

  .one-fourth {
    width: 25%;
  }

  .three-fourths {
    width: 75%;
  }

  .two-thirds {
    width: 66%;
  }

  .left {
    float: left;
  }

  .right {
    float: right;
  }

  .text-center {
    text-align: center;
  }

  .one-fifth {
    width: 20%;
  }

  .two-fifths {
    width: 40%;
  }

  .three-fifths {
    width: 60%;
  }

  .four-fifths {
    width: 80%;
  }

  .box-centered {
    margin-right: auto;
    margin-left: auto;
  }

  hr.clear-pretty {
    width: 100%;
    max-width: 210px;
    height: 4px;
    background: #C3A05C;
    padding: 0;
    margin: 30px auto;
    text-align: center;
    display: block;
  }

  hr.clear-pretty.white {
    background: #fff;
  }

  span.branded-icon {
    width: 100px;
    height: 70px;
    background: url(../img/branded-icon.png) center center no-repeat;
    background-size: 100% auto;
    display: block;
    text-align: center;
    margin: 30px auto;
  }


/* Top Bar
--------------------------------------------------------------------------*/

#top-header {
  width: 100%;
  height: 80px;
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
}

#menu-button {
  width: 40px;
  height: 35px;
  z-index: 10000000;
  position: fixed;
  top: 10px;
  right: 5px;
  padding: 10px;
  width: 52px;
  height: 40px;
  background-color: transparent;
  border: 0;
}

#menu-button:hover {
  cursor: pointer;
}

#menu-button span.nav-toggle__bar {
   position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: block;
    height: 2px;
    background: #fff;
}

#menu-button span.nav-toggle__bar:nth-child(2) {
  top: 19px;
} 

#menu-button .nav-toggle__bar:nth-child(3) {
  top: 28px;
}

 .top-logo {
  width: 110px;
  height: 60px;
  background: url(../img/top-logo.png) center center no-repeat;
  background-size: 100% auto; 
  position: fixed;
  top: 5px;
  left: 10px;
  z-index: 100000000;
}

#flyout-menu {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: -100%;
  left: 0;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}


/* Apply Now Button 
--------------------------------------------------------------------------*/

.apply-wrap {
  height: 170px;
  overflow: hidden;
  width: 40px;
  position: fixed;
  top: 70px;
  right: 15px;
}

#apply-now-white {
	color: #111;
  background: #fff;
	position: absolute;
	top: 0;
	width: 170px;
	height: 40px;
  line-height: 40px;
	font-size: .95rem;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0;
	pointer-events: auto;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	-webkit-transform: rotate(90deg) translateX(100%);
	transform: rotate(90deg) translateX(100%);
	-webkit-transform-origin: right top;
	transform-origin: right top;
	right: 0;
	font-family: 'gotham book', arial;
	text-transform: uppercase;
	font-weight: 600;
	z-index: 999999;
	display: block;
	text-align: center;
  letter-spacing: .03em;
}

#apply-now:hover {
	cursor: pointer;
	background: #fff;
	color: #333;
}

#apply-now:hover {
	cursor: pointer;
}

#apply-now-black {
	position: absolute;
  background: #000;
	color: #fff;
	top: 0px;
	width: 170px;
	height: 40px;
  line-height: 40px;
	font-size: .95rem;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0;
	pointer-events: auto;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	-webkit-transform: rotate(90deg) translateX(100%);
	transform: rotate(90deg) translateX(100%);
	-webkit-transform-origin: right top;
	transform-origin: right top;
	right: 0;
	font-family: 'gotham book', arial;
	text-transform: uppercase;
	font-weight: 600;
	z-index: 1000000;
	display: block;
	text-align: center;
  letter-spacing: .03em;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

#apply-now-hero:after {
  content: '';
  width: 20px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;

}

#apply-now-hero:hover {
	cursor: pointer;
	background: #000;
	color: #fff;
}
#apply-now-hero:hover {
	cursor: pointer;
}

#white-apply-wrap {
  z-index: 100000
}

#black-apply-wrap {
  z-index: 99999;
}

/* Flyout Nav
--------------------------------------------------------------------------*/

#flyout-menu {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.9);
  z-index: -1;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  opacity: 0;
  transform: translateY(30%);
}

#flyout-menu.active {
  opacity: 1;
  z-index: 10000000;
  transform: translateY(0%);
}

#flyout-menu #close-menu {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 100000;
  display: block;
}

#flyout-menu #close-menu:hover {
  cursor: pointer;
}

#flyout-menu #close-menu i {
  color: #fff;
  font-size: 30px;
  font-weight: 300;
}

.large-text-menu {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

#flyout-menu .large-text-menu {
  height: 100vh;
}

#flyout-menu .big-nav-container {
  padding: 40px;
  padding-left: 6%;
  border-left:4px solid #fff;
}

#flyout-menu .big-nav-container a {
  font-size: 34px;
  display: block;
  color: #fff;
  font-family: 'gotham medium', arial;
  text-transform: uppercase;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  font-weight: 300;
  margin-bottom: 15px;
}

#flyout-menu .big-nav-container a:hover {
  color: #C3A05C;
}

#flyout-menu img.one-half {
  padding-right: 10%;
}

/* Navigation Styles
--------------------------------------------------------------------------*/


  #sticky-nav-bar {
    width: 100%;
    height: 60px;
    margin: 0 auto;
    text-align: center;
    background: #000;
    bottom: 0px;  
    z-index: 10000;
    position: absolute;
  }

  #sticky-nav-bar.active {
    position: fixed;
    top: 0;
  }

  #sticky-nav-bar .nav-inner {
    max-width: 1150px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }

  #sticky-nav-bar .nav-inner a {
    line-height: 60px;
    color: #fff;
    font-family: "Gotham Book", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
    font-size: .875rem; 
  }

  @media only screen and (min-width: 721px) and (max-width: 1300px) {

    #sticky-nav-bar .nav-inner {
      justify-content: center;
    }

    #sticky-nav-bar .nav-inner a {
      font-size: .675rem;
      margin-left: 15px;
      margin-right: 15px;
    }

  }
  #sticky-nav-bar a:after {
    content: '';
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    position: absolute;
    height: 0px;
    background: #fff;
    z-index: 1000;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
  }

  #sticky-nav-bar a:hover:after {
    height: 3px;
  }

  #sticky-nav-bar .nav-inner a.active {
    color:#C3A05C;
  }

  #sticky-nav-bar a.active:after {
    background: #C3A05C;
    height: 3px;
  }


 /* Home Page Styles
 --------------------------------------------------------------------------*/

 #hero {
   width: 100%;
   height: 100vh;
   position: relative;
   background: #333;
   overflow: hidden;
 }

 #hero video {
   position: absolute;
   min-height: 100%;
   min-width: 100%;
   left: 50%;
   top: 50%;
   transform: translateX(-50%) translateY(-50%);
 }

 #home-intro {
  background:#f6f6ef;
  padding-top: 30px;
  padding-bottom: 10px;
  text-align: center;
 }

 #home-intro h3 {
   font-family: "calson pro", serif;
   font-style: italic;
   font-weight: 300;
   font-size: 1.9rem;
 }

 .home-promo-block {
   display: flex;
   align-items: center;
   justify-content: center;
   padding-top: 40px;
   padding-bottom: 40px;
 }

 .home-promo-block .slick-arrow {
   display: none !important;
 }


 .home-promo-block.reversed {
   flex-direction: row-reverse;
 }

 .home-promo-block .text-block {
   padding: 40px;
 }

 .home-promo-block .text-block h2 {
   text-transform: uppercase;
   font-size: 1.8rem;
 }

 .home-promo-block .text-block p {
   font-size: 1.6rem;
   font-style: italic;
   letter-spacing: normal;
 }

 .home-promo-block .slick-slide img  {
  height: 100%;
  width: auto;
 }

 #home-gallery {
   width: 100%;
   padding-left: 10%;
   padding-right: 10%;
   overflow: hidden;

 }

 #home-gallery .slick-list {
   overflow: visible;
 } 

 #home-gallery .slick-list .slide-container {
   padding-left: 30PX;
   padding-right: 30px;
 }

 #home-gallery .slick-slide img {
    width: 95%;
    padding-top: 2%;
    padding-bottom: 2%;
    margin-right: auto;
    margin-left: auto;
    -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
 }

 #home-gallery .slick-active img {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
 }

 
 /* quote Styles
 --------------------------------------------------------------------------*/

 #home-quote {
  background: #C3A05C;
  min-height: 40vh;
  text-align: center;
 }

 #home-quote blockquote {
   display: flex;
   align-content: center;
   justify-content: center;
 }

 #home-quote blockquote p {
   font-size: 1.8rem;
   font-style: italic;
 }

 #home-quote blockquote p .author {
  display: block;
  text-align: center;
  font-family: 'gotham book', arial;
  text-align: center;
  margin: 30px auto;
  font-size: 1rem;
 }

 /* Inner Pages
 --------------------------------------------------------------------------*/

 #hero.photo-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-title {
  position: absolute;
  bottom: 10%;
  font-size: 3rem;
  font-weight: 300;
  text-align: center;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 15px #000;
}

#inner-intro {
 background:#f6f6ef;
 padding-top: 80px;
 padding-bottom: 60px;
 text-align: center;
}

#inner-intro h3 {
  font-family: "calson pro", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 2.4rem;
}

 /* Amenities Page
 --------------------------------------------------------------------------*/

 .amenities-container {
   background: #111;
   position: relative;
 }

 .amenities-container .flex {
   display: flex;
   align-items: flex-start;
   justify-content: space-around;
   padding-top: 120px;
   padding-bottom: 120px;
 }

 .amenities-container .flex ul {
   list-style-type: none;
   padding-left: 0;
   margin-left: 0;
 }

 .amenities-container .flex ul li {
   color: #fff;
   font-size: 1em;
   font-weight: 300;
   font-family: 'gotham book';
   padding-top: 5px;
   padding-bottom: 5px;
   margin-right: 60px;
   
   font-size: .975em;
 }

 .amenities-container .flex ul li.amenities-title {
   font-family: 'caslon pro', serif;
   font-style: italic;
   font-size: 2.1rem;
   margin-bottom: 20px;
   border-bottom: 1px solid #fff;
   padding-bottom: 0;
 }

 .in-select-units {
   font-size: .775rem;
   color: #fff;
   display: block;
   position: absolute;
   bottom: 30px;
   left: 2%;
   font-style: italic;
 }


/* Floor Plans Page Outer
--------------------------------------------------------------------------*/

.floor-plans-title {
  font-family: 'calson pro', serif;
  font-size: 3rem;
  font-style: italic;
  margin-bottom: 0;
  padding-bottom: 0;
}

.floor-plans-box {
  width: 45%;
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
    font-family: 'gotham book', arial;
    padding-top: 45%;
    line-height: 45%;
    display: block;
    position: relative;
    text-align: center;
    outline: 3px solid #C3A05C;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
    background-size: cover;
}

.floor-plans-box:hover {
  -webkit-box-shadow: 0 4px 20px 0 rgb(0 0 0 / 8%);
  box-shadow: 0 4px 20px 0 rgb(0 0 0 / 8%);
}

.floor-plans-box .fp-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0,0,0,.3);
  z-index: 100;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.floor-plans-box .floor-plan-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  font-size: 2rem;
  color: #fff;
  font-family: 'gotham book', arial, serif;
  text-shadow: 0 0 15px #000;
  transform: translateX(-50%) translateY(-50%);
  text-transform: uppercase;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  height: 40px;
  height: 50px;
  line-height: 50px;
  z-index: 100000;
  font-weight: 300;
}

.floor-plans-box:hover .floor-plan-text {
  font-weight: 600;
}

.floor-plans-box:hover .fp-overlay {
  background: rgba(0,0,0,.5);
}

#choose-floor-plan .inner-wrapper {
  align-items: center;
  justify-content: space-around;
  padding-top: 0px;
  padding-bottom: 80px;
}

.floor-plans-wrapper {
  width: 100%;
  padding: 80px;
  background: #f5f5f5;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  transform: translateY(30%);
}

.floor-plans-wrapper.active {
  transform: translateY(0);
  padding-top: 60px;
  padding-bottom: 60px;
  opacity: 1;
  overflow: visible;
  max-height: 1000000px;
}

.floor-plans-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
}

#floor-plans-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}

span.floor-plans-filter {
  background: #C3A05C;
  height: 45px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: 10px;
  margin-right: 10px;
  -webkit-box-shadow: 0 4px 20px 0 rgb(0 0 0 / 8%);
  box-shadow: 0 4px 20px 0 rgb(0 0 0 / 8%);
  color: #fff;
  font-family: 'gotham book', arial;
  font-weight: 500;
  font-size: 1rem;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  border-radius: 2px;
  line-height: 45px;
  position: relative;
} 

span.floor-plans-filter:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  opacity: 1;
}


span.floor-plans-filter:hover:before,
span.floor-plans-filter.active:before {
  top: 0;
  opacity: 0;
}

span.floor-plans-filter:hover:after,
span.floor-plans-filter.active:after  {
  bottom: 0;
  opacity: 0;
}




span.floor-plans-filter:before {
  content: '';
  width: 100%;
  left: 50%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 8px;
  transform: translateX(-50%);
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  opacity: 1;
}



span.floor-plans-filter:hover {
  background: #ccc;
  -webkit-box-shadow: 0 4px 20px 0 rgb(0 0 0 / 9%);
  box-shadow: 0 4px 20px 0 rgb(0 0 0 / 9%);
  cursor: pointer;
}

span.floor-plans-filter.active {
  background: #ccc;
  -webkit-box-shadow: 0 4px 20px 0 rgb(0 0 0 / 9%);
  box-shadow: 0 4px 20px 0 rgb(0 0 0 / 9%);
}

.floor-plans-container .floor-plan {
  padding-bottom: 40px;
}

.floor-plans-container img {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  display: block;
  text-align: center;
  -webkit-transition: all 150ms ease-in-out;
-moz-transition: all 150ms ease-in-out;
-ms-transition: all 150ms ease-in-out;
-o-transition: all 150ms ease-in-out;
transition: all 150ms ease-in-out;
}

.floor-plans-container .floor-plan:hover img {
  -webkit-box-shadow: 0 4px 30px 0 rgb(0 0 0 / 8%);
  box-shadow: 0 4px 30px 0 rgb(0 0 0 / 8%);
}

.floor-plans-container h2 {
  text-align: center;
  font-family: 'caslon pro', serif;
  font-style: italic;
  font-size: 1.4rem;
  letter-spacing: .0em;
  margin-bottom: 0;
}


.floor-plans-container a.download {
  font-size: .575rem;
  font-family: 'gothic book', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: #C3A05C;
  border-radius: 2px;
  height: 25px;
  line-height: 25px;
  padding: 0;
  margin: 0;
  display: block;
  max-width: 140px;
  margin-right: auto;
  margin-left: auto;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.floor-plans-container a.download:hover {
  background: #ccc;
}


.floor-plans-container .image-wrapper {
  display: block;
}

.popup-box {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: row-reverse;
} 

 .popup-box .image-box {
  width: 60%;
  position: relative;
  text-align: center;
}

.popup-box .image-box img {
  width: 100%;
}

.popup-box .text-box {
  width: 40%;
  padding-top: 5%;
  text-align: center;
}

.popup-box .image-box a {
  color: #333;
} 

.popup-box .text-box h2 {
  font-size: 2.4rem;
  margin-bottom: 5px;
  font-family: 'calson pro', serif;
}

.popup-box .text-box h3 {
  font-size: 1.4rem;
  font-style: italic;
}

.popup-box .pop-button {
  width: 100%;
  width: 46%;
  margin-right: 2%;
  padding: 0px 10px;
  text-align: center;
  background: #C3A05C;
  color: #fff;
  display: block;
  float: none;
  height: 45px;
  line-height: 45px;
  -webkit-box-shadow: 0 4px 20px 0 rgb(0 0 0 / 9%);
  box-shadow: 0 4px 20px 0 rgb(0 0 0 / 9%);
  border-radius: 2px;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  font-family: "gotham book", arial;
  margin: 0 auto 20px;
  position: relative;
}

.popup-box .pop-button:hover {
  background: #ccc;
}


.popup-box .pop-button:before {
  content: '';
  width: 100%;
  left: 50%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 8px;
  transform: translateX(-50%);
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  opacity: 1;
}


.popup-box .pop-button:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  opacity: 1;
}



.popup-box .pop-button:hover:before {
  top: 0;
  opacity: 0;
}

.popup-box .pop-button:hover:after {
  bottom: 0;
  opacity: 0;
}

.fp-note {
  padding-bottom: 20px;
  font-size: .675rem;
  font-style: italic;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 60%;
  left: 50%;
  transform: translateX(-50%);
}


/* Gallery & Neighborhood Page
--------------------------------------------------------------------------*/

.gallery-title {
  font-family: 'calson pro', serif;
  font-size: 3rem;
  font-style: italic;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-wrapper {
  width: 100%;
  padding: 80px;
  background: #f5f5f5;
  padding-top: 60px;
  padding-bottom: 60px;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

#filter-selector {
  
}

.filter-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
}

#filter-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}

span.item-filter {
  background: #C3A05C;
  height: 45px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: 10px;
  margin-right: 10px;
  -webkit-box-shadow: 0 4px 20px 0 rgb(0 0 0 / 8%);
  box-shadow: 0 4px 20px 0 rgb(0 0 0 / 8%);
  color: #fff;
  font-family: 'gotham book', arial;
  font-weight: 500;
  font-size: 1rem;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  border-radius: 2px;
  line-height: 45px;
  position: relative;
} 

span.item-filter:hover {
  background: #ccc;
  -webkit-box-shadow: 0 4px 20px 0 rgb(0 0 0 / 9%);
  box-shadow: 0 4px 20px 0 rgb(0 0 0 / 9%);
  cursor: pointer;
}

span.item-filter.active {
  background: #ccc;
  -webkit-box-shadow: 0 4px 20px 0 rgb(0 0 0 / 9%);
  box-shadow: 0 4px 20px 0 rgb(0 0 0 / 9%);
}

.filter-container .plot-item {
  position: relative;
  margin-bottom: 10px;
  outline: 10px solid #f5f5f5;
  outline-offset: -10px;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.filter-container .plot-item:hover {
  cursor: pointer;
  -webkit-box-shadow: 0 4px 30px 0 rgb(0 0 0 / 8%);
  box-shadow: 0 4px 30px 0 rgb(0 0 0 / 8%);
}

.filter-container .plot-item img {
  width: 100%;
}

.filter-container .plot-item:hover img {
  -webkit-box-shadow: 0 4px 30px 0 rgb(0 0 0 / 8%);
  box-shadow: 0 4px 30px 0 rgb(0 0 0 / 8%);
}

.filter-container .plot-item .overlay-text {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.8);
  opacity: 0;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.filter-container .plot-item .overlay-text:hover {
  opacity: 1;
}

.filter-container .plot-item .overlay-text h2,
.filter-container .plot-item .overlay-text h3,
.filter-container .plot-item .overlay-text a {
  color: #fff;
  font-family: 'caslon pro', serif;
  font-style: italic;
  margin-bottom: 4px;
  font-weight: 300;
}

.filter-container .plot-item .overlay-text h2 {
  font-size: 1.8rem;
  font-weight: 500;
}

.filter-container .plot-item .overlay-text h3 {
  font-size: 1.1rem;
}

.filter-container .plot-item .overlay-text a {
  font-size: 1.5rem;
  text-transform: lowercase;
}

.fancybox-caption__body {
  font-size: 3rem;
  font-style: italic;
}

.neighborhood-wrap {
  padding-top: 0px;
  padding-bottom: 0px;
}

.map-logo {
  margin-right: auto;
  margin-left: auto;
  display: block;
  text-align: center;
  width: 75% !important;
  margin-top: 20px !important;
}


/* Virtual Tour Page
--------------------------------------------------------------------------*/


hr.fancy-break{border-top:3px solid #999; width: 100%; max-width: 600px; margin-right: auto;margin-left: auto;margin-bottom: 60px;}
.vr-button{max-width:310px;width:100%;text-transform:uppercase;margin-top:15px}
.vr-button .vr-tour-icon{display:inline-block;width:36px;height:30px;background-image:url(https://www.500crawford.com/img/icons/vr-tour-icon.png);background-position:center center;background-repeat:no-repeat;background-size:100% auto;margin-right:.5em}
span.tour-icon{display:inline-block;}
#virtual-tour,.vr-button{text-align:center}
#virtual-tour h3{font-size:3rem;text-transform:uppercase;padding-bottom:0px}
#virtual-tour p{font-size:1.4rem;padding-top:30px;padding-bottom:60px;margin-right: auto;margin-left: auto;}
#virtual-tour .section-intro h3 {
	font-size: 1.5rem;
	padding-bottom: 0;
	margin-bottom: 15px;
}
#virtual-tour .section-intro p {
	font-size:1rem;
	padding-top: 0;
}
#virtual-tour .virtual-stage{background:#000;position:relative;padding-top:45.25%;margin-right:auto;margin-left:auto;width:80%;-webkit-box-shadow:12px 0 25px -3px rgba(140,140,140,.8),-12px 0 25px -3px rgba(140,140,140,.8);box-shadow:12px 0 25px -3px rgba(140,140,140,.8),-12px 0 25px -3px rgba(140,140,140,.8)}
#virtual-tour .virtual-stage iframe{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}
#tour-nav{background:#183d4e;position:relative;padding:30px 30px 40px;-webkit-box-shadow:0 2px 8px 0 rgba(0,0,0,.3);box-shadow:0 2px 8px 0 rgba(0,0,0,.3);text-align:left}
#tour-nav a,#tour-nav h3{color:#eee}
#tour-nav h3{padding-bottom:3px;padding-top:30px;border-bottom:1px solid #eee;line-height:1em;margin-bottom:20px;font-size:2rem}
#tour-nav a{display:block;padding-bottom:10px;padding-left:28px;position:relative;margin-left:5px}
#tour-nav a.amenity-icon:before,#tour-nav a.floor-plan-icon:before{position:absolute;left:0;top:0;transform:translateY(0%)}
#tour-nav a.amenity-icon:before{content:url(../img/vrtour/amenity-icon.png)}
#tour-nav a.floor-plan-icon:before{content:url(../img/vrtour/floor-plan-icon.png)}
#tour-nav.sticky{position:fixed;top:82px}#tour-nav.sticky.bottom-stick{top:inherit;bottom:0;position:absolute}
@media only screen and (max-width:721px){
	hr.fancy-break{border-top:1px solid transparent}
	#virtual-tour{padding-top:60px}
	#virtual-tour .virtual-stage{width:100%;padding-top:55.25%;-webkit-box-shadow:12px 0 25px -3px transparent,-12px 0 25px -3px transparent;box-shadow:12px 0 25px -3px transparent,-12px 0 25px -3px transparent}
	#virtual-tour h3{padding-top:30px;font-size:1.8rem}
	#virtual-tour p{font-size:1em;width:90%;margin-right:auto;margin-left:auto;padding-top:15px;padding-bottom:40px}
	}


/* Contact Us page
--------------------------------------------------------------------------*/

.contact-us-container .one-half  {
  padding: 40px;
}

.contact-us-container {
  padding-top: 120px;
  padding-bottom: 120px;
}


.contact-us-container h2 {
  font-family: 'caslon pro', arial, sans-serif;
  font-style: italic;
  font-size: 2.1rem;
}

.contact-us-container h3 {
  font-family: 'gotham book', sans-serif;
  font-size: 1rem;
}

 /* Bottom Callout
 --------------------------------------------------------------------------*/

#bottom-callout {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background: #333;
  padding: 0;
  align-items: flex-start;
  justify-content: strech;
}

#bottom-callout #map-box {
  position: relative;
  height: 60vh;
}

#bottom-callout #map-box iframe {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 60vh;
}

.contact-container {
  flex-wrap: wrap;
  padding: 20px 40px;
  text-align: center;
  align-items: center;
  position: relative;
  padding-top: 25%
}

.contact-container .button {
  max-width: 340px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.contact-container h2.form-title {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.contact-container h3 {
  font-size: 1rem;
  color: #fff;
  font-family: 'gotham book', arial;
  margin-bottom: 15px;
  text-align: center;
}

.contact-container .branded-icon {
  margin-top: 0;
  margin-bottom: 10px;
}

.contact-container form {
  width: 100%;
}

.contact-container input {
  width: 100%;
  height: 40px;
  margin-bottom: 15px;
  padding: 4px 10px;
  border-radius: 3px;
  font-family: 'gotham book';
  border: none;
}

.contact-container input.one-half {
  width: 48%;
  margin-right: 1%;
}

.contact-container label {
  font-family: 'gotham book', arial;
  color: #fff;
  position: relative;
  top: -3px;
}

.contact-container .button {
  display: block;
}

.contact-container #form-submit {
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
}
.contact-container #form-submit:hover {
  background: #C3A05C;
  cursor: pointer;
  color: #fff;

}

#contact-map {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

 /* Footer Styles
 --------------------------------------------------------------------------*/

 #footer {
   background: #111;
   padding-bottom: 20px;
 }

 #footer .logo-container  {
   position: relative;
 }

 #footer .logo-container img {
   width: 90%;
 }
 
 #footer .inner-wrapper {
    max-width: 1400px;
 }

 #footer h3, #footer h2 {
   color: #fff;
   text-transform: uppercase;
   font-family: 'gotham book', arial;
 }

#footer p {
   color: #fff;
   font-family: 'gotham book', arial;
 }

 .sub-footer {
   width: 100%;
 }

 .foot-social-pet {
 }

 .foot-social-pet a {
   width: 40px;
   height: 40px;
   display: block;
   float: right;
   margin-left: 20px;
 }

 .foot-social-pet a i {
   font-size: 40px;
   color: #fff;
 }

 .foot-social-pet .fair-housing {
  width: 50px;
  height: 50px;
  float: right;
  display: block;
  background: url(../img/fair-housing.png) center center no-repeat;
  background-size: 80% auto;
  position: absolute;
  bottom: 0;
  right: 0;
 }


 .foot-social-pet .pet-icon {
   width: 50px;
   height: 50px;
   position: absolute;
   right: 60px;
   bottom: 0;
 }

 .foot-social-pet .pet-icon i {
   color: #fff;
   font-size: 40px;
 }

 #footer .foot-links {
   position: absolute;
   right: 0;
   color: #fff;
 }

 #footer .foot-links a {
   line-height: 40px;
   color: #fff;
   font-family: 'gotham book', serif;
 }

 #footer .sub-footer {
   height: 40px;
   margin-top: 40px;
 }

 
 #footer .sub-footer p {
   float: left;
   line-height: 40px;
   margin: 0 auto;
 }

 #footer .foot-contact a {
    color: #fff;
    font-family: 'gotham book', arial;
}
/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

