/*
Theme Name: NEM
Theme URI: https://beswifty.com/
Author: Team Swifty
Author URI: https://beswifty.com/
Version: 1.0.0
License: GNU General Public License v2 or later
*/


/*===== Global Styles =====*/
* {
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
    margin: 0;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    color: #737373;
}

a {
	background-color: transparent;
    text-decoration: none;
    color: #2e7e84;
    outline: none;
    cursor: pointer;
}
.container {
    position: relative;
    width: 100%;
    max-width: 1170px;
    padding: 0 10px;
    margin: 0 auto;
}
.header .container {
    max-width: 100%;
    width: 100%;
    padding: 0 35px;
}
.clearfix:after {
    display: table;
    content: " ";
    clear: both;
    width: 0;
}
.header {
    position: fixed;
    width: 100%;
    z-index: 9999;
    transform: translateY(-100%);
    transition: all 0.5s ease 0s;
}
body.loading-complete .header {
    transform: translateY(0);
}
.header .header-overlay{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top:0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    transition: all 1s ease 0s;
}
.header .header-container {
    padding: 0 0 0 60px;
    font-size: 0;
    position: relative;
}
.logo-section {
    width: 250px;
    display: inline-block;
    vertical-align: middle;
    padding: 35px 0;
}
.logo-section img {
    width: auto;
    height: auto;
    max-height: 70px;
    max-width: 100%;
}
.header .logo {
    display: none;
}
.header.fixed .white-logo{
    display: none;
}
.header.fixed .logo {
    display: block;
}
body .nav-section .main-nav {
    width: 100% !important;
}

a.cb-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    border-radius: 40px;
    position: relative;
    transition: all 0.5s ease 0s;
    margin: 0 5px 5px;
    letter-spacing: 1px;
    cursor: pointer;
}
.header a.cb-btn, .header a.cb-btn:hover{
    background: transparent;
}
.header .header-overlay:before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background: #cdcdcd;
    opacity: 0.6;
    left: calc(50% - 629px);
}


/*====== Header styles =====*/


.header-cta {
    float: right;
    padding: 38px 0;
    position: relative;
}
.header-cta:before{
    content: "";
    width: 100%;
    height: 90.8%;
    position: absolute;
    left: 0;
    top: 0;
    clip-path: polygon(0 0, 100% 0, 100% 88.5%, 0% 92.2%);
}
/*
.header-cta-wrapper {
    padding-left: 25px;
}
*/
body a.cb-btn.type-9 {
    background: transparent;
    font-size: 18px;
    position: relative;
}
.nav-section {
    float: right;
    width: calc(71% - 310px);
}
.header li.menu-item {
    list-style-type: none;
    display: inline-block;
    padding: 54px 28px;
        position: relative; 
}
.header a.cb-btn {
    margin: 0 5px;
}
.header li.menu-item a, .header .header-number a, body .header .header-cta a.cb-btn {
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
}
.header li.menu-item a {
    text-transform: capitalize;
    font-weight: 400;
    transition: all 0.5s ease 0s;
}
.header ul.menu {
    padding: 0;
    text-align: center;
}
.header-right{
    float: right;
    display: flex;
    align-items: center;
}
.header-number{
    display: inline-block;
    padding: 0 35px;
}
.header-number a{
    font-size: 16px;
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
    cursor: default;
    pointer-events: none;
}
.menu-burger-section {
    display: inline-block;
    float: right;
    width: 40px;
    position: relative;
    margin-left: 15px;
    top: 18px;
}
.menu-burger-section span.burger {
    width: 100%;
    height: 3px;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}
.menu-burger-section .menu-trigger {
    width: 40px;
    height: 30px;
    border-top: 3px solid;
    border-bottom: 3px solid;
    transform: translateY(-5px);
    display: inline-block;
    cursor: pointer;
    margin-top: 5px;
}
.mobile-menu {
    position: fixed;
    overflow: auto;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 400px;
    background: #fff;
    z-index: 9999;
    padding: 70px 0 25px;
    height: 100%;
    box-shadow: 5px 13px 20px rgb(0 0 0 / 25%);
    transition: all 0.5s ease 0s;
    transform: translateY(-130%);
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
.mobile-menu-footer {
    text-align: center;
}
.burger-menu-number {
    margin-bottom: 5px;
    display: block;
}
body.admin-bar .mobile-menu {
    height: calc(100% - 32px);
    top: 32px;
        z-index: 9999;
}
.mobile-menu.active {
    transform: translateY(0);
}
.menu-close {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    transform: rotate(45deg);
    position: absolute;
    z-index: 99;
    top: 15px;
    right: 12px;
        cursor: pointer;
}
.mobile-menu ul.menu {
    list-style-type: none;
    padding: 0;
}
.mobile-menu ul.menu li a {
    font-weight: 400;
    font-size: 30px;
    line-height: 1.5;
    padding: 10px 25px;
    display: block;
        transition: all 0.5s ease 0s;
}
.mobile-menu ul.menu li a:hover {
    background: #ededed;
}

.mobile-menu ul.sub-menu li a {
    font-size: 26px;
    color: #1CAAB0;
}
.mobile-menu ul.menu li.menu-item {
    position: relative;
        transition: all 1s ease 0s;
    transform: translateY(-100px);
    opacity: 0;
}
.mobile-menu.menu-anime ul.menu li.menu-item {
    transform: translateY(0);
    position: relative;
    opacity: 1;
}
.mobile-menu ul.menu li.menu-item:first-child {
    transition-delay: 0.1s;
}
.mobile-menu ul.menu li.menu-item:nth-child(2) {
    transition-delay: 0.2s;
}
.mobile-menu ul.menu li.menu-item:nth-child(3) {
    transition-delay: 0.3s;
}
.mobile-menu ul.menu li.menu-item:nth-child(4) {
    transition-delay: 0.4s;
}
.mobile-menu ul.menu li.menu-item:nth-child(5) {
    transition-delay: 0.5s;
}
.mobile-menu ul.menu li.menu-item:nth-child(6), .burger-menu-number {
    transition-delay: 0.6s;
}
span.submenu-trigger {
    position: absolute;
    display: block;
    height: 65px;
    top: 0;
    right: 0;
    width: 50px;
    line-height: 65px;
    text-align: center;
    font-size: 33px;
    z-index: 99;
    cursor: pointer;
    transition: all 0.5s ease 0s;
}
.mobile-menu ul.sub-menu {
    padding-left: 20px;
    list-style-type: none;
}
li.menu-open > span.submenu-trigger {
    transform: rotate(90deg);
}



.menu-burger-section.hide {
    display: none;
}
.nav-section.hide {
    width: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
}
.header ul.sub-menu {
    opacity: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
    padding: 20px 0;
    width: 230px;
    transition: all 0.5s ease 0s;
    list-style-type: none;
    left: 0;
    top: 90%;
    margin-top: 0;
    z-index: -9;
    visibility: hidden;
    text-align: left;
}
.header li.menu-item.burger-mobile{
    display: none;
}
.burger-menu-number a{
    padding: 10px 25px;
    display: block;
    font-size: 20px;
    font-weight: 900;
}


body .header a.cb-btn {
    font-size: 16px;
}

.header ul.menu > li:hover ul.sub-menu {
    opacity: 1;
    height: auto;
    z-index: 9;
    visibility: visible;
}

.header ul.sub-menu > li > a {
    padding: 7px 0;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.5;
    text-transform: none;
    display: inline-block;
    margin: 0;
    
}
.header ul.sub-menu li.menu-item {
    display: block;
    padding: 10px 20px;
}

.header ul.sub-menu li.menu-item a, .footer-right ul.menu > li.menu-item > a {
    padding: 0px;
    display: inline-block;
    font-weight: 400;
    position: relative;
}
.header ul.menu > li.menu-item > a:after, body .header .header-cta a.cb-btn:after, .header ul.sub-menu li.menu-item a:after, .footer-right ul.menu > li.menu-item > a:after, .footer-right ul.menu > li.menu-item ul.sub-menu li a:after {
    content: "";
    width: 0;
    position: absolute;
    height: 2px;
    left: 0;
    top: auto;
    bottom: -15px;
    transition: all 0.5s ease 0s;
    animation: none;
}
.header ul.menu > li.menu-item:hover > a:after, 
.header ul.menu > li.menu-item.current-menu-item:hover > a:after, 
.header.fixed ul.menu > li.menu-item.current-menu-item:hover > a:after,
.header ul.menu > li.menu-item.current-menu-item > a:after,
.header .header-number:hover a:after,
 body .header .header-cta:hover a.cb-btn:after,
.header ul.sub-menu li.menu-item:hover a:after, .header.fixed ul.sub-menu li.menu-item:hover a:after,
.header ul.sub-menu li.menu-item.current-menu-item > a:after, .header.fixed ul.sub-menu li.menu-item:hover a:after,
.footer-right ul.menu > li.menu-item:hover > a:after,
.footer-right ul.menu > li.menu-item ul.sub-menu li:hover a:after{
    width: 100%
}
.footer-right ul.menu > li.menu-item > a:after, .footer-right ul.menu > li.menu-item ul.sub-menu li:hover a:after{
    height: 1px;
}
.footer-right ul.menu > li.menu-item ul.sub-menu li a:after{
    bottom: 10px;
}
body .header .header-cta-wrapper {
    padding: 15px 30px;
    cursor: pointer;
}
body .header .header-cta a.cb-btn{
    padding: 0;
}
.header li.menu-item.mega-menu > ul.sub-menu {
    display: flex;
    width: auto;
    left: 50%;
    max-width: 900px;
    padding: 25px;
    transform: translateX(-50%);
    flex-flow: wrap;    
}
.header li.menu-item.mega-menu > ul.sub-menu > li.menu-item {
    width: 25%;
    max-width: 225px;
}
.header li.menu-item.mega-menu > ul.sub-menu > li.menu-item a {
    font-size: 15px;
    font-weight: 700;
    padding: 15px;
}
.header li.menu-item.mega-menu > ul.sub-menu > li.menu-item ul.sub-menu {
    position: relative;
    background: transparent;
    padding: 0;
    width: 100%;
    top: auto;
    left: auto;
    margin-top: 0;
}
.header li.menu-item.mega-menu > ul.sub-menu > li.menu-item ul.sub-menu li a {
    padding: 0 15px;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 400;
}
.header li.menu-item.mega-menu > ul.sub-menu li.menu-item:hover {
    background: transparent;
}
.header li.menu-item.mega-menu > ul.sub-menu > li.menu-item a:hover {
    opacity: 0.7;
}
.header li.menu-item.mega-menu > ul.sub-menu li.menu-item:hover a{
    width: 100%;
}
.header ul.sub-menu li.menu-item a:after{
    bottom: 0;
}

/*===== Home Hero Styles =====*/
.hero-wrapper {
    padding: 50px 0;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-flow: column;
    text-align: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    mix-blend-mode: darken;
}
.hero-wrapper:before {
    content: "";
    width: 900px;
    height: 600px;
    position: absolute;
    left: calc(50% - 1100px);
    top: 25%;
    background: url(/wp-content/uploads/2021/01/banner-shape.svg) no-repeat;
    background-size: cover;
}
.hero-slider-wrapper, .page-template-page-resident .resident-services-bannner{
    position: relative;
}
.hero-slider-wrapper:after, .page-template-page-resident .resident-services-bannner:after{
    border-right: 100vw solid rgba(0,0,0,0);
    border-bottom: 50px solid #F4F4F4;
    content: "";
    height: 0;
    position: absolute;
    right: 0;
    bottom: -6px;
    width: 100%;
    z-index: 9;
}
h1.hero-title {
    margin: 0 0 25px;
    font-size: 54px;
}
h2.hero-subtitle {
    font-weight: 400;
    margin: 35px 0 0;
    font-size: 35px;
}
.hero-content p {
    line-height: 1.5;
    width: 100%;
    max-width: 900px;
    margin: 25px auto;
}
.content-block.features-block {
    padding: 250px 0 90px;
    margin-top: -270px;
}
.home-hero-slider.flexslider {
    margin: 0;
    border: none;
    background: transparent;
}
li.single-hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}
.slide-flex-wrapper {
    padding: 50px 0;
    height: auto;
    min-height: 90vh;
    display: flex;
    flex-flow: column;
    text-align: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}
.slide-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: darken;
}
.home-hero-slider ol.flex-control-nav li a {
    width: 10px;
    height: 10px;
}
.home-hero-slider ol.flex-control-nav li a.flex-active {
    position: relative;
}
.home-hero-slider ol.flex-control-nav li a.flex-active:before{
    content: "";
    width: 26px;
    height: 26px;
    border: 1px solid;
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: -10px;
    transition: all 0.5s ease 0s;
}
.home-hero-block.fixed-text .hero-slider-wrapper {
    position: absolute;
    width: 100%;
    height: 90%;
    min-height: 90vh;
}
.home-hero-block.fixed-text .hero-wrapper {
    z-index: 999;
    min-height: calc(90vh - 75px);
    padding-bottom: 0;
    margin-bottom: 35px;
}
.home-hero-block.hero-type-single-video {
    overflow: hidden;
}
.home-hero-block.hero-type-single-video .video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: #000;
    opacity: 0.55;
}

.home-hero-block.hero-type-single-video.fixed-text .hero-wrapper {
    min-height: 100vh;
    margin-bottom: 0;
}
.home-hero-block iframe.youtube-video {
    height: 200vh;
    width: 200%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.home-hero-block + .block-flexible-text {
    background: #F4F4F4;
    margin-bottom: -120px;
}
.home-hero-block + .block-flexible-text .single-flex-text {
    text-align: left;
}
.home-hero-block + .block-flexible-text .single-flex-text h2.section-title{
    font-size: 35px;
    font-weight: 300;
    position: relative;
    margin-bottom: 10px;
}
.home-hero-block + .block-flexible-text .single-flex-text h2.section-title:before{
    content: "";
    width: 100%;
    max-width: 318px;
    height: 1px;
    position: absolute;
    left: -60%;
    top: 25px;
}
.home-hero-block + .block-flexible-text .single-flex-text h3.section-subtitle{
    font-size: 47px;
    font-weight: 700;
    margin-top: 10px;
    line-height: 58px;
}
.home-hero-block + .block-flexible-text{
    padding: 50px 0 100px;
}
.image-position-left .image-section{
    -webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
    position: relative;
    z-index: 1;
    height: auto;
}
.image-position-left .text-section{
    position: relative;
    padding:50px;
    margin-left: 0;
}
.image-position-left .text-section:before{
    content: "";
    width: calc(100% + 150px);
    height: 90%;
    position: absolute;
    left: -300px;
    top: 0;
    clip-path: polygon(0 0, 100% 0%, 100% 93%, 0% 100%);
}
.image-position-left .text-section:after{
    content: "";
    width: 500px;
    height: 90%;
    position: absolute;
    left: -300px;
    top: 0;
    clip-path: polygon(0 0, 53% 0, 32% 98.8%, 0 100%);
}

.image-position-right .image-section{
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
    position: relative;
    z-index: 1;
    height: auto;
}
.image-position-right .text-section{
    position: relative;
    padding:50px;
    margin-right: 0;
}
.image-position-right .text-section:before{
    content: "";
    width: calc(100% + 140px);
    height: 90%;
    position: absolute;
    right: -350px;
    top: 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 93%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 93%);
    background-color: #F4F4F4;
}
.image-position-right .text-section:after{
    content: "";
    width: 500px;
    height: 90%;
    position: absolute;
    right: -350px;
    top: 0;
    -webkit-clip-path: polygon(45% 0, 100% 0%, 100% 100%, 66% 99%);
    clip-path: polygon(45% 0, 100% 0%, 100% 100%, 66% 99%);
    background-color: #E2E2E2;
}
.content-block .image-position-bg-img{
    position: relative;
    padding-top: 250px;
    margin-top: -250px;
}
.content-block .image-position-bg-img:before{
    content: "";
    width:100%;
    height:100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
}
.home-hero-block + .block-flexible-text + .content-block .image-position-bg-img .image-section{
    opacity: 1;
    z-index: 0;
    mix-blend-mode: multiply;
}
h3.featurs-tagline {
    margin: 0 0 30px;
    text-align: center;
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 300;
}   
.single-feature {
    padding: 5px 60px;
    display: inline-block;
    font-size: 27px;
    position: relative;
}
.single-feature:before{
    content: "";
    width: 2px;
    height: 54px;
    position: absolute;
    left: -2px;
    top: -6px;
    transform: rotate(45deg);
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}
.single-feature:first-child:before{
    display: none;
}
.features-list {
    text-align: center;
}
.our-communities h4.feature-title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 30px;
}
.single-feature h4.feature-title {
    margin: 0;
}
.single-feature:last-child {
    border-right: none;
}
.features-block .container {
    max-width: 900px;
    text-align: center;
}
.features-list {
    font-size: 0;
    margin: 100px 0 50px;
}
.single-value {
    max-width: 33.33%;
    display: inline-block;
    vertical-align: top;
    padding: 10px 30px;
        min-width: 200px;
}
img.value-icon {
    width: 120px;
    max-width: 100%;
    height: 90px;
    display: block;
    margin: 0 auto 30px;
    object-fit: contain;
}
span.feature-title {
    font-size: 36px;
    font-weight: 700;
}
.value-description p {
    font-size: 20px;
    line-height: 1.8;
}
/*===== Image-text-section =======*/
.single-it-section {
    padding: 60px 0;
    display: flex;
    flex-flow: wrap;
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.single-it-section .image-section {
    width: calc(50% - 50px);
    background-size: cover;
    background-position: center;
    margin-right: 50px;
    box-shadow: 6px 13px 20px #E6E6E6;
    height: auto;
    min-height: 900px;
    position: relative;
}
.text-section {
    width: calc(50% - 50px);
    margin-left: 50px;
}
.image-text-content-wrapper {
    width: 100%;
    max-width: 650px;
    padding: 50px 0 140px;
}
/*
.image-position-right .text-section{
    max-width: 610px;
    margin: auto;
}
*/
h4.section-tagline {
    margin: 0 0 30px;
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 300;
}
h2.section-title {
    margin: 0 0 55px;
    font-size: 47px;
    line-height: 58px;
}
.section-content {
    font-size: 18px;
    line-height: 35px;
    margin-bottom: 45px;
}
body a.cb-btn.type-9 {
    background: transparent;
    padding-left: 0;
    padding-right: 0;
    margin-right: 25px;
    margin-left: 0;
    position: relative;
    text-transform: none;
    text-transform: uppercase;
}
.single-it-section.image-position-right .image-section {
    order: 2;
    margin-right: 0;
    margin-left: 50px;
}
.single-it-section.image-position-right .text-section {
    margin-left: 0;
    margin-right: 50px;
    padding-left: calc(50% - 630px);
}
.single-it-section.image-position-bg-img .image-section, .single-it-section.image-position-bg-img .text-section {
    width: 100%;
}
.single-it-section.image-position-bg-img {
    padding-top: 0;
    margin-top: -75px;
    z-index: 8;
        margin-bottom: 60px;
}
.single-it-section.image-position-bg-img .image-section {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
/*    opacity: 0.15 !important;*/
}
.single-it-section.image-position-bg-img .text-section .image-text-content-wrapper {
    padding: 90px 0;
    width: 100%;
    max-width: 860px;
    text-align: center;
    margin: 0 auto;
}
.community-info-right a.cb-btn.tour-btn, .community-info-right a.cb-btn{
    position: relative;
}
body a.cb-btn.type-9:after, .initial-section a.cb-btn.type-2:after, .team-member-info:after, a.cb-btn.type-1:after, .community-info-right a.cb-btn.tour-btn:after, .community-info-right a.cb-btn:after {
    content: "\f105";
    font-family: FontAwesome;
    width: 10px;
    height: 10px;
    position: absolute;
    right: -80px;
    top: 5px;
    transition: all 0.5s ease;
    font-size: 30px;
}
body a.cb-btn.type-9:hover:after, .initial-section a.cb-btn.type-2:hover:after, .team-member-info:hover:after, a.cb-btn.type-1:hover:after, .community-info-right a.cb-btn:hover:after{
    animation-name: arrow;
    animation-duration:1.4s;
    animation-iteration-count:infinite;
    animation-timing-function:linear;
}
.cta-content a.cb-btn.type-1.link-type-internal.text-color-light{
    padding: 17px 60px 13px 30px;
    margin-left: 0;
}
.cta-content a.cb-btn.type-1.link-type-internal.text-color-light:after{
    right: 20px;
    top: 7px;
}
.community-info-right a.cb-btn.tour-btn:after, .community-info-right a.cb-btn:after{
    right: 15px;
    font-size: 24px;
    top: calc(50% - 12px);
    line-height: 20px;
}
body a.cb-btn.type-9:before{
    content: "";
    width: 82px;
    height: 44px;
    border: 2px solid;
    border-radius: 30px;
    position: absolute;
    right: -115px;
    top: -2px;
}
@keyframes arrow {
  0% {opacity: 1; transform: translateX(0px) scale(1);}
  25%{opacity: 0; transform:translateX(10px) scale(0.9);}
  26%{opacity: 0; transform:translateX(-10px) scale(0.9);}
  55% {opacity: 1; transform: translateX(0px) scale(1);}
}


.content-block.block-featured-communities {
    position: relative;
    overflow: hidden;
}
.content-block.block-type-inner-hero:after{
    content: "";
    width: 100%;
    max-width: 800px;
    height: 100%;
    max-height: 500px;
    position: absolute;
    left: calc(50% - 1028px);
    bottom:0;
    background: url("/wp-content/uploads/2021/01/banner-shape.svg") no-repeat;
    background-size: cover;
    z-index: 0;
}
.page-template-page-about .content-block.block-featured-communities {
    margin-top: 50px;
}
.initial-section {
    position: relative;
    padding: 125px 0;
    transition: all 0.5s ease 0s;
    z-index: 10;
}
.split-bg-img {
    width: 65%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-position: center center;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%, 0% 100%);
    background-size:cover;
}
.split-bg-img:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top:0;
    mix-blend-mode: darken;
}
.split-bg-img.to-right {
    left: auto;
    right: 0;
    clip-path: none;
    background-color: #fff;
    opacity: 0.15;
    background-size: cover;
    background-position: center center;
    width: 68%;
    z-index: 1;
}
.split-bg-img.to-right:before {
    background-color: #fff !important;
}
.block-featured-communities .flex-container {
    position: relative;
    z-index: 2;
}
.featured-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.85;
}   
.container.flex-container {
    display: flex;
    flex-flow: wrap;
}
.featured-communities, .search-communities {
    padding: 75px 60px 120px;
    text-align: center;
    width: 50%;
    transition: all 0.5s ease 0s;
}
.featured-communities a.cb-btn, .search-communities a.cb-btn{
    max-width: 500px;
    padding: 22px 20px 18px 40px;
    text-align: left;
}

.search-communities {
    border-right: none;
}
.initial-section h2.section-title {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 100px;
    font-size: 40px;
}
.featured-communities h2.section-title,  .search-communities h2.section-title{
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 0;
    padding-bottom: 0;
}
.featured-communities h3.section-subtitle, .search-communities h3.section-subtitle{
    margin-bottom: 30px;
    line-height: 40px;
	font-size: 24px;
}

.initial-section .cb-btn {
    width: 100%;
    margin: 0;
    cursor: pointer;
}
.initial-section a.cb-btn.type-2, .cta-content a.cb-btn.type-1{
    position: relative;
}
.initial-section a.cb-btn.type-2:after, .cta-content a.cb-btn.type-1:after {
    content: "\f105";
    font-family: FontAwesome;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 40px;
    top: 12px;
    transition: all 0.5s ease;
}
.community-finder {
    position: relative;    
    max-width: 400px;
    margin: 0 auto;
}
.community-list {
    background: #fff;
    padding: 0;
    height: auto;
    z-index: -9;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 100%;
    margin-top: -5px;
    border-radius: 0 0 15px 15px;
}
.communities-searchbox-list {
    height: auto;
    max-height: 240px;
    overflow: auto;
}
.communities-searchbox-list .single-community{
    opacity: 1;
}
.communities-searchbox-list .single-community a{
    font-size: 15px;
}
.initial-section h2.section-title:after {
    width: 100px;
    height: 1px;
    position: absolute;
    content: "";
    background: #cdcdcd;
    left: 50%;
    margin-left: -50px;
    bottom: 0;
    display: none;
}
.community-finder.active .community-list {
    z-index: auto;
    visibility: visible;
    opacity: 1;
}
.single-community a {
    text-align: left;
    display: block;
    padding: 10px;
    font-weight: 500;
}
.single-community a i {
    margin-right: 5px;
}
.initial-section .community-finder.active .cb-btn {
    background: #fff;
    color: #000;
}
.block-featured-communities a.cb-btn.type-2.text-color-light{
    background: transparent;
    border: 1px solid;
}
.featured-communiites-slider-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 0.5s ease 0s;
    transform: scale(0.5);
    z-index: -9;
    opacity: 0;
    visibility: hidden;
}
.featured-community-slider.flexslider {
    border: none;
    margin: 0;
    height: 100%;
}
.featured-community-slider.flexslider ul.slides, .featured-community-slider.flexslider ul.slides li {
    height: 100%;
}
.slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
}
.community-slide-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #2e7e84;
    opacity: 1;
    mix-blend-mode: multiply;
}
.slider-active .initial-section {
    z-index: -9;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
}
.initial-section .container.flex-container {
       transition: all 0.5s ease 0s;
}
.slider-active .initial-section .featured-communities {
    transform: translateX(-100%);
}
.slider-active .initial-section .search-communities {
    transform: translateX(100%);
}
.slider-active .featured-communiites-slider-wrapper {
    z-index: 9;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
li.community-slide .container {
    min-height: 100%;
    padding: 60px 0;
}
.community-box {
    background: #fff;
    padding: 40px;
    width: 100%;
    max-width: 600px;
    margin-top: 60px;
}
.community-slide h2.section-title {
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 300;
    text-transform: uppercase;
}
h3.section-subtitle {
    font-size: 24px;
}
.community-info {
    font-size: 18px;
    line-height: 1.8;
}
.community-slide .community-info {
    max-height: 180px;
    overflow: hidden;
    margin-bottom: 20px;
}
a.community-link {
    font-size: 20px;
    font-weight: 600;
}
ol.flex-control-nav {
    bottom: 120px;
    z-index: 1000;
    width: 100%;
}
ol.flex-control-nav li a {
    border: 1px solid;
    box-shadow: none;
    margin: 0 20px;
    position: relative;
}
ol.flex-control-nav li a.flex-active:before{
    content: "";
    width: 26px;
    height: 26px;
    border: 1px solid;
    border-radius: 50%;
    position: absolute;
    left: -9px;
    top: -9px;
    transition: all 0.5s ease 0s;
}
.slider-close {
    position: absolute;
    z-index: 99;
    width: 40px;
    height: 40px;
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    font-weight: 700;
    right: calc(50% - 700px);
    top: 30px;
    cursor: pointer;
}
.slider-close span {
    display: block;
    transform: rotate(45deg);
}
.flex-control-paging li a {
    width: 12px;
    height: 12px;
}

.slider-active .featured-communiites-slider-wrapper .slider-close span{
    font-size: 70px;
    font-weight: 300;
}
.featured-community-slider.flexslider .container {
    max-width: 1260px;
}
.featured-community-slider ol.flex-control-nav{
    bottom: 60px;
}
.featured-communiites-slider-wrapper ul.flex-direction-nav {
    display: none;
}
.featured-communiites-slider-wrapper .community-box h2.section-title{
    text-align: left;
    font-size: 28px;
}


.content-block.block-testimonials {
    padding: 90px 0 150px;
}
.content-block.block-testimonials .container{
    max-width: 1440px;
}
.testimonial-content, .testimonial-info {
    display: block;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 140px;
    position: relative;
}
.testimonial-info h3.section-subtitle {
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 0 60px;
    display: inline-block;
    font-size: 19px;
}
.testimonial-content p {
    font-size: 47px;
    line-height: 1.5;
}
#testimonials-slider ol.flex-control-nav {
    bottom: -50px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    left: 0;        
}
.testimonial-content:before {
    content: "“";
    position: absolute;
    font-size: 200px;
    left: 50%;
    line-height: 150px;
    display: none;
}
.testimonial-content{
    padding-top: 50px;
}
.testimonial-content, 
.testimonial-info{
    text-align: center;
    padding-left: 70px;
    padding-right: 70px;
}
.testimonial-info .author-info{
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-size: 19px;
}
.testimonial-info .author-info:before{
    content: "";
    width: 2px;
    height: 34px;
    position: absolute;
    left: -30px;
    top: -10px;
    transform: rotate(45deg);
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}
.testimonial-content p{
    margin-bottom: 0;
}
.testimonial-info{
    padding: 20px 0 50px;
}
.testimonial-content .quote{
    width: 82px;
    height: 75px;
    margin: 30px auto;
    text-align: center;
}

.cta-wrapper {
    position: relative;
    margin-bottom: 0;
    -webkit-clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
}
.cta-wrapper:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.cta-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
    opacity: 0.9;
    display: none;
}
.cta-wrapper .flex-container {
    display: flex;
    flex-flow: wrap;
    position: relative;
    z-index: 9;
    overflow: hidden;
    min-height: 770px;
}
.cta-content {
    width: 50%;
    padding: 150px 60px 150px 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
    position: relative;
}
.cta-content:before{
    content: "";
    width: calc(100% + 200px);
    height: 100%;
    max-height: 600px;
    position: absolute;
    left: -200px;
    bottom: -50px;
    background: url(/wp-content/uploads/2021/01/banner-shape.svg) no-repeat;
    background-size: cover;
    opacity: 0.3;
    z-index: 1;
}
.cta-foreground {
    width: 50%;
    -webkit-clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
    z-index: 2;
}
.cta-foreground .foreground-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    -webkit-transition: opacity 1s, -webkit-transform 1s;
    transition: opacity 1s, transform 1s;
}
.cta-wrapper:hover .cta-foreground .foreground-img{
    -webkit-transform: scale3d(1.1,1.1,1);
    transform: scale3d(1.1,1.1,1);
}
.cta-wrapper .container {
    max-width: 1240px;
}
.cta-content h3, .cta-content h2, .cta-content .section-buttons {
    position: relative;
    z-index: 4;
}
.cta-content h3.section-subtitle{
    font-size: 35px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 45px;
}

.cta-content h2.section-title span{
    font-size: 47px;
    font-weight: 700;
}



.footer{
    background: #F4F4F4;
}

.footer-left {
    width: 30%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding-right: 30px;
}
.footer-right {
    width: 70%;
}
.footer-logo img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 70px;
    margin-bottom: 20px;
}
.footer-contact a, .footer-address {
    font-size: 14px;
    display: block;
    margin: 10px 0 0;
}
.footer-contact a{
    pointer-events: none;
}
.footer-contact, .footer-address {
    padding-left: 40px;
}
.footer-address {
    font-size: 14px;
    line-height: 2;
}

.footer-right ul.menu {
    font-size: 0;
    padding-left: 30px;
    margin-top: 45px;
    list-style-type: none;
}
.footer-right ul.menu > li.menu-item {
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    vertical-align: top;
    width: auto;
    padding: 0 100px 0 0;
    margin-bottom: 18px;
}
.footer-right ul.menu > li.menu-item a {
    font-size: 27px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.footer-right ul.menu > li.menu-item:last-child {
    padding-right: 0;
}
.footer-right ul.menu > li.menu-item:first-child {
    padding-left: 0px;
}
.footer-right ul.menu > li.menu-item ul.sub-menu {
    font-weight: 400;
    padding: 0;
    list-style-type: none;
    margin-top: 40px;
    line-height: 1.25;
    font-size: 14px;
    padding-right: 15px;
}
.footer-right ul.menu > li.menu-item ul.sub-menu li a {
    margin-bottom: 10px;
    display: block;
    font-size: 18px;
}
.footer-right ul.menu > li.menu-item.menu-item-has-children a {
    position: relative;
}
.footer-right ul.menu > li.menu-item.current-menu-parent a:before, .footer-right ul.menu > li.menu-item-has-children a:before{
    content: "";
    width:150px;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -15px;
}
.footer-right ul.menu > li.menu-item.menu-item-has-children ul.sub-menu li a:before {
    display: none;
}
.footer-social {
    font-weight: 700;
    padding-left: 43px;
    text-transform: uppercase;
    margin-top: 0px;
}
body .text-color-dark .footer-social a {
    color: #B1B1B1;
}
a.social-icon {
    display: inline-block;
    margin: 0 16px 0 0;
    width: 30px;
    height: 30px;
    border: 1px solid #B1B1B1;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
}
a.social-icon:hover{
    border: 1px solid;
}
.footer {
    padding-bottom: 150px;
    padding-top: 150px;
}
.footer .container {
    max-width: 1580px;
}
.footer-logo {
    max-width: 220px;
}
body .header a.cb-btn.type-9 {
    text-decoration: none;
}
.block-type-inner-hero .block-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
}
.content-block.block-type-inner-hero {
    padding: 100px 0;
    height: auto;
    min-height: 720px;
    display: flex;
    position: relative;
    flex-flow: column;
    justify-content: center;    
    background-size: cover;
    background-position: center top;
    margin-bottom: 100px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 50px));
}
.content-block.block-type-inner-hero:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    background: #cdcdcd;
    top: 0;
    z-index: 9;
    left: calc(50% - 629px);
    opacity: 0.6;
}
.content-block.block-type-inner-hero .inner-hero-wrapper {
    z-index: 10;
}
.block-type-inner-hero .container {
    margin-top: 100px;
}
.inner-hero-wrapper h1 {
    font-size: 60px;
    margin: 0 0 35px;
    line-height: 60px;
    padding-top: 30px;
}
.inner-hero-wrapper h2 {
    font-size: 24px;
    font-weight: 500; 
}
.content-block.block-type-inner-hero + .image-text-block > .single-it-section:first-child {
    padding-top: 0;
}
.block-flexible-text .container {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    padding: 90px 0;
}
.single-flex-text {
    max-width: 900px;
    text-align: center;
}
.single-flex-text.text-alignment-left {
    text-align: left;
}
.single-flex-text.text-alignment-right {
    text-align: right;
}
.content-block.block-tiles {
    background: #F8F8F8;
    padding: 65px 0;
}
.content-block.block-tiles .container {
    justify-content: center;
}
.single-tile {
    padding: 0 45px;
    text-align: center;
    margin: 25px 0;
}
.tile-icon-wrapper {
    width: 90px;
    height: 90px;
    display: block;
    margin: 0 auto;
    padding: 5px;
    border-radius: 50%;
    margin-bottom: 25px;
    overflow: hidden;
}
h3.tile-title {
    text-transform: uppercase;
    font-size: 24px;
    margin: 0 0 25px;
}
.tile-content {
    font-size: 20px;
        line-height: 1.8;
}
img.tile-icon {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.content-block.block-type-numbers {
    text-align: center;
}
.block-type-numbers .numbers {
    display: flex;
    justify-content: center;
    flex-flow: wrap;
    margin-bottom: 45px;
}
.block-type-numbers .numbers .single-number {
    width: 33.33%;
    margin-top: 25px;
    display: flex;
    flex-flow: wrap;
    padding: 20px 10px;
    border-right: 1px solid #cdcdcd;
    font-size: 0;
}
.single-number .number-section {
    width: 50%;
}
.single-number h2.section-title {
    margin: 0;
}
.single-number .content-section {
    width: 50%;
    text-align: left;
}
.single-number .content-section {
    width: 50%;
    text-align: left;
    display: flex;
    flex-flow: column;
    justify-content: center;
}
.single-number .content-section p {
    font-size: 15px;
    margin: 0;
    line-height: 1.3;
}



body .video-gallery-slider .flex-viewport {
    overflow: visible !important;
}
.content-block.block-type-video-slider {
    overflow: hidden;
}


li.single-video-slide .video-bg {
    width: auto;
    padding-bottom: 56.6%;
    position: relative;
    background-size: cover;
    margin: 0 75px;
    box-shadow: 6px 13px 20px #E6E6E6;
}
li.single-video-slide .video-bg .ytp-button {
    background: transparent;
    border: none;
    width: 15%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.video-slide-overlay {
    position: absolute;
    z-index: 9;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}
body .video-gallery-slider .flex-direction-nav a:before {
        font-size: 40px;
    line-height: 120px;
    text-align: center;
    width: 100%;
    /* content: "\f0d9"; */
    margin-left: -3px;
    margin-top: -2px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.video-gallery-slider ol.flex-control-nav {
    bottom: -55px;
}
li.single-video-slide {
    opacity: 0.4;
}
li.single-video-slide.flex-active-slide {
    opacity: 1;
}
.pk-video-popup {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(0,0,0,0.55);
    opacity: 0;
}
.pk-video-popup.active {
    opacity: 1;
    z-index: 9999;
}
.pk-video-popup .pkvp-wrapper {
    display: block;
    position: absolute;
    width: 80%;
    max-width: 80%;
    left: 10%;
    height: auto;
    top: 10%;
}
.pk-close {
    position: absolute;
    z-index: 999;
    width: 30px;
    height: 30px;
    background: #fff;
    right: 0;
    top: 0;
    cursor: pointer;
}
.pk-close:after {
    content: "X";
    text-align: center;
    width: 100%;
    position: absolute;
    top: 0;
    line-height: 30px;
    font-weight: 700;
}
.pkvp-box {
    width: 100%;
    display: block;
    padding-bottom: 56.25%;
}
.pkvp-box iframe {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
}
.video-gallery-slider .flex-direction-nav .flex-prev {
    left: calc(50% - 50vw) !important;
    top: 0;
    opacity: 1 !important;
    border: none;
    border-radius: 50%;
    width: calc(50vw - 590px);
    height: 100%;
    position: absolute;
    z-index: 99;
    font-size: 0;
}
.video-gallery-slider .flex-direction-nav .flex-next {
    right: calc(50% - 50vw) !important;
    top: 0;
    opacity: 1 !important;
    border: none;
    border-radius: 50%;
    width: calc(50vw - 590px);
    height: 100%;
    position: absolute;
    z-index: 99;
    font-size: 0;
}
.video-slider-outer {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}
.video-slider-outer-wrapper {
    padding: 90px 0;
    background: #F8F8F8;
}
.video-gallery-slider.flexslider {
    border: none;
    background: transparent;
    margin-bottom: 0;
}
/*
body .video-gallery-slider .flex-direction-nav a:before {
    display: none;
}
*/
.block-type-video-slider h2.section-title {
    padding: 45px 0;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.5;
}
.team-grid {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
}
.content-block.block-type-teams {
    padding: 90px 0;
    text-align: center;
}
.content-block.block-type-teams .section-content {
    max-width: 800px;
    margin: 0 auto 50px;
}
.single-team-member {
    padding: 5px;
    width: 33.33%;
}
.team-member-headshot {
    padding-bottom: 120%;
    background-size: cover;
    background-position: top center;
    position: relative;
        overflow: hidden;
}
img.headshot-img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    object-fit: cover;
    transition: all 0.5s ease 0s;
    transform: translateX(-50%) translateY(-50%)
}
.team-member-info {
    padding: 20px 20px 10px 20px;
    text-align: left;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    -webkit-clip-path: polygon(0 0, 100% 21%, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 21%, 100% 100%, 0 100%);
}
.team-member-headshot:hover img.headshot-img {
    width: 105%;
    height: 105%;
}
.team-member-info span.member-name {
    font-size: 18px;
    display: inline-block;
    line-height: 1.5;
    text-transform: uppercase;
    font-weight: 700;
}
.team-member-info span.member-title {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    display: block;
}
.team-member-info span.member-name span.name-arrow {
    width: 0;
    height: 2px;
    display: inline-block;
    vertical-align: middle;
    background: #fff;
    margin-left: 5px;
    transition: all 0.5s ease 0s;
    opacity: 0;
    position: relative;
}
.team-member-info span.member-name span.name-arrow:after {
    width: 7px;
    height: 7px;
    position: absolute;
    border-right: 2px solid #fff;
    content: "";
    border-top: 2px solid #fff;
    transform: rotate(45deg);
    right: 0;
    top: -3.5px;
}
.team-member-headshot:hover .team-member-info span.member-name span.name-arrow {
    width: 30px;
    opacity: 1;
}
.team-member-info:after {
    right: 32px;
    top: 40px;
    font-size: 22px;
}
/*
.team-member-info:hover:after{
    animation-name: arrow;
    animation-duration:1.4s;
    animation-iteration-count:infinite;
    animation-timing-function:linear;
}
*/
.team-member-info:before{
    content: "";
    width: 50px;
    height: 24px;
    border: 2px solid;
    border-radius: 30px;
    position: absolute;
    right: 15px;
    bottom: 15px;
}
.page-template-page-our-team .content-block.block-type-teams{
    padding: 0;
    margin-bottom: 0;
}
.member-headshot {
    width: 40%;
}
.team-member-outer.container {
    max-width: 1080px;
}
body.single-team .page-content {
    padding-top: 250px;
}
.team-member-content {
    width: 60%;
    padding-left: 75px;
}
a.back-btn {
        font-size: 17px;
    display: block;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
}
.team-member-content h2.section-title {
    margin: 50px 0 20px;
    font-size: 47px;
}
.team-member-social {
    margin-bottom: 20px;
}
.team-member-social a.social-icon{
    border: 0;
}
.team-member-content h4.section-tagline{
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
}
.member-headshot {
    width: 40%;
    background-size: cover;
    background-position: top center;
    -webkit-clip-path: polygon(0 0, 100% 3%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 3%, 100% 100%, 0% 100%);
    max-height: 600px;
}
.team-member-outer.container {
    max-width: 1170px;
    margin-bottom: 100px;
}
.text-color-dark .team-member-content a.back-btn{
    color: #3f3f3f;
}
.page-template-page-our-team h2.section-title:first-child {
    margin-top: 0;
}

.awards-list {
    padding: 90px 0;
}
.single-award {
    margin-bottom: 40px;
    display: flex;
    flex-flow: wrap;
}
.award-content {
    width: 50%;
    padding-right: 25px;
}
.award-image {
    padding-left: 50px;
    display: flex;
    flex-flow: column;
    justify-content: center;
        width: 50%;
}
.job-listing {
    padding: 50px 0;
}
.single-job.text-color-dark {
    padding: 50px 0;
}
.single-job:nth-child(2n+2){
    background-color: #f4f4f4;
}
.listing-wrapper {
    width: 100%;
/*    max-width: 1180px;*/
    margin: 0 auto;
}
.contact-section {
    padding: 50px 0 90px;
    position: relative;
}
.contact-section:before{
    content: "";
    width: 65%;
    height: calc(100% + 120px);
    position: absolute;
    right: 0;
    top: -132px;
    z-index: 2;
    background-color: #F4F4F4;
    -webkit-clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 96%);
    clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 96%);
}
.contact-section .container {
    display: flex;
    flex-flow: wrap;
    z-index: 5;
}
.contact-left {
    width: 30%;
    padding-right: 35px;
        font-size: 16px;
}
.contact-right {
    width: 70%;
    padding-left: 35px;
}
.contact-section h4.section-tagline {
    margin: 15px 0 20px;
}
a.contact-no, a.contact-email {
    font-weight: 700;
    line-height: 1.5;
}
.address {
    padding-right: 20px;
    line-height: 1.5;
}
.address span.street {
    display: block;
}
.office-hours {
    margin-top: 30px;
}
.hours-info {
    line-height: 1.5;
}
.hours-info p {
    margin-top: 5px;
}
.formmangr-col {
    width: 100%;
    margin-bottom: 50px;
}
.formmangr-row input.formmangr-input, .formmangr-row select, .formmangr-row textarea {
    width: 100% !important;
    padding: 15px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    text-transform: uppercase;
    border: 0;
/*    border-bottom: 2px solid #B1B1B1;*/
    outline: none !important;
    background: transparent;
}
button.formmangr-button.formmangr-button-submit {
    border: none;
    color: #fff;
    font-size: 18px;
    padding: 15px 50px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    border-radius: 30px;
    cursor: pointer;
}
.content-block.communities-section {
    padding-top: 160px;
}
.filter-wrap{
    position: relative;
    padding: 50px 0;
}
.filter-wrap:before{
    content: "";
    width: 100%;
    height: calc(100% + 100px);
    position: absolute;
    left: 0;
    top: -130px;
    background-color: #f4f4f4;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 93%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 93%);
}
.center-text {
    text-align: center;
}
.community-list-wrapper {
    display: flex;
    flex-flow: wrap;
}
.communities-loop {
    width: 50%;
    height: auto;
    max-height: 600px;
        overflow: auto;
    transition: all 0.5s ease 0s;
        min-height: 400px;
        display: flex;
    flex-flow: column;
}
.single-community {
    display: flex;
    flex-flow: wrap;
    border-bottom: 1px solid #EDEBEB;
    opacity: 0.5;
    transition: all 0.25s ease 0s;
    position: relative;
    order: 2;
    margin-bottom: 10px;
}
.communities-loop .single-community:before{
    content: "";
    width: 68%;
    height: 90%;
    background-color: #f4f4f4;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}
.single-community img.index-img {
    position: absolute;
    top: 0px;
    right: 0;
    clip-path: polygon(10px 0%, 100% 0%, 35px 100%, 0% 100%);
    width: auto;
    height: auto;
    left: auto;
}
.single-community a.marker-trigger {
    padding: 0;
}
.single-community .property-info, .single-community .property-info a{
    font-size: 15px;
    padding: 0;
}
.single-community.active {
    opacity: 1;
    order: 1;
}
.community-list-wrapper .community-img {
    width: 33.33%;
    overflow: hidden;
    position: relative;
    -webkit-clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}
.community-list-wrapper.type-grid .community-img{
    -webkit-clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 100%);
}
.community-list-wrapper.type-grid .single-community:before{
    display: none;
}
.community-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.community-list-wrapper .community-info {
    padding: 20px 25px;
    width: 66.66%;
}
.community-list-wrapper .community-info {
    padding: 20px 25px;
    width: 66.66%;
    font-size: 0;
    z-index: 1;
}
.community-list-wrapper .community-info h3.community-name {
    font-size: 20px;
    margin: 0 0 5px;
    line-height: 1.5;
}
.community-list-wrapper .community-info span.starting-price {
    font-size: 18px;
    line-height: 1;
    display: block;
    margin-bottom: 20px;
}
.community-icons img {
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}
.community-info-left, .community-info-right {
    display: inline-block;
    width: 50%;
    vertical-align: middle;
}
.community-info-right {
    text-align: center;
}
.community-list-wrapper.type-grid .community-info-right{
    flex-grow: 1;
    justify-content: flex-end;
    display: flex !important;
    flex-flow: column;
}
.community-info-right a.cb-btn {
    display: block;
    padding: 16px 22px 13px;
    text-align: center;
    border: 2px solid;
    max-width: 215px;
    margin: 10px auto;
    font-size: 14px;
}
.community-info-right a.cb-btn.community-btn{
    background-color: transparent;
    border: 2px solid;
}
.community-info-right .community-icons img{
    margin-right: 20px;
}
.community-list-wrapper.type-grid .community-info-right .community-icons {
    text-align: left;
    padding: 10px 5px;
}
.community-list-wrapper .community-info span.starting-price{
    font-weight: 700;
    font-size: 20px;
    margin-top: 10px;
}
.communities-map {
    width: 50%;
}
div#map-canvas {
    width: 100%;
    height: 100%;
    background: #cdcdcd;
}
#map-canvas h2.section-title {
    font-size: 24px;
    margin: 0 0 5px;
    line-height: 1.5;
}
#map-canvas h4.section-tagline {
    font-size: 18px;
    margin: 0;
}
.contact-section .contact-left h4.section-tagline{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 0;
}
.contact-section .contact-left a {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
    word-break: break-all;
    max-width: 250px;
}
.community-filter select, input.community-page-search {
    padding: 12px 0;
    border: none;
    -webkit-appearance: none;
    width: 100%;
    border-radius: 30px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    background: transparent;
    outline: none !important;
    z-index: 1;
    position: relative;
}
.community-filters {
    font-size: 0;
    text-align: center;
    margin-bottom: 40px;
}
.community-filter {
    width: calc(25% - 40px);
    display: inline-block;
    margin: 0 20px;
    border-radius: 0;
    vertical-align: middle;
    border: 0;
    border-bottom: 2px solid #B1B1B1; 
    max-width: 250px;
    position: relative;
}
.community-filter:before{
    content: "";
    position: absolute;
    right: 0px;
    top: 15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 5px 0 5px;
    border-color: #707070 transparent transparent transparent;
    z-index: 0;
}
.community-filters .community-filter:nth-child(4){
    border: 0;
}
.community-filters .community-filter:nth-child(4):before{
    display: none;
}
.community-filters .community-filter:nth-child(4):after{
    content: "\f002";
    font-family: fontawesome;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    font-size: 15px;
}
.single-community.bed-inactive,
.single-community.amnety-inactive,
.single-community.price-inactive {
    display: none;
}
input.community-page-search {
    background: #EFEFEF;
    border-radius: 0;
    padding: 12px 10px;
}
.filter-reset {
    width: auto;
    display: inline-block;
    vertical-align: middle;
}
a.cb-btn.community-filters-reset {
    border-radius: 40px;
    display: inline-block;
    vertical-align: middle;
    padding: 15px 30px 10px;
}
a.cb-btn.community-filters-reset:after{
    display: none;
}
.view-toggle {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-left: 20px;
}
.view-toggle .toggle-area {
    width: 40px;
    height: 20px;
    display: inline-block;
    border-radius: 20px;
    background: #D3D3D3;
    vertical-align: middle;
    margin-right: 5px;
    position: relative;
}
.view-toggle .toggle-area:after {
    width: 20px;
    height: 20px;
    position: absolute;
    content: "";
    border-radius: 50%;
    left: 0;
    top: 0;
    transition: all 0.5s ease 0s;
}
.view-toggle.toggled .toggle-area:after {
    left: 20px;
}
.community-list-wrapper.type-grid .communities-map {
    display: none;
}
.community-list-wrapper.type-grid .communities-loop {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
}
.community-list-wrapper.type-grid .communities-loop .single-community {
    width: calc(25% - 40px);
    margin: 0 20px 20px;
    flex-flow: column;
    border: 0;
}
.community-list-wrapper.type-grid .community-img {
    width: 100%;
    height: 200px;
}
.community-list-wrapper.type-grid .community-info {
    width: 100%;
    padding: 15px 0;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-flow: column;
}
.community-list-wrapper.type-grid .community-info-left, .community-list-wrapper.type-grid .community-info-right {
    display: block;
    width: 100%;
}
.community-list-wrapper.type-grid .community-info-left {
    margin-bottom: 0px;
}
.community-list-wrapper.type-grid .community-info-right a.cb-btn{
    text-align: left;
    margin: 10px 0;
}
.type-grid img.index-img {
    display: none;
}
.community-info .address, a.community-contact {
    font-size: 16px;
    font-weight: 500;
    padding: 0;
}
.community-list-wrapper.acquisition .community-info-left {
    text-align: left;
}
.community-list-wrapper.acquisition .community-info-right {
    text-align: left;
}
body li.menu-item.draft {
    display: none;
}
body li.menu-item.draft {
    display: none !important;
}
.team-member-content a.back-btn {
    position: relative;
    padding-left: 25px;
}
.team-member-content a.back-btn:after {
    width: 10px;
    height: 10px;
    content: "";
    position: absolute;
    border-top: 2px solid;
    border-left: 2px solid;
    transform: rotate(-45deg);
    top: 2px;
    left: 0;
}
.view-toggle span:after {
    content: "Grid View";
}
.toggled.view-toggle span:after {
    content: "List View";
}
ul.acquisition-filters {
    padding: 0;
    list-style-type: none;
    text-align: left;
}
li.acquisition-filter {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid;
    display: inline-block;
    margin-right: 20px;
    padding: 14px 30px;
    line-height: 1;
    border-radius: 20px;
    cursor: pointer;
}
li.acquisition-filter:hover,
li.acquisition-filter.active {
    color: #fff;
}
.single-community.hide {
    display: none;
}



section.blog-posts-section {
    padding: 60px 0 80px;
}
.blog-posts-filters .category-option {
    width: 400px;
    float: left;
        position: relative;
    font-size: 0;
}
.blog-posts-filters .category-option .cat-list {
    position: absolute;
    width: 100%;
    height: auto;
    max-height: 500px;
    overflow: auto;
    background: #fff;
    z-index: -99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease 0s;
}
.blog-posts-filters .category-option span.current-category {
    font-size: 15px;
    text-transform: uppercase;
    padding: 15px 20px;
    font-weight: 700;
    display: block;
    background: #EDEDED;
    line-height: 1;
    cursor: pointer;
    border-radius: 20px;
}
.blog-posts-filters .category-option .cat-list.hovered {
    opacity: 1;
    visibility: visible;
    z-index: 99;
}
.blog-posts-filters .category-option .cat-list li.categories ul {
    font-size: 15px;
    margin: 0;
    padding: 0;
        border: 1px solid;
    border-top: none;
}
.blog-posts-filters .category-option .cat-list li.categories ul li.cat-item a {
    display: block;
    line-height: 1.5;
    padding: 10px;
    font-weight: 600;
}
.blog-posts-filters .category-option .cat-list li.categories ul li.cat-item a:hover {
    background: #ededed;
}
.blog-posts-filters .search-form,
.post-sidebar .search-form {
    position: relative;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    line-height: 1;
    float: right;
    width: 400px;
}
.blog-posts-filters .search-form i, .post-sidebar .search-form i {
    position: absolute;
    top: 10px;
    font-size: 25px;
    opacity: 0.5;
    left: 7px;
}
.post-sidebar .search-form {
    width: 100%;
    float: none;
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;  
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.blog-posts-filters input#searchsubmit,
.post-sidebar input#searchsubmit {
    display: none;
}
.blog-posts-filters input#s, .post-sidebar input#s {
    width: 100%;
    border: none;
    font-size: 15px;
    line-height: 1.5;
    padding: 12px 12px 12px 40px;
    font-weight: 700;
    text-transform: uppercase;
    background: #EDEDED;
    border-radius: 20px;
}
.blog-post-grid {
    margin-top: 80px;
}
.blog-post-grid .alm-reveal {
    display: flex;
    flex-flow: wrap;
    margin-left: -25px;
    margin-right: -25px;
        padding: 0;
}
.blog-post-grid .alm-reveal li.single-post {
    width: calc(33.33% - 50px);
    padding: 0;
    margin: 25px;
    border: 1px solid #E3E3E3;
    display: flex;
    flex-flow: column;
}
.blog-post-grid .alm-reveal li.single-post .single-featured-image img {
    width: 100%;
    display: block;
    position: relative;
    height: 300px;
    object-fit: cover;
}
h4.single-post-title {
    font-size: 25px;
    line-height: 1.35;
    width: 100%;
    margin: 20px 0;
    position: relative;
    font-weight: 500;
    padding: 0 20px;
}
.blog-post-grid h4.section-tagline {
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-flow: wrap;
}
.post-date {
    font-size: 15px;
    font-weight: 500;
    width: 120px;
}
.blog-posts-section .container {
    max-width: 1400px;
}
.post-cat {
    font-size: 15px;
    font-weight: 500;
    width: calc(100% - 120px);
    position: relative;
}
li.single-post a.read-more-link {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 20px;
    position: relative;
    padding: 0 20px;
}
.single-post-excerpt {
    padding: 0 20px;
    margin: 0;
    font-size: 18px;
    line-height: 1.5;    
    flex-grow: 1;
}

body.single-post .page-content {
    padding-top: 240px;
}
.single-post-header {
    display: flex;
    flex-flow: wrap;
    margin-bottom: 100px;
}
.single-post-heading {
    width: 50%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding-right: 60px;
}
.single-post-img {
    width: 50%;
}
.single-post-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}
body.single-post .page-content .container {
    max-width: 1180px;
}
h1.single-post-title {
    font-size: 54px;
    margin-top: 0;
}
.single-post-meta .post-date {
    display: inline-block;
    width: auto;
    padding-right: 13px;
    margin-right: 10px;
}
.single-post-body {
    width: 100%;
    display: flex;
    flex-flow: wrap;
}
.single-post-body .post-content {
    width: 70%;
    padding-right: 70px;
}
.single-post-body .post-content p, .single-post-body .post-content ul li {
    font-size: 18px;
    font-weight: 400;
    color: #363636;
    line-height: 1.8;
}
.single-post-body .post-content p:first-child {
    margin-top: 0;
}
.single-post-body .post-content ul {
    list-style-type: disc;
    padding-left: 25px;
}
.single-post-body .post-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
}
.post-sidebar {
    width: 30%;
}
.category-widget {
    margin-top: 60px;
}
.posts-slider.flexslider {
    padding: 0 60px;
}
.posts-slider.flexslider .flex-control-nav {
    left: 0;
    bottom: -30px;
    width: 100%;
    margin-left: 0;
    max-width: 100%;
}
h2.widget-title {
    margin: 0 0 25px;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid #dedede;
        font-size: 30px;
    font-weight: 500;
}
.category-widget {
    margin-top: 60px;
    font-size: 0;
}
.category-widget li.cat-item {
    font-size: 15px;
    font-weight: 700;
    line-height: 2.5;
    text-transform: uppercase;
}
.related-widget {
    margin-top: 60px;
}
.single-related-posts {
    border: 1px solid #E3E3E3;
    margin-bottom: 40px;
}
.single-button-wrapper {
    text-align: center;
}
img.related-post-img {
    width: 100%;
    height: auto;
}
.single-related-posts h3 {
    font-size: 24px;
    line-height: 1.5;
    margin: 10px 0 15px;
        padding: 0 20px;
}
.related-widget a.read-more-link,
.rp-group-wrapper a.read-more-link {
    margin: 0 20px 20px;
    display: block;
    font-weight: 600;
}
.rp-group-wrapper .post-date {
    margin: 0 20px;
}
.rp-group-wrapper {
    width: 100%;
    padding: 0 60px;
    display: flex;
    flex-flow: wrap;
}
.rp-group-wrapper .single-related-posts {
    width: calc(50% - 30px);
    margin: 0 15px;
}
.latest-posts-carousel {
    padding: 100px 0;
}

.rp-group-wrapper a.read-more-link {
    text-transform: uppercase;
    margin-top: 15px;
    display: block;
    font-weight: 700;
    font-size: 15px;
}
.posts-slider.flexslider ul.flex-direction-nav a.flex-prev, .posts-slider.flexslider ul.flex-direction-nav a.flex-next {
    left: 0;
    opacity: 1;
    font-size: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #787878;
    position: absolute;
}
.posts-slider.flexslider ul.flex-direction-nav a.flex-next {
    left: auto;
    right: 0;
}
.posts-slider.flexslider ul.flex-direction-nav a.flex-prev::before, .posts-slider.flexslider ul.flex-direction-nav a.flex-next::before {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background: #FFF;
    top: 50%;
    left: 12.5px;
}
.posts-slider.flexslider ul.flex-direction-nav a.flex-prev::after, .posts-slider.flexslider ul.flex-direction-nav a.flex-next::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    top: 18px;
    transform: rotate(-45deg);
    left: 13px;
}
.posts-slider.flexslider ul.flex-direction-nav a.flex-next::after {
    transform: rotate(135deg);
    left: auto;
    right: 13px;
}
.posts-slider.flexslider ul.flex-direction-nav {
    display: block;
}
h2.rp-title {
    margin: 0 0 40px;
    font-size: 30px;
}
a.cta.subscribe-cta {
    display: block;
    padding: 40px;
    font-size: 0;
    font-weight: 700;
    cursor: pointer;
}
a.cta.subscribe-cta i {
    display: inline-block;
    font-size: 60px;
    vertical-align: middle;
    margin: 0;
    width: 20px;
    line-height: 1;
}
a.cta.subscribe-cta span {
    display: inline-block;
    width: calc(100% - 20px);
    font-size: 24px;
    vertical-align: middle;
    line-height: 1.5;
}
.subscribe-form-popup {
    position: fixed;
    z-index: -9;
    background: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}
.subscribe-form-popup.active {
    z-index: 9999;
    opacity: 1;
    visibility: visible;
}
.subscribe-form-popup .subscribe-popup-body {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    background: #fff;
    max-width: 400px;
    padding: 20px;
    transform: translateX(-50%) translateY(-50%);
}
.subscribe-form-popup .subscribe-popup-body .subscribe-close {
    width: 30px;
    height: 30px;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
}
.subscribe-form-popup .subscribe-popup-body .subscribe-close span {
    display: block;
    line-height: 25px;
    transform: rotate(45deg);
}
.subscribe-form-popup .subscribe-popup-body .subscribe-close {
    width: 30px;
    height: 30px;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    right: 5px;
    top: 5px;
    position: absolute;
        cursor: pointer;
}
.subscription-form {
    padding: 15px 0;
}
.subscription-form .formmangr-col {
    width: 100%;
    margin: 0;
        padding: 0;
}
.subscription-form button.formmangr-button.formmangr-button-submit {
    width: 100%;
}
.subscription-form div#submit {
    margin: 0;
}
.blog-posts-filters .category-option span.current-category i {
    float: right;
    font-size: 30px;
    line-height: 15px;
    color: #989898;
}
span.post-cat:after {
    content: "";
    height: 20px;
    width: 2px;
    position: absolute;
    left: -15px;
}
li.single-post a.read-more-link span,
.single-related-posts a.read-more-link span {
    display: inline-block;
    padding-bottom: 5px;
    position: relative;
}
li.single-post a.read-more-link span:after,
.single-related-posts a.read-more-link span:after {
    content: "";
    position: absolute;
    width: 0;
    left: 0;
    height: 2px;
    transition: all 0.5s ease 0s;
        bottom: 0;
}
li.single-post a.read-more-link:hover span:after,
.single-related-posts a.read-more-link:hover span:after {
    width: 100%;
}
.single-post-body .post-content h2 {
    margin-top: 35px;
}
.latest-posts-carousel .flex-control-paging li a {
    width: 16px;
    height: 16px;
    margin: 0 10px;
    opacity: 1;
    border-width: 2px;
}
a.cb-btn {
    cursor: pointer;
}
.blog-post-grid .single-virtual-tour, .vr-tour-listing li.single-post {
    display: none !important;
}
.swifty_blog_loadmore{
	background-color: #ddd;
	border-radius: 2px;
	display: block;
	text-align: center;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing:1px;
	cursor:pointer;
	text-transform: uppercase;
	padding: 10px 0;
	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;  
}
.swifty_blog_loadmore:hover{
	background-color: #767676;
	color: #fff;
}
.category-widget ul {
    padding: 0;
        list-style-type: none;
}
.footer-bottom .community-icons {
    display: inline-block;
    vertical-align: middle;
    padding: 15px 0;
}
.footer-bottom .container {
    max-width: 1480px;
}
.copyright-text {
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px;
    font-size: 13px;
    font-weight: 500;
    margin-right: 60px;
        padding: 15px 0
}
.copyright-text p {
    font-size: 14px;
    font-weight: 500;
}
a.swifty_blog_loadmore.cb-btn {
    margin: 0 auto;
    display: block;
    max-width: 200px;
}
.policy-nav {
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
        padding: 15px 0;
}
.policy-nav a.policy-nav-item {
    font-size: 13px;
    font-weight: 500;
    margin-right: 15px;
    padding-right: 15px;
    display: inline-block;
    position: relative;
}
.policy-nav a.policy-nav-item:before{
    content: "";
    width: 1px;
    height: 24px;
    position: absolute;
    left: -15px;
    top: -4px;
    transform: rotate(45deg);
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}
.policy-nav a.policy-nav-item:first-child:before{
    display: none;
}
.policy-nav a.policy-nav-item:last-child {
    border: none;
}
.policy-nav a.policy-nav-item:last-child {
    border: none;
}
.initial-section .container {
    max-width: 1280px;
}
.block-featured-communities .container {
    max-width: 100%;
}
.flex-direction-nav .flex-prev {
    left: 10px;
    opacity: 1;
}
.flex-direction-nav .flex-next {
    right: 10px;
    opacity: 1;
}
input.special-community-finder {
    background: #fff;
    border: none;
    font-size: 18px;
    font-weight: 400;
    display: block;
    width: calc(100% - 2px);
    text-align: left;
    line-height: 2;
    padding: 10px 20px;
    position: absolute;
    left: 1px;
    top: -52px;
    border-radius: 30px;
    outline: none !important;
}
.single-community.no-search {
    display: none;
}
body .scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 40px;
    font-size: 40px;
    color: #fff;
    margin-left: -13px;
    -webkit-animation-duration: 5s;
    animation-duration: 5s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
    -webkit-animation-name: bounce; 
    animation-name: bounce; 
    animation-iteration-count: infinite;
}
.community-list > i {
    position: absolute;
    z-index: 9;
    top: -34px;
    right: 22px;
}
.property-info span.beds {
    display: block;
    margin-bottom: 10px;
}



@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(5px);
  }
  10% {
    -webkit-transform: translateY(-5px);
  }
  20% {
    -webkit-transform: translateY(25px);
  }
  40% {
    -webkit-transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(5px);
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: translateY(5px);
  }
  10% {
    -webkit-transform: translateY(-5px);
  }
  20% {
    -webkit-transform: translateY(25px);
  }
  40% {
    -webkit-transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(5px);
  }
}
.gm-style > div:first-child > div:first-child > div:nth-child(4) > div {
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}
.header ul.menu > li.menu-item.menu-item-has-children > a {
    position: relative;
}
.header ul.menu > li.menu-item.menu-item-has-children > a:before {
    position: absolute;
    content: "\f0d7";
    right: -20px;
    top: 0;
    font-family: fontawesome;
}
.single-job h4.section-tagline {
    font-size: 18px;
    margin-bottom: 15px;
}
.single-job h1.section-title {
    margin: 10px 0 30px;
    font-size: 30px;
}
.single-job .section-content {
    margin-bottom: 30px;
}

body div#wpadminbar {
    background: #d4d4dd;
}
body div#wpadminbar a.ab-item {
    color: #000;
}
body div#wpadminbar a.ab-item::before {
    color: #000;
}
body div#wpadminbar li#wp-admin-bar-site-name a {
    position: relative;
    font-size: 0;
}
body div#wpadminbar li#wp-admin-bar-site-name a:after {
    content: "Dashboard";
    position: relative;
    font-size: 13px;
}
body div#wpadminbar a.ab-item:hover, body div#wpadminbar a.ab-item:hover::before {
    background: #db851a !important;
    color: #fff !important;
}
body div#wpadminbar li#wp-admin-bar-site-name > .ab-sub-wrapper {
    display: none;
}
input#submit[value="Logout"] {
    border: 0;
    padding: 0 20px;
    color: #fff;
    background: #db851a;
}
.type-grid .communities-loop {
    max-height: none;
    padding-bottom: 30px;
}
.hero-content, .inner-hero-wrapper {
    width: 100%;
    margin: 0 auto;
    text-align: left;
    position: relative;
    line-height: 75px;
    padding: 30px 0;
}
.inner-hero-wrapper h2{
    line-height: 1.5;
    padding-bottom: 20px;
}
.hero-content:before, .inner-hero-wrapper:before{
    content: "";
    width: 5px;
    height: 100%;
    position: absolute;
    left: -52px;
    top:0;
}
span.scroll-trigger {
    position: absolute;
    display: block;
    border-right: 2px solid #2E7E84;
    border-bottom: 2px solid #2E7E84;
    z-index: 999;
    bottom: 60px;
    left: 50%;
    cursor: pointer;
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: bounce;
    animation-name: bounce;
    animation-iteration-count: infinite;
}
.hero-type-single-image span.scroll-trigger {
    bottom: 90px;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(5px) rotate(45deg);
  }
  10% {
    -webkit-transform: translateY(-5px) rotate(45deg);
  }
  20% {
    -webkit-transform: translateY(25px) rotate(45deg);
  }
  40% {
    -webkit-transform: translateY(0px) rotate(45deg);
  }
  100% {
    -webkit-transform: translateY(5px) rotate(45deg);
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: translateY(5px) rotate(45deg);
  }
  10% {
    -webkit-transform: translateY(-5px) rotate(45deg);
  }
  20% {
    -webkit-transform: translateY(25px) rotate(45deg);
  }
  40% {
    -webkit-transform: translateY(0px) rotate(45deg);
  }
  100% {
    -webkit-transform: translateY(5px) rotate(45deg);
  }
}

.jobs-inner-hero > span {
    display: block;
    margin-bottom: 10px;
    line-height: normal;
}
.jobs-inner-hero > span.other-info {
    display: block;
    margin: 0;
    font-size: 24px;
        text-transform: capitalize;
}
.jobs-inner-hero > span.other-info strong {
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
    vertical-align: middle;
    line-height: 1;
    padding-left: 30px;
    margin-left: 30px;
    position: relative;
}
.jobs-inner-hero > span.other-info span:first-child strong:first-child {
    padding-left: 0;
    margin-left: 0;
}
.jobs-inner-hero > span.other-info strong:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    transform: rotate(45deg);
}
.jobs-inner-hero > span.other-info span:first-child strong:first-child::after {
    display: none;
}
.content-block.block-padding-medium {
    padding: 90px 0;
}
.job-details-columns {
    display: flex;
    flex-flow: wrap;
}
.job-left {
    width: 50%;
    padding-right: 30px;
}
.job-right {
    width: 50%;
    padding-left: 30px;
}
.job-left p, .job-left ul li {
    line-height: 1.8;
}
.job-form-row {
    margin-left: -10px;
    margin-right: -10px;
        display: flex;
    flex-flow: wrap;
}
.job-form-field {
    width: 100%;
    position: relative;
    margin: 0 10px 15px;
}
.job-form-row.col-3 .job-form-field {
    width: calc(33.33% - 20px);
}
.job-form-row.col-2 .job-form-field {
    width: calc(50% - 20px);
}
.job-form-field label {
    position: absolute;
    top: 18px;
    left: 0;
    cursor: pointer;
    transition: all 0.2s ease 0s;
    z-index: 9;
    text-transform: uppercase;
    font-weight: 700;
}
.job-form-field input, .job-form-field select, .job-form-field textarea {
    width: 100% !important;
    padding: 15px 0;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    text-transform: uppercase;
    outline: none !important;
    position: relative; 
    border: 0;
    border-bottom: 2px solid #B1B1B1;
    font-weight: 700;
}
.job-form-field.upload-field label {
    position: relative; 
    top: auto;
    left: auto;
    display: block;    
    padding: 15px 25px;
    line-height: 1.5;
    border: 0;
    border-bottom: 2px solid #B1B1B1;
}
.job-form-field.input-focused label,
.job-form-field.input-has-value label {
    font-size: 13px;
    top: 0;
}
.job-form-field select {
    height: 57px;
}
.job-form-field.upload-field label{
    padding: 15px 0;
}
input#resume {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.job-form-field.upload-field label span.dashicons.dashicons-upload {
    float: right;
    margin-top: 3px;
}
.job-form-field.upload-field label span.dashicons.dashicons-upload:before {
    content: "\f093";
    font-family: FontAwesome;
}
.job-form-field.input-has-value.upload-field label, .job-form-field.input-focused.upload-field label {
    font-size: 18px;
}
.job-right p.success {
    color: green;
    font-weight: 700;
}
.job-right p.fail {
    color: #ff0000;
    font-weight: 700;
}
.job-form-row .checkbox {
    display: flex;
    flex-flow: row;
    margin: 20px 0px 30px;
}
.job-form-row .checkbox input#interest {
    width: 40px !important;
}
.job-form-row .checkbox label {
    font-weight: 400;
    text-transform: inherit;
    display: contents;
}
.job-form-row .checkbox.input-has-value label{
    font-size: 16px;
}

form#job-apply input#submit {
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 13px 30px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    border-radius: 20px;
    cursor: pointer;
}
.single-job h4.section-tagline {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 400;
}
.single-job span.date-posted {
    float: right;
}
.clearfix:after {
    display: table;
    content: " ";
    clear: both;
}
.job-listing-filters {
    display: block;
    margin-bottom: 50px;
}
.job-listing-filters select {
    padding: 12.5px 10px;
    font-size: 16px;
    margin-right: 20px;
    display: inline-block;
    vertical-align: middle;
    min-width: 200px;
    border: 0;
    border-bottom: 2px solid #B1B1B1;
}
.content-block.bg-multiply {
    background-size: cover;
    background-position: center center;
    background-blend-mode: multiply;
}
a.apply-job-filters{
    padding: 15px 30px 10px;
}

.tilt-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-position: center center;
    background-size: cover;
    transition: all 1.5s ease 0s;
    transform: none !important;
}
.iwd-custom {
    max-width: 300px;
}
.gm-style .gm-style-iw-c {
    padding: 0;
}
.gm-style .gm-style-iw-d {
    overflow: auto !important;
}
.iwd-custom-top {
    padding: 20px;
}
#map-canvas h2.section-title {
    font-size: 18px;
    font-weight: 600;
}
p.section-address {
    font-size: 16px;
    line-height: 1.5;
    margin: 5px 0 0;
    font-weight: 400;
}
p.section-address span {
    display: block;
    font-size: 16px;
    line-height: 1.5;
}
.iwd-custom-bottom {
    text-align: center;
    font-size: 16px;
    padding: 10px;
    font-weight: 700;
}
button.gm-ui-hover-effect {
    background: #fff !important;
    top: 0px !important;
    right: 0px !important;
}
.filter-wrap .container {
    max-width: 100%;
}
.home-hero-block.fixed-text .hero-slider-wrapper:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    background: #cdcdcd;
    top: 0;
    z-index: 9;
    left: calc(50% - 629px);
    opacity: 0.6;
}
select.community-resident-login {
    display: block;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 700;
    padding: 15px 0;
    margin-bottom: 40px;
    border: none;
    border-bottom: 2px solid #B1B1B1;
    width: 100%;
    background: transparent;
}
.job-details-columns .job-left a.resident-login-trigger {
    padding: 17px 50px 13px;
}
.community-resident-login + a.cb-btn {
    padding: 17px 30px 13px;
}
.content-block.resident-content {
    padding-bottom: 100px;
    position: relative;
    background-color: #F4F4F4;
    padding-top: 100px;
}
.page-template-page-resident .block-type-inner-hero {
    margin-bottom: 0;
}
.resident-section-image {
    position: absolute;
    height: 100%;
    width: 50%;
    top: 100px;
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
}
.team-group-outer {
    margin-bottom: 100px;
}
.empty-space {
    display: block;
    height: 100px;
    background-color: #F4F4F4;
}
.no-property-text {
    padding: 15px;
    line-height: 1.5;
    color: #000;
}
label.formmangr-field-label {
    display: block;
    width: 100%;
    cursor: text;
        position: absolute;
    font-size: 21px;
    top: 0;
    padding: 15px;
    line-height: 1.4;    
    z-index: 9;
    transition: all 0.5s ease 0s;
}
.formmangr-field {
    position: relative;
}
.formmangr-field:before {
    width: 100%;
    content: "";
    height: 0;
    border-top: 3px solid #b1b1b1;
    position: absolute;
    bottom: 0;
    background: #fff;
    transition: all 0.5s ease 0s;
        z-index: -9;
}
.input-filled .formmangr-field label.formmangr-field-label {
    padding: 0;
    line-height: 1;
    font-size: 16px;
    top: -21px;
}
.input-filled .formmangr-field::before {
    height: 57px;
}
.formmangr-col.field-type-comment.input-filled .formmangr-field::before {
    height: 90px;
}
img.mobile-menu-logo {
    max-width: 100px;
    position: absolute;
    left: 15px;
    top: 20px;
}
.single-job.hide {
    display: none;
}
.formmangr-col.field-type-unit_type label {
    opacity: 0;
}