/*
Theme Name: Expo Homes Responsive 2022
Theme URI: http://rvadv.com
Description: Child theme. Child theme for RVADV Framework.
Template: rvadv_framework_theme
Author: Rearview Advertising
Author URI: http://rvadv.com
Version: 1.0 
*/
/* ---------------------------------------- */
/* ------------- CSS IMPORTS ---------------*/
/* ---------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Lexend+Exa:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Noto Serif');

/* ---------------------------------------- */
/* -------------- CSS RESET ----------------*/
/* ---------------------------------------- */
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, em, 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;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ---------------------------------------- */
/* -------------- VARIABLES ----------------*/
/* ---------------------------------------- */
:root {
	--bg-color:#FFF;
	--primary: #2B4137;
	--primary-dark: #2A4137;
	--secondary:#C99E72;
	--tirtiary-dark: #E9E1D9;
	--tirtiary-light: #F5F2EB;
	--link: #00F;
	--link-hover: #C99E72;
	--primary-font: 'Noto Serif', sans-serif;
	--secondary-font: 'Lexend Exa', sans-serif;
}

/* ---------------------------------------- */
/* ------------ GLOBAL STYLES ------------- */
/* ---------------------------------------- */
html {
	box-sizing: border-box;
}
html, body {
	/* overflow-x: hidden; */
}
*, *:before, *:after {
	box-sizing: inherit;
}
img {
	max-width: 100%;
}
body {
	background-color: var(--bg-color);
	font-family: var(--primary-font);
}
li {
	list-style: none;
}
a {
	text-decoration: none;
	color: var(--links);
}
a:hover {
	color: var(--link-hover);
}
.hide {
	display: none;
}
.bold {
	font-weight: bold;
}
.text_centered {
	text-align: center;
}
.grid-container {
	max-width: 1400px !important;
}
.grid-container.no-pad {
	padding:0;
}
/* fix for flexbox from unsemantic*/
.grid-container::before, .grid-container::after {
	content: none !important;
}
.grecaptcha-badge {
	display: none !important;
}
h1, h2, h3, h4 {
	font-family: var(--primary-font);
}
h1 {font-size: min(3.3vw, 50px);}
h2 {font-size: min(3vw, 44px); font-weight: normal}
h3 {font-size: min(2.7vw, 32px);}
h4 {font-size: min(2vw, 20px);}
h5 {
	font-family: var(--secondary-font);
	font-size: 18px;
	font-weight: bold;
}
p {
	font-family: var(--secondary-font);
	font-size: clamp(14px, 1.6vw, 18px);
	font-weight: 300;
	line-height: 30px;
}
@media (max-width: 767px) {
	h1 {font-size: 35px;}
	h2 {font-size: 30px;}
	h3 {font-size: 24px;}
	h4 {font-size: 20px;}
	p {font-size: 16px;}
}
p.small {
	font-size: 16px;
	line-height: 18px;
}
.button {
	font-family: var(--secondary-font);
	text-transform: uppercase;
	border: none;
	color: white;
	padding: 14px 80px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	max-width: fit-content;
	position: relative;
	white-space: nowrap;
}
@media (max-width: 400px) {
	.button { 
		padding: 14px 0px;
		max-width: 100%;
		width: 100%;
	}
}
.button.primary {
	background-color: var(--primary);
}
.button.primary:hover {
	background-color: #192520;
	color: #fff;
}
.button.secondary {
	background-color: var(--secondary);
}
.button.secondary:hover {
	background-color: #a07e5c;
	color: #fff;
}
.button.nobg {
	color: var(--primary-dark);
	font-weight: 500;
	padding: 0;
}
.button.nobg:hover {
	color: var(--primary);
}
.button> i {
	font-weight: 100;
	margin-left: 10px;
	transform: rotate(-90deg);
	transition: all 0.1s linear;
}
.button:hover> i {
	transform: rotate(0deg);
}

.button.disabled {
	cursor:default;
}
.button.primary.disabled {
	background-color: #192520;
	color: rgb(184, 182, 182);
}
.button.disabled:hover> i {
	transform: rotate(-90deg);
}
.page-404 {
	color: var(--primary-dark)
}
/* -------------------------------------------
NOTES:

@media (max-width: 400px) {}
@media (max-width: 767px) {}

------------------------------------------- */
/* ---------------------------------------- */
/* ---------------  NAV BAR   ------------- */
/* ---------------------------------------- */
header {
	background-color: var(--primary);
	color: #fff;
	width: 100%;
	text-transform: uppercase;
	font-family: var(--secondary-font);
	font-size: min(1.4vw, 16px);
	border-bottom: 3px solid #fff;

	position:fixed;
	top: 0;
	z-index: 100;
	box-shadow: 0px 1px 10px 0px rgba(0,0,0,0.2);
}
.header-fixed-space {
	height: 100px
}
header .custom-logo {
	max-width: 200px;
	height: auto;
}
header > .grid-container {
	display: flex;
	justify-content: space-between;
	align-items:flex-end;
	margin: auto;
}
header > .grid-container > .hide-on-mobile {
	margin-bottom: 20px;
}
header > .grid-container > .hide-on-mobile > .nav {}
header > .grid-container > .hide-on-mobile > .nav > ul.menu {
	display: flex;
}
header > .grid-container > .hide-on-mobile > .nav > ul.menu > li.menu-item {
	margin-left: 40px;
}
header > .grid-container > .hide-on-mobile > .nav > ul.menu > li.menu-item > a{
	white-space: nowrap;
}
header > .grid-container > .hide-on-desktop{
	position: relative;
}
header > .grid-container > .hide-on-desktop > .menu-button  { 
	margin: 35px 20px;
}
header > .grid-container > .hide-on-desktop > .menu-button > div { 
	
}
header > .grid-container > .hide-on-desktop > .menu-button > div > i.fa-bars {
	font-size: 30px;
	font-weight: 100;
	cursor: pointer;
}
header > .grid-container > .hide-on-desktop > .nav {}
header > .grid-container > .hide-on-desktop > .nav > ul.menu {}
header > .grid-container > .hide-on-desktop > .nav > ul.menu > li.menu-item {}
@media (min-width: 767px) {
	/*vv~hover animation~vv*/
	header .nav li a:hover {
		color: var(--secondary);
	}
	header .nav li  {
		padding: 3px 0;
		position: relative;
	}
	header .nav li.menu-item-79  {
		display: none;
	}
	header .nav li a::after {
		background-color: var(--secondary);
		content: "";
		width: 0;
		height: 3px;
		left: 0;
		bottom: -10px;
		transition: width 0.35s ease 0s;
		position: absolute;
		overflow: hidden;
	}
	header .nav li a:hover::after {
		width: 100%;
	}
	header a[aria-current="page"]{
		color: var(--secondary);
	}
	header a[aria-current="page"]::after {
		width: 100% !important;
	}
	/*^^^^*/
}
/* ---------------------------------------- */
/* -----    MOBILE NAV TOGGLE MENU    ----- */
/* ---------------------------------------- */
.nav-menu-container {
	position: absolute;
	top: 100px;
	right: -10px;
	padding: 0 10px;
	width: 100vw;
	z-index: 100;
	background-color: var(--primary);
	transition: all 0.2s ease-out;
	border-top: 1px var(--secondary) solid;
	border-bottom: 3px var(--secondary) solid;
	box-shadow: 0 5px 10px 0 rgba(0,0,0,0.3);
	max-height: 700px;
}
.hide-nav-menu-container {
	transition: all 0.2s ease-out;
	max-height: 0;
	overflow: hidden;
	position: absolute;
}
.nav-menu-container .toggle-nav ul {
	display: flex;
	flex-direction: column;
	text-align: center;
	margin: 10px 0;
	gap: 5px;
}
.nav-menu-container .toggle-nav li {
	flex: 1;
	margin: 0 0px;
	width: 100%;
}
.nav-menu-container .toggle-nav ul li a {
	width: 100%;
	display: inline-block;
	font-weight: normal;
	padding: 10px 0;
	color: white;
	font-size: 25px;
}
.nav-menu-container .toggle-nav ul li.menu-item-79 a{
	background-color: var(--bg-color);
	border: 1px solid black;
	color: black;
	font-size: 25px;
}
.nav-menu-container .toggle-nav a[aria-current="page"]{
	background-color: var(--secondary);
	color: var(--bg-color);
}
/* ---------------------------------------- */
/* ---------------    HERO     ------------ */
/* ---------------------------------------- */
.hero-homepage {
	text-align: center;
	color: white;
}
.hero-desktop-img {
	max-height: 550px;
	width: 100%;
	max-width: 1600px;
	object-fit: cover;
}
.hero-homepage h1 {
	background-color: var(--primary);
	border: 8px solid white;
	width: 100%;
	transform: translateY(-50px);
	padding: 40px 0px;
}
.hero-homepage .button {
	border: 8px solid white;
	transform: translateY(-80px);
}
@media (max-width: 767px) {
	.hero-homepage {
		margin-bottom: -40px;
	}
	.hero-homepage h1 {
		background-color: var(--primary);
		border: none;
		width: 100%;
		margin-left: 0px;
		transform: translateY(-30px);
		padding: 20px 10px 50px 10px;
		font-size: 35px;
		line-height: 45px;
	}
	.hero-homepage .button {
		border: 8px solid #fff;
		transform: translateY(-68px);
		padding-left: 20px;
		padding-right: 20px;
		font-size: 14px;
	}
}
/* ---------------------------------------- */
/* ---------------    SEC1     ------------ */
/* ---------------------------------------- */
.sec1 > div {
	display: flex;
	margin-bottom: 50px;
}
.sec1 .left {
	width: 50%;
	margin: auto;
}
.sec1 .left img {
	width: 100%;
	height: auto;
}
.sec1 .right {
	width: 50%;
	margin: 30px;
	margin-left: 60px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
.sec1 .right h2 {
	color: var(--primary);
	margin-bottom: 20px;
}
.sec1 .right .button {
	margin-top: 80px;
}
@media (max-width: 767px) {
	.sec1 > div {
		flex-direction: column-reverse;
		margin-bottom: 0;
	}
	.sec1 .left {
		width: 100%;
	}
	.sec1 .left img {
		width: 100%;
		margin-bottom: -70px;
	}
	.sec1 .right {
		width: 100%;
		margin: 20px 0;
		margin-left: 0px;
		padding: 0 10px;
	}
	.sec1 .right h2 {
		font-size: 30px;
	}
	.sec1 .right p {
		margin-bottom: 10px;
	}
	.sec1 .right .button {
		margin-top: 40px;
	}
}
/* ---------------------------------------- */
/* ---------------    SEC2     ------------ */
/* ---------------------------------------- */
.sec2 {
	display: flex;
	flex-direction: column;
}
.sec2 img {
	width: 100%;
	height:clamp(400px, 50vw, 700px);
	object-fit: cover;
}
.sec2 p.caption {
	background-color: var(--primary);
	color: white;
	text-align: center;
	margin: auto;
	width: fit-content;
	padding: 30px 100px;
	border: 8px solid white;
	transform: translateY(-50px);
}
@media (max-width: 767px) {
	.sec2 {
		flex-direction: column-reverse;
	}
	.sec2 p.caption {
		width: 100%;
		border: none;
		transform: translateY(50px);
		padding: 30px 10px;
	}
}
/* ---------------------------------------- */
/* ---------    SEC3 - GALLERY     -------- */
/* ---------------------------------------- */
.sec3 h2 {
	color: var(--primary);
	text-align: center;
	margin: 50px 0;
}
.sec3 .gallery {
	display: flex;
    flex-wrap: wrap;
	justify-content: flex-start;
}
.sec3 .gallery dt, .sec3 .gallery dl {
	width: 100%;
	max-width: 100%;
}
.sec3 .gallery dl {
	max-height: 100%;
	height: 100% !important;
	width: 25%;
	object-fit: cover;
	vertical-align: bottom;
	padding: 10px;
	position: relative;
	transition: 0.1s all linear;
}
.sec3 .gallery dl:hover {
	box-shadow: inset 0px 0px 10px 10px var(--secondary);
}
.sec3 .gallery img {
	width: 100%;
	height: clamp(200px, 14vw, 300px);
	object-fit: cover;
	border: none !important;
}
.sec3 .gallery br {
	display: none;
}
.sec3 .gallery dl:nth-child(n+10) {
	height: 100px !important;
	object-fit: contain;
	position: relative;
	overflow: hidden;
	box-shadow: none;
}
.sec3 .gallery dl:nth-child(n+10)::before {
	content: "";
	height: 110%;
    position: absolute;
	left: 0;
	top: 0;
    width: 100%;
	background: linear-gradient(0deg, rgba(255,255,255,1) 30%, rgba(255,255,255,0) 100%);
}
.sec3 .gallery dl:nth-child(n+10) img{
	width: 100%;
}
.sec3 .gallery dl:nth-child(n+15) {
	display: none;
}
.sec3 .gallery.show-images dl:nth-child(n+10) {
	display: inline-block;
	opacity: 1;
	height: auto !important;
}
.sec3 .gallery.show-images dl:nth-child(n+10):hover {
	box-shadow: inset 0px 0px 10px 10px var(--secondary);
}
.sec3 .gallery.show-images dl:nth-child(n+10)::before {
	background: none;
	display: none;
}
@media (min-width: 767px) {
	.sec3 #home-gallery-btn {
		display: flex;
		margin: 40px auto 70px auto;
	}
}
@media (max-width: 767px) {
	.sec3 .gallery dl {
		width: 50% !important;
		height: 35vw;
	}
	.sec3 .gallery img {
		height: clamp(140px, 14vw, 200px);
	}
	.sec3 .gallery dl:nth-child(n+13) {
		display: none;
	}
	.sec3 #home-gallery-btn {
		max-width: 100% !important;
		display: block;
	}
}

/* ---------------------------------------- */
/* ---------------    SEC4     ------------ */
/* ---------------------------------------- */
.sec4 {
	background-color: var(--tirtiary-dark);
	text-align: center;
	padding: clamp(50px, 6vw, 120px) 0;
}
.sec4 h2 {
	color: var(--primary);
	margin-bottom: 20px;
}
.sec4 p {
	margin-bottom: 30px;
}
/* ---------------------------------------- */
/* ---------------  FOOTER   -------------- */
/* ---------------------------------------- */
footer {
	background-color: var(--primary);
	color: #fff;
	border-top: 8px solid var(--secondary);
	padding-bottom: 30px;
	padding-top: 30px;
}
footer p:not(.phone) {
	text-align: center;
	font-size: 14px !important;
	font-weight: 200;
	line-height: 20px;
}
footer p:not(.phone) a {
	font-weight: 400;
}
footer > .grid-container {
	display: flex;
	flex-direction: column;
}
footer .top-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--secondary-font);
	text-transform: uppercase;
	width: 80%;
	margin: auto;
}
footer .top-footer > *:not(:nth-child(2)) {
	flex:1;
	white-space: nowrap;
}

footer .footer-logo {
	width: 200px;
}
footer .top-footer i {
	margin-right: 10px;
}
footer .top-footer .footer_social{
	font-size: 30px;
	margin-top: 10px;
	text-align: center;
}
footer .top-footer .footer_social i{
	margin: 0 10px;
}
footer > .grid-container .top-footer hr {
	border-color: #00000000;
}
footer .footer-menu {
	display: flex;
	justify-content: end;
}
@media (max-width: 1000px) {
	footer .footer-menu {
		text-align: end;
	}
}
footer .footer-menu li{
	margin-bottom: 10px;
}
footer .bottom-footer {
	display: flex;
	justify-content: center;
}
footer .bottom-footer > p {
	padding-top: 25px;
}
footer .bottom-footer > img {
	width: 40px;
	margin-left: -40px;
	margin-right: 40px;
}
footer .bottom-footer > .empty {
	width: 40px;
}
@media (max-width: 767px) {
	footer > .grid-container .top-footer {
		flex-direction: column;
		position: relative;
	}
	footer > .grid-container .top-footer > *:not(:first-child) {
		margin-bottom: 30px;
		text-align: center;
	}
	footer .top-footer .footer_social i{
		margin: 10px 10px;
	}
	footer > .grid-container .top-footer hr {
		border-color: var(--secondary);
	}
	footer .bottom-footer {
		flex-direction: column;
		align-items: center;
	}
	footer .bottom-footer > img {
		width: 40px;
		margin: 0;
		margin-top: 20px;
	}
}
/* ---------------------------------------- */
/* ------------   TEMPLATE 1   ------------ */
/* ---------------------------------------- */
.template-1.grid-container {
	color: var(--primary-dark);
	padding: 50px 10px;
	max-width: clamp(500px, 70vw, 1000px) !important;
	word-wrap: break-word;
}
.template-1 .page-title {
	text-align: center;
}
.template-1 hr {
	border-width: 2px;
	border-style: solid;
	border-color: var(--primary);
	margin-bottom: 30px;
}
.template-1 ul li {
	list-style:disc;
	margin-left: 50px;
	font-size: 15px;
}
.template-1, .template-1 :is(p,h1,h2,h3,h4,h5,ul,li) {
	font-family: var(--primary-font);
	margin-bottom: 20px;
}
.template-1 :is(h2,h3) { 
	font-size: 33px;
}
.template-1 strong {
	font-weight: bold;
}
img.template-1-hero-img {
	object-position: 50% 50%;
	object-fit: cover;
	padding-right: 40px;
	padding-bottom: 40px;
	min-width: 400px;
	max-height: 400px;
}
@media (max-width: 767px) { 
	.template-1.grid-container {
		max-width: 100vw !important;
	}
	img.template-1-hero-img { 
		width: 100%; 
		padding: 0; 
		min-width: 200px;	
		max-height: 300px;
		object-position: 20% 20%;
	}
}
.template-1 iframe {
	width: 100%;
}
/* ---------------------------------------- */
/* -----   COMMUNITIES LISTING PAGE   ----- */
/* ---------------------------------------- */
.community_title {
	margin-top: 50px;
	color: var(--primary);
}
.community_title h1 {
	font-size: clamp(32px, 5vw,52px);
}
.community_title p {
	text-transform: uppercase;
	font-size: clamp(12px, 2.5vw,16px);
}
#rvadv_communities_map_canvas_page {
	height: clamp(400px, 40vw, 500px);
	color: #fff;
	margin: 20px 0 50px 0;
}
.comm_map_label {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: var(--primary);
	cursor: pointer;
}
.custominfobox {
	background-color: var(--primary);
	border: 1px solid var(--primary);
	width: 330px;
	max-width: 330px;
}
.custominfobox h2 {font-size: 25px;}
.custominfobox h3 {font-size: 20px;}
.mapinfowindowimg {
	height: 180px;
	background-position: 0% 40%;
	background-size: cover;
}
.mapinfowindowcontent {
	padding: 10px;
}
.mapinfowindowcontent a.primary_bttn {
	text-decoration: underline;
}
@media (max-width: 767px) {
	.custominfobox {
		width: 200px;
		max-width: 200px;
	}
	.custominfobox h2 {font-size: 20px;}
	.custominfobox h3 {font-size: 16px;}
}
.communities_list {
	display: flex;
	flex-direction: column;
}
.single_community {
	display: flex;
	border: 1px solid var(--secondary);
	margin: 20px 0;
	color: var(--primary);
}
.single_community .primary_list_single_image{
	width: 500px;
	height: 250px;
	background-size: cover;
	background-position: 50% 50%;
}
.primary_list_single_content {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}
.single_community.sold_out {
	order: 1;
}
.single_community.sold_out .primary_list_single_content {
	opacity: 0.8;
}
.single_community strong {
	font-weight: bold;
}
.primary_list_single_content_right .button {
	padding: 14px 4vw;
}
.primary_list_single_content_left h3 {
	margin-top: 8px;
}
@media (max-width: 1000px) {
	.primary_list_single_content {
		flex-direction: column;
		padding-bottom: 10px;
	}
	.primary_list_single_content_right,
	.primary_list_single_content_left,
	.primary_list_single_content_right .button  {
		width: 100%;
		max-width: 100%;
	}
	.primary_list_single_content_right .button  {
		margin-top: 10px;
	}
}
@media (max-width: 767px) {
	.single_community {
		flex-direction: column;
	}
	.single_community .primary_list_single_image{
		width: 100%;
		height: 200px;
		background-position: 50% 50%;
		background-size: cover;
	}
	.primary_list_single_content_left h2 {
		font-size: 24px;
	}
	.primary_list_single_content_left h3 {
		font-size: 20px;
		margin-top: 8px;
	}
}

/* ---------------------------------------- */
/* -------  SINGLE COMMUNITY PAGE   ------- */
/* ---------------------------------------- */
.single_community_page .hero {
	text-align: center;
	color: white;
} 
.single_community_page h1.title {
	background-color: var(--primary);
	border: 8px solid white;
	width: 100%;
	transform: translateY(-50px);
	padding: 30px 0 50px 0px;
	font-size: clamp(38px, 5vw, 68px);
	max-width: 1400px;
	margin: auto;
}
.single_community_page p.subtitle {
	text-transform: uppercase;
	background-color: var(--secondary);
	border: 8px solid white;
	transform: translateY(-80px);
	width: fit-content;
	padding: 10px 80px;
	margin: auto;
}
.single_community_page p.subtitle br {
	display: none;
}
.page_section_title {
	text-align: center;
	padding: 60px 0;
}
@media (max-width: 1400px) {
	.single_community_page h1.title {
		border-left: none;
		border-right: none;
	}
}
@media (max-width: 767px) {
	.single_community_page p.subtitle {
    	padding: 14px 10px;
    	max-width: 100%;
    	width: 100%;
	}
	.single_community_page p.subtitle br {
		display: block;
	}
}
.single_community_page_content {
	max-width: 1000px;
	margin: -50px auto 50px auto;
	padding: 10px;
	color: var(--primary-dark);
}
.single_community_page_content :is(h1, h2, h3, h4, h5, p) {
	margin-bottom: 20px;
}
.single_community_page_content a {
	text-decoration: underline;
}

/* --- mid page nav bar --- */
.single_community_page_nav {
	background-color: var(--secondary);
	color: #fff;
	padding: 14px;
	text-transform: uppercase;
	white-space: nowrap;
	position: sticky;
	top: 103px;
	z-index: 100;
	font-family: var(--secondary-font);
	font-size: min(1.4vw, 16px);
}
.single_community_page_nav > div {
	display: flex;
	justify-content: space-between;
}
.single_community_page_nav .title{
	color: var(--primary);
}
.single_community_page_nav_links {
	display: flex;
}
.single_community_page_nav_links a{
	margin-left: 30px;
	padding-top: 2px;
	font-size: min(1.1vw, 16px);
}
.single_community_page_nav_links a:hover{
	color: var(--primary);
}
.single_community_page_nav_links label, input {
	display: none;
}
@media (max-width: 767px) {
	.single_community_page :is(#homes, #plans, #photos, #siteplan),
	 .single_community_page + .contact > #contact{
		margin-top: -230px !important;

	}
	.single_community_page_nav_links label:before {
		box-sizing:content-box;
		height:2px;
		width:25px;
		background:white;
		display:inline-block;
		content:"";
		box-shadow:0px 0px 0px 0px  white,
				   0px 0px 0px 0px white;
		margin-right:10px;
		position:relative;
		opacity:0.7;
		transform: translateY(-8px);
		transition: all 0.2s linear;
	  }
	  .single_community_page_nav_links label{
		display:block;
		padding:10px;
		color:white;  
		cursor:pointer;
		position: absolute;
		right: 0;
		top: 8px;
	  }
	  .single_community_page_nav_links input[type="checkbox"]{
		visibility:hidden;
		position:absolute;
	  }
	  .single_community_page_nav_links #collapse:checked ~ a{
		max-height: 500px;
		transition: all 0.2s ease-out;
		opacity: 1;
		padding: 5px 0;
	  }
	  .single_community_page_nav_links #collapse:not(:checked) ~ a{
		max-height: 0px;
		overflow: hidden;
		opacity: 0;
		transition: all 0.2s ease-out;
		margin-top:0; 
	  }
	  .single_community_page_nav_links #collapse:not(:checked) + label:before{
		position:relative;
		opacity:1;
		box-shadow:0px -8px 0px 0px  white,
		0px -16px 0px 0px white;
		transform: translateY(0px);
	  }
	.single_community_page_nav {
		z-index: 1;
	}
	.single_community_page_nav > div{
		flex-direction: column;
		text-align: center;
		font-size: 14px;
	}
	.single_community_page_nav_links {
		flex-direction: column;
	}
	.single_community_page_nav_links a {
		margin-left: 0;
		margin-top: 14px;
		padding-top: 0px;
		font-size: 14px;
	}
}
/* ---------------------------------------- */
/* -------  SINGLE COMMUNITY PAGE   ------- */
/* --------------   HOMES   --------------- */
/* ---------------------------------------- */
.single_community_page.homesites {
	color: var(--primary-dark);
}
.single_community_page.homesites .page_section_title {
	text-align: center;
	padding: 30px 0;
}
.homesites_container {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
	padding-bottom: 50px;
}
.homesites_single {
	max-height: 100%;
	width: CALC(24.9% - 40px);
	margin-bottom: 40px;
	margin-left: 20px;
	margin-right: 20px;
    object-fit: cover;
    vertical-align: bottom;
	background-color: #fff;
	border: 1px solid var(--secondary);
	display: flex;
	flex-direction: column;
}
.homesites_single_img img {
	height: 170px;
	width: 100%;
	object-fit: cover;
}
.homesites_single_content {
	padding: 10px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.homesites_single_content_title {
	display: flex;
	justify-content: space-between;
}
.homesites_single_content h4 {
	text-align: center;
	font-size: 18px;
	margin-top: 10px;
}
.homesites_single_button {
    padding: 14px 0px;
	width: 100%;
	max-width: 100%;
}
.homesites_single_content .details {
	display: flex;
	justify-content: space-around;
	font-family: var(--secondary-font);
	margin: 20px 0;
}
.homesites_single_content .details p {
	font-size: clamp(14px, 3vw, 16px);
}
.homesites_single_content .details > div {
	text-align: center;
	width: 25%;
}
.homesites_single_content .details :is(.bed, .bath, .sqft, .grg) {
	margin: auto;
}
.homesites_single_content .details span {
	border-right: 1px solid #707070;
}
@media (max-width: 1000px) {
	.homesites_single {
		width: 42%;
	}
	.homesites_single_content h3 {
		font-size: 30px;
	}
}
@media (max-width: 600px) {
	.homesites_single {
		width: 98%;
	}
}
/* ---------------------------------------- */
/* -------  SINGLE COMMUNITY PAGE   ------- */
/* ------------   FLOORPLANS   ------------ */
/* ---------------------------------------- */
.single_community_page.floorplans {
	background-color: var(--tirtiary-light);
	color: var(--primary-dark);
}
.single_community_page.floorplans .page_section_title {
	text-align: center;
	padding: 30px 0;
	
}
.floor_plan_container {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
	padding-bottom: 50px;
}
.floor_plan_single {
	max-height: 100%;
    width: CALC(24.9% - 40px);
	margin-bottom: 40px;
	margin-left: 20px;
	margin-right: 20px;
    object-fit: cover;
    vertical-align: bottom;
	background-color: #fff;
	border: 1px solid var(--secondary);
	display: flex;
	flex-direction: column;
}
.floor_plan_single_img img {
	height: 170px;
	width: 100%;
	object-fit: cover;
}
.floor_plan_single_content {
	padding: 10px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.floor_plan_single_content h3 {
	text-align: center;
	margin-top: 10px;
}
.floor_plan_single_button {
    padding: 14px 0px;
	width: 100%;
	max-width: 100%;
}
.floor_plan_single_content .details {
	display: flex;
	justify-content: space-around;
	font-family: var(--secondary-font);
	margin: 30px 0 20px 0;
}
.floor_plan_single_content .details p {
	font-size: clamp(14px, 3vw, 16px);
}
.floor_plan_single_content .details > div {
	text-align: center;
	width: 25%;
}
.floor_plan_single_content .details :is(.bed, .bath, .sqft, .grg) {
	margin: auto;
}
.floor_plan_single_content .details span {
	border-right: 1px solid #707070;
}
@media (max-width: 1000px) {
	.floor_plan_single {
		width: 48%;
	}
	.floor_plan_single_content h3 {
		font-size: 30px;
	}
}
@media (max-width: 600px) {
	.floor_plan_single {
		width: 98%;
	}
}
/* ---------------------------------------- */
/* -------  SINGLE COMMUNITY PAGE   ------- */
/* --------------   PHOTOS   -------------- */
/* ---------------------------------------- */
.single_community_page.photos {
	color: var(--primary-dark);
	padding: 0 20px;
}
.single_community_page.photos .page_section_title {
	text-align: center;
	padding: 30px 0;
}
.single_community_page.photos .gallery {
	display: flex;
    flex-wrap: wrap;
	justify-content: flex-start;
}
.single_community_page.photos .gallery a {
	max-height: 100%;
	height: 100% !important;
	width: 25%;
	object-fit: cover;
	vertical-align: bottom;
	padding: 10px;
	position: relative;
	transition: 0.1s all linear;
}
.single_community_page.photos .gallery a:hover {
	box-shadow: inset 0px 0px 10px 10px var(--secondary);
}
.single_community_page.photos .gallery img {
	width: 100%;
	height: clamp(200px, 14vw, 300px);
	object-fit: cover;
	border: none !important;
}
.single_community_page.photos .gallery a:nth-child(n+9) {
	height: 100px !important;
	object-fit: contain;
	position: relative;
	overflow: hidden;
	box-shadow: none;
	cursor: default;
}
.single_community_page.photos .gallery a:nth-child(n+9)::before {
	content: "";
	height: 100%;
    position: absolute;
	left: 0;
	top: 0;
    width: 100%;
	background: linear-gradient(0deg, rgba(255,255,255,1) 30%, rgba(255,255,255,0) 100%);
}
.single_community_page.photos .gallery a:nth-child(n+9) img{
	width: 100%;
}
.single_community_page.photos .gallery a:nth-child(n+13) {
	display: none;
}
.single_community_page.photos .gallery.show-images a:nth-child(n+13) {
	display: inline-block;
	opacity: 1;
	height: auto !important;
}
.single_community_page.photos .gallery.show-images a:nth-child(n+9):hover {
	box-shadow: inset 0px 0px 10px 10px var(--secondary);
}
.single_community_page.photos .gallery.show-images a:nth-child(n+9)::before {
	background: none;
	display: none;
}
.single_community_page.photos .gallery.show-images  a:nth-child(n+9) {
	height: 100% !important;
	cursor: pointer;
}
.single_community_page.photos .button_container {
	width: 100%;	
}
@media (min-width: 767px) {
	.single_community_page.photos #home-gallery-btn {
		display: flex;
		width: 100vw;
		margin: 40px auto 70px auto;
	}
}
@media (max-width: 767px) {
	.single_community_page.photos .gallery a {
		width: 50% !important;
		height: 35vw;
	}
	.single_community_page.photos .gallery img {
		height: clamp(140px, 14vw, 200px);
	}
	.single_community_page.photos .gallery a:nth-child(n+7) {
		height: 100px !important;
		object-fit: contain;
		position: relative;
		overflow: hidden;
		box-shadow: none;
		cursor: default;
	}
	.single_community_page.photos .gallery a:nth-child(n+7)::before {
		content: "";
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		background: linear-gradient(0deg, rgba(255,255,255,1) 30%, rgba(255,255,255,0) 100%);
	}
	.single_community_page.photos .gallery.show-images a:nth-child(n+7):hover {
		box-shadow: inset 0px 0px 10px 10px var(--secondary);
	}
	.single_community_page.photos .gallery.show-images a:nth-child(n+7)::before {
		background: none;
		display: none;
	}
	.single_community_page.photos .gallery.show-images  a:nth-child(n+7) {
		height: 100% !important;
		cursor: pointer;
	}
	.single_community_page.photos .gallery a:nth-child(n+9) {
		display: none;
	}
	.single_community_page.photos .gallery.gallery.show-images a:nth-child(n+9) {
		display:block;
	}
	.single_community_page.photos #home-gallery-btn {
		max-width: 100% !important;
		display: block;
	}
}
/* ---------------------------------------- */
/* -------  SINGLE COMMUNITY PAGE   ------- */
/* -------------   SITEPLAN   ------------- */
/* ---------------------------------------- */
.single_community_page.siteplan {
	color: var(--primary-dark);
	padding: 0 0 50px 0;
}
.single_community_page.siteplan img {
	display: flex;
	margin: auto;
	height: auto;
}
/* ---------------------------------------- */
/* -------  SINGLE COMMUNITY PAGE   ------- */
/* -------------   AREA INFO   ------------ */
/* ---------------------------------------- */
.single_community_page.area_info {
	color: var(--primary-dark);
	padding-bottom: 50px;
}
.single_community_page.area_info img {
	display: flex;
	margin: 30px auto;
	width: 100%;
	height: auto;
}
/* ---------------------------------------- */
/* -------  SINGLE COMMUNITY PAGE   ------- */
/* ----------   YOUTUBE VIDEOS   ---------- */
/* ---------------------------------------- */
.single_community_page.youtube_videos {
	color: var(--primary-dark);
	background-color: var(--tirtiary-light);
}
.single_community_page.youtube_videos iframe {
	display: flex;
	margin: auto;
	padding-bottom: 50px;
	width: 70%;
	height: auto;
	min-height: 500px;
}
@media (max-width: 767px) {
	.single_community_page.youtube_videos iframe {
		width: 100%;
		min-height: 300px;
	}
}
/* ---------------------------------------- */
/* -------  SINGLE COMMUNITY PAGE   ------- */
/* -----------   VIRTUAL TOURS   ---------- */
/* ---------------------------------------- */
.single_community_page.virtual_tour {
	margin: 50px 0;
	color: var(--primary-dark);
}
.single_community_page.virtual_tour iframe {
    display: flex;
    margin: auto;
    width: 90%;
    height: auto;
    min-height: 500px;
}
@media (max-width: 767px) {
	.single_community_page.virtual_tour iframe {
		width: 100%;
	}
}
/* ---------------------------------------- */
/* -------  SINGLE FLOORPLAN PAGE   ------- */
/* -----------   VIRTUAL TOURS   ---------- */
/* ---------------------------------------- */
.single-floorplan-page .page_section_title {
	color: var(--primary-dark);
}
.floorplan_virtual_tour {
	margin: 50px 0;
	color: var(--primary-dark);
}
.floorplan_virtual_tour iframe {
    display: flex;
    margin: auto;
    width: 90%;
    height: auto;
    min-height: 500px;
}
@media (max-width: 767px) {
	.floorplan_virtual_tour iframe {
		width: 100%;
	}
}
/* ---------------------------------------- */
/* ------------  CONTACT SECTION   -------- */
/* ---------------------------------------- */
.contact {
	background: var(--tirtiary-light);
	padding: 0px 0 50px 0;
	color: var(--primary-dark);  
	word-wrap: break-word;
}
.contact > div {
	display: flex;
	justify-content: space-between;
}
.contact.vert > div {
	flex-direction: column;
	width: min(50vw, 700px);
}
@media (max-width: 767px) { .contact.vert > div { width: 100%; }}
.contact h3 {
	margin-bottom: 14px;
	margin-top: 20px;
}
.contact p {
	margin-bottom: 0px;
}
.contact strong {
	font-weight: bold;
}
.contact .left {
	width: 50%;
}
.contact .right {
	width: 30%;
	margin: auto 0;
}
.contact .grid-100 {
	padding: 0;
}
.contact :is(input, textarea) {
	width: 100%;
	display: inline-block;
	border: none;
	padding: 10px;
	margin: 5px 0;
	font-family: var(--secondary-font);
}
.contact textarea {
	height: 100px;
	resize: vertical;
}

.contact_dropdown select {
	border-radius: 0%;
    width: 100%;
    display: inline-block;
    border: none;
    padding: 10px;
    margin: 5px 0;
    font-family: var(--secondary-font);
	cursor: pointer;
	background-color: #ffffff;
}
.contact_dropdown select {
    color: #707070;
	font-size: 13px;
}
.contact_dropdown select option:first-child {
	display: none;
}
.contact_dropdown select option {
	color: black;
}
.contact_dropdown select.selected {
	color: black !important;
}

.contact .contact_radio {
	display: flex;
	align-items: center;
}
.contact .contact_radio .question {
	margin: 15px 0;
}
.contact .contact_radio .radio_boxes {
	flex:1;
	display: flex;
	justify-content: flex-end;
	padding-right: clamp(10px, 5vw, 100px);
}
.contact .contact_radio .radio_boxes input {
	width: unset;
	display: flex;
}
.contact .contact_radio .radio_boxes .wpcf7-radio {
	display: flex;
	justify-content: center;
}
.contact .contact_radio .radio_boxes .wpcf7-radio .wpcf7-list-item {
	display: flex;
	align-items: center;
}
.contact .contact_radio .radio_boxes .wpcf7-radio .wpcf7-list-item span {
	margin-left: 1vw;
	margin-right: 2vw;
}
.contact .wpcf7-submit {
	color: #fff;
	text-transform: uppercase;
	background-color: var(--primary);
	padding: 10px;
}
.contact form input:not([type="radio"]), .contact textarea {
    -webkit-appearance: none;
    border-radius: 0;
    box-sizing: border-box;
}
.contact .wpcf7-submit:hover {
	cursor: pointer;
	background-color: #192520;
}
@media (max-width: 767px) {
	.contact > div {
		flex-direction: column;
	}
	.contact .left {
		width: 100%;
	}
	.contact .right {
		width: 100%;
	}
	.contact :is(input, textarea, select, .question) {
		font-size: 16px;
	}
}
@media (max-width: 450px) {
	.contact .contact_radio {
		flex-direction: column;
	}
}
/* validation */
.contact .wpcf7-not-valid-tip {
/* 	background-color: var(--bg-color);
	border: 1px solid red; */
	padding: 5px;
	margin-bottom: 10px;
	white-space: nowrap;
}
.contact .wpcf7-text+.wpcf7-not-valid-tip {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	margin-top: -5px;
}
.contact .wpcf7-radio+.wpcf7-not-valid-tip {
	border-radius: 4px;
}
/* ---------------------------------------- */
/* -------  SINGLE FLOORPLAN PAGE   ------- */
/* ---------------------------------------- */
.single-floorplan-page.grid-container {
	text-align: center;
	padding-bottom: 100px;
}
.single-floorplan-page.grid-container img.single-fp-hero {
	max-height: 600px;
    width: 100%;
    object-fit: cover;
    object-position: 50% 35%;
}
.single-floorplan-page.grid-container .page-title {
	background-color: var(--primary);
	color: #fff;
	border: 8px solid white;
	width: fit-content;
	transform: translateY(-50px);
	padding: 40px 200px 60px 200px;
	text-align: center;
	margin: auto;
}
.single-floorplan-page.grid-container .page-details {
	background-color: var(--secondary);
	width: fit-content;
	margin: auto;
	display: flex;
	color: #fff;
	border: 8px solid white;
	transform: translateY(-80px);
	justify-content: space-around;
	font-family: var(--secondary-font);
	padding: 10px 20px;
}
.single-floorplan-page.grid-container .the_content {
	padding-bottom: 70px;
	display: flex;
	justify-content: center;
}
.single-floorplan-page.grid-container .the_content img {
	height: auto;
}
.single-floorplan-page.grid-container .page-details > div {
	padding: 10px 14px;
}
.single-floorplan-page.grid-container .page-details span {
	border-right: 1px solid #fff;
}
.single-floorplan-page.grid-container .page-details i {
	font-size: 16px;
}
.single-floorplan-page.grid-container .page-details a:hover {
	color: var(--primary-dark);
}
.single-floorplan-page.grid-container .community_link {
	color: var(--primary-dark);
}
.single-floorplan-page.grid-container .community_link h3{
	padding-bottom: 10px;
}
@media (max-width: 767px) {
	.single-floorplan-page.grid-container {
		padding: 0;
		padding-bottom: 40px;
	}
	.single-floorplan-page.grid-container .page-title {
		border-left: 0;
		border-right: 0;
		width: 100%;
		padding: 20px 0px 40px 0px;
	}
	.single-floorplan-page.grid-container .page-details {
		background-color: var(--secondary);
		width: 100%;
		font-size: 14px;
		padding: 10px 0px;
		border-left: 0;
		border-right: 0;
	}
	.single-floorplan-page.grid-container .page-details p {
		font-size: 10px;
	}
	.single-floorplan-page.grid-container .page-details > div {
		padding: 7px 0 0 0;
	}
}
/* ---------------------------------------- */
/* -------  SINGLE HOMESITE PAGE   -------- */
/* ---------------------------------------- */
.single-homesite-page.grid-container {
	text-align: center;
	padding-bottom: 100px;
}
.single-homesite-page h2 {
	text-align: center;
	color: var(--primary-dark);
	margin: 30px 0;
}
.single-homesite-page-img {
	max-height: 550px;
    width: 100%;
    object-fit: cover;
	object-position: 100% 65%;
	display: flex;
	margin: auto;
}
@media (min-width: 1600px) {
	.single-homesite-page-img { 
		max-height: 700px;
	}
}
.single-homesite-page.grid-container .page-title {
	background-color: var(--primary);
	color: #fff;
	border: 8px solid white;
	width: fit-content;
	transform: translateY(-50px);
	padding: 40px 200px 60px 200px;
	text-align: center;
	margin: auto;
}
.single-homesite-page.grid-container .page-details {
	background-color: var(--secondary);
	width: fit-content;
	margin: auto;
	display: flex;
	color: #fff;
	border: 8px solid white;
	transform: translateY(-80px);
	justify-content: space-around;
	font-family: var(--secondary-font);
	padding: 10px 20px;
}
.single-homesite-page.grid-container .page-details > div {
	padding: 10px 14px;
}
.single-homesite-page.grid-container .page-details span {
	border-right: 1px solid #fff;
}
.single-homesite-page.grid-container .page-details i {
	font-size: 16px;
}
.single-homesite-page.grid-container .page-details a:hover {
	color: var(--primary-dark);
}
.single-homesite-page.grid-container .community_link {
	color: var(--primary-dark);
}
.single-homesite-page.grid-container .community_link h3{
	padding-bottom: 10px;
}
.single-homesite-description  {
	display: flex;
}
.single-homesite-description .left {
	width: 70%;
	text-align: left;
	padding-right: 40px;
}
.single-homesite-description .right {
	width: 30%;
}
.single-homesite-description .right .floorplan-wrap {
	border: 1px solid var(--secondary);
}
.single-homesite-description .right .floorplan-wrap h4 {
	margin-top: 10px;
	color: var(--primary-dark)
}
.single-homesite-description .right .floorplan-wrap .button {
	padding: 14px 0;
	width: 92%;
	max-width: 100%;
	margin: 10px 0;
}
@media (max-width: 767px) {
	.single-homesite-page.grid-container {
		padding: 0;
		padding-bottom: 40px;
	}
	.single-homesite-page.grid-container .page-title {
		border-left: 0;
		border-right: 0;
		width: 100%;
		padding: 20px 0px 40px 0px;
	}
	.single-homesite-page.grid-container .page-details {
		background-color: var(--secondary);
		width: 100%;
		font-size: 14px;
		padding: 10px 0px;
		border-left: 0;
		border-right: 0;
		flex-wrap: wrap;
	}
	.single-homesite-page.grid-container .page-details p {
		font-size: 10px;
	}
	.single-homesite-page.grid-container .page-details > div {
		padding: 7px 7px 0 7px;
	}
	.single-homesite-page.grid-container .page-details > *:not(.address, span) {
		flex:1;
	}
	.single-homesite-page.grid-container .page-details > .address {
		width: 100%;
		padding-bottom: 10px;
	}
	.single-homesite-page.grid-container .page-details > span:nth-child(-n+3) {
		display: none;
	}
	.single-homesite-description  {
		flex-direction: column;
	}
	.single-homesite-description .left {
		width: 100%;
		margin-top: -50px;
		margin-bottom: 20px;
		padding: 0 10px;
	}
	.single-homesite-description .right {
		width: 80%;
		margin: auto;
		max-width: 400px;
	}
}
/* gallery section */
.single-homesite-gallery {
	display: flex;
    flex-wrap: wrap;
	justify-content: flex-start;
}
.single-homesite-gallery > div {
	width: 100%;
	max-width: 100%;
}
.single-homesite-gallery > div {
	max-height: 100%;
	height: 100% !important;
	width: 25%;
	object-fit: cover;
	vertical-align: bottom;
	padding: 10px;
	position: relative;
	transition: 0.1s all linear;
}
.single-homesite-gallery > div:hover {
	box-shadow: inset 0px 0px 10px 10px var(--secondary);
}
.single-homesite-gallery img {
	width: 100%;
	height: clamp(200px, 14vw, 300px);
	object-fit: cover;
	border: none !important;
}
.single-homesite-gallery br {
	display: none;
}
.single-homesite-gallery > div:nth-child(n+9) {
	height: 100px !important;
	object-fit: contain;
	position: relative;
	overflow: hidden;
	box-shadow: none;
}
.single-homesite-gallery > div:nth-child(n+9)::before {
	content: "";
	height: 110%;
    position: absolute;
	left: 0;
	top: 0;
    width: 100%;
	background: linear-gradient(0deg, rgba(255,255,255,1) 30%, rgba(255,255,255,0) 100%);
}
.single-homesite-gallery > div:nth-child(n+9) img{
	width: 100%;
}
.single-homesite-gallery > div:nth-child(n+13) {
	display: none;
}
.single-homesite-gallery.show-images > div:nth-child(n+9) {
	display: inline-block;
	opacity: 1;
	height: auto !important;
}
.single-homesite-gallery.show-images > div:nth-child(n+9):hover {
	box-shadow: inset 0px 0px 10px 10px var(--secondary);
}
.single-homesite-gallery.show-images > div:nth-child(n+9)::before {
	background: none;
	display: none;
}
#home-gallery-btn {
	padding: 20px 80px;
}
@media (min-width: 767px) {
	.sec3 #home-gallery-btn {
		display: flex;
		margin: 40px auto 70px auto;
	}
}
@media (max-width: 767px) {
	.single-homesite-gallery > div {
		width: 50% !important;
		height: 35vw;
	}
	.single-homesite-gallery img {
		height: clamp(140px, 14vw, 200px);
	}
	.single-homesite-gallery > div:nth-child(n+11) {
		display: none;
	}
	.sec3 #home-gallery-btn {
		max-width: 100% !important;
		display: block;
	}
}
/* ---------------------------------------- */
/* ----------  BLOG/NEWS SECTION   -------- */
/* ---------------------------------------- */
.blog_single {
	display:flex; 
	margin-bottom: 20px; 
	background: var(--tirtiary-dark); 
	padding: 10px; 
	color: var(--primary-dark);
}
.blog_img img {
	max-width: 330px;
	width: 330px;
	margin-right: 20px;
}
.blog_content {}
.blog_content h2 {
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.blog_single {
		flex-direction: column;
	}
	.blog_img img {
		width: 100%;
		max-width: 100%;
	}
}
.single-post .blog_title {
	text-align: center; margin: 20px 0; font-weight: 500; color: var(--primary-dark);
}
.single-post .dateline {
	
} 