
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.transition {
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a[href^=tel]{
    color:inherit;
    text-decoration:none;
}

.blue {
  color: #0E3356;
}

/* Place Holder CSS */
::-webkit-input-placeholder {
  color: #000;
  opacity: 0.5;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}
:-moz-placeholder {
  color: #000;
  opacity: 0.5;
  -moz-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}
::-moz-placeholder {
  color: #000;
  opacity: 0.5;
  -moz-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}
:-ms-input-placeholder {  
  color: #000;
  opacity: 0.5;
  -ms-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}

/* Place Holder CSS for Focus */
:hover::-webkit-input-placeholder {
  opacity: 0.75;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}
:hover:-moz-placeholder {
  opacity: 0.75;
  -moz-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}
:hover::-moz-placeholder {
  opacity: 0.75;
  -moz-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}
:hover:-ms-input-placeholder {  
  opacity: 0.75;
  -ms-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}

/* Place Holder CSS for Focus */
:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}
:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}
:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}
:focus:-ms-input-placeholder {  
  opacity: 0;
  -ms-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}

.nav, 
.nav li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav {
	margin: 0;
	z-index: 2;
	padding: 0;
  height: 45px;
  background-color: #E8EAEA;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 1000;
  position: relative;
}

.page-template-home .nav {
  display: flex;
}

.nav ul {
	margin: 0;
	padding: 0;
  text-align: center;
}

.nav li {
	margin: 0;
	position: relative;
  display: inline-block;
}

.nav .menu > li > a {
	display: block;
	height: 45px;
	line-height: 45px;
	text-align: center;
	color: #5A5B5D;
	font-weight: 500;
	font-size: 1rem;
  padding: 0 20px;
  text-transform: uppercase;
}

.nav .menu > li > .active,
.nav .menu > li > .over,
.nav .menu > li > a:hover,
.nav .menu > li.current_page_item > a,
.nav .menu > li.current-post-ancestor > a,
.nav .menu > li.current-post-parent > a,
.nav .menu > li.current-menu-item > a,
.nav .menu > li.current-category-ancestor > a,
.nav .menu > li.current-page-ancestor > a {
  color: #FFF;
  text-decoration: none;
  background-color: #6D6E71;
  o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.nav .children,
.nav .sub-menu {
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	top: 44px;
	width: 130px;
	z-index: 2;
	border-bottom: 1px solid #2C2F52;
	border-top: 0;
	/*display: none;*/
  visibility: hidden; /* hides sub-menu */
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-2em);
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.menu-item-has-children:hover .sub-menu {
  visibility: visible; /* shows sub-menu */
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s; /* this removes the transition delay so the menu will be visible while the other styles transition */
}

.nav .children li,
.nav .sub-menu li {
	float: none;
	margin:0;
}


.nav .children a,
.nav .sub-menu a {
	display: block;
	background: #000024;
	border-top: 1px solid #2C2F52;
	padding: 5px 10px;
	color: #FFF;
	text-decoration: none;
}

.nav .children a:hover,
.nav .sub-menu a:hover {
	background: #49494B;
}

/* menu mobile */

.nav .menu > .menu-item > a:after,
.icon-nav-arrow-down {
  color: #FFF;
  font-family: FontAwesome;
  content: "\f107";
  margin: 0 0 0 1em;
  display: none;
  position: absolute;
  right: 0;
  top: 0;
}

.icon-nav-arrow-down {
  display: none;
}

.menu-item-has-children .icon-nav-arrow-down {
    color: #000;
    font-size: 2em;
    background-color: #FFF;
    height: 26px;
    width: 26px;
    text-align: center;
    line-height: 26px;
    z-index: 10;
    display: none;
  }

.nav .menu > .menu-item-has-children > .icon-nav-arrow-down {
  display: block;
  display: none;
}

.nav-toggle {
     cursor: pointer;
     position: relative;
     margin: 0 0 0 2em;
     display: inline-block;
     font-size: 2em;
}

.nav-toggle-inactive,
.nav-toggle-active {
  opacity: 0;
  display: block;
  position: absolute;
  right: 0;
  top: -0.75em;
  z-index: 1;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.nav-toggle-inactive {
  opacity: 1;
}

.nav-toggle.active .nav-toggle-inactive {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-active {
  opacity: 1;
}

/*

.nav-toggle span,
.nav-toggle span:before,
.nav-toggle span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 5px;
    width: 35px;
    background: white;
    position: absolute;
    display: block;
    content: '';
}
.nav-toggle span:before {
    top: -10px;
}
.nav-toggle span:after {
    bottom: -10px;
}
.nav-toggle span,
.nav-toggle span:before,
.nav-toggle span:after {
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.nav-toggle.active span {
    background-color: transparent;
}

.nav-toggle.active span:before,
.nav-toggle.active span:after {
    top: 0;
}
.nav-toggle.active span:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-toggle.active span:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

*/

/* menu mobile */

html, body {
	margin: 0;
	padding: 0;
}

body {
	/*background: url(../images/body.jpg) repeat-x left top;*/
}

.wrapper {
  width: 100%;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/* new covid */

.header {
	position: relative;
  /*background-color: rgba(0, 0, 0, 0.8);*/
  position: fixed;
  
  /*width: 100%;*/
  top: 0;
  left: 0;
  right: 0;
  height: 170px;
  height: 224px;
  height: 244px;
  height: 226px;
  z-index: 1001;
  
}

.header-inner {
  height: 170px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;

  background: #0E3356 url(../images/header.png) no-repeat center -150px;
  background-repeat: repeat;
  background-color: #0E3356;
  position: relative;

}

/**/

.page-template-home .header {
  height: 215px;
}

.page-template-home .logo-image {
  width: 100%;
}

.image-svg {
	width: 10%;
	float: left;
}

.logo-image {
  margin: 0;
  float: left;
  line-height: 1em;
  font-size: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
  padding: 10px 0 0;
}

.logo-image img {
  /*width: 40%;
  max-width: 215px;
  height: auto;*/
  height: 111px;
  width: auto;
}

.links-header-left {
  width: 30%;
  max-width: 350px;
  color: #FFF;
  position: absolute;
  z-index: 3;
}

.links-header-right {
  /*width: 20%;
  max-width: 350px;
  color: #FFF;
  */
}

.links-header-left span,
.links-header-left a {
  display: block;
  color: #FFF;
  text-decoration: none;
  font-weight: 700;
  border: 3px solid #FFF;
  text-align: center;
  padding: 0.5em 1em;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.links-header-left a:hover {
  background-color: #FFF;
  color: #0E3356;
  border: 3px solid #0E3356;
  text-decoration: none;
}

.links-header-left a {
  width: 49%;
  margin: 5px 0 0;
}

.links-header-left span {
  background-color: #6D6E71;
  border: 3px solid #6D6E71;
}

.content {
  flex: 1;
	zoom: 1;
	position:relative;
	z-index: 1;
  background-color: #000;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 170px 0 0;
  padding: 224px 0 0;
  padding: 244px 0 0;
  padding: 226px 0 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.content-no-bg-image {
  background: #0E3356 none no-repeat center -150px;
  background-color: #0E3356
}

.content-no-bg-image .layer-page {
  display: none;
}

.page-template-home .content {
  padding: 215px 0 0;
}


.layer-page {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.main-content-inner {
  padding: 2em 0;
}


.content-inner {
	padding: 0;
	zoom: 1;
  position: relative;
  z-index: 2;
  color: #FFF;
  width: 100%;
}

.main-content {
	width: 100%;
}


.sidebar {
	width: 40%;
	float: right;
	background: none;
	background: #DFDFDF none;
}
.sidebar-inner {
	padding: 20px;
	zoom: 1;
}

.footer {
	margin:0 auto;
	clear: both;
	float: none;
  background-color: #6D6E71;
  width: 100%;
  text-align: center;
  color: #FFF;
  padding: 10px 0;
  position: relative;
  z-index: 2;
  width: 100%;
  /*position: fixed;
  left: 0;
  bottom: 0;*/
  
}

.footer-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  font-size: 12px;
  max-width: 1024px;
}

.item-col-footer:nth-child(1),
.item-col-footer:nth-child(3) {
  max-width: 75px;
  width: 10%;
}

.item-col-footer:nth-child(2) {
  width: 82%;
  max-width: 820px;
}

.footer-inner p {
  margin: 0;
  color: #FFF;
  padding: 0 10px;
}


.header-inner,
.inner,
.footer-inner {
    padding: 0 2em;
}

.footer-responsive {
  display: none;
}

/** FIX for Bootstrap and Google Maps Info window styes problem **/
img[src*="gstatic.com/"], 
img[src*="googleapis.com/"] {
	max-width: none;
}

/* menu mobile */

.open-menu-mobile {
  display: none;
}

.open-menu-mobile a {
  display: block;
  padding: 0.5em 1em;
  text-align: center;
  border-top: 1px solid red;
  font-size: 1.2em;
}

.open-menu-mobile li:nth-child(1) a {
  border-top: 0;
}

/* menu mobile */

.fancybox-lock {
    overflow: hidden;
    margin-right:0 !important;
}

.fancybox-lock .fancybox-overlay {
    overflow: hidden;
    overflow-y: hidden;
}

/**/

.flexslider .flex-direction-nav .flex-next {
    right: 5px; 
    opacity: .8; 
}

.flexslider .flex-direction-nav .flex-prev {
    left: 5px; 
    opacity: .8; 
}


.flexslider .flex-direction-nav a {
    font-family: FontAwesome;
    color: #FFF;
    font-size: 1.5em;
    font-weight: 300;
    background-color: red;
    text-indent: 0;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: rgba(0,0,0,0.9) none;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
}

/*
.slider .flex-direction-nav .flex-next {
    right: 0;
    opacity: 1;
}

.slider .flex-direction-nav .flex-right {
    left: 0;
    opacity: 1;
}
*/

.flexslider .flex-direction-nav .flex-prev:before {
    content: "\f053";
}

.flexslider .flex-direction-nav .flex-next:before {
    content: "\f054";
}

.search-field {
	outline:none;
    -webkit-appearance: none;
}

.arrow-down {
  position: absolute;
  left: 50%;
  bottom: 2em;
  margin: 0 0 0 -30px;
  z-index: 10;
  text-indent: 0;
  font-size: 2.2em;
  cursor: pointer;
}

body div.wpcf7-response-output {
    margin: 0 0 1em;
    padding: 0.2em 1em;
}

.back-top {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    background: gray;
    position:fixed;
    bottom: 2em;
    right: 1em;
    display:none;
    opacity:0.8;
    color: #FFF;
    display: inline-block;
    font-size: 2em;
}

/* fancybox buttons */

.button-close,
.button-previous,
.button-next {
  position: absolute;
  width: 44px;
  height: 44px;
  background: #000;
  text-align: center;
  line-height: 44px;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  font-size: 2.5em;
}

.button-previous,
.button-next {
  top: 50%;
  margin-top: -22px;
  line-height: 42px;
}

.button-previous {
    left: -50px;
}

.button-next {
    right: -50px;
}

.button-close {
  top: -44px;
  right: -44px;
  font-size: 22px;
  color: rgba(255,255,255,0.8);
}

/* slick arrows */

.slick-prev,
.slick-next {
    font-size: 0;
    position: absolute;
    top: 50%;
    color: #0E3356;
    border: 0;
    background: none;
    z-index: 1;
}

.slick-prev {
    left: 0;
}

.slick-prev:after {
    content: "\f0d9";
    font: 40px/1 'FontAwesome';
}

.slick-next {
    right: 0;
    text-align: right;
}

.slick-next:after {
     content: "\f0da";
     font: 40px/1 'FontAwesome';
}

.slick-prev:hover:after,
.slick-next:hover:after {
    color: #7e7e7e;
}

/* slick arrows */

.page-template-home .entry p,
.page-template-home .entry h2 {
  font-size: 3rem;
  color: #FFF;
  margin: 0 0 0.5em;
}

.grid-content-home {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: top;
  margin: 0 -4px;
}

.item-grid-content-home {
  width: 33.3%;
  margin: 0 0 25px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  color: #FFF;
  text-align: center;
}

.item-grid-content-home-inner {
  color: #FFF;
}

.item-grid-content-home-inner:hover {
  color: #FFF;
  text-decoration: none;
}

.item-grid-content-home img {
  width: 100%;
  height: auto;
}

.item-grid-content-home-inner {
  margin: 0 4px;
  display: block;
}

.item-grid-content-home-inner h3 {
  font-size: 1rem;
  color: #FFF;
}

.title-home-page,
.entry h1 {
  font-size: 3em;
  font-weight: 700;
  margin: 0 0 0.35em;
}

.entry-neighborhood {
  font-size: 1.3em;
  font-weight: 500;
}

.nav-the-location {
  margin: 2.5em 0 0;
}

.nav-the-location span {
  display: block;
  text-align: center;
  text-transform: lowercase;
}

.nav-the-location a {
  display: inline-block;
  width: 16%;
  color: #FFF;
  font-size: 1.2em;
  font-weight: 700;
  text-decoration: none;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin: 0 0 1em;
}

.page-template-floorplans .nav-the-location a {
  width: 20%;
}

.nav-the-location a img {
  height: 110px;
  width: auto;
  display: inline-block;
  margin: 0 0 1em;
}

.nav-the-location a.toggle {
  opacity: 0.5;
}

.page-template-floorplans .nav-the-location a img {
  height: 50px;
}

.custom-slider-item-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.custom-slider-item-image,
.custom-slider-item-content {
  width: 49%;
  font-size: 1.1em;
}

.custom-slider-item-image {
  background-size: cover;
  background-position: center;
}

.custom-slider-item-image img {
  width: 100%;
  height: auto;
  visibility: hidden;
}

.custom-slider-item-content h2 {
  font-size: 2.5em;
}

.modal-box-content {
  /*display: none;*/
  width: 100%;
}

.custom-slider-item-content {
  padding-right: 30px;
  color: #000;
  text-align: left;
}

.slider-neighborhood {
  background-color: #FFF;
  padding: 20px;
}

.slider-neighborhood,
.slider-neighborhood .slick-list,
.slider-neighborhood .slick-track,
.custom-slider-item,
.custom-slider-item-inner,
.custom-slider-item-image {
  height: 100%;
  /*background-color: red;*/
}

.slider-neighborhood .slick-track {
  display: flex;
}  
  
.slider-neighborhood .slick-slide {
    display: flex;
    height: auto;
}

/*body .fancybox-slide > * {
    position: relative;
    padding: 0;
    background-color: transparent;
}
*/

.btn-default {
  display: inline-block;
  padding: 0.5em 1em;
  background-color: #0E3356;
  color: #FFF;
  font-size: 1.2em;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #FFF;
  margin: 1em auto 0;
  width: auto;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btn-default-ghost {
  background-color: transparent;
  border: 2px solid #0E3356;
  color: #0E3356;
}

.btn-default:hover {
  background-color: #FFF;
  color: #0E3356;
  border: 2px solid #0E3356;
  text-decoration: none;
}



.page-no-bg .content {
  /*background: #0E3356 url(../images/header.png) no-repeat center -150px;*/
}

.page-no-bg .layer-page {
  display: none;
}

.page-no-bg .header {
  background-image: none;
  background-color: transparent;
}

/* contact */

.page-template-contact .entry {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  color: #FFF;
}

.page-template-contact .entry p {
  line-height: 1.5em;
}

.page-template-contact .entry a {
  color: #FFF;
}

.wpcf7-form br {
  display: none;
}

.wpcf7-form br {
  display: none;
}

.row-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 0 10px;
}

.row-form .wpcf7-form-control-wrap {
  width: 50%;
  max-width: 435px;
}

.row-form .wpcf7-form-control-wrap input[type=text],
.row-form .wpcf7-form-control-wrap input[type=email],
.row-form .wpcf7-form-control-wrap input[type=tel] {
  width: 100%;
  padding: 12px 10px;
  color: #000;
  border: 0;
}

.wpcf7-form {
  margin: 0 0 2em;
}

.row-form-full {
  background-color: #FFF;
  padding: 12px 10px;
}

.row-form-full > label {
  width: 30%;
  margin: 0;
  text-align: left;
}

.row-form-full .wpcf7-form-control-wrap {
  width: 70%;
  max-width: 100%;
  text-align: left;
}

.social-contact a {
  margin: 0 0.25em;
  font-size: 2em;
}

.copy-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.copy-contact {
  margin: 2em 0 0;
}

.copy-contact p,
.copy-contact span {
  margin: 0 1em;
}

/**/

.page-template-floorplans-page {
  background-color: #FFF;
}

.page-template-floorplans-page .content {
  color: #434A4F;
  background-color: transparent;
  background-image: none;
}

.page-template-floorplans-page .layer-page {
  display: none;
}

.page-template-floorplans-page .header {
  background: #0E3356 url(../images/header.png) no-repeat center -150px;
}

.content-floorplans {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.page-template-floorplans-page .content-inner {
    color: #434A4F;
}

.page-template-floorplans-page .content-inner h1 {
    font-size: 1.5em;
    color: #000;
    margin: 0 0 0.75em;
}

.content-floorplans-left {
  width: 21%;
}

.content-floorplan-wrapper {
  width: 78%;
  display: none;
  position: relative;
}

.content-floorplan-wrapper:first-child {
  display: block;
}

.content-floorplan-wrapper-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.content-floorplans-center {
  width: 77%;
  width: 80%;
  padding: 0;
}

.content-floorplans-right {
    width: 23%;
    min-width: 136px;
    position: absolute;
    right: 0;
    bottom: 2em;
}

.content-floorplans-right a {
    width: 100%;
    text-align: center;
}

.content-floorplans-center img {
  width: 100%;
  height: auto;
}

/* gallery */

.container-grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: top;
  margin: 0 -20px;
}

.item-grid {
  width: 33.3%;
  margin: 0 0 25px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.content-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.item-grid-inner {
  margin: 0 20px;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.item-grid-inner a {
  display: block;
  position: relative;
  height: 100%;
}

.item-grid-inner a:hover {
  text-decoration: none;
}

.item-grid-inner span {
  display: block;
  width: 48px;
  height: 48px;
  line-height: 46px;
  border-radius: 50%;
  background-color: #FFF;
  color: #0E3356;
  border: 2px solid #0E3356;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -24px 0 0 -24px;
  z-index: 2;
  text-align: center;
  font-size: 1.5em;
  text-indent: 2px;
}

.item-grid-inner span i {
  /**/
}

.item-grid h3 {
  color: #FFF;
  margin: 0 0 0;
  font-weight: 500;
  text-align: center;
  padding: 0.25em 1em;
}

.item-grid h3 a {
  color: #ef7952;
}

.item-grid h3 a:hover {
  text-decoration: none;
}

.item-grid img {
  width: 100%;
  height: auto;
}

.media-container {
  height: 200px;
  overflow: hidden;
  background-color: #000;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
}

/*
.media-container-video,
.media-container img {
  height: 100%;
}
*/

.media-container img {
  visibility: hidden;
}

/* */

.entry a {
  color: #FFF;
}


/* location */

.page-template-location .content {
  /*background-color: gray;*/
}

.page-template-location .content-inner {
  height: calc(100vH - 170px - 70px);
}

.page-template-location .main-content,
.page-template-location .main-content-inner,
.page-template-location #map {
  height: 100%;
  /*height: calc(100vH - 170px);*/
}

.page-template-location .main-content-inner {
    padding: 0;
}

.page-template-location .content-back-link {
  position: absolute;
    z-index: 10;
    left: 50%;
    bottom: 3em;
    /* width: 100%; */
    display: inline-block;
    margin: 0 0 0 -60px !important;
}

.map {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/map.png);
}

.page-template-location .content-inner {
    color: #000;
}

.media-marker {
  text-align: center;
  width: 100%;
  height: auto;
}

/**/

.list-floorplan li {
  opacity: 0.5;
}

.list-floorplan li p {
  margin: 0 0 0.5em;
}

.list-floorplan .active {
  opacity: 1;
}

.list-floorplan h4 {
  margin: 0 0 5px;
  font-size: 1.5em;
  font-weight: 700;
  color: #0E3356;
  position: relative;
}

.list-floorplan h4 a {
  color: #0E3356;
  display: inline-block;
  position: relative;
}

.list-floorplan h4 a:hover {
  text-decoration: none;
}

.list-floorplan h4 a i {
  position: absolute;
  left: -1em;
  top: 3px;
  line-height: 1em;
  opacity: 0;
}

.list-floorplan .active h4 a i {
  opacity: 1;
}

/* features */

.page-template-features .entry {
  width: 100%;
  min-height: 300px;
  color: #000;
  background-color: #FFF;
  max-width: 1000px;
  margin: 0 auto;
}

/* modals */

.modal-box {
  display: none;
  width: 80%;
  max-width: 980px;
}

/* slider background */

.background-slider {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  height: 100vH;
  width: 100%;
}

.item-slider-background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.item-slider-background,
.item-slider-background > img,
.slick-list,
.slick-track {
  height: 100%;
  width: 100%;
}

.item-slider-background > img {
  display: none;
}

/* misc*/

.content span.wpcf7-not-valid-tip {
    display: none;
}

.content div.wpcf7-response-output {
    background-color: #FFF;
    font-size: 0.9em;
    font-weight: 700;
}

.content div.wpcf7-validation-errors, 
.content div.wpcf7-acceptance-missing,
.content div.wpcf7-mail-sent-ok  {
    border: 2px solid #FFF;
}

/* features */

.featured-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2em;
}

.featured-col {
  text-align: left;
  font-size: 0.9em;
  width: 48%;
}

.featured-col h3 {
  color: #0E3356;
}

.featured-col ul {
  margin: 0;
}

.featured-col ul li {
  margin-left: 1.5em;
}

.featured-col p {
  line-height: 1.7em;
  margin: 0;
}

.content-image-box {
  margin: 0 0 1em;
}

.content-image-box,
.media-container {
  position: relative;
  overflow: hidden;
}

.content-image-box:before,
.media-container:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border: 5px solid #FFF;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.item-grid-content-home-inner:hover .content-image-box:before,
.item-grid-inner a:hover .media-container:before {
  opacity: 1;
  text-decoration: none;
}

.item-grid-inner a:hover h3 {
  text-decoration: none;
}

/**/

/*.scrolling .header {
  background: #0E3356 url(../images/header.png) no-repeat center -150px;
}
*/

.single .main-content {
  color: #FFF;
}

/**/

.links-header-right {
    position: absolute;
    right: 2em;
    z-index: 5;
}

.links-header-right a {
  display: inline-block;
  vertical-align: middle;
  color: #FFF;
}

.links-header-right .social-header-link {
    font-size: 1.7em;
    color: #FFF;
    margin: 0 0.25em;
    width: 42px;
    height: 42px;
    line-height: 40px;
    border: 2px solid #FFF;
    border-radius: 50%;
    text-align: center;
}

.links-header-right .link-email {
  font-size: 1.8em;
  border: 0;
}

.links-header-right img {
    width: 30px;
    height: auto;
    margin: 0 1em;
}

.page-template-location .content-back-link {
    position: relative;
    z-index: 10;
    left: 0;
    bottom: auto;
    width: 100%;
    display: block;
    margin: -10px 0 10px !important;
    width: 100%;
}

.page-template-location .btn-default {
    display: block;
    margin: 0;
    width: 100%;
    text-align: center;
    border: 0;
}

#map h4 {
  margin: 0 0 0.5em;
}

.accesibility {
  display: none;
}

/* new covid */

.alert-header {
    background-color: #FFF;
    color: #000;
    padding: 12px 1em;
    display: none;
    display: block;
    font-size: 18px;
}

.alert-header.scrolling {
  display: block;
}

.header__spotlight {
  position: fixed;
  z-index: -1;
  width: 100%;
  max-width: 335px;
  right: 1em;
  bottom: 1em;
  z-index: 1000;
  opacity: 0;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header__spotlight.on {
  opacity: 1;
}

.header__spotlight.off {
  opacity: 0;
  z-index: -1;
}

.header.header--scrolled .header__spotlight {
  display: none
}

.header__spotlight-container {
  background-color: #f7f8f9;
  color: #3d3b3b;
  z-index: 1;
  position: relative
}

.header__spotlight-container::after {
  background-image: url(/Content/img/pattern-hexagon.png);
  background-position: center top;
  opacity: .04
}

.header__spotlight-content {
  padding: 2.5rem 3.5rem;
  text-align: center
}

.header__spotlight-content>*+* {
  margin-top: .75em
}

.header__spotlight-title {
  font-family: "Prata", Georgia, "Times New Roman", Times, serif;
  font-size: 1.5rem;
  line-height: 1.25
}

.header__spotlight-offer {
  font-size: .75rem
}

.header__btn-close {
  position: absolute;
  right: 1em;
  top: 1em;
  z-index: 2;
  display: block;
  overflow: hidden;
  font-size: 18px;
  
  /*width: 1.25rem;
  height: 1.25rem;
  padding: .5em .5em 0 0;
  */
  
}


/*

.header__btn-close span {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}

.header__btn-close span:after,
.header__btn-close span:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  border-style: solid;
  border-color: #3d3b3b
}

.header__btn-close span:before {
  border-width: 0 0 0 2px;
  -webkit-transform: translate(calc(50% - 2px), 0);
  transform: translate(calc(50% - 2px), 0)
}

.header__btn-close span:after {
  border-width: 2px 0 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%)
}

*/

.alert-header a {
  text-decoration: underline;
}

.menu-no-desktop {
  display: none;
}

.footer-banner, .header-banner {
    width: 100%;
    max-width: 1800px;
    height: auto;
    margin: 0 auto;
}

/* accesibility */

.bar-accesibility {
  background-color: #FFF;
  height: 20px;
  line-height: 20px;
  text-align: right;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0 1em;
  z-index: 1005;
  font-size: 0.9em;
  opacity: 1;
  visibility: visible;
}

.bar-accesibility a {
  color: #000;
  font-weight: bold;
}

/* accesibility */

.custom-slider-item-image-ii {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; 
}