/*
Theme Name: Explore Florida MH TEST TEST TEST
Theme URI: https://exploreflmh.com
description: Custom Theme for Explore Florida Mobile Homes
Author: Marquay Smith
Author URI: https://rumspeed.com
Version: 1.0.0.1
*/

@font-face {

}

@media (prefers-reduced-motion:no-preference){
    :root{
        scroll-behavior:smooth;
    }
}

/*=============
Variables
 ==============*/

:root {
	--primary: hsl(185.41deg 55.78% 60.98%);
	--secondary: hsl(36.99deg 96.02% 60.59%);

	--lt-blue: hsl(199.09deg 100% 95.69% / 100%);
	--md-blue: hsl(197.89deg 80.28% 58.24% / 100%);
	--dk-blue: hsl(195deg 39% 32% / 100%);
	--br-green: hsl(85deg 55% 51% / 100%);
	--mt-green: hsl(85.65deg 55.65% 51.37% / 100%);
	--mt-green-hover: hsl(89deg 49% 67% / 100%);
	--grey: hsl(220deg 9% 93% / 100%);
	--orange: hsl(29deg 94% 64% / 100%);
	--sky-blue: hsl(206deg 75% 87% / 100%)
}

/*=============
 Reset Styles
 ==============*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box
}

body {
	line-height: 1.5;
	font-size: 16px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;

}

@media (min-width: 960px){
	body {
		font-size: 20px;
	}
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
	font-size: 1em;
	margin-bottom: .5rem;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

img{
	max-width: 100%;
	height: auto;
}

strong {
    font-weight: 600;
}

a {
	text-decoration: none;
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

p{
	line-height: 1.1;
	margin-bottom: 20px;
}

h1{
	line-height: 1;
	margin-bottom: .5em;
}

h2{
	line-height: 1.25;
	margin-bottom: .25em;
}

h3{
	line-height: 1.5;
	margin: 0 0 .5em;
}

h4 {
    line-height: 1.33;
    margin-bottom: 1em;
}


/*=============
 Fonts
 ==============*/

body{
	font-family: "PT Sans", sans-serif;
}

.fw400{
	font-weight: 400;
}

.fw500{
	font-weight: 500;
}

.fw700{
	font-weight: 700;
}

.uppercase{
	text-transform: uppercase;	
}

.title-initial{
	text-transform: initial;
}



/*=============
 
 ==============*/
.container {
    margin: auto;
    max-width: 1220px;
	width: 90%;
}

.hero-title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 3em;
}

.section-title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 2.5em;
    line-height: 1.2;
}

.section-title-md {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.5em;
    line-height: 1.2;
}

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

.is-hidden{
	display: none;
}

.cta-btn {
    padding: .75rem 1.5rem;
    background: var(--secondary);
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    font-weight: 700;
    position: relative;
    line-height: 1;
}

.cta-btn.primary {
    background: var(--primary);
}

button.cta-btn {
    border: none;
    width: 100%;
}

.cta-btn:hover,
.cta-btn:focus {
	background: var(--primary);
}

.cta-btn.primary:hover,
.cta-btn.primary:focus {
	background: var(--secondary);
}

.page-numbers {
    background: var(--secondary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin: .33rem;
    display: inline-block;
    font-size: 1rem;
}

.page-numbers.current,
.page-numbers:hover,
.page-numbers:focus {
    background: var(--primary);
}

#searchform {
    background: rgb(245 245 245);
    max-width: 330px;
    display: flex;
    padding: 10px;
    border-radius: 3rem;
    justify-content: space-between;
}

#searchform input:focus {
    border: 1px solid var(--primary);
}


form#searchform input {
    background: transparent;
    border: none;
    appearance: none;
}

form#searchform input#searchsubmit {
    font-size: 0;
    background: url(/wp-content/themes/exploreflmh/images/search-button-icon.svg) no-repeat center / 20px;
    height: 30px;
    width: 70px;
}

.df{
	display: flex;
}

.m-auto{
	margin: auto;
}

.mx-auto{
	margin: 0 auto;
}

.mb1{
	margin-bottom: 1em;
}

.mb2{
	margin-bottom: 2em;
}

.mb3{
	margin-bottom: 3em;
}

.m1x0{
	margin: 1em 0;
}
.m2x0{
	margin: 2em 0;
}

.m3x0{
	margin: 3em 0;
}

.m5x0{
	margin: 5em 0;
}

.p1{
	padding: 1em;
}

.p2{
	padding: 2em;
}

.p3{
	padding: 3em;
}

.p5{
	padding: 5em;
}

.p2x0{
	padding: 2em 0;
}

.p3x0{
	padding: 3em 0;
}

.pt3{
	padding-top: 3em;
}

.p5x0,
.p10x0x5{
	padding: 5em 0;
}

.ch20{
	max-width: 20ch;
    margin-left: auto;
    margin-right: auto;
}

.ch40{
	max-width: 40ch;
    margin-left: auto;
    margin-right: auto;
}

.ch60{
	max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

.ch80{
	max-width: 80ch;
    margin-left: auto;
    margin-right: auto;
}

@media(min-width:1200px){
	.p10x0x5{
		padding: 10em 0 5em;
	}
}

.gap-3-0{
	gap: 3rem 0;
}
.dark-overlay{
	position: relative;
	overflow: hidden;
}

.dark-overlay > * {
    z-index: 100;
}

.dark-overlay:after{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #000;
	opacity: .5;
	z-index: 1;
}

.border-bottom-primary{
    border-bottom: 4px solid #64c9d3;
}

.margin-negative{
	margin-top: -150px;
	padding-top: 200px;
}

.home-id-active .hide-on-detail{
	display: none;
}
/*=============
 Colors
 ==============*/

.clr-white{
	color: #fff;
}

.bkg-grey{
	background: rgb(245 245 245);
}

.primary-bkg{
	background: var(--primary);
}

.primary-color{
	color: var(--primary);
}

.secondary-bkg{
	background: var(--secondary);
}

.secondary-color{
	color: var(--secondary);
}


/*=============
 Header Styles
 ==============*/

.header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 99998;
}

.header__container {
    display: flex;
    justify-content: space-between;
    width: 95%;
	max-width: 1180px;
    margin: auto;
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.header .custom-logo-link img {
    max-width: 100px;
}

#footer .custom-logo-link img {
    max-width: 200px;
}

ul#menu-main li {
    display: inline;
}

.header-buttons {
    padding: 1em 0;
    text-align: right;
}

.nav-mobile .header-buttons a {
    display: block;
    text-align: center;
    margin-bottom: 1em;
}

.cta-btn.login{
	display: none !important; /* remove if button needed */
}

ul#menu-main li a {
    color: #000;
	padding: .5em 1em;
	position: relative;
	font-size: 1rem;
}

@media(min-width: 1330px){
	ul#menu-main li a {
		font-size: 1rem;
	}
}

ul#menu-main li a:hover,
ul#menu-main li a:focus,
ul#menu-main li.current-menu-item a{
	color: var(--secondary);
}

nav.header__nav-menu ul#menu-main li:last-of-type a{
    background: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    padding:.75em 1.5em;
    color: #fff;
    position: relative;
}

.navButtonWrapper {
    display: none;
}

.navButton {
    float: right;
    position: relative;
    width: 20px;
    height: 14px;
}

.navButtonBar {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    float: left;
    width: 100%;
    position: absolute;
    height: 3px;
    background: var(--dk-blue);
    margin: 7px 0 0;
}

.navButtonBar--top {
    margin-top: 1px;
}

.navButtonBar--bottom {
    margin-top: 13px;
}

body.is-showingNav .navButtonBar {
    background: var(--mt-green);
}

body.is-showingNav .navButtonBar--top {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: 7px
}

body.is-showingNav .navButtonBar--middle {
    opacity: 0;
    filter: alpha(opacity=0);
}

body.is-showingNav .navButtonBar--bottom {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: 7px;
}

.navButton {
    width: 50px;
    height: 17px;
}
.navButtonBar--top {
    margin-top: 0px;
}
.navButtonBar--bottom {
    margin-top: 14px;
}

.nav-mobile {
    background-color: var(--dk-blue);
    height: 100%;
    overflow-y: scroll;
    padding-top: 60px;
    position: fixed;
    right: -320px;
    top: 0;
    width: 320px;
    z-index: 99999;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.nav-mobile, 
.nav-mobile .menu-item a  {
    color: #fff;
}

.nav-mobile .menu-item {
	border-bottom: 1px solid var(--mt-green);
    width: 100%;
}

.nav-mobile .menu-item a {
    padding: 1em;
    width: 100%;
    display: block;
}

.main-nav-contact-container {
    padding: 12px 30px;
}

body.is-showingNav {
    overflow: hidden;
}

body.is-showingNav .nav-mobile {
    display: block;
    right: 0;
}

body.is-showingNav .header__container {
    transform: translateX(-320px);
}

body.is-showingNav .mobile-overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    top: 0;
}

.nav-wrap{
	display: flex;
	align-items: center;
}

@media(max-width: 1130px){
	.nav-wrap{
		display: none;
	}
	
	.navButtonWrapper {
		display: flex;
    	align-items: center;
	}
	
	.resident-login a {
		width: 100%;
		text-align: center;
		padding: 1em;
	}
}

@media(max-width: 900px){
	.header__logo {
		max-width: 150px;
	}
}


/*=============
 Footer Styles
 ==============*/
 footer{
 	background: var(--lt-blue);
 }

.footer__container {
    display: flex;
    max-width: 875px;
    margin: auto;
	flex-direction: column;
}

.footer__box {
    width: 100%;
    display: flex;
	margin: 1em 0;
}

h2.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-links a{
	display: block;
	margin: .25rem 0;
}

footer a{
	color: #000;
}

span.copyright {
    font-weight: 700;
    font-size: .9rem;
}

a.social-icon {
    height: 40px;
    width: 40px;
    background: var(--mt-green);
    border-radius: 50px;
    padding: 4px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

a.social-icon svg {
    height: 20px;
    width: 20px;
    fill: #fff;
}

.footer-links svg {
    fill: var(--mt-green);
}

.footer-contact svg {
    height: px;
    width: px;
}

@media(min-width: 670px){
	.footer__container {
		flex-direction: row;
	}

	.footer__box {
		width: 33.3333%;
	}
	
	.footer__logo.footer__box {
		border-left: 1px solid #fff;
		border-right: 1px solid #fff;
	}
}

@media(max-width: 670px){
	.footer__logo.footer__box {
		order: -1;
	}
	
	.footer__box {
		text-align: center;
	}
}

/*=============
 Home Page Styles
 ==============*/

#hero {
    position: relative;
    max-width: 2000px;
    margin: auto;
    height: 100vh;
    max-height: 725px;
}

#hero h1 span{
    padding: .2rem .35em;
    display: inline-block;
}

.hero-title-1{
	background: hsl(197.89deg 80.28% 58.24% / 75%);
}

	
.hero-title-2{
	background: hsl(85.65deg 55.65% 51.37% / 75%);
}

.hero-content{
	z-index: 30;
}

video.hero__video {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
}

.hero-slider.slick-slider {
    height: 100%;
    position: absolute;
    z-index: 1;
    padding: 0;
}

.hero-slider .slick-list.draggable, 
.hero-slider .slick-track {
	height: 100%;
}

.hero-slide {
    height: 100%;
}

.hero__badge {
    position: relative;
    padding: 1em;
    background: hsl(195deg 39% 32% / 80%);
    height: 100vh;
	max-height: 725px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
	z-index: 1;
}

.hero__badge.green {
    background: hsl(85deg 55% 51% / 80%);
}

.hero__badge-2 {
    background: hsl(196deg 89% 35% / 80%);
}

.hero__badge-3 {
    background: hsl(87deg 57% 52% / 80%);
}

.hero__badge-4 {
    background: hsl(198deg 78% 50% / 80%)
}

.hero__badge-5 {
    background: hsl(204deg 76% 83% / 80%);
}

.hero__badge-wrap {
    position: absolute;
	top: 0;
    display: flex;
    flex-direction: row-reverse;
}

.hero__badge h1 {
    color: #fff;
	font-family: 'Playfair Display', serif;
	text-transform: uppercase;
}

.hero__badge h1.slide-title-size-lg {
	font-size: 4em;
}

.hero__badge h1.slide-title-size-md {
	font-size: 3em;
}

.hero__badge h1.slide-title-size-sm {
	font-size: 2em;
}

.hero-slide .hero-badge__element {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity .5s ease, visibility .5s ease, transform .5s ease;
  visibility: hidden;
}

.hero-slide.slick-active .hero__badge h1 {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.hero-slide.slick-active .cta-btn {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s; 
  visibility: visible;
}

@media(max-width: 959px){
	.hero__badge-wrap {
		width: 100%;
	}
}

@media(min-width: 1400px){
	.hero__badge-wrap {
		width: 50%;
	}
}

@media(min-width: 960px){
	.hero__badge {
		padding: 5em;
		border-radius: 50%;
		height: 600px;
		width: 600px;
	}
	
	.on-right .hero__badge {
		padding: 4em;
	}
	
	.hero__badge-wrap {
		padding-right: 100px;
    	top: 8%;
	}
	
	.hero__badge-wrap.on-right {
		right: 0;
	}
	
	#hero .hero__badge-wrap.on-right h1{
		font-size: 3.5em;
		text-transform: initial;
	}
	
	.hero__badge-wrap:after {
		height: 200px;
		width: 200px;
		content: "";
		position: absolute;
		top: -25px;
		border-radius: 100%;
	}
	
	.hero__badge-wrap.on-left:after {
		background: hsl(86deg 55% 52% / 50%);
		right: 500px;
	}
	
	.hero__badge-wrap.on-right:after {
		background: hsl(195deg 39% 32% / 50%);
		top: -25px;
	}
}

.badge-cta {
    color: #fff;
    font-size: 1.75em;
    font-weight: 700;
}

#hero .slick-dots {
    bottom: 30px;
    overflow: hidden;
	z-index: 999;
}

#hero .slick-dots li {
    margin: 0 15px;
}

#hero .slick-dots li:first-of-type:before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    width: 100rem;
    height: 1px;
    background: var(--sky-blue);
}

#hero .slick-dots li:after {
    content: '';
    position: absolute;
    left: 102%;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--sky-blue);
}

#hero .slick-dots li:last-of-type:before {
    content: '';
    position: absolute;
    left: 102%;
    top: 50%;
    width: 100rem;
    height: 1px;
    background: var(--sky-blue);
}

#hero .slick-dots li button {
    border: 1px solid var(--sky-blue);
    border-radius: 50px;
    height: 20px;
    width: 20px;
}

#hero .slick-dots li.slick-active button,
#hero .slick-dots li button:hover{
    background: var(--sky-blue);
}

.find-home-hero__content {
    color: #fff;
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    background: hsl(195deg 39% 32% / 60%);
    padding: 2em 1em 3em;
    text-shadow: 0 0 20px hsl(0deg 0% 0% / 59%);
}

#hero h1.hero__title {
    font-family: "PT Sans", sans-serif;
    text-transform: initial;
    margin-bottom: 20px;
    line-height: 1;
}

.hero__content h1 {
    color: #fff;
    text-shadow:2px 2px 15px hsl(193deg 72% 15%), 
				2px 2px 15px hsl(193deg 72% 15%), 
				2px 2px 15px hsl(193deg 72% 15%);
	font-size: 3.5em;
	font-family: "PT Sans", sans-serif;
}

.hero__content h2 {
    color: #fff;
    text-shadow:2px 2px 15px hsl(193deg 72% 15%), 
				2px 2px 15px hsl(193deg 72% 15%), 
				2px 2px 15px hsl(193deg 72% 15%)
}

form#community-search-form {
    background: #fff;
    border-radius: 25px;
    padding: 1rem;
    display: flex;
    gap: 1rem 0;
    margin: auto;
    max-width: 600px;
}

select#community-select {
	background: url(/wp-content/themes/exploreflmh/images/arrow-select.svg) no-repeat 100% center / 18px;
	border: none;
	-webkit-appearance: none;
	appearance: none;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	margin: auto;
	position: relative;
	padding-right: 2.5rem;
}

@media (min-width: 992px) {
    select#community-select {
	    text-align: initial;
	    margin: 0;
	}
}

.search-type span{
	cursor: pointer;
    border-radius: 50px;
    letter-spacing: 1px;
    font-weight: 600;
}

.search-type span:hover{
	background: var(--primary);
}

input#property-search {
    border: none;
    width: 100%;
}

.hero-arrow {
	display: none;
    position: absolute;
    bottom: -1px;
    width: 50%;
    margin: auto;
    left: 50%;
    transform: translateX(-50%);
    max-width: 300px;
    z-index: 999;
}

@media(min-width: 468px){
	.hero-arrow {
		display: block;
	}
}

.community-slider .community-slide-item {
    margin: 55px 15px;
    background: var(--grey);
    padding: 1em 0.5em;
    height: 560px;
    position: relative;
}

.grid-community-logo-wrap {
    background: #fff;
    color: #3d3c3c;
    font-family: "Averia Serif Libre", serif;
  	font-weight: 300;
    padding: 1rem 2rem;
    border-radius: 25px;
    position: absolute;
    top: -40px;
    box-shadow: 0 0 5px 0 hsl(0deg 0% 0% / 50%);
    height: 120px;
    width: 200px;
    font-size: 1rem;
    font-weight: 600;
}

.grid-community-logo-wrap:hover{
	transform: scale(1.1);
}

.grid-community-logo-wrap img{
    max-width: 130px;
    width: 100%;
    height: 100%;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.testimonial-img{
	width: 100%;
	height: 100%;
	max-height: 550px;
	object-fit: cover;

}

.testimonial-information {
	border-radius: 2rem 0 2rem 2rem;
    background: var(--secondary);
    padding: 2em;
}

@media(min-width: 992px){
	.testimonial-information {
	    position: absolute;
	    top: 50%;
	    right: 0;
	    transform: translateY(-50%);
	}
}

button.slick-arrow:before {
    content: "";
}

button.slick-next.slick-arrow {
    background: url(/wp-content/themes/exploreflmh/images/arrow-slider.svg) no-repeat center / cover;
    width: 50px;
    height: 50px;
    z-index: 9999;
}

button.slick-prev.slick-arrow {
    background: url(/wp-content/themes/exploreflmh/images/arrow-slider.svg) no-repeat center / cover;
    width: 50px;
    height: 50px;
    z-index: 9999;
}

.testimonial-slider button.slick-next.slick-arrow{
    left: 4rem;
    right: auto;
    top: auto;
    bottom: -3.5rem;
    transform: rotate(180deg);
}

.testimonial-slider button.slick-prev.slick-arrow{
	left: 0;
    top: auto;
    bottom: -3.5rem;
}

.facts-slider button.slick-next.slick-arrow{
	background: url(/wp-content/themes/exploreflmh/images/arrow-slider-white.svg) no-repeat center / cover;
    left: 4rem;
    right: auto;
    top: auto;
    bottom: 0;
    transform: rotate(180deg);
}

.facts-slider button.slick-prev.slick-arrow{
	background: url(/wp-content/themes/exploreflmh/images/arrow-slider-white.svg) no-repeat center / cover;
	left: 0;
    top: auto;
    bottom: 0;
}

.msp-carousel button.slick-next.slick-arrow{
	background: url(/wp-content/themes/exploreflmh/images/arrow-slider-primary.svg) no-repeat center / cover;
    right: 30%;
    top: auto;
    bottom: 2rem;
    transform: rotate(180deg) translatex(-50%);
}

.msp-carousel button.slick-prev.slick-arrow{
	background: url(/wp-content/themes/exploreflmh/images/arrow-slider-primary.svg) no-repeat center / cover;
	left: 30%;
    top: auto;
    bottom: 2rem;
    transform: translatex(-50%);
}

@media(min-width: 992px){
	.msp-carousel button.slick-next.slick-arrow{
	    right: 40%;
	}

	.msp-carousel button.slick-prev.slick-arrow{
		left: 40%;
	}

}

.cta-box {
    height: 25rem;
}


#callout .row{
    --bs-gutter-x: 0;
}

#callout .container {
    max-width: 1824px;
	width: 95%;
}

.callout-img {
    min-height: 25rem;
}

@media (min-width: 992px) {

	.callout-img.rounded-right {
		border-radius: 0 100px 100px 0;
	}

	.callout-img.rounded-left {
		border-radius: 100px 0 0 100px;
	}
}

.specials-box-title{
	width: 90%;
	margin: auto;
}

.community-comparison-logo-wrap{
    background: #fff;
    padding: 14px 2rem;
    border-radius: 25px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.15),
	            0 2px 2px rgba(0,0,0,0.15),               
	            0 4px 4px rgba(0,0,0,0.15),               
	            0 8px 8px rgba(0,0,0,0.15);
    height: 90px;
    width: 230px;
    display: inline-block;
    margin: -60px auto;
    z-index: 1;
}

.community-comparison-logo-wrap img{
    max-width: 150px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.community-card-img {
    height: 255px;
    object-fit: cover;
    width: 100%;
}

.comm-desc {
    font-weight: 600;
    text-transform: uppercase;
    max-width: 230px;
    margin: auto;
}

.community-location h4 {
    text-transform: uppercase;
    font-size: 1rem;
}

.community-type-icon svg{
	width: 25px;
}

.community-type-icon svg,
.community-location svg {
    fill: var(--secondary);
}

.community-card a.cta-btn {
    background: var(--primary);
}

.community-card a.cta-btn:hover  {
    background: var(--secondary);
}

.community-amenity-icon {
    width: 30px;
    height: 30px;
}


.filter-container {
    max-width: 1280px;
    margin: auto;
    display: flex;
    gap: 1em;
    flex-flow: row wrap;
}

.filter-wrap {
    flex: 1 1 15em;
}

.filter-wrap select {
    background: url(/wp-content/themes/exploreflmh/images/arrow-select.svg) no-repeat 90% center / 12px;
    background-color: rgb(245 245 245);
    border: none;
    -webkit-appearance: none;
    appearance: none;
    font-weight: 600;
    text-transform: uppercase;
    margin: auto;
    position: relative;
    padding: 1rem 5rem 1rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
    width: 100%;
}

.filter-wrap input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 1px solid #64c9d3;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    margin-left: 5px;
}

.filter-wrap [type="checkbox"]:checked {
  background-color: #fff; 
  border-color: #fff;
}

.filter-wrap input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #64c9d3;
  border-radius: 3px;
  transform: translate(-50%, -50%);
}

#filter-amenities {
	display: flex;
	gap: 10px;
	flex-flow: row wrap;
}

#filter-amenities label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid #64c9d3;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
}

#filter-amenities input[type="checkbox"] {
  display: none; 
}

#filter-amenities label:has(input:checked) {
  background-color: #64c9d3;
  color: #fff;
  font-weight: 700;
}

.explore_fl-range-wrap{
  position:relative;
  height:34px;
  margin: 10px 0;

  --range-track:#ddd;
  --range-fill:#64c9d3;
  --p1:0%;
  --p2:100%;
}

.explore_fl-range-wrap::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:50%;
    transform:translateY(-50%);
    height:32px;
    border-radius:999px;
    background:linear-gradient(
    to right,
        var(--range-track) 0%,
        var(--range-track) var(--p1),
        var(--range-fill)  var(--p1),
        var(--range-fill)  var(--p2),
        var(--range-track) var(--p2),
        var(--range-track) 100%
        );
    pointer-events:none;
}

.explore_fl-range-wrap input[type="range"] {
    position: absolute;
    left: 50%;
    top: 0;
    width: 95%;
    height: 56px;
    margin: auto;
    background: transparent !important;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: none;
    transform: translateX(-50%);
}

.explore_fl-range-wrap input[type="range"]::-webkit-slider-runnable-track{
    height:32px;
    background:transparent;
    border-radius:999px;
}

.explore_fl-range-wrap input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance:none;
    appearance:none;
    pointer-events:auto;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#fbb13a;
    border:2px solid #fff;
    box-shadow:0 1px 3px rgba(0,0,0,.25);
    margin-top:-5px;
    cursor: ew-resize;
}

.explore_fl-range-wrap input[type="range"]::-moz-range-track{
    height:32px;
    background:transparent;
    border-radius:999px;
}

.explore_fl-range-wrap input[type="range"]::-moz-range-thumb{
    pointer-events:auto;
    width:18px;
    height:18px;
    border-radius:50%;
    background: #fbb13a;
    box-shadow:0 1px 3px rgba(0,0,0,.25);
    cursor: ew-resize;
}

.filter-wrap {
    padding: 2rem;
    border-radius: 25px;
    border: 1px solid var(--primary);
    margin: 0rem auto;
}

section#home-filters .filter-wrap {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-flow: row wrap;
}

#home-filters select {
    background: url(/wp-content/themes/exploreflmh/images/arrow-select.svg) no-repeat 90% center / 12px;
    background-color: rgb(245 245 245);
    border: none;
    -webkit-appearance: none;
    appearance: none;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    margin: auto;
    position: relative;
    padding: 1rem 5rem 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
}

div.ahgridfilter--field {
    margin-top: 0;
}

.ahgridfilter--field.bathfilter {
    display: none;
}

@media (min-width: 992px) {
    #home-filters select {
	    text-align: initial;
	    margin: 0;
	}
}

.qa-wrap {
    display: flex;
    flex-direction: column;
}

.qa-item {
    border: 2px solid var(--primary);
    border-radius: 15px;
    overflow: hidden;
    padding: 1rem;
    margin-bottom: 1rem;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

/*.qa-item.open {
    border: 2px solid var(--primary);
    background: var(--primary);
    color: #fff;
}
*/
.question {
	color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question-title{
    font-weight: 600;
	text-transform: initial;
}

.answer {
	color: #000;
    padding: 10px 0 0;
    display: none;
}

.arrow {
    transition: transform 0.3s ease;
}

.buyer-feature-image{
	width: 100%;
}

.buyer-feature.horizontal{
    margin-bottom: 3rem;
}

.buyer-feature.vertical .buyer-feature-wrap {
    background: var(--primary);
}

.buyer-feature.vertical:nth-of-type(even) .buyer-feature-wrap {
    background: var(--secondary);
}

.buyer-feature.vertical:nth-of-type(even) .buyer-feature-wrap .cta-btn{
    background: var(--primary);
}

@media (min-width: 1350px) {
	.buyer-feature.horizontal .buyer-feature-wrap{
	    max-width: 960px;
	    width: 100%;
	    margin-left: auto;
	}

	.buyer-feature.horizontal .buyer-feature-image {
		position: absolute;
		left: 0;
		width: auto;
		max-width: 573px;
	}

	.buyer-feature.horizontal .buyer-feature-content{
		margin-left: auto;
	}

	.buyer-feature.vertical {
	    width: 49%;
	    display: flex;
	}
}


.post-card-image {
    margin: 0 auto -100px;
    display: block;
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.post-card-content {
    padding-top: 150px;
}

.post-card-title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.5em;
    line-height: 1.15;
}

.post-date {
    padding: 5px 20px;
    font-weight: 600;
    font-size: 1rem;
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.post-date svg {
    fill: #fff;
    width: 15px;
}

#image-map-pro-1360 {
    display: flex;
}

.imp-wrap {
    margin: auto;
}

.intro-content {
    background: var(--secondary);
    border-radius: 2rem 0 2rem 2rem;
    color: #fff;
}

.intro__video{
	width: 100%;
}

@media(min-width: 992px){
	#intro {
		margin-bottom: 10rem;
	}

	.intro-content {
	    position: absolute;
	    top: 100px;
	    left: 30%;
	}

	.state-map {
	    position: absolute;
	    top: 0;
	    right: 150px;
	}
}

.gallery-carousel .slick-list {
    border-radius: 2rem;
}

.gallery-carousel:before {
    position: absolute;
    height: 100px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, .7) 100%);
    content: "";
    width: 100%;
    z-index: 1;
    bottom: 0;
    border-radius: 0 0 2rem 2rem;
}

.gallery-carousel-nav{
    bottom: 70px;
	z-index: 2;
}

@media(min-width: 840px){

	.gallery-carousel:before {
	    position: absolute;
	    height: 300px;
	    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, .7) 100%);
	    content: "";
	    width: 100%;
	    z-index: 1;
	    bottom: 0;
	    border-radius: 0 0 2rem 2rem;
	}

	.gallery-carousel-nav{
	    bottom: 200px;
	}
}


.gallery-slide-img {
    max-height: 800px;
    object-fit: cover;
}

.gallery-slide-nav-img {
    border-radius: 15%;
    padding: 0 10px;
    max-height: 148px;
    object-fit: cover;
}

.explore-area{
	margin-bottom: 5rem;
}

.explore-image img{
	width: 100%;
}

.explore-content {
    background: var(--secondary);
    color: #fff;
    border-radius: 2rem 0 2rem 2rem;
}

.explore-area:nth-of-type(even) .explore-content {
	background: var(--primary);
	border-radius: 0 2rem 2rem 2rem;
}

.explore-area:nth-of-type(odd) .explore-content .cta-btn{
	background: var(--primary);
}

.explore-area:nth-of-type(even) .explore-content .cta-btn{
	background: #fff;
	color: var(--primary);
}

.explore-area:nth-of-type(even) .explore-content .cta-btn:after{
	content: "";
    background: url(/wp-content/themes/exploreflmh/images/arrow-button-primary.svg) no-repeat center;
}



@media(min-width: 992px){
	.explore-area{
		margin-bottom: 5rem;
	}

	.explore-content {
	    position: absolute;
	    border-radius: 2rem 0 2rem 2rem;
	    right: -100px;
	    top: -50px;
	}

	.explore-area:nth-of-type(even) .explore-content{
	    left: -100px;
	}

	.explore-area:nth-of-type(even) .explore-image{
		margin-left: auto;
	}

}

.fact-content p{
	font-size: 1.5rem;
	line-height: 1.2;
}

.fact-image img{
	width: 100%;
	height: 268px;
	object-fit: cover;
}

.msp-carousel {
    background: hsl(0deg 0% 94.9%);
    height: 100%;
}

.msp-carousel-slide img {
    height: 364px;
    width: 100%;
    object-fit: cover;
}

.special-item {
    background: rgb(245 245 245);
}

.special-item:nth-of-type(even) {
    background: transparent;
}

.special-item:nth-of-type(even) .row{
    flex-direction: row-reverse;
}

.blog-post-content h1,
.blog-post-content h2{
	text-transform: uppercase;
    font-weight: 600;
    font-size: 2.5em;
    line-height: 1.2;
}


.blog-post-content h3{
	text-transform: uppercase;
    font-weight: 600;
    font-size: 1.75em;
    line-height: 1.2;
}

.blog-post-content h4{
	text-transform: uppercase;
    font-weight: 600;
    font-size: 1.5em;
    line-height: 1.2;
    margin-bottom: .5em;
}

.blog-post-content h5{
	text-transform: uppercase;
    font-weight: 600;
    font-size: 1em;
    line-height: 1.2;
    margin-bottom: .5em;
}

.blog-post-content ul{
	margin-left: 40px;
	list-style: disc;
}

.blog-post-content li{
	margin-bottom: .5rem;
}

.blog-post-content blockquote{
	padding-left: 20px;
	border-left: 4px solid var(--primary);
}

.blog-post-content img{
    border-radius: 2rem;
    margin-bottom: 3rem;
	width: 100%;
}

.blog-post-featured-img{
	width: 100%;
}

/*========================
 Carlyle Extended Styles
 ========================*/

.homes-feed-list-wrap {
    display: block;
    width: 100%;
    max-width: 1240px;
    margin: 2rem auto;
}

.homes-feed-list-wrap p{
    margin: 0;
}

.homes-feed-list-wrap br{
    display: none;
}

aside.available_home_grid {
    border-radius: 25px;
    border: 1px solid rgb(245 245 245);
}

div.available_home__image {
	margin: 0 0 30px;
    height: 13vw;
}

@media (min-width: 980px) and (max-width: 1280px) {
  	div.available_home__image {
		min-height: 320px;
	}
}

span.home-ribbon {
	font-size: 1.25rem;
    transform: initial;
    right: 15px;
    width: max-content;
    padding: 10px 20px;
    height: auto;
    border-radius: 50px;
    top: 15px;
}

figure.available_home__img {
    width: 100%;
    padding: 20px;
    margin: 0;
    position: relative;
}

figure.available_home__img img {
    width: 100%;
    border-radius: 15px;
    height: 225px;
    object-fit: cover;
}

div.available_home__image__div {

}


div.available_home__image__div__p {
    background-color: #fff;
    color: #000;
    font-size: .9rem;
    letter-spacing: 1px;
    box-shadow: none;
    justify-content: space-around;
    margin: 0;
    padding:15px 0;
}

span.available_home__image__div__p__span {
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: capitalize;
    font-family: "PT Sans", sans-serif;
}

span.block-detail-icon {
    background: hsl(36.99deg 96.02% 60.59%);
    width: 30px;
    height: 30px;
    padding: 8px;
}


.available_home__location {
    border-bottom: 1px solid rgb(245 245 245);
    border-top: 1px solid rgb(245 245 245);
    padding: 15px;
    position: relative;
    font-family: "PT Sans", sans-serif;
}

aside.available_home_grid .location-single,
aside.available_home_grid .location-multiple {
	color: hsl(197.89deg 76.3% 58.63%);
    display: block;
    font-size: 1rem;
    font-family: "PT Sans", sans-serif;
}

aside.available_home_grid .location-multiple {
    text-align: left;
    font-weight: 400;
    margin-top: 0;
}

div.available_home__address {
    color: #000;
    font-size: 1.15rem;
    margin-bottom: 0;
    text-align: left;
    font-family: "PT Sans", sans-serif;
}

div.available_home__em.purchase {
    color: #000;
    font-size: 2rem;
}

div.available_home__pricing {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px 0;
}

.available_home__image__div__p__span:after, 
.available_home__image__div__p__span:before {
    display: none;
}


@media (max-width: 769px) {
	.ahgrid-item {
		display: flex;
	}

    aside.available_home_grid {
         margin: 0 auto 30px; 
    }
}

.ahgrid-item a.cta-btn {
    background: var(--primary);
}

.ahgrid-item a.cta-btn:hover  {
    background: var(--secondary);
}


.homes-for-sale aside.available_home_grid {
    background: #f6f4f4;
    border-color: #edecec;
    width: 100%;
}

.homes-for-sale .available_home__location {
    border-color: #edecec;
}

.homes-for-sale div.available_home__image__div__p {
    background-color: #f6f4f4;
}


div.homes-feed-list-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
  margin-bottom: 1em;
}


@media (max-width: 1280px) {
  div.homes-feed-list-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  div.homes-feed-list-wrap {
    grid-template-columns: 1fr;
  }
}

div.homes-feed-list-wrap:before {
    content: " ";
    display: none;
}

#explore_fl_HomeFilters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
    max-width: 1440px;
    padding: 3em 1em;
    border: 1px solid var(--primary);
    border-radius: 25px;
}

@media (max-width: 1439px) {
  #explore_fl_HomeFilters {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1023px) {
  #explore_fl_HomeFilters {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #explore_fl_HomeFilters {
    grid-template-columns: 1fr;
  }
}

.explore_fl-filter-field {
    display: flex;
    flex-direction: column;
}

.explore_fl-filter-field label {
    font-weight: 700;
}

.explore_fl-filter-field select {
    background: url(/wp-content/themes/exploreflmh/images/arrow-select.svg) no-repeat 90% center / 12px;
    background-color: rgb(245 245 245);
    border: none;
    -webkit-appearance: none;
    appearance: none;
    font-weight: 600;
    text-transform: uppercase;
    margin: auto;
    position: relative;
    padding: 1rem 5rem 1rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
    width: 100%;
}

.explore_fl-range-values {
    font-size: 14px;
}
/*========================
 Gravity Forms Styles
 ========================*/


.gform-body.gform_body {
    margin-bottom: 2rem;
}

div.gform_wrapper.gravity-theme .gfield input {
    padding: .85rem 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    border: none;
    border-bottom: 3px solid var(--primary);
    border-radius: 0;
    -webkit-box-shadow: 0;
    box-shadow: 0;
    background: 0 0;
    width: 100%;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    font-size: 1.33rem;
    letter-spacing: .05em;
    color: #000;
}

div.gform_wrapper.gravity-theme .gfield_select {
    font-size: 1.33rem;
    border: none;
    border-bottom: 3px solid var(--primary);

}

div.gform_wrapper.gravity-theme .gfield textarea {
    padding: .85rem 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    border: 3px solid var(--primary);
    border-radius: 5px;
    padding: 1rem;
    width: 100%;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    font-size: 1.33rem;
    letter-spacing: .05em;
    color: #000;
}

div.gform_wrapper.gravity-theme .gfield.gfield--type-select label.gfield_label.gform-field-label {
    font-weight: 400;
    font-size: 1.33rem;
}

div.gform_wrapper.gravity-theme  select#input_3_6 {
    font-size: 1.33rem;
    border: none;
    border-bottom: 3px solid var(--primary);
    appearance: none;

}

div.gform-footer.gform_footer.top_label {
    justify-content: center;
}

div.gform_wrapper.gravity-theme .ginput_container.ginput_container_consent input {
    width: auto;
}

.gform_button.button {
	padding: .75rem 1.5rem;
    background-color: var(--primary);
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    font-weight: 700;
    position: relative;
    line-height: 1;
    border: none;
    -webkit-appearance: none;
    appearance: none;
}

.squares-element {
    justify-content: center;
    display: inline-flex;
}

