@import url(https://fonts.googleapis.com/css?family=Work+Sans:200,300,400);
@import url(https://fonts.googleapis.com/css?family=Lora:400,400italic);
/* Resets, variables, mixins, and general styles */

@-webkit-keyframes bounce {
  0% {
    bottom: 15px;
  }
  25%, 75% {
    bottom: 25px;
  }
  50% {
    bottom: 30px;
  }
  100% {
    bottom: 15px;
  }
}
@-moz-keyframes bounce {
  0% {
    bottom: 15px;
  }
  25%, 75% {
    bottom: 25px;
  }
  50% {
    bottom: 30px;
  }
  100% {
    bottom: 15px;
  }
}
@-o-keyframes bounce {
  0% {
    bottom: 15px;
  }
  25%, 75% {
    bottom: 25px;
  }
  50% {
    bottom: 30px;
  }
  100% {
    bottom: 15px;
  }
}
@keyframes bounce {
  0% {
    bottom: 15px;
  }
  25%, 75% {
    bottom: 25px;
  }
  50% {
    bottom: 30px;
  }
  100% {
    bottom: 15px;
  }
}
* {
  padding: 0;
  margin: 0;
  font-family: "Work Sans", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  color: #464646;
  z-index: 1;
}

body {
  background-color: #FBFBFB;
  -webkit-text-size-adjust: 100%;
}

a, ul {
  text-decoration: none;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE/Edge */
  user-select: none;
}

.left {
  float: left;
}

.right {
  float: right;
}

ul.horizontal {
  padding: 0;
  list-style-type: none;
  display: inline-block;
}
ul.horizontal > li {
  display: inline;
}

/* Secondary choice for adaptive images */
img.adapt {
  display: block;
  /* Correct gap in enclosing div */
  max-width: 100%;
  height: auto !important;
  /* legacy support */
  width: auto\9;
  -ms-interpolation-mode: bicubic;
}

/* Main Content */
div.content {
  background-color: #DDD;
  min-height: 1000px;
  margin: 0 auto;
  max-width: 2000px;
}

/* Horizontal lines :before and :after a text div */
.classy {
  position: relative;
}

.classy:before {
  top: auto;
  left: auto;
  top: -30px;
  left: 0;
}

.classy:after {
  top: auto;
  left: auto;
  bottom: -30px;
  right: 0;
}

.classy:before, .classy:after {
  position: absolute;
  width: 90px;
  height: 2px;
  content: "";
  background: #f4b136;
}

.classy-adjust-1:before {
  top: 130px;
}

.classy-adjust-1:after {
  bottom: 130px;
}

.classy-adjust-2:before {
  top: 80px;
}

.classy-adjust-2:after {
  bottom: 80px;
}

/* Form resets */
input,
select,
input[type=submit],
input[type=text] {
  margin: 5px;
  border: 0;
  padding: 12px 8px;
  display: inline-block;
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  border: 2px solid #FFF;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  /* Safari */
  box-sizing: border-box;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-timing-function: ease-out;
  /* Safari and Chrome */
  transition-timing-function: ease-out;
  transition: .5s;
  /* Browsers have different default form fonts */
  font-size: 15px;
  font-family: "Work Sans";
  color: #FFF;
}
input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
input[type=submit]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #fbe0af;
}
input:-moz-placeholder,
select:-moz-placeholder,
input[type=submit]:-moz-placeholder,
input[type=text]:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fbe0af;
  opacity: 1;
}
input::-moz-placeholder,
select::-moz-placeholder,
input[type=submit]::-moz-placeholder,
input[type=text]::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fbe0af;
  opacity: 1;
}
input:-ms-input-placeholder,
select:-ms-input-placeholder,
input[type=submit]:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fbe0af;
}

/* Reset autofill color */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  background-color: #f4b136;
}

input[type=text]:hover,
select:hover {
  background-color: #f5b745;
}
input[type=text]:focus,
select:focus {
  background-color: #f7c466;
}

input[type=submit],
input[name=email],
select {
  width: inherit;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  /* Safari */
  box-sizing: border-box;
}

input[name=first],
input[name=last] {
  width: 48.6%;
}

input[name=first] {
  float: left;
}

input[name=last] {
  float: right;
  margin-right: -4px;
}

/* Remove webkit outer glow */
input:focus {
  outline: 0;
}

/* Box Sizing Reset */
/* Custom controls */
input {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* Default spacing render */
input[type=submit],
select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit] {
  background-color: #FFF;
  color: #2c2c36;
}
input[type=submit]:hover {
  background-color: #fce9c7;
}

/* Selects */
select[multiple] {
  /* Move label to the top */
  vertical-align: top;
}

select {
  background: url(../img/arrow.png) no-repeat right;
  -moz-appearance: none;
}

option:not(:first-child) {
  text-transform: none;
}

/* Media queries */
@media (max-width: 1400px) {
  div.form > form {
    position: relative;
    text-align: center;
    margin: 0 auto;
    margin-top: 60px;
    width: 300px;
  }

  input[name=first], input[name=last] {
    width: 48.1%;
  }
}
@media (max-width: 1200px) {
  div.description {
    padding: 4.5em;
  }
}
@media (max-width: 1025px) {
  .slogan {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .nav-logo .middle {
    display: none;
  }

  div.choose-image {
    left: 25px;
  }

  span.menu, span.nav-phone, header > ul > li {
    font-size: 15px;
  }

  header {
    padding: 10px !important;
  }
  header > ul {
    top: 22px !important;
  }

  div.hero > img {
    width: 25px;
    height: 25px;
  }

  .first, .second {
    width: 100% !important;
  }

  .content > div.choose {
    background-color: #2c2c36;
  }
  .content > div.choose > div {
    color: #FFF;
  }

  div.hero-triangle {
    border-width: 0 0 120px 120px;
  }

  .disclaimer {
    left: 100px;
    text-align: center;
  }

  footer div.bottom {
    padding-top: 50px;
  }
}
@media (max-width: 765px) {
  .nav-phone, ul.horizontal > li.residents, ul.horizontal > li.apply {
    display: none;
  }

  .nav-phone-mobile {
    display: inline !important;
  }

  div.hero-arrow {
    font-size: 2em;
  }

  .contact-form > div.photo {
    width: 0%;
  }

  .content > div.photo {
    display: block;
  }

  .contact-form > div.form {
    width: 100%;
  }

  .description > div.title {
    font-size: 1.5em;
  }
  .description > div.information {
    font-size: 14px;
  }

  div.marker {
    display: none;
  }

  div.address > .title {
    font-size: 1.6em;
  }
}
@media (max-width: 479px) {
  .address {
    width: 350px !important;
  }

  div.second.description {
    padding: 3em;
  }

  .nav-phone-mobile {
    display: none !important;
  }

  div.nav-logo {
    float: right;
    width: 210px !important;
    padding-top: 10px !important;
  }
  div.nav-logo > img {
    margin-top: -15px !important;
  }

  .nav-logo > span.middle {
    display: inline;
    font-size: 15px;
    margin-left: 10px;
  }

  div.slogan {
    width: 330px;
    font-size: 1.7em;
  }

  div.left-quote.first div,
  div.right-quote.second div {
    font-size: 1.7em;
  }

  div.location {
    height: 220px;
  }

  div.address > .title {
    font-size: 1.2em;
  }
  div.address > .info {
    font-size: .8em;
  }
}
/* Retina Screens */
/* Navigation / Header */
header {
  position: fixed;
  width: 100%;
  padding: 20px;
  background-color: #FFF;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  z-index: 2;
}
header > ul {
  position: absolute;
  right: 14px;
  top: 30px;
}
header > ul li {
  margin: 17px;
}

div.menu-opener {
  display: inline-block;
  border: 2px solid #9a9a9a;
  height: 40px;
  width: 40px;
  background: none;
  position: relative;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-timing-function: ease-out;
  /* Safari and Chrome */
  transition-timing-function: ease-out;
}
div.menu-opener:hover {
  background-color: rgba(169, 172, 172, 0.4);
}

.hamburger {
  background-color: #9a9a9a;
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  height: 2px;
  margin-top: -2px;
}
.hamburger:before {
  margin-top: -10px;
}
.hamburger:after {
  margin-top: 9px;
}

.hamburger:after, .hamburger:before {
  content: "";
  background-color: #9a9a9a;
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  height: 2px;
}

div.menu-opener, span.menu {
  cursor: pointer;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE/Edge */
  user-select: none;
}

span.menu, span.nav-phone {
  margin: 11px 10px;
}
span.menu > span, span.nav-phone > span {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE/Edge */
  user-select: none;
}

.nav-logo .middle {
  font-size: 30px;
  font-weight: 300;
  margin-left: 20px;
}

div.nav-logo {
  white-space: nowrap;
  font-size: 0;
  line-height: 0;
  text-align: center;
  margin: 0 auto;
  width: 400px;
  padding-top: 17px;
}
div.nav-logo > img {
  width: 50px;
  height: 50px;
  vertical-align: middle;
  margin-top: -20px;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE/Edge */
  user-select: none;
}

ul.horizontal > li.nav-phone-mobile {
  display: none;
}

.side-menu {
  background-color: #464646;
  color: #FFF;
  width: 300px;
  position: fixed;
  z-index: 3;
  font-weight: 200;
  display: table;
}
.side-menu > ul {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}
.side-menu > ul > li span {
  line-height: 3em;
  color: #FFF;
  font-size: 1.1em;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-timing-function: ease-out;
  /* Safari and Chrome */
  transition-timing-function: ease-out;
}
.side-menu > ul > li span:hover {
  color: #f4b136;
}
.side-menu > .menu-opener {
  border: 2px solid #FFF;
  position: absolute;
  top: 20px;
  left: 20px;
}
.side-menu > .menu-opener:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 2px;
}
.side-menu > .menu-opener:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 2px;
}

.side-menu > .menu-opener:before,
.side-menu > .menu-opener:after {
  content: '';
  position: absolute;
  width: 36px;
  height: 2px;
  background-color: #FFF;
  top: 18px;
}

.side-menu li {
  margin: 0 auto;
  width: 170px;
  cursor: pointer;
}
.side-menu li.current {
  border: 1px solid #FFF;
  margin-bottom: 8px;
}
.side-menu li.current span {
  line-height: 2.4em;
}

/* Hero banner */
.hero {
  overflow: hidden;
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: top right;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-timing-function: ease-out;
  /* Safari and Chrome */
  transition-timing-function: ease-out;
}
.hero > img {
  position: absolute;
  cursor: pointer;
  bottom: 30px;
  right: 30px;
  width: 35px;
  height: 35px;
  -webkit-animation: bounce 1s infinite;
  -moz-animation: bounce 1s infinite;
  -o-animation: bounce 1s infinite;
  animation: bounce 1s infinite;
}

.slogan {
  color: #FFF;
  margin-left: 10%;
  width: 420px;
  font-weight: 200;
  font-size: 45px;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 0px 0px 50px #000;
  text-shadow: 0px 0px 50px #000;
}

.hero-triangle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 200px 200px;
  border-color: transparent transparent #ffffff transparent;
  /* Cross-browser compatibility */
  -webkit-transform: rotate(360deg);
  /* Anti-aliasing */
  border-style: inset;
  /* Remove gray border in Firefox */
  /* IE6 support */
  line-height: 0px;
  _border-color: #000000 #000000 #ffffff #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}
.hero-triangle:after {
  content: "";
}

.choose-image {
  position: absolute;
  bottom: 25px;
  left: 50px;
}
.choose-image > div {
  margin: 0 6px;
  display: inline-block;
  width: 9px;
  height: 9px;
  border: 2px solid #FFF;
  border-radius: 10px;
  cursor: pointer;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-timing-function: ease-out;
  /* Safari and Chrome */
  transition-timing-function: ease-out;
}
.choose-image > div.current {
  background-color: #FFF;
}
.choose-image > div:hover {
  background-color: #f4b136;
}

.hero-arrow {
  position: absolute;
  top: 50px;
  font-size: 3.5em;
  cursor: pointer;
}
.hero-arrow.left {
  left: 20px;
}
.hero-arrow.right {
  right: 20px;
}
.hero-arrow > i {
  color: #FFF;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-timing-function: ease-out;
  /* Safari and Chrome */
  transition-timing-function: ease-out;
}
.hero-arrow > i:hover {
  color: #f4b136;
}

/* Quote/Image sections */
.quote {
  height: 400px;
  padding: 0;
  margin: 0;
  font-weight: 200;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  /* Safari */
  box-sizing: border-box;
}

.first {
  float: left;
}

.second {
  float: right;
}

.left-quote {
  background-color: #2c2c36;
}
.left-quote.first {
  width: 40%;
  background-color: #FFF;
  text-align: center;
  display: table;
  table-layout: fixed;
  padding: 0 5em;
}
.left-quote.first div {
  font-size: 2.2em;
  display: table-cell;
  vertical-align: middle;
}
.left-quote.second {
  width: 60%;
}
.left-quote.second div {
  color: #FFF;
}

.right-quote {
  height: 500px;
  background-color: #2c2c36;
}
.right-quote.first {
  width: 60%;
  color: #FFF;
}
.right-quote.second {
  width: 40%;
  background-color: #FFF;
  text-align: left;
  display: table;
  table-layout: fixed;
  padding: 0 2em;
}
.right-quote.second div {
  font-size: 2.2em;
  display: table-cell;
  vertical-align: middle;
}
.right-quote.second div span {
  font-size: 20px;
}

.quote.right-quote.first > div.photo {
  height: 100%;
  overflow: hidden;
  background-image: url("../img/pool1.jpg");
  background-size: cover;
  background-position: top right;
}

.content > .photo {
  width: 100%;
  height: 400px;
  display: none;
  overflow: hidden;
  position: relative;
  background-image: url("../img/fedora.jpg");
  background-size: cover;
  background-position: top right;
}

.description {
  padding: 3.5em;
}

.title {
  font-size: 1.9em;
  font-style: italic;
}
.title:after {
  content: "";
  display: block;
  position: relative;
  margin: 0 auto;
  margin-top: 35px;
  margin-bottom: 35px;
  width: 90px;
  height: 2px;
  background: #f4b136;
}

.title, .information {
  font-family: Lora, serif;
  letter-spacing: 1px;
  text-align: center;
  text-transform: none;
}

.information {
  max-width: 670px;
  margin: 0 auto;
  line-height: 2em;
}

.floor-plans {
  margin-top: 35px;
  text-align: center;
  cursor: pointer;
}
.floor-plans > span {
  color: #FFF;
  letter-spacing: -5px;
}

.contact-form > .photo {
  height: 100%;
  width: 45%;
  display: inline-block;
  overflow: hidden;
  position: relative;
  background-image: url("../img/fedora.jpg");
  background-size: cover;
  background-position: top right;
}
.contact-form > .form {
  display: inline-block;
  float: right;
  height: 100%;
  width: 55%;
  padding-top: 20px;
  background-color: orange;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  /* Safari */
  box-sizing: border-box;
}

.form > form {
  position: relative;
  text-align: center;
  margin: 0 auto;
  margin-top: 60px;
  width: 400px;
}
.form > form > input {
  display: inline-block;
}

/* Map */
div.map {
  position: relative;
}

div#map {
  height: 750px;
  width: 100%;
  overflow: auto;
  z-index: 0;
}

.location {
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  /* Safari */
  box-sizing: border-box;
  height: 250px;
  max-width: 900px;
  margin: 0 auto;
  margin-top: -310px;
  background-color: #2c2c36;
  position: relative;
}

.marker {
  height: inherit;
  width: 250px;
  background-color: #f4b136;
  display: inline-block;
}
.marker > img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  display: table;
  width: 70px;
}

.address {
  height: inherit;
  width: 500px;
  display: inline-block;
  position: relative;
}

.title.title-left {
  display: inline-block;
  position: absolute;
  left: 30px;
  top: 45px;
  color: #FFF;
  text-align: left;
}
.title.title-left:after {
  margin-left: 0;
}

.address > .info {
  display: inline-block;
  position: absolute;
  left: 30px;
  bottom: 45px;
  color: #FFF;
  font-family: Lora, serif;
  font-size: .9em;
  line-height: 1.5em;
  letter-spacing: 1px;
}

/* Footer */
footer {
  width: 100%;
}
footer .contact {
  background-color: #2c2c36;
  position: relative;
  height: 370px;
  margin-top: 62px;
  padding: 50px 0;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  /* Safari */
  box-sizing: border-box;
}
footer .contact > div {
  color: #FFF;
  text-align: center;
}
footer .contact > div:first-child {
  font-weight: 200;
  font-size: 1.4em;
  margin-bottom: 20px;
}
footer .contact > div:not(:first-child) {
  text-transform: none;
  font-size: .8em;
  font-family: Lora, serif;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
footer .contact div.scroll-top-roof {
  margin-bottom: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55px;
  height: 0;
  border-style: solid;
  border-width: 0 0 15px 15px;
  border-color: transparent transparent #f4b136 transparent;
  line-height: 0px;
  _border-color: #000000 #000000 #f4b136 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}
footer div.social {
  margin-top: 50px;
}
footer div.social img {
  cursor: pointer;
  width: 25px;
  border-radius: 10px;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-timing-function: ease-out;
  /* Safari and Chrome */
  transition-timing-function: ease-out;
}
footer div.social img:not(:first-child) {
  margin-left: 5px;
}
footer div.social img:hover {
  background-color: #f4b136;
}
footer .bottom-logos div {
  display: inline-block;
  color: #2c2c36;
  background-color: #FFF;
  padding: 5px 30px;
  margin: 35px 18px 0;
}
footer .bottom, footer .bottom strong {
  text-transform: none;
  font-size: 10px;
  letter-spacing: -.5px;
}
footer .bottom {
  padding: 20px 100px 20px 30px;
  position: relative;
}
footer .scroll-top {
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 70px;
  background-color: #f4b136;
  cursor: pointer;
}
footer .scroll-top > img {
  width: 30px;
  height: 30px;
  left: 25%;
  position: relative;
  top: 40%;
  transform: translateY(-50%);
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-timing-function: ease-out;
  /* Safari and Chrome */
  transition-timing-function: ease-out;
}
footer .scroll-top > img:hover {
  top: 25%;
}
footer .disclaimer {
  position: absolute;
  top: 18px;
  right: 100px;
  font-size: 11px;
  text-transform: uppercase;
}
footer .disclaimer img {
  margin: 0 2px;
  vertical-align: middle;
  display: inline-block;
}

/*# sourceMappingURL=style.css.map */
