/*
Theme Name:         PNW Communities
Description:        Theme for Pacific Northwest Communities
Version:            1.2.0
Requires at least:  5.2
Tested up to:       6.5
Requires PHP:       7.4
Author:             Rumspeed
Author URI:         https://rumspeed.com
License:            GNU General Public License v2 or later
License URI:        http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:        pnw-communities
*/

@font-face {
    font-family: 'Born Ready Slanted';
    src: url('fonts/BornReadySlanted.ttf')  format('truetype');
    font-weight: normal;
    font-style: normal
}

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

:root {
	--pnw-blue: hsl(186deg 16% 33% / 100%); 
	--pnw-blue-opac: hsl(186deg 16% 33% / 60%);
	--pnw-red: hsl(305deg 5% 43% / 100%);
	--pnw-orange: hsl(23deg 80% 64% / 100%);
	--pnw-tan: hsl(32deg 65% 60% / 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, 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;
}

* {
    -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-family: 'Red Hat Display', sans-serif;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;

}

.p-scroll{
	position: relative;
}

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

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;
}

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

a {
    color: #e58557;
	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{
	margin-bottom: 20px;
}

strong{
	font-weight: 700;
}

#hero h1 {
    font-weight: 500;
}

.hero_subtitle {
    font-size: 2em;
}

h1,h2,h3,h4{
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 700;
}

h1{
	font-size: 2.3em;
	line-height: 1.1;
	margin-bottom: 20px;
}

h1{
	font-weight: 700;
}

h2{

}

@media (min-width: 768px){
	h1{
		font-size: 4em;
		line-height: 1;
    	margin: 0;
	}
	
	h2{
		font-size: 2em;
	}
}

.title {
    margin-bottom: 30px;
    color: var(--pnw-blue);
}

.fancy-title{
	font-size: 3em;
}

.fancy-text{
	font-family: 'Born Ready Slanted';
}

@media (min-width: 868px){
	h1.fancy-title,
	h2.fancy-title{
		font-size: 6em;
	}
}

h3{
	font-size: 1.25em;
	margin-bottom: 10px;
}

address {
    margin: 50px 0 0;
}

.content-block li {
    margin: 20px 0;
    list-style: disc;
    margin-left: 40px;
}

.bkg-red{
	background-color: var(--pnw-red);
	color: #fff;
}

.bkg-green{
	background-color: #9fbf9e;
	color: #fff;
}

.bkg-blue{
	background-color: var(--pnw-blue);
	color: #fff;
}

.bkg-orange{
	background-color: var(--pnw-orange);
	color: #fff;
}

.bkg-tan{
	background-color: var(--pnw-tan);
}

.learn-more.bkg-yellow{
	background: #dec70e;
	color: #fff;
}

.color-blue{
	color: var(--pnw-blue);
}

.color-orange{
	color: var(--pnw-orange);
}

.color-dk-yellow{
	color: #857e48;
}

.color-red{
	color: var(--pnw-red);
}

.color-white{
	color: #fff;
}

.color-gray{
	color: #736872;
}

.two-column {
    width: 100%;
}

.title-blue {
	color: var(--pnw-blue);
}

.inner-page-title {
    padding: 50px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 10px;
    background: #736872;
    color: #fff;
	margin-bottom: 50px;
}

.page-template-template-contact .inner-page-title,
.page-template-template-locations .inner-page-title,
.page-template-template-our-communities .inner-page-title{
    margin: 0;
}

.inner-page-title h1{
    margin: 0;
}

@media(max-width: 460px){
	.inner-page-title h1{
		font-size: 1.5em;
	}
}

.container {
    margin: auto;
    max-width: 1280px;
    position: relative;
	width: 90%;
}

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

.text-uppercase{
	text-transform: uppercase;
}

.text-uppercase span{
	text-transform: initial;
}

.padding-tb-100{
	padding: 100px 0;
}

.padding-tb-50{
	padding: 50px 0;
}

.padding-tb-20{
	padding: 20px 0;
}

.padding-50{
	padding: 50px;
}

.padding-lr-50{
	padding: 0 50px;
}

.padding-20{
	padding: 20px;
}

.margin-t-50{
	margin-top: 50px;
}

.margin-lr-20{
	margin: 0 20px;
}

.margin-tb-50{
	margin: 50px auto;
}

.margin-tb-100{
	margin: 100px auto;
}

.margin-b-100{
	margin-bottom: 100px;
}

.margin-b-50{
	margin-bottom: 50px;
}

.margin-b-20{
	margin-bottom: 20px;
}

.margin-auto{
	margin-left: auto;
	margin-right: auto;
}

.margin-0{
	margin: 0;
}

.df{
	display: flex;
}

.df--center{
	justify-content: center;
}

.df--space-around{
	justify-content: space-around;
}

.learn-more {
    background: #fff;
    border-radius: 10px;
    color: #736872;
	display: inline-block;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 700;
	letter-spacing: 2px;
    margin: 2em auto;
    padding: 20px;
    text-transform: uppercase;
	text-align: center;
	line-height: 1;
}

.community-container .learn-more {
    display: block;
    border-radius: 25px;
    font-size: 16px;
    line-height: 1;
    padding: 16px;
    margin: 20px auto;
    background: #91894b;
    color: #fff;
}

.learn-more.bkg-blue {
    background: var(--pnw-blue);
	border: 2px solid #fff;
}

.learn-more.bkg-orange {
    background: var(--pnw-orange);
	border: 2px solid #fff;
}

.learn-more.bkg-red {
    background: var(--pnw-red);
	border: 2px solid #fff;
}

.learn-more.bkg-white{
	background-color: #fff;
	color: var(--pnw-red);
}

.learn-more:hover {
    background: #736872;
    color: #dec70e;
	transform: scale(1.025);
}

.learn-more.not-centered{
	margin: 20px 0;
}

.view-all {
    background: #475f62;
    border-radius: 10px;
    color: #fff;
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    padding: 15px 20px 10px;
}

#wpnb-bar span#wpnbio-description a:hover {
    text-decoration: underline;
}

#top-notification {
    font-family: 'Josefin Sans', sans-serif;
	letter-spacing: 1px;
}

#top {
    display: flex;
    justify-content: center;
    padding: 0 20px;
    color: var(--pnw-blue);
    font-size: 20px;
    font-weight: 600;
    font-family: 'Josefin Sans', sans-serif;
}

@media(min-width: 960px){
	#top {
		justify-content: end;
	}
}

.header-phone-number {
    background: var(--pnw-blue);
    color: #fff;
    padding: 5px 15px 10px;
    border-radius: 0 0 10px 10px;
}

.header-phone-number a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone-number a img{
    width: 30px;
    height: 30px;
}

.top__nav-list li {
    margin: 0 40px;
	padding-left: 2.25rem;
}

.top__nav-list li.icon-portal {    
    background: transparent url(/wp-content/uploads/2021/02/resident-portal.svg) no-repeat 0 50%/28px;
}

.top__nav-list li.icon-newsletter {    
    background: transparent url(/wp-content/uploads/2021/02/newsletter.svg) no-repeat 0 50%/28px;
}

.top__nav-list li a{
	align-items: center;
    color: #fff;
	display: flex;
	font-size: 16px;
	padding: 20px 0;
}

.contact-icon{
    margin-right: 10px;
}

.header {
    border-bottom: 1px solid rgba(214, 106, 93, .4);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
	-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__logo {
    max-width: 150px;
	display: none;
}

.header__logo img {
    height: auto;
}

.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(--pnw-blue);
    margin: 7px 0 0;
}

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

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

body.is-showingNav .navButtonBar {
    background: var(--pnw-red);
}

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: 24px;
    height: 17px;
}
.navButtonBar--top {
    margin-top: 0px;
}
.navButtonBar--bottom {
    margin-top: 14px;
}

.nav-mobile {
    background-color: var(--pnw-red);
    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 li.menu-item a {
    color: #fff;
}

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

.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;
}

@media(max-width: 1180px){
	.header__nav-menu ul{
		display: none;
	}
	
	.header__logo {
		max-width: 80px;
		display: block;
	}
	
	.navButtonWrapper {
		display: block;
	}
	
	.navButtonWrapper.nbw--footer {
		display: flex;
		justify-content: center;
		padding: 20px 0 0;
	}

	li.nav-logo.menu-item{
		display: none;
	}
}

.menu-item {
    display: inline-block;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 700;
}

.menu-item.nav-logo {
    background: url(/wp-content/uploads/2022/08/logo.jpg) no-repeat center / contain;
    margin: 0 1em;
}

.menu-item.nav-logo a {
    opacity: 0;
    padding: 20px;
    margin: 0;
    cursor: pointer;
}

.menu-item a {
    display: block;
    color: var(--pnw-blue);
	font-size: 16px;
	margin: 20px;
	border-bottom: 5px solid transparent;
}

.header .menu-item a:hover {
    border-bottom: 5px solid var(--pnw-blue);
}

.nav-mobile li.menu-item a{
	padding: 20px;
	margin: 0;
	border: none;
}

.nav-mobile li.menu-item a:hover {
    background: var(--pnw-blue);
	border: none;
}

#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
}

#hero .hero__image{
	overflow: hidden;
	width: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	height: 100%;
}

.hero-image-wrap.hero__image:before {
    width: 100%;
    content: '';
    background: linear-gradient( 180deg, rgba(115, 104, 114, .5) 0%, rgba(115, 104, 114, .4) 100%);
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-image-wrap.hero__image div {
    height: 100%;
}

#hero .container {
    height: 100%;
}

.hero__form {
    width: 100%;
    margin: auto;
    z-index: 999;
}

.hero__form h2 {
    font-size: 1.5em;
    line-height: 1.25;
	margin-bottom: 40px;
}

.hero__form form {

}

.hero__form .csf__select-wrap {
	margin: .5em auto;
    width: 100%;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    padding: 0 1em;
    background: #fff;
}

.hero__form .csf__buttomn-wrap {
    max-width: 200px;
	margin: .5em auto;
    width: 100%;
}

.hero__form #go {
    width: 100%;
}

#community-search-form{
    max-width: 800px;
    margin: auto;
}

@media(min-width: 820px){
	
	.hero__form form {
		display: flex;
		justify-content: space-evenly;
		gap: 1em;
	}
}

#hero-special {
    position: absolute;
    color: #fff;
    background: hsl(53deg 32% 43%);
    padding: 1em;
    text-transform: uppercase;
    border-radius: 0 10px 10px 0;
    bottom: 60px;
    font-size: 1.5em;
    font-weight: 600;
    letter-spacing: 2px;
}

#gform_fields_1 {
    display: flex;
    flex-wrap: wrap;
}

#field_1_6 {
    width: 100%;
    margin: 0;
}

.gfield {
    width: 100%;
    margin-bottom: 20px;
}

#contact-us .gfield,
#join-newsletter .gfield{
    display: inline-block;
	border-bottom: 3px solid var(--pnw-red);
	margin: 0 0 40px;
}

#contact-us .gfield.full-width-field,
#contact-us .gfield.third-width-field,
.gfield.no_border{
	border: none !important;
}

@media(min-width: 720px){
	#contact-us .gfield,
	#join-newsletter .gfield{
		width: 47%;
		margin: 0 1.5% 40px;
	}
	#contact-us .gfield.full-width-field {
		width: 97%;
	}
	
	#contact-us .gfield.third-width-field  {
		width: 30.3%;
	}
}

#contact-us .gfield.full-width-field textarea {
    width: 100%;
    border: 3px solid var(--pnw-red);
    text-indent: 20px;
	margin-top: 20px;
}

.ginput_container.ginput_container_select {
	position: relative;
    width: 100%;
}

.gfield input[type="text"], 
.gfield input[type="email"], 
.gfield input[type="tel"], 
.gfield select, 
.gfield textarea,
#community-select{
	background: #fff;
	border: none;
    width: 100% !important;
    padding: 15px 0 !important;
    text-indent: 10px !important;
	font-size: 1em !important;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.csf__select-wrap{
	margin: .5em auto;
	position: relative;
	width: 100%;
}

.ginput_container.ginput_container_select:after,
.csf__select-wrap:after{
    content: "";
    position: absolute;
    z-index: 2;
    right: 20px;
    top: 50%;
    margin-top: -3px;
    height: 0;
    width: 0;
    border-top: 6px solid var(--pnw-blue);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    pointer-events: none;
}

#contact-us .gfield select{
	background: var(--pnw-red);
	color: #fff;
}

#contact-us .gfield{
	padding-right: 0;
}

#contact-us .ginput_container.ginput_container_select:after {
    border-top: 6px solid #fff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}

.hero__form-wrap label.gfield_label,
#join-newsletter label.gfield_label{
    display: none;
}

select#input_1_6 {
	margin: 0;
    width: 100%;
    padding: 15px 0;
    text-indent: 10px;
	font-size: 1em;
}

input#gform_submit_button_1,
input#gform_submit_button_2,
input.gform_button[type="submit"],
button#go{
    background: #dec70e;
	border: 1px solid transparent;
    border-radius: 10px;
    color: #fff;
	cursor: pointer;
    display: block;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1em;
	font-weight: 700;
    padding: 1em 3em;
    -webkit-appearance: none;
    text-transform: uppercase;
}

button#go{
    background: var(--pnw-blue);
}

input#gform_submit_button_1,
input#gform_submit_button_2,
input.gform_button[type="submit"]{
    background: #dec70e;
}

input.gform_button[type="submit"]:hover,
button#go:hover{
    background: var(--pnw-blue) !important;
}

.unit__form input.gform_button[type="submit"] {
    display: initial;
}

.single.single-home .unit__details .unit__form form .gform_fields .gfield input {
    color: #333;
}

#contact-us input.gform_button[type="submit"],
#join-newsletter input.gform_button[type="submit"]{
    margin: auto;
}

#contact-us input.gform_button[type="submit"]{
    margin: auto;
    background: #ccc6b0;
}

@media (min-width: 850px){
	
	h1.fancy-title { 
		transform: skewY( -10deg ) translatey(30px); 
	}
	
	.gfield {

	}
	
	#contact-us .gfield {
		max-width: 100%;
	}
}

#specials .current-specials:nth-child(2n) {
	background: var(--pnw-blue);
}

.current-specials__callout {
    color: #fff;
    padding: 2em 1.5em;
    margin: auto;
	display: flex;
}

#specials .current-specials__callout {
    color: var(--pnw-blue);
}

#specials .current-specials:nth-child(2n) .current-specials__callout {
    color: #fff;
}

.current-specials__callout-wrap{
	width: 90%;
	margin: auto;
}

.current-specials__callout h3 {
    font-size: 1.75em;
}

.hr-line {
    border: 2px solid;
    background: #fff;
    margin: 1.5em 0 1.5em auto;
    width: 100%;
    display: block;
}

.current-specials__disclaimer {
    display: block;
    font-size: .9em;
    font-style: italic;
}

.current-specials__image {
	min-height: 300px;
}
	
@media (min-width: 1180px){
	.current-specials {
		display: flex;
	}

	.current-specials-box{
		flex: 1 1 20em;
	}

	#specials .current-specials:nth-child(2n) {
		flex-direction: row-reverse;
	}
	
	.current-specials__image {
		display: flex;
	}
	
	#specials .current-specials:nth-child(2n) .current-specials__callout {
		text-align: right;
	}
	
	.current-specials__image{
		min-height: 300px;
	}
	
	.current-specials__image.scroll-view {
		position: relative;
		left: -5%;
		opacity: 0;
		-webkit-transition: all 1s ease-out;
		-moz-transition: all 1s ease-out;
		-o-transition: all 1s ease-out;
		transition: all 1s ease-out;
	}

	.current-specials__image.scroll-view.active {
		position: relative;
		left: 0;
		opacity: 1;
	}
	
	.current-specials__callout {
		margin: 0 0 0 auto;
	}
}

#testimonials {
    position: relative;
    margin-bottom: 3em;
}

.testimonial-images-wrap {
    max-width: 775px;
    position: relative;
    left: 40px;
}

.testimonials-container {
    width: 100%;
}

.testimonial-wrap {
    background: hsl(289deg 5% 47% / 70%);
    color: #fff;
    border-left: 30px solid #7c737e;
    font-family: 'Josefin Sans', sans-serif;
    padding: 3em; 
    width: 100%;
}

.testimonial-title {
    font-size: 1.5em;
    letter-spacing: 4px;
    margin-bottom: 50px;
}

.testimonial-image {
    max-width: 775px;
    width: 100%;
}

.testimonial blockquote {
    font-size: 1.25em;
    margin-bottom: 1em;
}

.testimonial span {
    display: block;
}

@media(min-width: 960px){


	.testimonial-title {
	    font-size: 2.5em;
	}


	.testimonials-container {
	    position: absolute;
	    top: 50%;
	    right: 0;
	    transform: translate(-6%, -50%);
        max-width: 620px;
	}
}

@media(max-width: 960px){

	.testimonial-images-wrap {
	    left: 0;
	}

}

#learn-discover-explore {
	background: url(/wp-content/uploads/2022/12/mountain.jpg) no-repeat center 0 / cover;
    padding: 3em 1em;
}

.lde__container {
    max-width: 1180px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    flex-flow: row wrap;
}

.lde__box {
    width: 100%;
    margin: 1em 0;
    max-width: 370px;
}

.lde__box.scroll-view {
    opacity: 0;
    visibility: hidden;
    position: relative;
    -webkit-transition: all 0.7s 0.2s ease-out;
    -moz-transition: all 0.7s 0.2s ease-out;
    -o-transition: all 0.7s 0.2s ease-out;
    transition: all 0.7s 0.2s ease-out;
}

.lde__box.scroll-view.active {
    opacity: 1;
    visibility: visible;
}


.lde__box-wrap {
    width: 100%;
    height: 100vh;
    max-height: 575px;
    background: blue;
    position: relative;
    display: flex;
    align-items: flex-end;
	margin-bottom: 2em;
}

.lde__box-wrap.faq {
	background: url(/wp-content/uploads/2022/10/cta-img-1.jpg) no-repeat center / cover;
}

.lde__box-wrap.advantages {
	background: url(/wp-content/uploads/2022/12/cta-img-2.jpg) no-repeat center / cover;
}

.lde__box-wrap.poi {
	background: url(/wp-content/uploads/2022/10/cta-img-3.jpg) no-repeat center / cover;
}

#discover-life {
    padding: 3em 1em;
}

.title-box {
    background: var(--pnw-blue-opac);
    color: #fff;
    padding: 1em;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    -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;
}

@media(min-width: 960px){
	.title-box {
		height: 270px;
	}
	
	.lde__box-wrap:hover .title-box {
		height: 100%;
	}

	.title-box__title-wrap {
		min-height: 156px;
	}
}

.title-box h3 {
    font-size: 1.752em;
    text-transform: uppercase;
    letter-spacing: 2px;
	margin: 0;
}

.lde__box .learn-more {
    background: #fff;
    color: var(--pnw-red);
    border: 2px solid var(--pnw-red);
    width: 205px;
    margin: auto;
    display: block;
}

.lde__box .learn-more:hover {
    background: var(--pnw-red);
    color: #fff;
}

#contact-cta {
}

#contact-cta h2 {
    color: #fff;
}

.homepage-blog-feed__intro-box-wrap {
    width: 100%;
    height: 100vh;
    max-height: 575px;
    background: #ebecef;
    position: relative;
	margin-bottom: 2em;
    padding: 1em;
}

.homepage-blog-feed__box-wrap {
    width: 100%;
    height: 100vh;
    max-height: 575px;
    background: #ebecef;
    position: relative;
    display: flex;
    align-items: flex-end;
	margin-bottom: 2em;
}


.blog-intro-title h3{
	font-size: 2em;
    position: relative;
    color: #2b313f;

}

.blog-intro-title h3:after{
    content: " ";
    height: 7px;
    width: 125px;
    background: #6258a0;
    display: block;
    margin: 25px 0;
}

.blog-intro-title p{
	color: #626262;}

.homepage-blog-post-img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.homepage-blog-post-title {
    font-size: 1.5em;
    z-index: 999;
    text-shadow: 0 1px 2px #000;
    color: #fff;
    width: 90%;
    margin: 0 auto 20px;
    line-height: 1.15;
}

#plan-your-visit p {
    position: relative;
}

.container__inner {
	display: flex;
	flex-flow: column;
}

.container__inner.bottom img {
    -webkit-transform: translateY(-6rem);
    -ms-transform: translateY(-6rem);
    transform: translateY(-6rem);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
	margin: auto;
}

.container__inner.bottom {
    justify-content: center;
}

@media(min-width: 1080px){
	.container__inner {
		flex-flow: row;
	}
	
	.container__inner .inner_content{
		padding: 50px;
	}
}

.container__inner.communities__container {
    flex-wrap: wrap;
    justify-content: space-around;
}

.community {
    margin: 40px;
    width: 100%;
    max-width: 350px;
}

.community:hover {

}

.community-image-wrap {
    position: relative;
}

.community-image-container {
    position: relative;
    display: flex;
}

.community-image-container:before {
    content: "";
    background: linear-gradient( 180deg,  hsl(0deg 0% 0% / 0%) 0%,  hsl(187deg 16% 33%) 100%);
    position:absolute;
    bottom: 0;
    width: 100%;
    height:200px;
    margin: auto;
    left:0;
}

.community-image {
    height: 466px;
    width: 100%;
    object-fit: cover;
    max-width: 355px;
}

.community h3 {
    color: rgb(133, 126, 72, .5);
    font-weight: 500;
    margin: 20px auto;
}

#benefits figure {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 39.58333%;
    flex: 0 0 39.58333%;
    max-width: 39.58333%;
    padding-right: 0;
    padding-left: 0;
}

@media(max-width: 1080px){
	#benefits figure {
		order: 2;
	}
}

#benefits .container_inner-wrap {
    padding: 0 40px 40px;
}

.intro__container {
    display: flex;
    margin: auto;
    max-width: 1280px;
    position: relative;
    width: 90%;
    gap: 2em;
    align-items: center;
    flex-flow: row wrap;
}

.intro__box {
    flex: 1 1 20em;
}

#community-filters {
    background: #ccc6b0;
    padding: 2em 1em;
}

.community-filters__container {
    display: flex;
    margin: auto;
    max-width: 980px;
    gap: 5em;
    flex-flow: row wrap;
}

.community-filters_filter {
/*    flex: 1 1 20em;
*/}

@media(min-width: 980px){
	.community-filters__container {
	    justify-content: center;
	}

	#community-type {
	    border-left: 2px solid #000;
	    border-right: 2px solid #000;
	    padding: 0 4em;
	}
}

span.facetwp-counter {
    display: none;
}


#communites {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2em 0;
}

.community-container {
	background: #e6e6e6;
	box-shadow: 0 1px 1px rgba(0,0,0,0.11), 
              0 2px 2px rgba(0,0,0,0.11), 
              0 4px 4px rgba(0,0,0,0.11), 
              0 8px 8px rgba(0,0,0,0.11), 
              0 16px 16px rgba(0,0,0,0.11), 
              0 32px 32px rgba(0,0,0,0.11);
    margin: 40px auto;
    width: 100%;
    max-width: 350px;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.community-thumb-image-container img{
	border-radius: 25px;
	height: 250px;
	width: 100%;
	object-fit: cover;
}

.comm-info-wrap {
    background: #e6e6e6;
    padding: 60px 20px 20px;
    border-radius: 0 0 5px 5px;
    font-weight: bold;
    position: relative;
}

.community-logo {
	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);
    width: 200px;
    border-radius: 25px;
    overflow: hidden;
    background: #475f63;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50px);
    padding: 20px;
}

.comm-info-wrap p {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
}

.community-logo-link{
	height: 100%;
}

.community-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.community-logo h3{
	margin: auto;
	font-size: 1rem;
	font-weight: 700;
}

.community-amenity-icons {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

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

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

.filter-wrap {
	padding: 2rem;
    border-radius: 25px;
    border: 1px solid var(--pnw-blue);
    margin: 0rem auto;
    flex: 1 1 20em;
}

.filter-wrap select {
    background: url(/wp-content/themes/pnw-communities/assets/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 label {
    color: var(--pnw-blue);
    font-weight: 600;
}

.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: #fff;
  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 var(--pnw-blue);
  border-radius: 10px;
  color: var(--pnw-blue);
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
}

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

#filter-amenities label:has(input:checked) {
  background-color: var(--pnw-blue);
  color: #fff;
}

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

  --range-track:#ddd;
  --range-fill:#475f63;
  --p1:0%;
  --p2:100%;
}

.pnw-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;
}

.pnw-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%);
}

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

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

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

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

img.location-icon {
    position: relative;
    bottom: -10px;
    width: 40px;
}

.community-view-more {
    background: var(--pnw-blue);
    color: #fff;
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 1em auto;
    padding: 20px;
    text-transform: uppercase;
    text-align: center;
}

.location__container{
    display: flex;
	margin: auto;
	flex-flow: column;
}

.comm-special{
    display: flex;
	margin: 60px auto;
	flex-flow: column;
}

.comm-special{
    align-items: center;
}

#explore-pnw-hero{
    display: flex;
    justify-content: center;
    align-items: end;
    color: #fff;
    text-transform: uppercase;
}

#explore-pnw-hero h1 {
    text-shadow: 2px 0px 10px hsl(187deg 16% 33% / 65%);
}

#explore-pnw-hero h1 span {
    display: block;
    font-family: 'Born Ready Slanted', cursive;
    text-transform: initial;
    font-weight: 400;
}


#explore-pnw-hero h2{
	margin: 0;
}

.explore-pnw__wrap{
	margin: auto;
	color: #fff;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	column-gap: 50px;
}

.explore-pnw__box{
	
}

.explore-pnw__location-icon-wrap {
    position: relative;
    width: 50px;
    margin: auto;
}

.explore-pnw__location-icon-wrap:before {
	content: "";
    width: 110px;
    height: 5px;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    left: -130px;
}


.explore-pnw__location-icon-wrap:after {
	content: "";
	width: 110px;
	height: 5px;
	background: #fff;
	position: absolute;
	top: 50%;
	transform: translatey(-50%);
	right: -130px;
}

.explore-intro-container {
    display: flex;
    gap: 2em;
    justify-content: center;
    flex-flow: row wrap;
    margin: 50px auto;
}

.explore-intro-box {
    flex:  1 1 20em;
    font-size: 1.5em;

}

.explore-intro-box p.p-lg {
    font-size: 1.5em;
    font-weight: 600;
}

.explore-intro-box span {
    font-family: 'Born Ready Slanted', cursive;
    color: #90884b;
    font-weight: 400;
}

#blog-callout {
    background: url(/wp-content/uploads/2022/10/mountain-living.jpeg) no-repeat center / cover;
}

.blog-callout-container.container {
    display: flex;
    justify-content: center;
}

.blog-callout-wrap {
    background: hsl(186deg 16% 33% / 85%);
    padding: 50px;
    color: #fff;
    font-size: 1.25em;
}

@media(min-width: 1024px){
	.blog-callout-container.container {
	    display: flex;
	    justify-content: end;
	}

	.blog-callout-wrap {
	    width: 50%;
	}
}

.blog-callout-btn {
    background: #dec70e;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1em;
    font-weight: 700;
    padding: 1em 3em;
    -webkit-appearance: none;
    text-transform: uppercase;
    text-align: center;
}

.explore-activities-container.container {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    gap: 2em;
}

.pnw-activity {
    flex: 1 1 25em;
}

.pnw-activity img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
}

.pnw-activity-title {
    background: #736872;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    padding: 25px 20px 19px;
    line-height: 1;
    position: relative;
    top: -30px;
    font-size: 1.5em;
    width: 500px;
}

.explore-featured-community {
    display: flex;
    max-width: 900px;
    width: 100%;
    flex-flow: row wrap;
}

.explore-featured-community-image {
    position: relative;
    flex: 1 1 20em;
    display: flex;
    height: 500px;
    justify-content: center;
    align-items: center;
}

.explore-featured-community-description {
    flex: 1 1 20em;
}

.efc-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pnw-community-logo-wrap {
    position: absolute;
    z-index: 1;
    width: 315px;
    height: 315px;
    background: rgba(0, 0, 0, 0.5);
    padding: 2em;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#explore-featured-communities .slick-prev {
    background: url(/wp-content/themes/pnw-communities/assets/images/arrow-prev.svg) no-repeat 2% center;
    left: 3%;
    z-index: 1;
    width: 50px;
    height: 50px;
}

#explore-featured-communities .slick-next {
    background: url(/wp-content/themes/pnw-communities/assets/images/arrow-next.svg) no-repeat 2% center;
    right: 5%;
    width: 50px;
    height: 50px;
}

button.slick-prev:before, button.slick-next:before{
	content: "";
}

.location {
	overflow: hidden;
}


.location h3 {
	font-family: 'Born Ready Slanted', cursive;
    color: #e58557;
    font-size: 3em;
    line-height: 1;
	font-weight: normal;
}

.location p{
    font-size: 16px;
	margin: 0 0 20px;
}

.location__link{
	background: hsl(19deg 73% 62%);
	font-size: .75em;
	letter-spacing: 1px;
	text-transform: uppercase;
    color: #fff;
    display: inline-block;
    margin: 5px 5px 5px 0;
    padding: 5px 15px;
}

.learn-more.location__link {
    padding: 10px 15px 5px;
}

.location__link:hover{
	transform: scale(1.1)
}

.location figure,
.location__desc,
.comm-special figure,
.special__desc{

}

.location figure img,
.comm-special figure img{
    width: 100%;
}

.flex-col{
	padding: 2em;
	width: 100%;
}

.location__img{
	min-height: 300px;
}

@media(min-width: 980px){
	.location__container,
	.comm-special{
		flex-flow: row;
	}
	
	.location:nth-child(2n),
	.comm-special:nth-child(2n){
		background: var(--pnw-blue);
		color: #fff;
	}
	
	.location:nth-child(2n) .location__container,
	.comm-special:nth-child(2n){
		flex-flow: row-reverse;
	}
	
	.location:nth-child(2n) h3{
		color: var(--pnw-red);
	}
	
	.location:nth-child(2n) .location__link {
		background: var(--pnw-red);
	}
	
	.location__img.scroll-view,
	.location:nth-child(2n) .location__dec.scroll-view{
		position: relative;
		left: -5%;
		opacity: 0;
		-webkit-transition: all 1s ease-out;
		-moz-transition: all 1s ease-out;
		-o-transition: all 1s ease-out;
		transition: all 1s ease-out;
	}

	.location__img.scroll-view.active {
		position: relative;
		left: 0;
		opacity: 1;
	}
	
	.location__desc.scroll-view {
		position: relative;
		left: 5%;
		opacity: 0;
		-webkit-transition: all 1s ease-out;
		-moz-transition: all 1s ease-out;
		-o-transition: all 1s ease-out;
		transition: all 1s ease-out;
	}

	.location__desc.scroll-view.active {
		position: relative;
		left: 0;
		opacity: 1;
	}
}

.location__desc .wp-block-group__inner-container{
	display: block
}

.our-homes__wrap .wp-block-columns,
.homes-feed-list-wrap {
    max-width: 1440px;
    margin: auto;
	width: 95%;
}

#our-homes #ahgridfilters {
    justify-content: center;
    gap: 20px;
}

#faq-cta {
    position: relative;
	flex-direction: column;
}

#faq-cta div {
    padding: 1em;
	max-width: 590px;
	margin: 0 auto;
}

@media(min-width: 1000px){
	#faq-cta {
		flex-direction: row;
	}

	#faq-cta div {
		width: 50%;
	}
}

.faq-cta-img{
	position: relative;
}

.faq-img {
    max-width: 560px;
}

@media(min-width: 1280px){
	.faq-img {
		position: absolute;
	}
	
	.faq-img.top-faq-img {
		z-index: 1;
		transform: translate(120px, -90px);
	}

	.faq-img.bottom-faq-img {
		transform: translate(0,190px);
	}
}

.faq-img img {
    border-radius: 10px;
}

#contact-us-container {
	background: linear-gradient(
		180deg, 
		rgba(204,198,176,0.8) 0%, 
		rgba(204,198,176,0.8) 100%), 
		url(/wp-content/uploads/2022/10/contact-bkg.jpg) no-repeat center 0 / cover;
    padding: 2em 0;
}

#contact-us {
    margin: 80px auto;
}

#footer {
    background-color: #90884b;
}

.footer-wrap {
    justify-content: center;
    display: flex;
	flex-direction: column;
}

.footer-section {
    margin: 0 2em;
}

.footer__nav-menu-list .menu-item {
    display: block;
}

.footer__nav-menu-list .menu-item a {
    padding: 10px;
	margin: 0;
}


.office-hours {
    text-align: right;
}

.footer-logo {
	order: 1;
}


@media(min-width: 960px){
	.footer-wrap {
		flex-direction: row;
	}
	
	.footer-logo {
		order: 0;
	}
	
}

.footer-logo img {
    max-width: 130px;
}

#footer a {
    color: #fff;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    background: #fff;
    color: var(--pnw-blue);
    padding: 1em;
}

.copyright a {
	color: #90884b;
}

.eho-icon{
	width: 40px;
}

@media(min-width: 1181px){
	#menu-main-1 { /*footer menu */
		display: flex;
		justify-content: center;
	}
}

div#ahgridfilters {
    background: 
	url(/wp-content/uploads/2022/09/homes-filter.jpg) no-repeat center / cover;
    padding: 3em 1em;
}

.ahgridfilter-label {
    color: #fff;
}

#ahgridfilters select {
    color: var(--pnw-red);
}

.download-faq h2{
	max-width: 40ch;
    margin: auto;
    text-transform: uppercase;
}

.buyers-guide-1__header h2{
	max-width: 25ch;
    margin: auto;
    text-transform: uppercase;
}
   
.buyers-guide-2__header h2{
	font-family: 'Born Ready Slanted', cursive;
	font-size: 3em;
	color: var(--pnw-red);
	font-weight: 400;
}

.options { grid-area: options; }

.lower-taxes { grid-area: lower-taxes; }

.affordability { grid-area: affordability; }

.versatility { grid-area: versatility; }

.strength { grid-area: strength; }

.timetable { grid-area: timetable; }

.road-trips { grid-area: road-trips; }
.cultural { grid-area: cultural; }
.healthcare { grid-area: healthcare; }
.sunshine { grid-area: sunshine; }
.activities { grid-area: activities; }

.grid-item {
	position: relative;
	margin-bottom: 2em;
	-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;
}

.grid-item img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.grid-content {
    color: #fff;
    padding: 1em;
}


.grid-content h2 {
	-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;
}

.grid-content p {
	color: #fff;
	-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;
}

@media(max-width: 1024px){
	.grid-item {
	    display: flex;
		flex-direction: column;
	}
	
	.grid-content h2 {
		color: var(--pnw-blue);
	}
	
	.grid-content p {
		color: #505050;
	}
}

@media(min-width: 1024px){
	.grid-container-1 {
	  display: grid;
	  grid-template-columns: 1fr 1fr 1fr;
	  grid-template-rows: 1fr 1fr 1fr;
	  gap: 5px 5px;
	  grid-template-areas:
		"options options strength"
		"lower-taxes lower-taxes strength"
		"affordability versatility timetable";
	}
	
	.grid-container-2 {
	  display: grid;
	  grid-template-columns: 1fr 1fr 1fr;
	  grid-template-rows: 1fr 1fr 1fr;
	  gap: 5px 5px;
	  grid-template-areas:
		"road-trips road-trips cultural"
		"healthcare activities activities"
		"sunshine activities activities";
	}
	
	.grid-item {
	    height: 400px;
		margin-bottom: 0;
	}
	
	.grid-item:hover:after {
		content: "";
		background: hsl(187deg 16% 33% / 70%);
		position: absolute;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
	}

	.grid-item img {
		height: 100%;
	}
	
	.activities.grid-item,
	.strength.grid-item {
		height: auto;
	}
	
	.grid-content h2 {
		position: absolute;
		bottom: 0;
		z-index: 10;
	}

	.grid-content p {
		position: absolute;
		left: 50%;
		width: 90%;
		top: 50%;
		transform: translate(-50%, -50%);
		z-index: 10;
		opacity: 0;
		visibility: hidden;
	}
	
	.grid-item:hover .grid-content h2 {
		visibility: hidden;
		opacity: 0;
	}

	.grid-item:hover .grid-content p {
		visibility: visible;
		opacity: 1;
	}
}
/* Communities Map */


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


div.facetwp-facet {
    margin: 0;
}

#pnwMap {
    height: 400px;
    width: 100%;
    max-width: 1192px;
    margin: 0 auto 40px;
    order: -1;
}

.gm-style .community-img-link img {
    max-width: none;
    width: 100%;
    height: 100px;
    object-fit: cover;
    margin: 20px auto;
}

a.pnwmap-infowin-link,
.community-map-title a {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--pnw-blue);
    margin: 5px 0;
    display: block;
}

.facetwp-map-filtering { 
    display: none; 
}

/* Nearby Places Map */

.nearbyplaces-map__menu {
    background: var(--pnw-blue);
}

.nearbyplaces-map__menu .nearbyplaces-map__menu-item.is-active,
.nearbyplaces-map__menu-item:hover{
    background:  var(--pnw-orange);
    color: #fff;
}

/* Blog */

.page-template-template-blog .inner-page-title {
    margin: 0;
}

#blog-page-hero{
	display: flex;
}

#blog-page-hero h1 {
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 1px 35px hsl(0deg 0% 19% / 73%);
}

#blog-page-hero h1 span{
	font-family: 'Born Ready Slanted', cursive;
	font-weight: 400;
	font-size: 6rem;
	display: block;
	text-transform: initial;
	margin-bottom: 2rem;
}

.blog-hero__wrap{
	margin: auto;
	color: #fff;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	column-gap: 50px;
}

#blog-intro {
    max-width: 900px;
    margin: auto;
}

.latest-blog-post-thumbnail img{
	max-height: 600px;
	object-fit: cover;
}

.additional-posts__container {
    margin: auto;
    max-width: 1280px;
    position: relative;
}

article.blog-post {
    margin-bottom: 50px;
}

.blog-post__date {
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin: 1em;
}

#additional-posts .post-thumbnail img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-post__title {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 2em;
}

.archive-months li{
	list-style: none;
	margin-bottom: 1em;
    color: var(--pnw-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

figure.wp-block-image.aligncenter {
    display: block;
}

.archive-months li a{
    color: #fff;
}

#related-articles {
    background: linear-gradient( 
				180deg,
				hsl(305deg 5% 43% / 65%) 0%, hsl(305deg 5% 43% / 65%) 100%),
				url(/wp-content/uploads/2022/10/lakewood-thumbnail.jpeg) no-repeat center / cover;
}

.ap-explore-container {
    background: url(/wp-content/uploads/2022/10/contact-bkg.jpg) no-repeat center 0 / cover;
	color: #fff;
	-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;
}

.ap-explore-content {
    background: rgba(0,0,0,0.7);
    padding: 2em;
	color: #fff;
}

.ap-explore-container h2{
    font-size: 1.5em;
    text-transform: uppercase;
}

.ap-explore-container a{
    color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 2px;
}

@media(min-width: 960px){
	
	#blog-page-hero h1 span{
		font-size: 10rem;
	}
	
	.additional-posts__container {
		flex-direction: row;
		display: flex;
	}
	
	.ap-explore-container {
		position: sticky;
		top: 0;
		height: 100vh;
		overflow: hidden;
	}
	
	.ap-explore-content {
		position: absolute;
		width: 100%;
		top: 100%;
    	transform: translateY(-50%);
		-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;
	}
	
	.ap-explore-container p,
	.ap-explore-container a{
		opacity: 0;
		-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;
	}
	
	.ap-explore-container:hover .ap-explore-content {
		top: 50%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 100% 2em;
	}
	
	.ap-explore-container:hover p,
	.ap-explore-container:hover a{
		opacity: 1;
	}
	
	.additonal-post__box.ap__posts {
		flex: 1 1 66%;
	}

	.additonal-post__box.explore__cta {
		flex: 1 1 33%;
	}
}

#blog-content .wp-block-columns {
    margin: 3.75em auto;
}

#related-article .post-thumbnail img{
	height: 400px;
    object-fit: cover;
    width: 100%;
	object-position: top;
}

.social-feeds {
    display: flex;
    flex-flow: row wrap;
    gap: 2em;
}

.cff-wrapper {
    flex: 1 1 20em;
}

#cff.cff-masonry.masonry-2-tablet .cff-posts-wrap .cff-item, 
#cff.cff-masonry.masonry-2-tablet .cff-posts-wrap .cff-album-item, 
#cff.cff-masonry.masonry-2-tablet .cff-posts-wrap .cff-likebox {
    width: 100%;
}	

/*=====================================
Carlyle Home Listings overwrite styles
 =====================================*/

.inventory-homes-feed-detail .hide-on-homes-detail-page {
	display: none !important;
}

.single.single-home .unit__details {
    background: var(--pnw-blue);
}

.single.single-home .unit__details .unit__form {
    border-right: 2px solid #fff;
}

.single.single-home .unit__details .unit__label {
    color: #fff;
}

.single.single-home .unit__details .virtual-tour-btn {
    background-color: #dec70e;
    color: var(--pnw-blue);
    font-weight: 600;
}

.single.single-home .unit__gallery .unit__gallery-controls,
.single.single-home .unit__gallery .unit__gallery-control{
	background-color: var(--pnw-blue);
}

.single.single-home .unit__gallery .unit__gallery-controls li.is-active {
    color: #dec70e;
}


.single.single-home .unit__gallery .unit__gallery-thumbs .unit__gallery-image.is-current > .border {
    border: 6px solid #dec70e;
}

.single.single-home .unit__intro .unit__name {
    color: var(--pnw-blue);
}

.single.single-home .unit__intro {
    border-bottom: 2px solid var(--pnw-blue);
    border-top: 2px solid var(--pnw-blue);
}

span.home-ribbon.just-listed {
    background-color: #fff;
    color: #465e62;
}

span.home-ribbon.featured {
    background-color: #476063;
}

span.home-ribbon.reduced {
  	background-color: #736872;
}

span.home-ribbon.sale-pending {
    background-color: #dec70e;
}

span.home-ribbon.coming-soon {
	background-color: #857e48;
}

span.home-ribbon.sold {
    background-color: #ccc6b0;
}

div#ahgridfilters label.ahgridfilter-label {
    color: #fff;
}






#pnwHomeFilters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
    width: 95%;
    margin: 1em auto;
    max-width: 1440px;
    background: linear-gradient(180deg, rgba(124, 52, 39, 0.7) 0%, rgba(124, 52, 39, 0.7) 100%), 
    			url(/wp-content/uploads/2021/06/dulcey-lima-hr1smkEtjzI-unsplash.jpg) no-repeat center / cover;
    padding: 3em 1em;
    border-radius: 25px;
}

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

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

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

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

.pnw-filter-field label {
    color: #fff;
    font-weight: 700;
}

.pnw-filter-field select {
    background: url(/wp-content/themes/pnw-communities/assets/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%;
}

.pnw-range-values {
    font-size: 14px;
}



/*

Available Homes Plugin Override Styles

*/

.pnw-listing-card {
    background: #e6e6e6;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.11), 
                0 2px 2px rgba(0, 0, 0, 0.11), 
                0 4px 4px rgba(0, 0, 0, 0.11), 
                0 8px 8px rgba(0, 0, 0, 0.11), 
                0 16px 16px rgba(0, 0, 0, 0.11), 
                0 32px 32px rgba(0, 0, 0, 0.11);
    width: 100%;
    max-width: 500px;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    margin: auto;
}

.pnw-listing-image-container img {
    border-radius: 25px;
    width: 100%;
    height: 262px;
    object-fit: cover;
}

.pnw-home-details {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.pnw-home-detail {
    display: flex;
    gap: 6px;
    align-items: center;
}

.pnw-home-detail img {
    height: 30px;
    width: 30px;
    border: 1px solid #475f63;
    border-radius: 50px;
}


.pnw_address {
    border-bottom: 1px solid;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.pnw-home-price {
    color: #475f63;
    font-size: 1.25em;
}

.pnw-home-rental-price{
    font-size: 16px;
}

.pnw-see-home{
    display: block;
    border-radius: 20px;
    font-size: 16px;
    line-height: 1;
    padding: 16px;
    margin: 1.25rem auto 0;
    max-width: 230px;
    background: #91894b;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.pnw-home-pricing{
    margin-bottom: .6rem;
}

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

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


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

@media (max-width: 1140px) {
  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;
}

.virtual-tour1 {
    position: absolute;
    bottom: 33px;
    right: 15px;
    width: 30px;
    height: 30px;
}

#pnwHomeFilters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
    width: 95%;
    margin: 1em auto;
    max-width: 1440px;
    background: linear-gradient(180deg, rgb(115 104 114 / 70%) 0%, rgb(115 104 114 / 70%) 100%), 
    			url(/wp-content/uploads/2022/09/homes-filter.jpg) no-repeat center / cover;
    padding: 3em 1em;
    border-radius: 25px;
}

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

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

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

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

.pnw-filter-field label {
    color: #fff;
    font-weight: 700;
}

.pnw-filter-field select {
    background: url(/wp-content/themes/pnw-communities/assets/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%;
}

.pnw-range-values {
    font-size: 14px;
}


/* PNW Only */

.home section#featured-homes div.homes-feed-list-wrap{
	grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1480px) {
  .home section#featured-homes div.homes-feed-list-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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