/************************UNIVERSAL************************/
/*
font-family: 'Hind', sans-serif;
font-family: 'Gentium Book Basic', serif;
font-family: 'Dancing Script', cursive;
*/

* {
	margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
	height: 100%;
	
}

html {
	font-size: 16px;
}

body {
	font-family: 'Hind', sans-serif;
	font-size: 62.5%;
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

li {
	list-style-type: none;
}

a, a img {
	border: none;
	text-decoration: none;
}

p {
	font-size: 1.6em;
	color: #825639;
	line-height: 1.4em;
	
}

label {
	font-size: 1.3em;
	color: #8e7e73;
	line-height: 1em;
}

input,
textarea {
	width: 100%;
	background: transparent;
	border: 1px solid #c9c0b6;
	border-radius: 5px;
	margin-bottom: 15px;
	font-size: 1.4em;
	color: #433033;
	padding-left: 4px;
	
}

textarea {
	font-family: 'Hind', sans-serif;
	height: 93px;
	resize: none;
	padding: 4px;
	
}

input {
	height: 30px;
}

input#submit {
	background: #7e7962;
	color: #fff;
	width: 195px;
	float: right;
	border-radius: 0;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 2em;
	transition: all .2s;
	text-transform: uppercase;
}

input#submit:hover {
	background: #433033;
}

.wrap {
	width: 1080px;
	margin: 0 auto;
}

.group:after {
  content: "";
  display: table;
  clear: both;
}

.heading {
	font-family: 'Dancing Script', cursive;
	font-size: 7.2em;
	text-align: center;
    color: #433033;
    opacity: .85;
    margin-top: 20px;
}

h2,h3,h4,h5,h6 {
	font-family: 'Gentium Book Basic', serif;
	font-weight: normal;
}

h3 {
	font-size: 3em;
	line-height: 1.2em;
	color: #433033;
}

h4,h5 {
	color: #433033;
}

#main-nav {
	text-align: center
}

#main-nav a.current {
	color: #825639;
	position: relative;
}

#main-nav a.current:after {
	content: "";
	background: #825639;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	margin-left: -3px;
	top: 27px;
}

#popup-container {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

#popup {
  height: 265px;
  border: 3px solid #f1f1f1;
  z-index: 1000;
  width: 420px;
  background-color: white;
  padding: 15px;
  font-size: 1.2em;
}

#close-button {
	padding: 3px;
	float: right;
	background-color: #20201f;
	color: white;
	font-size: 1.2em;
	margin-left: 3px;
	
}

#close-button:hover {
	color: #cfa74d;
	
}
/************************ HEADER ************************/

header {
	background: #20201f;
	color: #cfa74e;
	padding: 10px 0 20px 0;
	border-bottom: 1px solid #a6a6a5;
}

header .wrap {
	position: relative;
}

h1 {
	display: inline;
	margin: 0 auto;
}

header svg {
	fill: #cfa74d;
	width: 24px;
	height: 24px;
	position: relative;
	top: 7px;
}

h1 a {
	text-indent: -999em;
	background: url(/img/logo.png) no-repeat;
	width: 278px;
	height: 75px;
	display: block;
	margin: 0 auto 25px;
	    position: relative;
    z-index: 1000;
}

#header-top p {
	position: absolute;
	right: 0;
	top: 1px;
	font-family: 'Gentium Book Basic', serif;
	font-size: 1.8em;
	
}

#header-top p a {
	color: #cfa74d;
}

header nav a,
footer nav a {
	color: #7e7962;
	text-transform: uppercase;
	margin-right: 30px;
	font-size: 1.5em;
	font-weight: 500;
	transition: all .25s;
}

header nav a:last-child,
footer nav a:last-child {
	margin-right: 0;
}

header nav a:hover {
	color: #825639;
}



/************************ BANNER ************************/

#banner {
	position: relative;
}

#banner img {
	width: 100%;
	height: auto;
}

#banner-text {
	position: absolute;
    top: 25%;
    z-index: 10;
    width: 100%;
    text-align: center;
}

#banner h2 {
    color: #cfa74e;
    font-size: 7.2em;
}

#banner .banner-color {
	color: #fff;
}

.sm-banner-text {
	font-size: .6em;
	display: block;
}

#banner-text a {
	background-color: rgba(255,255,255, .6);
	color: #2e1d1b;
	font-size: 1.4em;
	position: relative;
	padding: 0 40px 0 10px;
	border-radius: 10px;
	top: 40px;
	font-weight: 500;
	transition: all .25s;
}

#banner-text a:hover {
	background-color: rgba(255,255,255, 1);
}

#banner-text a:after {
	position: absolute;
	content: url('/img/cta-arrow.png');
	width: 25px;
	height: 18px;
	z-index: 10;
	right: 5px;
	top: 9px; 
}

/************************ BLURB ************************/

#blurb {
	text-align: center;
	color: #433033;
	background: #f1efee;
	border-bottom: 1px solid #b2aca9;
	padding: 15px 0;
	margin-top: -4px;
}

#blurb span {
	font-family: 'Dancing Script', cursive;
	font-size: 1.4em;
}

#blurb p {
	color: #20201f;
	margin-top: 4px;
}

/************************ UNITS ************************/

h4 {
	font-size: 3.6em;
}

#units,
#latest-news {
	padding: 30px 0;
}

#units img,
#latest-news img {
	width: 100%;
	height: auto;
}

.unit {
	float: left;
	width: 53%;
}

.unit-txt {
	float: right;
	width: 39%;
}

.unit-txt h5,
#latest-news-text h5 {
	font-size: 2.4em;
	color: #433033;
	margin-bottom: 10px;
}

.unit-txt h5 span, 
#latest-news-text h5 span {
	font-size: .7em;
}

.unit-txt li {
	font-size: 1.4em;
	color: #825639;
}

.unit-txt a {
	color: #cfa74e;
    background: #433033;
    width: 175px;
    margin-top: 15px;
    border-radius: 10px;
    display: inline-block;
    font-size: 2em;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 35px;
    border: 2px solid #433033;
    transition: all .1s ease-in;
}

.unit-txt a:hover {
	background: #cfa74e;
	color: #433033;
}

.unslider-nav {
	margin-top: 15px;
}

.unslider-nav li {
	float: left;
	background: #aaa;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	margin-right: 15px;
	text-align: center;
	color: #fff;
	padding-top: 5px;
	font-size: 1.4em;
	cursor: pointer;
}

.unslider-nav .unslider-active{
	background: #433033;
}

/************************ LATEST NEWS ************************/

#latest-news {
	background: #f1efee;
	border-top: 1px solid #b2aca9;
}

#latest-news-img {
	width: 44.791666%;
	float: left;
	margin-right: 3.75%;
}

#latest-news-img img {
	border: 1px solid #776357;
}

#latest-news-text {
	float: left;
	width: 51.4%;
}

#latest-news-text p,
#latest-news-text a {
	color: #433033;
}

#latest-news-text a {
	font-size: 1.6em;
	border: 2px solid #433033;
	padding: 3px 10px;
	margin-top: 34px;
	display: inline-block;
	font-weight: 500;
	transition: all .25s;
}

/************************ AMENITIES ************************/


#amenities-pg p {
	font-size: 1.4em;
	line-height: 1.8em;
	margin-top: 0;
	text-align: center;
	color: #433033;
    opacity: .85;
}

#amenities {
	background: #f1efee;
	padding: 0 0 40px 0;
	margin-top: 40px;
	border-top: 1px solid #bab5b3;
}

#amenities h3 {
	font-size: 2.4em;
	margin-top: 40px;
}

#amenities li {
	color: #825639;
	font-size: 1.4em;
	margin-top: 7px
}

#amenities .amenities-col {
	float: left;
}

#features {
	width: 45.3125%;
	margin-right: 9%;
}

#fitness {
	width: 21.7%;
	margin-right: 7.5%;
}

#services {
	width: 16.4583%;
}

/************************ RENTAL UNITS ************************/

#rental-pg section {
	padding: 70px 0;
	border-bottom: 1px solid #b3adaa;
}

#rental-pg section:nth-child(odd) {
	background: #f1efee;
	
}

#rental-pg h3 span {
	display: block;
}

#rental-pg .heading,
#amenities-pg .heading {
	text-align: center;
}

.plan-left,
.text-left {
	float: left;
}

.plan-right,
.text-right {
	float: right;
}

.plan-left,
.plan-right {
	width: 64.0625%;
}

.plan-left img,
.plan-right img {
	width: 100%;
	height: auto;
	
}

.plan {
	position: relative;
}

.plan:after {
	content: '';
    display: block;
    width: 33px;
    height: 33px;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(/img/zoom.svg);
    background-color: rgba(0,0,0, .8);
}

.text-left,
.text-right {
	width: 31.875%;
}

#rental-pg h3 {
	line-height: 1em;
}

h3 span {
/* 	display: block; */
	font-size: .6em;
	font-style: italic;
}

#rental-pg li {
	color: #825639;
	font-size: 1.4em;
	margin-top: 7px;
}

#carousel-demo img {
	width: 100%;
}

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

/************************ COMMUNITY NEWS ************************/

#news-pg .heading {
	margin-bottom: 40px;
}

.news-img {
	width: 48.333333%;
	float: left;
	margin-right: 2.604166%;
}

.news-img img {
	width: 100%;
	height: auto;
	border: 1px solid #433033;
}

#news-pg h3 {
	font-size: 2.4em;
}

#news-pg p {
	font-size: 1.4em;
	line-height: 1.8em;
}

.news {
	margin-bottom: 60px;
}

.news-text {
	width: 48.958333%;
	float: left;
}

.news-text a {
	width: 194px;
	background: #7e7962;
	color: #fff;
	display: inline-block;
	font-size: 1.6em;
	font-weight: bold;
	text-align: center;
	margin-top: 40px;
    transition: all .2s;
}

.news-text a:hover {
	background: #433033;
}

/************************ ARTICLE ************************/

#article-pg {
	margin-top: 35px;
}

#article-pg main {
	float: left;
	width: 67.708333%;
}

#article-pg li {
	color: #825639;
	font-size: 1.6em;
	margin-top: 7px;
	margin-bottom: 7px;
}

#article-pg main p {
	color: #20201f;
	margin-bottom: 25px;
	font-size: 1.4em;
	line-height: 1.7em;
		
}

#article-pg aside {
	float: right;
	width: 26.5625%;
}

#article-pg h2,
#article-pg h3,
#article-pg aside h4{
	font-family: 'Hind', sans-serif;
	font-size: 4.8em;
	font-weight: 700;
	color: #433033;
	line-height: 1em;
}

#article-pg h3 {
	border-bottom: 2px solid #433033;
	font-size: 2.4em;
	padding-bottom: 5px;
	margin-bottom: 25px;
	text-transform: uppercase;
}

#article-pg h2 span {
	color: #825639;
	font-size: 24px;
	display: block;
	font-weight: 600;
	line-height: 1em;
	margin-bottom: 20px;
}

#article-pg main img{
	margin-bottom: 15px;
	width: 100%;
	height: auto;
}

#back {
	font-family: 'Gentium Book Basic', serif;
	position: relative;
	padding-left: 35px;
	padding-top: 3px;
	color: #825639;
}

#back:hover {
	color: #20201f;
}

#back:before {
	position: absolute;
	content: url(/img/back-arrow.png);
	width: 30px;
	height: 23px;
	left: 0;
	top: 0;
}

#article-pg aside img {
	float: left;
	margin-right: 12px;
}

#article-pg aside h4 {
	font-size: 1.7em;
	line-height: 1.2em;
}

.clip {
	margin-bottom: 35px;
}

.clip p {
	display: block;
	clear: both;
	margin-top: 8px;
	margin-bottom: 15px;
	font-size: 1.4em;
}

.clip p a:hover{
	color: #825639;
}

.read-article {
	font-family: 'Gentium Book Basic', serif;
	position: relative;
	color: #433033;
	padding-left: 28px;
	padding-top: 4px;
}

.read-article:before {
	position: absolute;
	content: "+";
	width: 23px;
	height: 21px;
	left: 0;
	top: 0;
	color: #fff;
	background: #825639;
	font-size: 2em;
	font-weight: bold;
	text-align: center;
	padding-top: 2px;
}

/************************ MAINTENANCE REQUEST ************************/

#maintenance-pg {
	background: #f3eee5;
	padding-bottom: 60px;
}

#maintenance-left{
	float: left;
	width: 35%;
}

#maintenance-left p {
	margin-bottom: 10px;
	font-size: 1.3em;
}

#date {
	background: url(/img/datepicker-icon.png) 98% center no-repeat;
}

#maintenance-right {
	float: right;
	width: 60%;
	margin-top: 31px;
}


/************************ CONTACT ************************/

#map-wrap {
	height: 370px;
	position: relative;
	width: 100%;
}

#map-canvas {
	width: 100%;
	height: 370px;
}

#map-mask {
	bottom: 0px;
	width: 100%;
	height: auto;
	position: absolute;
/* 	background-image: url("/img/map-mask.png"); */
	background-position: center center;
	z-index: 10;
	height: 370px;

}

#contact-pg {
	background: #f4efe6;
	padding-bottom: 40px;
}

#contact-form,
.result_success {
	float: left;
	width: 50%;
}

.info-container {
	display: flex;
	justify-content: center;
}

#contact-info {
	display: flex;
    flex-direction: column;
    justify-content: center;
}

#contact-info li,
address{
	color: #825639;
	font-size: 1.6em;
	
}

address {
	font-style: normal;
	line-height: 1.2em;
}

.phone {
	margin-top: 25px;
}

.phone a{
	color: #433033;
	font-size: 1.4em;
}

.result_success,
.result_error {
	display: none;
}

.result_success {
	text-align: center;
	margin-top: 100px;
	background-color: rgba(255, 255, 255, .5);
	padding: 20px;
}

/************************ FOOTER ************************/

footer {
	background: #20201f;
	padding-top: 30px;
}

#footer-nav a.current {
	color: #7e7962;
}

#footer-contact {
	float: left;
}

#footer-contact a{
	color: #cfa74e;
	font-size: 1.2em;
    margin-top: 5px;
    display: inline-block;
}

h6 {
	color: #cfa74e;
	font-size: 1.8em;
	font-weight: bold;
	text-transform: uppercase;
}

footer p {
	color: #f5eddc;
	font-size: 1.2em;
}

footer ul {
	float: right;
}

footer ul li {
	float: left;
	margin-left: 12px;
}

footer ul li {
	width: 36px;
	height: 36px;
}

footer nav {
	clear: both;
	padding-top: 40px;
}

footer nav a {
	color: #825639;
	margin-right: 25px;
	transition: all .25s;
	text-align: center;
}

footer nav a:hover {
	color: #7e7962;
}

#copyright {
	background: #292928;
	padding: 10px 0;
	margin-top: 15px;
	clear: both;
}

#copyright p {
	float: left;
}

#copyright #website {
	float: right;
}

#website a {
	color: #f5eddc;
}

#website a:hover {
	color: #4990c5;
}

#latest-news-text a:hover {
	background: #433033;
	color: #f5eddc;
}

