
/* Test CSS --------------------------------------------------

/*# ANY CSS WHICH AFFECTS ALL PROPERTIES/THEMES SHOULD BE INCLUDED IN THIS FILE. CSS WHICH SHOULD ONLY AFFECT AN INDIVIDUAL PROPERTY/THEME SHOULD BE CONTAINED IN /[THEME-NAME]/STYLESHEETS/APP.CSS #*/

/* --------------------------------------------------
:: Table of Contents
-----------------------------------------------------
:: Base
:: Typography
:: Layout
:: Module
*/

/*
@media only screen and (max-width: 640px)  { <-SMALL     }
@media only screen and (min-width: 641px)  {   MEDIUM->  }
@media only screen and (max-width: 1024px) { <-MEDIUM    }
@media only screen and (min-width: 1025px) {   LARGE->   }
@media only screen and (max-width: 1440px) { <-LARGE     }
@media only screen and (min-width: 1441px) {   XLARGE->  }
@media only screen and (max-width: 1920px) { <-XLARGE    }
@media only screen and (min-width: 1921px) {   XXLARGE-> }
*/

/* -----------------------------------------
:: Base
----------------------------------------- */
ul, li, ol, dl {
	list-style: none;
	margin: 0;
	padding: 0;
}
input, label, select, option, textarea {
	height: auto;
	font-size: inherit;
}
.absolute {
	position: absolute;
}
.relative {
	position: relative;
}
.static {
	position: static;
}
.fixed {
	position: fixed;
}
.inline-block {
	display: inline-block;
	vertical-align: top;
}
html.lt-ie9 .inline-block {
	margin-right: 1px;
}
.inline {
	display: inline;
}
.block {
	display: block;
}
.none {
	display: none;
}
.visible {
	visibility: visible;
}
.hidden {
	visibility: hidden;
}
.clearfix:after {
	clear: both;
	display: table;  /* http://css-tricks.com/snippets/css/clear-fix/*/
	content: "";
}
/* -----------------------------------------
:: Typography
----------------------------------------- */

/*
:: A.GOLSTON (12/2/2014)
:: RESPONSIVE TYPOGRAPHY
:: http://snook.ca/archives/html_and_css/font-size-with-rem
:: 10px => 1.0(r)em (USING 10px/62.5% STRATEGY)
:: 15px => 1.5(r)em
:: 20px => 2.0(r)em
:: ETC...
*/

@font-face {
	font-family: 'georgia-reg';
	font-style: normal;
	font-weight: normal;
	src: url('../fonts/georgia-reg.eot');
	src: url('../fonts/georgia-regd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/georgia-reg.woff2') format('woff2'), url('../fonts/georgia-reg.woff') format('woff'), url('../fonts/georgia-reg.ttf') format('truetype'), url('../fonts/georgia-reg.svg#georgia-reg') format('svg');
}
@font-face {
	font-family: 'georgia-bold';
	font-style: normal;
	font-weight: normal;
	src: url('../fonts/georgia-bold.eot');
	src: url('../fonts/georgia-boldd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/georgia-bold.woff2') format('woff2'), url('../fonts/georgia-bold.woff') format('woff'), url('../fonts/georgia-bold.ttf') format('truetype'), url('../fonts/georgia-bold.svg#georgia-bold') format('svg');
}
@font-face {
	font-family: 'sackers-gothic-heavy';
	font-style: normal;
	font-weight: normal;
	src: url('../fonts/sackers-gothic-heavy.html');
	src: url('../fonts/sackers-gothic-heavyd41d.html?#iefix') format('embedded-opentype'), url('../fonts/sackers-gothic-heavy.woff2') format('woff2'), url('../fonts/sackers-gothic-heavy.woff') format('woff'), url('../fonts/sackers-gothic-heavy.ttf') format('truetype'), url('../fonts/sackers-gothic-heavy.svg#sackers-gothic-heavy') format('svg');
}
@font-face {
	font-family: 'arial-reg';
	font-style: normal;
	font-weight: normal;
	src: url('../fonts/arial-reg.eot');
	src: url('../fonts/arial-regd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/arial-reg.woff2') format('woff2'), url('../fonts/arial-reg.woff') format('woff'), url('../fonts/arial-reg.ttf') format('truetype'), url('../fonts/arial-reg.svg#arial-reg') format('svg');
}
body {
	color: black;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
}
body * {
	font-family: inherit;
	font-size: inherit;
	letter-spacing: inherit;
	line-height: inherit;
}
p, h1, h2, h3, a {
	line-height: normal;
	margin: 0;
	padding: 0;
}
p {
	font-family: 'georgia-reg';
	font-size: 16px;
	line-height: 21px;
}
h1, h2, h3 {
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}
h1 {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 3px;
	line-height: normal;
}
a {
	font-family: 'georgia-bold';
}
p:first-child, h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
	margin-top: 0;
}
/* -----------------------------------------
:: Colors
----------------------------------------- */
.black-border {
	border: solid 3px #000;
	color: #000;
}
.black, .black h1, .black a {
	color: #000;
}
.blue-border {
	border: solid 3px #2d3d5e;
	color: #2d3d5e;
}
.blue, .blue h1, .blue a {
	color: #2d3d5e;
}
.white-border {
	border: solid 3px #fff;
}
.white-bg {
	background-color: #fff;
}
.white, .white h1, .white a {
	color: #fff;
}
.black-arrow-up, .blue-arrow-up, .white-arrow-up, .black-arrow-down, .blue-arrow-down, .white-arrow-down {
	background-position: center;
	background-repeat: no-repeat;
	height: 60px;
}
.black-arrow-up, .blue-arrow-up, .white-arrow-up {
	background-position: top;
}
.black-arrow-down, .blue-arrow-down, .white-arrow-down {
	background-position: bottom;
}
.black-arrow-up {
	background-image: url(../images/misc/black-arrow-up.png);
}
.blue-arrow-up {
	background-image: url(../images/misc/blue-arrow-up.png);
}
.white-arrow-up {
	background-image: url(../images/misc/white-arrow-up.png);
}
.black-arrow-down {
	background-image: url(../images/misc/black-arrow-down.png);
}
.blue-arrow-down {
	background-image: url(../images/misc/blue-arrow-down.png);
}
.white-arrow-down {
	background-image: url(../images/misc/white-arrow-down.png);
}
/* -----------------------------------------
:: Misc
----------------------------------------- */
a, span:hover, :hover span, .accordion dd>a, :before, :after {
	transition: all .25s ease-in-out 0;
	-moz-transition-duration: .25s;
	-o-transition-duration: .25s;
	-webkit-transition-duration: .25s;
	transition-duration: .25s;
	-webkit-animation: .25s;
	animation: .25s;
}
ul, li {
	list-style: none;
	list-style-type: none;
}
.no-margin {
	margin: 0 !important;
}
.no-padding {
	padding: 0 !important;
}
.cursor {
	cursor: pointer;
}
.valign {
	display: table;
	height: 100%;
	width: 100%;
}
.valign > div {
	display: table-cell;
	height: 100%;
	width: 100%;
}
.valign.bottom > div {
	vertical-align: bottom;
}
.valign.middle > div {
	vertical-align: middle;
}
textarea:focus, input:focus, button:focus, a:focus {
	outline: none !important;
}

/*# MEDIA QUERIES FOR "LAYOUT" SECTION #*/

@media only screen and (max-width: 640px) {
}

@media only screen and (min-width: 641px) {
}

@media only screen and (max-width: 1024px) {
}

@media only screen and (min-width: 1025px) {
}

@media only screen and (max-width: 1440px) {
}

@media only screen and (min-width: 1441px) {
}

@media only screen and (max-width: 1920px) {
}

@media only screen and (min-width: 1921px) {
}
/* -----------------------------------------
:: Layout
----------------------------------------- */
html, body {
	background-color: #a7a9ac;
	height: 100%;
	margin: 0;
	padding: 0;
	width: 100%;
}
.xlrow {
	display: block;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
}
/* -----------------------------------------
:: Module
----------------------------------------- */

/*# WEBSITE NAVIGATION #*/

nav {
	margin-top: 36px;
	text-align: center;
}
nav ul {
	display: inline-table;
	margin: 0 auto;
}
nav li {
	display: inline;
	float: left;
	margin: 0 20px;
}
nav li a {
	color: #898989;
	font-family: 'sackers-gothic-heavy', sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	padding-top: 10px;
	letter-spacing: 2px;
}
nav li:hover a {
	color: #2d3d5e;
}
nav li.active a, nav ul.active a {
	color: #2d3d5e;
}

@media only screen and (min-width:642px) and (max-width:800px) {
  
  nav li {
    margin:0 10px !important;
  }
 
  nav li a {
    font-size:11px !important;
  }
  
}

/*# OFF CANVAS NAV #*/
.left-off-canvas-menu {
	background-color: #dadada;
}
.left-off-canvas-menu a {
	border-bottom: solid 1px #000;
	color: #fff !important;
	display: block;
	font-family: 'sackers-gothic-heavy', sans-serif;
	padding: 20px 15px 10px 15px;
	text-transform: uppercase;
}
.left-off-canvas-menu:first-child a {
	border-top: solid 1px #000;
}
ul.off-canvas-list li a {
	padding-top: 20px;
}
.left-off-canvas-menu a:hover, .left-off-canvas-menu ul li.active > a:hover, .left-off-canvas-menu ul li.active > a {
	background-color: #2d3d5e;
	color: #fff;
}
.left-off-canvas-menu ul {
	background-color: #a7a9ac;
	list-style: none;
	list-style-type: none;
}
.left-off-canvas-menu li {
	color: #fff;
	display: inline-block;
	font-family: 'sackers-gothic-heavy', sans-serif;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	width: 100%;
}
.left-off-canvas-wrap {
	background-color: #a7a9ac;
	height: 45px;
	padding: 5px;
}
.left-off-canvas-toggle, .left-off-canvas-mapit, .left-off-canvas-mapit:active, .left-off-canvas-mapit:focus {
	color: #fff;
	display: inline-block;
	float: left;
	font-family: 'sackers-gothic-heavy', sans-serif;
	font-size: 14px;
	font-weight: 400;
	padding: 15px;
	text-transform: uppercase;
	width: inherit;
}
.left-off-canvas-mapit, .left-off-canvas-mapit:active, .left-off-canvas-mapit:focus {
	float: right;
	text-align: right;
	white-space: nowrap;
}
.left-off-canvas-toggle:hover, .left-off-canvas-toggle:active, .left-off-canvas-toggle:focus, .left-off-canvas-mapit:hover {
	color: #2d3d5e;
}
/*# LOGO #*/

.logo {
	padding: 39px 0 20px 0;
	text-align: center;
}
body#residences .logo {
	padding: 19px 0 0 0;
}
.logo-secound {
	background-image: url(../images/logos/logo-secound.png);
	background-position: bottom right;
	background-repeat: no-repeat;
	background-size: contain;
	max-width: 800px;
}
/*# FANCYBOX #*/
.fancybox-nav span {
	visibility: visible !important;
}
/*# SLIDESHOW #*/

.slick-slider {
	margin-bottom: 0 !important;
}
.slick-prev, .slick-next, .slick-prev:hover, .slick-next:hover, .slick-prev:focus, .slick-next:focus, .slick-prev:before, .slick-next:before {
	font-family: 'sackers-gothic-heavy', sans-serif;
	height: 50px !important;
	opacity: 1 !important;
	width: 100px !important;
	z-index: 1000;
}
body#home .slick-prev, body#home .slick-next {
	display: none;
}
.slick-prev {
	left: 15px;
}
.slick-next {
	right: 15px;
}
.slick-prev:before, .slick-next:before {
	font-size: 52px;
	font-weight: 600;
}
.slick-prev:before {
	content: url(../images/icons/nearby-arrow-back.png);
	margin-right: -30px;
}
.slick-next:before {
	content: url(../images/icons/nearby-arrow-next.png);
	margin-left: -30px;
}
.slideshow-slide-img {
	width: 100%;
}
.carousel-nav {
	margin: 20px 0 !important;
}
/* SLIDESHOW HEIGHTS */
.home-slider-01, .home-slider-02, .home-slider-03, .home-slider-04, .residences-slider-01, .residences-slider-02, .amenities-slider-01, .nearby-slider-01, .nearby-slider-02, .nearby-slider-03, .contact-slider-01 {
	background-position: center center;
	background-size: cover;
}
.home-slider-01, .home-slider-02, .home-slider-03, .home-slider-04, .residences-slider-01, .residences-slider-02, .amenities-slider-01, .nearby-slider-03, .contact-slider-01 {
	height: 450px;
}
.nearby-slider-01 {
	height: 250px;
}
.nearby-slider-02 {
	height: 100px;
}
.home-slider-01, .home-slider-02, .home-slider-04, .residences-slider-01, .residences-slider-02, .amenities-slider-01, .nearby-slider-01, .nearby-slider-03, .contact-slider-01 {
	position: absolute;
}
.home-slider-03, .nearby-slider-02 {
	position: relative;
}
.home-slider-03-margin {
	margin-bottom: 45px;
}
.nearby-slider-01 {
	margin-top: 30px;
}
.contact-slider-01 {
	height: 1300px;
}
/* HOME PAGE HEADER GRADIENT */
.bg-gradient-wrap {
	background-image: url(../images/bg/bg-gradient.png);
	background-position: top center;
	background-repeat: no-repeat;
}
.bg-gradient-container {
	margin: 0 auto;
	max-width: 1015px;
}
/* FOOTER */
footer {
	background-color: #a7a9ac;
	overflow: hidden;
	padding: 20px 20px 40px 20px;
	display: inline-block;
	font-size: 12px;
	font-style: italic;
	text-align: center;
	font-family: 'georgia-reg' ;
	width: 100%;
	margin: 0 0 -6px 0;
}

footer p, .footer-callout-icons, .footer-callout-address, .footer-callout-address a, .footer-callout-email, .footer-callout-ascii, .footer-callout-copy, .footer-callout-phone, .footer-callout-phone a {
	font-family: 'georgia-reg', arial ;
	color:white;
}
.footer-callout ul .footer-callout-icons ul, .footer-callout-ascii ul {
	display: block;
	margin: 0 auto;
}
.footer-callout li, .footer-callout-icons li, .footer-callout-ascii li {
	display: block;
	margin: 20px auto;
	text-align: center;
}
/* FLOORPLANS */
#floorplans {
	padding: 0 20px 20px 20px;
}
.floorplan-group {
	padding: 70px 120px 220px 120px;
}
.floorplans ul {
	clear: both;
}
.floorplans .box-cell-link a {
	text-transform: capitalize;
}
.img-container img {
	display: block;
	margin: 0 auto;
}
.resp-tabs-container ul {
	display: block;
	float: left;
	width: 100%;
}
.resp-tabs-container li {
}
#panel-1, #panel-2, #panel-3 {
}
/*# FLOORPAN (HOVER CELLS) #*/
.floor-image .img-container {
	margin-top: 20px;
}
.floorplan-desktop {
	height: 200px;
	margin: 0 auto;
	width: 200px;
}
.floorplan-mobile {
	height: 200px;
	margin: 0 auto;
	width: 200px;
}
.floorplans-container {
	margin-bottom: 20px;
}
.floorplan-wrap {
	background: #f2f2f2;
	padding: 20px;
	border-bottom: solid #a7a9ac 1px;
}
.floorplan-info p, .floorplan-name h1 {
	color: #2d3d5e;
	margin-bottom: 5px;
	opacity: 1 !important;
	text-align: center;
	font-weight: 600;
	transition: all .25s ease-in-out 0;
	-moz-transition-duration: .25s;
	-o-transition-duration: .25s;
	-webkit-transition-duration: .25s;
	transition-duration: .25s;
	-webkit-animation: .25s;
	animation: .25s;
}
.floorplan-info p, .fpbedbath p {
	font-size: 14px;
}
.fpbedbath p, .fpenlarge p {
	font-style: italic;
}
.fpprice p {
	color: #ac3f09;
	font-family: 'georgia-bold', serif;
	font-style: italic;
	margin-bottom: 5px;
}
.fpenlarge p {
	font-size: 12px;
	margin-top: 20px;
	font-weight: 500 !important;
}
.floorplan-name h1 {
	font-family: 'sackers-gothic-heavy', sans-serif;
	font-size: 14px;
	line-height: 25px;
}
.fp-tabs {
	margin-top: 31px;
}
.fp-tabs a {
	color: #000;
	display: inherit;
	font-family: 'georgia-reg', serif;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 2px;
	text-align: center;
	margin-bottom: 18px;
}
.fp-tabs .black-arrow-down {
	height: 85px;
	margin: 0 0 12px 0;
}
.floorplan-content-img-wrap {
}
.floorplan-content-img {
	background-color: #fff;
	background-position: top center;
	background-position-y: 50%;
	background-position-x: 50%;
	background-position: 50%, 50%;
	background-repeat: no-repeat;
	background-size: 0%;
	height: 100%;
	transition: all .25s ease-in-out 0;
	-moz-transition-duration: .25s;
	-o-transition-duration: .25s;
	-webkit-transition-duration: .25s;
	transition-duration: .25s;
	-webkit-animation: .25s;
	animation: .25s;
	width: 100%;
	z-index: 10;
	vertical-align: middle;
}
.floorplan-desktop:hover .floorplan-content-img {
	background-color: transparent;
	background-size: contain;
	cursor: default;
	height: 100%;
	min-height: inherit;
	opacity: 1;
	z-index: 1;
}
.floorplan-desktop:hover .floorplan-name h1, .floorplan-desktop:hover .floorplan-info p {
	opacity: 0 !important;
}
.floorplans-image {
	text-align: center;
}
/* /////////////////////////////
///////// Location ////////////
////////////////////////////*/
.location-container {
	margin: 50px 0 0 0;
}
.map-wrap {
	position: relative;
}
#map {
	height: 585px;
	margin: 0;
	-webkit-transition: height .25s; /* Safari */
	transition: height .25s;
}
#map img {
	background: none !important;
	border: 0 !important;
	height: auto !important;
	margin: 0 !important;
	max-width: none !important;
	padding: 0 !important;
}
#map_static {
	height: inherit;
}
.slide-container #map_static img {
	margin-bottom: -165px;
}
.slide-container #map_static {
	margin-bottom: 165px;
}
.poi-container {
	background-image: url(../images/fancybox/btns/btn-hover-black.html);
}
.location-title-view-map, body#nearby .resp-tab-active .location-title-view-map {
	color: #000 !important;
	cursor: pointer;
	display: inherit;
	font-family: 'georgia-reg', serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 2px;
	margin-top: 14px;
	text-align: center;
	text-transform: uppercase;
}
.location-title-header {
	border: solid 3px #000;
	color: #000;
	font-family: 'sackers-gothic-heavy', sans-serif;
	font-size: 17px;
	height: 81px !important;
	letter-spacing: 1px;
	margin: 0 auto;
	padding: 18px 10px 10px 10px;
	text-align: center;
	text-transform: uppercase;
	width: 220px;
}
.location-title-list li,
.location-title-list li a {
	line-height: inherit;
	margin-bottom: 19px;
	text-align: center;
}
.poi-name{
	padding: 0 0 20px 0;
}
.poi-name,
.poi-name:focus,
.poi-name a,
.poi-name a:focus {
	color: #123459;
	display: block;
	font-family: 'sackers-gothic-heavy', sans-serif;
	font-size: 14px;
	padding-top: 5px;
	text-align: center;
	text-transform: uppercase;
}
.poi-name:hover,
.poi-name:active,
.poi-name a:hover,
.poi-name a:active  {
	color: #ac3f09 !important;
}

.location-title-list li:first-child,
.location-title {
	margin-top: 23px;
}
body#nearby .resp-tabs-wrap {
	margin: 20px auto 0 auto;
}
body#nearby .resp-tabs-list ul {
	margin: 0 auto;
}
body#nearby .resp-tab-item, body#nearby .resp-accordion a {
	color: #7a7979;
	cursor: pointer;
	display: inline-block;
	font-family: 'georgia-reg', serif;
	font-size: 14px;
	font-style: italic;
	letter-spacing: 1px;
	margin: 0 1%;
	text-align: center;
	transition: all .25s ease-in-out 0;
	-moz-transition-duration: .25s;
	-o-transition-duration: .25s;
	-webkit-transition-duration: .25s;
	transition-duration: .25s;
	-webkit-animation: .25s;
	animation: .25s;
}
body#nearby .resp-tab-active, body#nearby .resp-tab-active a, body#nearby .resp-tab-item:hover, body#nearby .resp-accordion a:hover {
	background-color: transparent;
	color: #ac3f09 !important;
}
body#nearby .resp-tabs-list ul {
	margin: 0;
	padding: 0;
}
body#nearby .resp-tabs-list li:before {
}
body#residences [class*="column"]+[class*="column"]:last-child {
	margin: 20px auto;
}
.resp-tabs-list p {
	border: solid 3px #000;
	color: #000;
	font-family: 'sackers-gothic-heavy', sans-serif;
	font-size: 24px;
	margin: 20px auto 0 auto;
	max-width: 235px;
	padding: 25px 10px 15px 10px;
	text-align: center;
	text-transform: uppercase;
}
h2.resp-accordion {
	background: #f2f2f2;
	color: #7a7979;
	font-family: 'georgia-reg', serif;
	font-size: 25px;
	font-style: italic;
	letter-spacing: 1px;
	text-align: center;
	text-transform: none;
}
.poi-list-right {
	margin-left: 75px;
}
.location dd {
}
[class*="column"]+[class*="column"]:last-child {
	float: left;
}
/*-- Markers --------------*/
.marker {
	display: none;
}
.markers a {
	color: #000;
	font-family: 'georgia-reg', serif;
	font-size: 15px;
	font-weight: 400;
	line-height: inherit;
	margin-top: 20px;
	text-align: center;
}
/*-- Google Popup--------------*/

.poi_title {
	display: block;
}
.poi-first .poi:first-child {
	margin-top: 15px !important;
}
.gm-style-iw {
	height: auto !important;
	min-height: 85px !important;
	min-width: 200px !important;
	overflow: visible !important;
	width: auto !important;
}
.gmaps_info_window p {
	color: #000;
	font-family: 'georgia-reg', serif;
	font-size: 12px;
	line-height: normal;
	margin: 0 0 5px 0;
	text-align: left;
}
.gmaps_info_window h4 {
	color: #123459 !important;
	font-family: 'sackers-gothic-heavy', sans-serif;
	font-size: 12px;
	font-style: normal !important;
	margin: 0 !important;
	margin-bottom: 30px;
	text-align: left !important;
	text-transform: uppercase;
}
.gmaps_info_window a, .gmaps_info_window a:hover {
	color: #f26c4f;
	font-family: 'sackers-gothic-heavy', sans-serif;
	font-size: 10px;
}
.gmaps_info_window a:before {
	color: #000;
	content: "|";
	font-family: 'sackers-gothic-heavy', sans-serif;
	font-weight: 400;
	padding: 0 4px 0 0;
	vertical-align: inherit;
}
.gmaps_info_window a:first-child:before {
	display: none;
}
.accordion .content {
	display: block;
	padding: 0;
}
.accordion .content.active, .accordion dd.active a {
	background-color: transparent;
}
.name {
	color: #123459;
	font-family: 'sackers-gothic-heavy', sans-serif;
	font-size: 13px;
	text-transform: uppercase;
}
/*# CONTACT #*/
.callout-phone, .callout-phone span, .callout-phone a {
	font-family: 'georgia-bold', serif;
	font-size: 24px;
	font-style: italic;
	margin: 0 0 -10px 0;
}
.mapit {
	margin: 10px 0;
}
.mapit h1 {
	font-family: 'georgia-bold', serif;
	font-size: 24px;
	font-style: italic;
}
.mapit a {
	font-family: 'georgia-bold', serif;
	font-size: 11px !important;
	font-style: italic;
	font-weight: 600;
}
.blue-contact p {
	font-family: 'sackers-gothic-heavy', sans-serif;
	font-size: 24px;
	line-height: normal;
	line-height: normal;
	text-transform: uppercase;
}
.form-wrap {
	margin-bottom: 100px;
	margin-top: -1487px;
	position: relative;
	z-index: 900;
}
.form-container {
	margin: 0 auto;
	max-width: 736px;
	padding: 200px 0 0 0;
}
.form-content {
	background-image: url(../images/bg/bg-form-wrap.png);
	margin-top: 20px;
	padding: 33px 20px 20px 20px;
}
.form-content h1 {
	color: #2d3d5e;
	display: inline;
	font-size: 18px;
	padding: 0 20px 28px 18px;
	display: block;
}
.form-content p, .form-content a {
	color: #2d3d5e;
	display: inline;
	font-family: 'georgia-bold', serif;
	font-size: 15px !important;
	font-style: italic;
	text-transform: none;
}
.callout-email {
	letter-spacing: 2px;
}
.wufoo-wrap {
	padding: 0 0 0 10px;
}
.wufoo input.text {
	width: 92% !important;
}
/*# PRIVACY POLICY #*/
.privacy-page-text {
	display: inline;
}
.privacy-page-text, .privacy-page-text h1, .privacy-page-text a, .privacy-page-text .various {
	color: #636363;
	display: inline-block;
	font-family: 'arial-reg', serif;
	font-size: 11px !important;
	font-style: normal;
	line-height: 15px !important;
	margin-right: 8px;
	text-transform: uppercase;
}
.privacy-page-text a {
	text-decoration: underline;
}
.fancybox-inner {
	height: inherit !important;
}
#privacy {
	display: none;
	padding: 0;
	width: 100% !important;
}
#privacy p {
	color: #000;
	cursor: default;
	font-family: 'georgia-reg', serif;
	font-size: 14px;
	line-height: 25px;
	margin: 10px 0;
	width: 100%;
}
#privacy h1 {
	color: #2a3856;
	cursor: default;
	font-size: 24px;
	letter-spacing: 2px;
	line-height: normal;
}
#privacy h2 {
	color: #898989;
	cursor: default;
	font-size: 18px;
	letter-spacing: 2px;
	line-height: normal;
}
#privacy a {
	border-bottom: solid 1px #898989;
	color: #898989;
}
#privacy a:hover {
	border-bottom: none;
	color: #2a3856;
}
.input-group.input-group-submit {
	text-align: center;
}
#submit_button {
	font-family: 'sackers-gothic-heavy', sans-serif !important;
  font-weight: 300;
	background: #2c3c5c !important;
  border: none;
  border-radius: 0 !important;
  color: #fff;
  cursor: pointer;
  font-size: 19px;
  letter-spacing: 5px;
  line-height: 40px !important;
  padding: 16px 50px !important;
  margin-bottom:20px;
  margin-top:50px;
  text-transform: uppercase;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.contact-form-property .ajaxForm label {
	display: none;
	color:red;
}
.contact-form-property .ajaxForm .invalid label {
	display: inherit;
}
.contact-form-property .ajaxForm input[type='text'],
.contact-form-property .ajaxForm input[type='email']{
	color: #2d3d5e;
	font-family: 'sackers-gothic-heavy', sans-serif !important;
  font-weight: 300;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
	font-size: 15px;
  height: 65px;
  letter-spacing: 2px;
  line-height: 30px;
  margin-bottom: 50px;
  padding-left: 15px;
  text-transform: uppercase;
  border: 1px solid #7989a3;
}
.contact-form-property .ajaxForm .invalid input[type='text'],
.contact-form-property .ajaxForm .invalid input[type='email']{
	border: 1px solid red;
}
#thank-you > div, #flash > div {
	text-align: center;
	padding:20px 0;
}
/* recaptcha -----------------*/

#recaptcha_response_field {
	border-color: #7989a3 !important;
	font-size: 15px;
	height: 35px;
	border-radius: 0; 
}
#recaptcha_field span {
	color: #2d3d5e;
	font-family: 'sackers-gothic-heavy', sans-serif !important;
  font-weight: 300;
  font-size: 11px;
  line-height: 30px;
  text-transform: uppercase;
}
::-webkit-input-placeholder { /* WebKit browsers */
    color:    #2d3d5e;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #2d3d5e;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #2d3d5e;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
   color:    #2d3d5e;
}
.invalid ::-webkit-input-placeholder { /* WebKit browsers */
    color:    red;
}
.invalid :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    red;
   opacity:  1;
}
.invalid ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    red;
   opacity:  1;
}
.invalid :-ms-input-placeholder { /* Internet Explorer 10+ */
   color:    red;
}
/*# CALL TO ACTION #*/
.home-callout {
	background-color: white;
	padding: 96px 20px 67px 20px;
}
.home-callout p, .home-callout a {
	color: #2d3d5e;
	display: table;
	font-family: 'sackers-gothic-heavy', sans-serif;
	font-size: 24px;
	font-weight: 600;
	margin: 0 auto;
	text-align: center;
	text-transform: uppercase;
	line-height: 30px;
}
.home-callout a:hover {
	color: #898989;
}
/*# HOVER CELL #*/
.hover-cell {
	background-position: top center;
	background-size: cover;
}
.hover-cell-wrap {
}
.hover-cell-content {
	background-color: rgba(45, 61, 94, 0.88);
	height: 100%;
	padding: 0 50px;
	position: absolute;
	transition: all .25s ease-in-out 0;
	-moz-transition-duration: .25s;
	-o-transition-duration: .25s;
	-webkit-transition-duration: .25s;
	transition-duration: .25s;
	-webkit-animation: .25s;
	animation: .25s;
	width: 100%;
	z-index: 10;
}
.hover-cell-content:hover {
	cursor: default;
	height: 100%;
	min-height: inherit;
}
.hover-cell-content .blue-border, .hover-cell-content .blue-arrow-up, .hover-cell-content .blue-arrow-down, .hover-cell-content .white-border, .hover-cell-content .white-arrow-up, .hover-cell-content .white-arrow-down, .hover-cell-content .black-border, .hover-cell-content .black-arrow-up, .hover-cell-content .black-arrow-down, .hover-cell-content .box-cell-link a, .hover-cell-content p, .hover-cell-content h1, .hover-cell-content a {
	color: #fff;
	opacity: 1;
	text-align: center;
	transition: all .25s ease-in-out 0;
	-moz-transition-duration: .25s;
	-o-transition-duration: .25s;
	-webkit-transition-duration: .25s;
	transition-duration: .25s;
	-webkit-animation: .25s;
	animation: .25s;
}
.hover-cell-content:hover .blue-border, .hover-cell-content:hover .blue-arrow-up, .hover-cell-content:hover .blue-arrow-down, .hover-cell-content:hover .white-border, .hover-cell-content:hover .white-arrow-up, .hover-cell-content:hover .white-arrow-down, .hover-cell-content:hover .black-border, .hover-cell-content:hover .black-arrow-up, .hover-cell-content:hover .black-arrow-down, .hover-cell-content:hover .box-cell-link a, .hover-cell-content:hover p, .hover-cell-content:hover h1, .hover-cell-content a:hover {
	opacity: 1 !important;
}
/*# BOX CELL #*/
.box-cell-wrap {
	display: inline-block;
}
body#home .box-cell-wrap, body#residences .box-cell-wrap {
	margin-bottom: 0;
}
.box-cell {
	bottom: 0;
	padding: 20px 0;
	text-align: center;
	width: 100%;
	z-index: 500;
}
.box-cell p {
	font-family: 'georgia-bold', serif;
	font-size: 16px;
}
.box-cell a {
	font-size: 20px;
	text-transform: uppercase;
}
.box-cell h1 {
	font-size: 20px;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 6.5px;
}
.residences-slider-01 .box-cell {
	padding: 20% 0 20px 0;
}
body#contact .box-cell h1 {
	margin-bottom: 0;
	text-transform: none;
	letter-spacing: 2px;
}
.box-cell-link {
	margin: 20px 0 10px 0;
}
body#contact .box-cell-link {
	margin: 0 0 10px 0;
}
.box-cell-link a {
	text-align: center !important;
}
.box-cell-text {
	display: table;
	margin: 0 auto;
	padding: 40px 20px 35px 20px;
	z-index: 50;
}
body#contact .box-cell-text p {
	font-family: 'sackers-gothic-heavy', sans-serif;
	font-size: 24px;
	line-height: inherit;
	padding: 0;
	text-transform: uppercase;
}
.box-cell-margin-top {
	margin-top: 15px;
}
/*# BOX CELL: Home Slider 01 #*/
body#home .home-slider-01 .box-cell-wrap {
	max-width: 645px;
}
.home-slider-01 .box-cell-text {
	padding: 40px 20px 30px 20px;
}
.home-slider-01 .blue-arrow-down {
	height: 85px;
}
/*# BOX CELL: Home Slider 02 #*/
.home-slider-02 .white-arrow-up {
	height: 155px;
	margin-bottom: 25px;
}
/*# BOX CELL: Home Slider 03 #*/
.home-slider-03-margin .white-arrow-down {
	height: 155px;
	margin-top: 25px;
}
/*# BOX CELL: Home Slider 04 #*/
.home-slider-04 .box-cell-text {
	max-width: 735px;
	padding: 20px 20px 15px 20px;
}
.home-slider-04 .white-arrow-down {
	height: 20px;
}
/*# BOX CELL: Residences Slider 01 #*/
.residences-slider-holder {
	margin: 40px 0;
}
.residences-slider-01 .box-cell-text {
	max-width: 735px;
}
.residences-slider-01 .white-arrow-down {
	height: 85px;
}
.resp-tabs-list .black-arrow-down {
	height: 30px;
}
/*# BOX CELL: Nearby Slider 01 #*/
.nearby-slider-01 .box-cell-text {
	max-width: 735px;
}
.nearby-slider-01 .white-arrow-down {
	height: 85px;
}
/*# BOX CELL: Form Wrap #*/
.form-wrap .box-cell-text {
	padding: 35px 42px 12px 42px;
}
.form-wrap .blue-arrow-down {
	height: 45px;
}
/*# RESIDENCES CELL #*/
.residences-cell-bg {
	background-image: url(../images/bg/bg-residences-cell.png);
	background-position: bottom center;
	background-repeat: repeat-x;
	bottom: 0;
	margin-bottom: -1px;
	position: absolute;
	width: inherit;
}
.residences-cell {
	background-color: #fff;
	display: inline-block;
	margin: 0 auto;
	padding: 0 15px;
}
.residences-cell-header {
	color: #77787b;
	font-family: 'sackers-gothic-heavy', sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 3px;
	line-height: 35px;
	margin-bottom: 18px;
	text-align: center;
	text-transform: uppercase;
}
.residences-cell-img {
	height: 335px;
	background-position: top center;
	background-size: cover;
}
.residences-cell-text {
	color: #020202;
	font-family: 'georgia-reg', serif;
	font-size: 14px;
	font-style: italic;
	line-height: 25px;
	padding: 0 10px;
}
/*# AMENITIES #*/
[class*="block-grid-"]>li {
	padding: 0;
}
.box-cell-title {
	display: inline-block;
	font-family: 'sackers-gothic-heavy', sans-serif;
	font-size: 24px;
	padding: 23px 19px 12px 19px;
	text-align: center;
	text-transform: uppercase;
}
.box-cell-description, .box-cell-description p {
	font-family: 'georgia-bold', serif;
	font-size: 18px;
	font-style: italic;
	letter-spacing: 1px;
	line-height: 25px;
	margin-top: 20px;
	text-align: left;
}
.arrow-down {
	background-position: center bottom;
	background-repeat: no-repeat;
	height: 40px;
}
.alpha {
	background-color: #fff;
	display: block;
	height: 100%;
}
.alpha .box-cell-title {
	border: solid 3px #2d3d5e;
	color: #2d3d5e;
}
.alpha .box-cell-description, .alpha .box-cell-description p {
	color: #2d3d5e;
}
.alpha .arrow-down {
	background-image: url(../images/misc/blue-arrow-down.png);
}
.alpha-odd {
	background-color: #ccc !important;
	display: block;
	height: 100%;
}
.alpha-odd .box-cell-title {
	border: solid 3px #fff;
	color: #fff;
}
.alpha-odd .box-cell-description, .alpha-odd .box-cell-description p {
	color: #fff;
}
.alpha-odd .arrow-down {
	background-image: url(../images/misc/white-arrow-down.png);
}
.amenities-cell-img {
	background-position: center center;
	background-size: cover;
	height: 460px;
	width: 100%;
}
.amenities-cell-link a {
	background-image: url(../images/icons/amenities-plus.png);
	color: #fff;
	font-family: 'sackers-gothic-heavy', sans-serif;
	font-size: 50px;
	font-weight: 600;
	line-height: normal;
	height: 31px;
	width: 31px;
}
.amenities-cell-link a:hover {
	color: #fff;
}
.beta .amenities-cell-link a {
	float: right;
	margin: 0 26px 25px 0 !important;
}
.beta-odd .amenities-cell-link a {
	float: left;
	margin: 0 0 25px 26px !important;
}

/*# MEDIA QUERIES FOR "MODULE" SECTION #*/

@media only screen and (max-width: 640px) {
}

@media only screen and (max-width: 1024px) {
}

@media only screen and (max-width: 1440px) {
}

@media only screen and (min-width: 1441px) {
}

@media only screen and (min-width: 1921px) {
}

@media only screen and (min-width: 480px) {
h1, .box-cell h1, .box-cell a {
	font-size: 24px;
}
body#home .box-cell-wrap, body#residences .box-cell-wrap {
	margin-bottom: 50px;
}
}

@media only screen and (min-width: 641px) {
/* Misc */
.absolute {
	position: absolute;
}
.cursor {
	cursor: default !important;
}
.cell-content:hover {
	cursor: pointer;
}
/* LOGO */
.logo {
	padding: 39px 0 52px 0;
}
body#residences .logo {
	padding: 19px 0 31px 0;
}
/* LOGO SECOUND */
.logo-secound {
	background-size: inherit;
}
/* FOOTER */
footer {
	letter-spacing: 1px;
}
/* SLIDESHOW */
.bg-gradient-wrap {
	padding: 100px 0 0 0;
}
.slideshow-dots {
	z-index: 900;
}
.slick-dots {
	margin-bottom: 300px;
	margin-left: 27px;
	top: 49px;
	z-index: 900;
	display: none;
}
.slick-dots li {
	display: block;
	margin: 0 5px 3px 0;
	z-index: 900;
}
.slick-dots li button, .slick-dots li button:before,  {
	height: 25px;
	width: 25px;
}
.slick-dots li button:before, .slick-dots li.slick-active button:before {
	font-size: 35px;
	opacity: 1;
	z-index: 900;
}
.slick-dots li button:before {
	content: url(../images/btns/slick-dots.png);
	transition: all .25s ease-in-out 0;
	-moz-transition-duration: .25s;
	-o-transition-duration: .25s;
	-webkit-transition-duration: .25s;
	transition-duration: .25s;
	-webkit-animation: .25s;
	animation: .25s;
}
.slick-dots li:hover button:before {
	content: url(../images/btns/slick-dots-hover.png);
}
.slick-dots li.slick-active button:before {
	content: url(../images/btns/slick-dots-hover.png);
}
.slick-prev:before, .slick-next:before {
	font-size: 50px;
}
/* SLIDESHOW HEIGHTS */
.home-slider-01 {
	height: 975px;
}
.home-slider-04 {
	height: 400px;
}
.residences-slider-01 {
	height: 800px;
}
.residences-slider-02 {
	height: 450px;
	margin-top: 20px;
}
.amenities-slider-01 {
	height: 450px;
}
.nearby-slider-01 {
	height: 450px;
	margin-top: 0;
}
.nearby-slider-02 {
	height: 310px;
}
.nearby-slider-03 {
	height: 450px;
}
.contact-slider-01 {
	height: 1500px;
}
.carousel-nav {
	margin: 40px 0 !important;
}
/* BOX CELL */
.box-cell {
	padding: 0;
}
.residences-slider-01 .box-cell {
	padding: 20px 0;
}
.residences-slider-01 .box-cell-text {
	margin-top: 180px;
}
body#home .box-cell-wrap, body#residences .box-cell-wrap {
	margin-top: 80px;
}
/*# BOX CELL: Home Slider 04 #*/
.home-slider-04 .box-cell-text {
	padding: 40px 20px 35px 20px;
}
.home-slider-04 .white-arrow-down {
	height: 85px;
}
/*# BOX CELL: Residences Slider 01 #*/
.residences-slider-holder {
	margin: 0;
}
/*# RESIDENCES CELL #*/
.residences-cell-header {
	text-align: left;
}
.floor-image .img-container {
	margin-top: 0;
}
.floorplan-wrap {
	border-bottom: none;
}
.floorplans-container {
	margin-bottom: 80px;
}
.floorplan-text {
	margin: 0 20px;
}
.floorplan-name h1 {
	font-size: 18px;
}
/*# AMENITIES #*/
.amenities-cell-warp {
	height: 460px;
	margin-bottom:40px;
}
/*#  NEARBY  #*/
body#nearby .carousel-thumbs .slick-initialized .slick-slide {
	margin: 0 1px;
}
/* CONTACT */
.form-container {
	padding: 35px;
}
.form-content p, .form-content a {
	font-size: 19px !important;
}
#privacy {
	padding: 30px;
}
}


@media only screen and (min-width: 930px) {
body#nearby .resp-tab-item, body#nearby .resp-accordion a {
	font-size: 18px;
	margin: 0 2%;
}
}

@media only screen and (min-width: 1025px) {
/* SLIDESHOW HEIGHTS */
.bg-gradient-wrap {
	background-size: cover;
	padding: 150px 100px 0 100px;
}
.home-slider-01 {
	height: 1150px;
	position: relative;
}
.home-slider-02 {
	height: 475px;
}
.home-slider-03 {
	height: 400px;
}
.home-slider-04 {
	height: 700px;
}
.residences-slider-01 {
	height: 1285px;
	margin-bottom: 0;
}
.residences-slider-02 {
	height: 875px;
	margin-top: 0;
}
.amenities-slider-01 {
	height: 645px;
}
.nearby-slider-01 {
	height: 725px;
}
.nearby-slider-03 {
	height: 700px;
}
/*# BOX CELL: Nearby Slider 01 #*/
.nearby-slider-03 .box-cell-text {
	padding: 47px 120px 38px 120px;
}
/*# BOX CELL: Residences Slider 01 #*/
.residences-slider-01 .box-cell-text {
	margin-top: 180px;
	max-width: 735px;
}
/* FOOTER */
footer {
	padding: 25px 30px 25px 30px;
}
.footer-callout ul {
	display: block;
	margin: 0 auto;
}
.footer-callout li {
	display: inline-block;
	text-align: center;
}
.footer-callout-icons li {
	display: inline-block;
	float: left;
	margin: 0 0 0 45px;
}
.footer-callout-icons li:first-child {
	margin-left: 0;
}
.footer-callout-ascii {
	text-align: right;
}
/*# HOVER CELL #*/
.hover-cell-content {
	background-color: transparent;
}
.hover-cell-content:hover {
	background-color: rgba(45, 61, 94, 0.88);
}
.hover-cell-content .blue-border, .hover-cell-content .blue-arrow-up, .hover-cell-content .blue-arrow-down, .hover-cell-content .white-border, .hover-cell-content .white-arrow-up, .hover-cell-content .white-arrow-down, .hover-cell-content .black-border, .hover-cell-content .black-arrow-up, .hover-cell-content .black-arrow-down, .hover-cell-content .box-cell-link a, .hover-cell-content p, .hover-cell-content h1, .hover-cell-content a {
	opacity: 0;
}
/*# RESIDENCES CELL #*/
.residences-cell {
	display: block;
	max-width: 375px;
	padding: 28px 15px 30px 15px;
}
.residences-cell-header {
	text-align: center;
}
.residences-cell-text {
	padding: 33px 10px 20px 10px;
	height: 202px;
}
.floorplans-container {
	margin-bottom: 20px;
}
.resp-tabs-container ul {
	width: 33.3%;
}
.resp-tabs-list .black-arrow-down {
	height: 85px;
}
/*# FLOORPAN (HOVER CELLS) #*/
.floorplan-text {
	cursor: pointer;
	height: 200px;
	margin: -200px 0 0 0;
	width: 200px;
}
/*#  NEARBY  #*/
body#nearby .carousel-thumbs .slick-initialized .slick-slide {
	margin: 0 3px;
}
body#nearby .resp-tab-item, body#nearby .resp-accordion a {
	margin: 0 0 0 5.25%;
	width: 20%;
}
body#nearby .resp-tab-item:first-child {
	margin-left: 15px;
}
body#nearby .resp-tab-item:first-child:before {
	display: none !important;
}
.location-container {
	margin: 50px 0 75px 0;
}
.poi-container {
	margin-top: 8px;
}
.poi-name{
	padding: 0;
}
/*-- Name --------------*/
.name {
	font-size: 14px;
}
/*-- Markers --------------*/
.marker {
	display: none;
}
.markers a {
	margin-top: 10px;
}
}

@media only screen and (min-width: 1150px) {
nav li {
	margin: 0 59px
}
body#nearby .resp-tab-item, body#nearby .resp-accordion a {
	font-size: 20px;
}
}

@media only screen and (min-width: 1440px) {
.footer-callout-icons li {
	margin: 0 0 0 65px;
}
/* SLIDESHOW HEIGHTS */
.bg-gradient-wrap {
	padding: 250px 100px 0 100px;
}
}
/*/////////////////////////////
///////// PLUGINS /////////////
////////////////////////////*/

/* location */
#horizontal-tab {
	margin-bottom: 70px !important;
}
ul.resp-tabs-list {
	margin: 0px;
	padding: 0px;
	text-align: center;
}
.resp-tabs-list li:before {
	content: none !important;
}
body#area .resp-tabs-list li {
	padding: 5px 18px;
}
.resp-tabs-container {
	clear: left;
	margin-bottom: 20px;
}
/*.resp-tab-content {
	padding: 10px 0 0 0;
}*/
body#residences .resp-tab-content {
	display: block;
}
body#nearby .resp-tab-content {
	display: none;
}
h2.resp-accordion {
	clear: both;
	cursor: pointer;
	display: none;
	font-size: 20px;
	letter-spacing: 1px;
	margin: 0px;
	padding: 10px 15px;
}
h2.resp-tab-active {
	padding: 10px 15px !important;
}
body#floor-plans .resp-tab-content {
	background-color: transparent;
	padding: 10px 0 32px 0;
}
/* Vertical tabs */
.resp-vtabs ul.resp-tabs-list {
	float: left;
	width: 30%;
}
.resp-vtabs .resp-tabs-list li {
	cursor: pointer;
	display: block;
	float: none;
	margin: 0;
	padding: 15px 15px !important;
}
.resp-vtabs .resp-tabs-container {
	border-radius: 4px;
	clear: none;
	float: left;
	min-height: 250px;
	padding: 0px;
	width: 68%;
}
.resp-vtabs .resp-tab-content {
	border: none;
}
.resp-vtabs li.resp-tab-active {
	border-right: none;
	margin-right: -1px !important;
	padding: 14px 15px 15px 14px !important;
	position: relative;
	z-index: 1;
}
h2.resp-tab-active span.resp-arrow {
	border: none;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
}
.resp-arrow {
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	color: #fff !important;
	float: right;
	height: 0;
	margin-top: 3px;
	width: 0;
}
/* Accordion styles */
.resp-easy-accordion h2.resp-accordion {
	display: block;
}
.resp-easy-accordion .resp-tab-content {
}
.resp-jfit {
	margin: 0px;
	width: 100%;
}
.resp-tab-content-active {
	display: block;
}
#intro-cont h1 {
	margin-bottom: 33px;
	margin-top: -20px;
}

@media only screen and (max-width: 640px) {
ul.resp-tabs-list {
	display: none;
}
h2.resp-accordion {
	display: block;
}
.resp-accordion a {
	display: table;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 1px;
	text-align: center;
	text-transform: uppercase;
}
.resp-vtabs .resp-tabs-container {
	border: none;
	clear: none;
	float: none;
	min-height: initial;
	width: 100%;
}
.resp-accordion-closed {
	display: none !important;
}
.small-block-grid-1 > li {
	padding-left: 17px;
}
#right-bar .medium-block-grid-2 {
	padding-left: 20px;
}
#right-bar .medium-block-grid-2 li {
	padding: 6px 8px;
}
.callout-social {
	margin-right: 15px;
}
}

@media only screen and (max-width: 320px) {
.orbit-container, .slide-container {
	max-height: 150px;
	position: relative;
}
}

/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
@media only screen and (max-width: 640px) {
ul.resp-tabs-list {
	display: none;
}
h2.resp-accordion {
	display: block;
}
.resp-accordion a {
	display: table;
}
.resp-vtabs .resp-tabs-container {
	border: none;
	clear: none;
	float: none;
	min-height: initial;
	width: 100%;
}
.resp-accordion-closed {
	display: none !important;
}
.small-block-grid-1 > li {
	padding-left: 17px;
}
#right-bar .medium-block-grid-2 {
	padding-left: 20px;
}
#right-bar .medium-block-grid-2 li {
	padding: 6px 8px;
}
body.gallery .container li, .container li a {
	min-width: inherit;
}
.fpdescription p {
	width: 75%;
}
}

/** Blog Page **/

.row-blog {
  max-width:none !important;
}

.blog-meta {
  background: #2d3d5e;
}

.blog-archive h2 {
  color: white;
  padding: 10px 10px 10px 0;
  float: left;
  font-family:gotham, sans-serif !important;
}

.fa-angle-down {
  color: white;
  font-weight: bold;
  font-size: 30px;
  background: #969eaf;
  border-right: solid 1px white;
  border-left: solid 1px white;
  padding: 4px 10px;
}

#foo {
  display:none;
  background: #969eaf;
  position: absolute;
  padding: 10px;
  min-width: 165px;
  text-transform: uppercase;
  z-index: 999;
}

.blog-archive li a {
  color:white;
  font-family:gotham, sans-serif !important;
}

input[type="submit"] {
    font-family: FontAwesome;
}

.blog-search input {
  width: 74%;
  margin: 4px 1% 0 0 !important;
  height: 30px;
}

.blog-search button {
  width:25%;
  background: #969eaf;
  padding: 11px 10px;
  margin: 0 !important;
}

.image-group {
  max-width: 80em;
  margin: 3% auto;
  text-align: center;
}

.image-group h2 {
  background:#2d3d5e;
  text-align:left;
  color:white;
  width:100%;
  padding:11px 20px;
  margin:0 auto 20px;
}

.blog-listing {
  max-width:80em;
  margin:0 auto;
}

.blog-entry-date {
  color: #2d3d5e;
  font-family: gotham, sans-serif;
  font-weight: bold;
  margin: 8px 0;
  font-size:16px;
}

.blog-entry-title,
.blog-entry-body p:last-of-type{
  margin-bottom:8px;
}

.blog-entry-title, .blog-entry-title-link {
  color: #2d3d5e;
  font-family: gotham, sans-serif;
  font-weight: bold;
  font-size: 22px;
}

.blog-entry-body p {
  color:#2d3d5e;
}

.blog-entry-body-cta-text {
  color: #2d3d5e;
  font-weight: normal;
  font-size: 14px;
  font-style: italic;
  text-decoration: underline;
}

.blog-entry {
  margin-bottom: 35px;
}

.blog-posting {
  max-width: 80em;
  margin: 3% auto;
  text-align: center;
}

@media only screen and (max-width:641px) {
 
  .blog-entry-image {
    text-align: center;
  }
  
  .blog-entry-content {
    width: 395px !important;
    margin: 0 auto;
  }
  
}

/** Blog Posts **/

.blog-posting .blog-entry {
  width:100% !important;
  text-align:left !important;
}

.blog-posting .blog-entry-image {
  float: left;
  width: 25%;
  padding: 0 20px 20px 0;
}

.blog-posting a {
  color: #3d4d5e;
}

@media only screen and (max-width:641px) {
 
  .blog-posting .blog-entry-image {
    float: none !important;
    width: 100% !important;
    text-align: center;
  }
  
}