/*
Theme Name:         Cobblestone Communities Two
Description:        Theme for Cobblestone Communities Two
Version:            1.0.4
Requires at least:  6.0
Tested up to:       6.8.1
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:        cctwotheme
*/



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

:root {
	--lt-blue: hsl(188deg 58% 60% / 100%);
	--dk-blue: hsl(218.44deg 61.54% 20.39% / 100);
	--br-green: hsl(85deg 55% 51% / 100%);
	--mt-green: hsl(89deg 49% 77% / 100%);
	--mt-green-hover: hsl(89deg 49% 67% / 100%);
	--grey: hsl(220deg 9% 93% / 100%);
	--orange: hsl(29deg 94% 64% / 100%);
	--sky-blue: hsl(206deg 75% 87% / 100%)
}


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

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

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

body {
    color: #212529;
	font-family: "PT Sans", sans-serif;
	line-height: 1.5;
	font-size: 16px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;

}

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

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
	font-style: italic;
	font-size: .9em;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

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

strong {
    font-weight: 600;
}

a {
    color: rgba(var(--primary) / 100%);
	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;
}

hr {
    border: 1px solid hsl(37deg 100% 76%);
}

hr.primary {
    border: 1px solid rgba(var(--primary) / 100%);
}

hr.container.half {
    width: 50%;
}

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


/*=============
 Global Styles
 ==============*/
.container {
    margin: auto;
}

.hr-line {
    display: block;
    height: 3px;
    background: var(--lt-blue);
    width: 50px;
    margin-bottom: 2em;
    border-radius: 5px;
}

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

.is-hidden,
.inventory-homes-feed-detail .hide-on-detail {
    display: none;
}

.cta-btn {
    padding:.5em 1.5em;
	background: rgba(var(--primary) / 100%);
    border-radius: 50px;
	color: var(--primary-text-color);
	display: inline-block;
	font-weight: 700;
    -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;
}

.community-list-item .cta-btn {
    width: 200px;
    margin: 1em auto 0;
}

.cta-btn.download-app {
	background: rgba(var(--secondary) / 100%);;
	color: var(--secondary-text-color);
	text-transform: initial;
    padding:.5em 1em;
}

.cta-btn.book-now {
	background: rgba(var(--accent) / 100%);
	color: var(--accent-text-color);
	text-transform: initial;
    padding:.5em 1em;
}

.cta-btn.thank-you,
.cta-btn.bkg-accent {
    background: rgba(var(--accent) / 100%);
    color: var(--accent-text-color);
}

.cta-btn.login {
	background: rgba(var(--primary) / 100%);
	color: var(--primary-text-color);
	text-transform: initial;
    padding:.5em 1em;
}

.cta-btn:hover,
.cta-btn:focus {
	background: rgba(var(--secondary) / 100%);
    color: var(--secondary-text-color);
}

.content p{
	margin-bottom: 1em;
}

.content ul{
	list-style: disc;
	margin: 1rem 1rem 1rem 3rem;
}

.clr-white{
    color: #fff;
}

.clr-primary{
    color: rgba(var(--primary) / 100%);
}

.clr-secondary{
    color: rgba(var(--secondary) / 100%);   
}

.clr-accent{
    color: rgba(var(--accent) / 100%);  
}

.bkg-primary{
    background: rgba(var(--primary) / 100%);
}

.bkg-secondary{
    background: rgba(var(--secondary) / 100%);  
}

.bkg-accent{
    background: rgba(var(--accent) / 100%);
}

.bkg-grey,
.bkg-gray{
    background: #ebf1f4;
}

.bkg-dk-blue{
    background: var(--dk-blue);
}
/*=============
 Header Styles
 ==============*/
.header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 99998;
}

.header__container {
    display: flex;
    justify-content: space-between;
    width: 95%;
	max-width: 2000px;
    margin: auto;
	padding-bottom: .5em;
	-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 {
    display: flex;
}

.custom-logo-link {
    display: flex;
}

.custom-logo {
    margin-top: auto;
    display: block;
	max-width: 150px;
}

@media(min-width: 992px){
    .custom-logo {
        max-width: 220px;
    }
}


.nav-wrap {
    padding-bottom: 1em;
}

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

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

ul#menu-main li a {
    color: inherit;
	padding: .5em 1em;
	position: relative;
	font-size: 1rem;
    border-radius: 50px;
}

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

ul#menu-main li a:hover,
ul#menu-main li a:focus{
	background: rgba(var(--primary) / 100%);
	color: #fff;
}

ul#menu-main li a:focus,
ul#menu-main li.current-menu-item a{
    font-weight: 700;
}


.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: #212529;
    margin: 7px 0 0;
}

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

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

body.is-showingNav .navButtonBar {
    background: rgba(var(--primary) / 100%);
}

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

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

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

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

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

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

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

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

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

body.is-showingNav {
    overflow: hidden;
}

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

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

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

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

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



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

@media(min-width: 900px){
    #hero {
        height: 65vh;
    }
}

.hero-content {
    background: hsl(0deg 0% 100% / 65%);
}


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

.header-arrow-container{
    fill:#FFFFFF;
}

.header-arrow{
    fill: rgba(var(--primary) / 100%);
}


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

.lc-hero-callout-container{
    width: 300px;
    height: 300px;
    margin: auto;
}

.lc-hero-callout-img {
    width: 100%;
    height: 100%
    margin: auto;
}

.special-callout {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-in-out, visibility .5s ease-in-out;
    position: absolute;

}

.special-callout.open {
    opacity: 1;
    visibility: visible;
}

.special-callout__element {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .5s ease, visibility .5s ease, transform .5s ease;
  visibility: hidden;
}

.special-callout.open .special-callout__title {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.special-callout.open .special-callout__content {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s; 
  visibility: visible;
}

.special-callout.open .cta-btn {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s; 
  visibility: visible;
}

.close-callout {
    cursor: pointer;
    position: absolute;
    right: 20px;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: none;
    height: 30px;
    width: 30px;
    font-size: 1em;
    -webkit-appearance: none;
    appearance: none;
    z-index: 999;
    padding: 0;
}

.close-callout svg{
    fill: rgba(var(--primary) / 100%);
    -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;
}

.close-callout:hover svg,
.close-callout:focus svg{
    fill: rgba(var(--secondary) / 100%);
}

.home-intro-container{
    width: 100%;
    margin: auto;
}

.home-intro-img{
    height: 100%;
    object-fit: cover;
}

.intro-bottom-img {
    height: 200px;
}

.intro-bottom-img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

@media(min-width: 992px){

    .home-intro-content{
        padding-bottom: 220px;
    }

    .intro-bottom-img {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 70%;
    }

    .intro-bottom-img img {
        border: 1rem solid #fff;
    }

}


.ah-container {
    background: #ebf1f4;
    padding: 1em;
    margin: auto;
}


.form-wrap {

}


.amenities-image {
    height: 600px;
}

.amenities-image:before {
    content: "";
    background-color: hsl(0deg 0% 0% / 50%);
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 30px;
}

.amenities-wrap {
    background: #fff;
    margin: -100px auto 0;
    box-shadow: 0 0 60px hsl(0deg 0% 0% / 30%);
}


.plan-stay-section{
	margin: 2rem auto;
}

.plan-stay-image img{
	width: 100%;
}

.plan-stay-content {
    color: #fff;
	background: rgba(var(--primary) / 100%);
	border-radius: 2rem;
	position: relative;
	z-index: 1;
}


.plan-stay-content .cta-btn{
	background: #fff;
	color: rgba(var(--primary) / 100%);
}



@media(min-width: 992px){
	.plan-stay-section{
		margin-bottom: 10rem;
	}

	.plan-stay-image {
	    position: absolute;
	    top: 50px;
	    right: 0;
	}

}


#city-info {
    padding: 7em 0;
    position: relative;
}

#city-info:before {
    content: "";
    background-color: hsl(0deg 0% 0% / 50%);
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
}

.city-info-content {
    background: #fff;
    padding: 2rem;
    border-radius: 2rem;
    margin: auto;
    width: 100%;
    max-width: 900px;
    border-bottom: 5px solid rgba(var(--primary) / 100%);
    position: relative;
}

@media(min-width: 992px){
	#city-info {
	    padding: 10em 0 16em;
        margin-bottom: 10rem;
	}

	.city-info-wrap{
		display: flex;
	}

	.city-info-content {
	    position: absolute;
	    top: 150px;
	    left: 50%;
	    transform: translateX(-50%);
	}

}

.rate-group{
    background: rgba(var(--accent) / 100%);
}

.rate-group .title{
    color: var(--accent-text-color);
}

.the-rv-rates {
    background: #fff;
    text-transform: uppercase;
}

.rv-rate {
    border-bottom: 1px solid hsl(0deg 0% 0% / 25%);
}

.rv-rate:last-of-type {
    border-bottom: none;
}

.rv-rates__note {
    color: var(--secondary-text-color);
}

.form-container {
    background: #ebf1f4;
}

.featured-amenity-icon{
    padding: 1rem;
    display: flex;
}

.featured-amenity-icon svg{
    max-width: 100px;
    margin: auto;
    width: 100%;
}

.fali-img {
    height: 280px;
    object-fit: cover;
    width: 100%;
}

.featured-amenity-icon .st0,
.featured-amenity-icon .st1,
.fali-icon .st0,
.fali-icon .st1{
    fill: rgba(var(--primary) / 100%) !important;
}


.amenity-gallery-img{
	max-width: 800px;
	height: 450px;
	padding: 0 1rem;
}

.amenity-gallery-img img{
	border-radius: 2rem;
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.featured-amenities-title-head{
    border-bottom: 2px solid rgba(var(--primary) / 100%);
}

.featured-amenities {
    margin: 2em auto;
    background: #0f0971;
}



@media(min-width: 960px){
    .explore__amenities-list {
        column-count: 2;
    }
}

@media(min-width: 1200px){
    .explore__amenities-list {
        column-count: 3;
    }
}

.amenity-icon {
    width: 40px;
}


.explore__amenities-list li{
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.explore__amenities-list li img {
    margin-right: .5em;
}

@media(min-width: 960px){
	.explore__container {
		display: flex;
		flex-direction: row-reverse;
	}
	
	.explore__box {
		width: 50%;
	}
}

.fali-icon {
    position: absolute;
    z-index: 1;
    width: 150px;
    height: 150px;
    border-radius: 100px;
    background: #fff;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px dashed rgba(var(--primary) / 100%);
    display: flex;
}

.fali-icon svg{
    max-width: 75px;
    margin: auto;
    width: 100%;
}

.favorite-spot-img {
    height: 265px;
    object-fit: cover;
    width: 100%;
    margin: 1rem auto;
}

.whats-happening-img:before {
    content: "";
    background-color: hsl(0deg 0% 0% / 50%);
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 30px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
}

.contact-icon svg {
    max-width: 30px;
    margin: auto;
    width: 100%;
}

.contact-icon svg path{
    fill: #fff;
}

.campshot-logo {
    max-width: 110px;
    margin: 10px;
}

#footer {
    background: #f6f6f6;
}

#footer a,
#contact-info a{
    color: #212529;
}

.footer-logo {
    width: 100%;
    height: auto;
    max-width: 200px;
}

.social-icon {
    height: 40px;
    width: 40px;
    background: rgba(var(--primary) / 100%);
    border-radius: 50px;
    padding: 4px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.social-icons svg {
    height: 20px;
    width: 20px;
    fill: var(--primary-text-color);
}

.footer-contact-icon {
    display: flex;
    gap: 10px;
}

.footer-contact-icon svg{
    height: 20px;
    width: 20px;
    fill:  rgba(var(--primary) / 100%);
    top: 5px;
    position: relative;
}

.amenity-gallery button.slick-prev.slick-arrow {
    background: url(./images/slider-arrow-prev.svg) no-repeat center / cover;
    background-color: rgba(var(--primary) / 100%);
    width: 50px;
    height: 50px;
    left: 40%;
    right: 5rem;
    top: auto;
    bottom: 3.5rem;
    z-index: 9999;
    transform: translatex(-50%);
    border-radius: 50px;
}

.amenity-gallery button.slick-next.slick-arrow {
    background: url(./images/slider-arrow-next.svg) no-repeat center / cover;
    background-color: rgba(var(--primary) / 100%);
    width: 50px;
    height: 50px;
    right: 30%;
    top: auto;
    bottom: 3.5rem;
    z-index: 9999;
    transform: translateX(-50%);
    border-radius: 50px;
}

@media(min-width: 992px){
    .amenity-gallery button.slick-next.slick-arrow{
        right: 43%;
    }

    .amenity-gallery button.slick-prev.slick-arrow{
        left: 47%;
    }

}

#favorite-spots button.slick-prev.slick-arrow {
    background: url(./images/slider-arrow-prev.svg) no-repeat center / cover;
    background-color: rgba(var(--primary) / 100%);
    width: 50px;
    height: 50px;
    left: 10px;
    top: 150px;
    bottom: 0;
    z-index: 9999;
    border-radius: 50px;
}

#favorite-spots button.slick-next.slick-arrow {
    background: url(./images/slider-arrow-next.svg) no-repeat center / cover;
    background-color: rgba(var(--primary) / 100%);
    width: 50px;
    height: 50px;
    right: 10px;
    top: 150px;
    bottom: 0;
    z-index: 9999;
    border-radius: 50px;
}

@media(min-width: 992px){
    #favorite-spots button.slick-next.slick-arrow{
        right: 37%;
        bottom: -40px;
        top: auto;
        transform: translateX(-50%);
    }

    #favorite-spots button.slick-prev.slick-arrow{
        left: 46%;
        bottom: -40px;
        top: auto;
        transform: translateX(-50%);
    }

}

.slick-next:before,
.slick-prev:before {
    display: none;
}

/*.things-to-do li{
    list-style: none;
    position: relative;
}

.things-to-do li:before {
    content: "";
    background: url(./images/list-bullet.svg) no-repeat center / cover;
    background-color: rgba(var(--primary) / 100%);
    display: inline-block;
    position: absolute;
    top: 5px;
    height: 20px;
    width: 20px;
    left: -30px;
    border-radius: 50px;
}*/


.rvs-collage {
    width: 100%;
    max-width: 636px;
    height: 606px;
    position: relative;
}

.rvs-collage .first-image-wrap {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    max-height: 470px;
    max-width: 470px;
    height: 100%;
    z-index: 2;
}

.rvs-collage-img.first-image {
    border-radius: 100px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 4;
}

@media(min-width: 450px){

    .rvs-collage-img.first-image {
        border-radius: 100%;
    }
}

@media(min-width: 768px){

    .rvs-collage .first-image-wrap:before {
        content: "";
        display: block;
        width: 150px;
        height: 150px;
        background-color: rgba(var(--primary) / 80%);
        position: absolute;
        top: 20%;
        right: -100px;
        border-radius: 100%;
    }

    .rvs-collage .first-image-wrap:after {
        content: "";
        display: block;
        width: 150px;
        height: 150px;
        background-color: rgba(var(--accent) / 40%);
        position: absolute;
        bottom: -100px;
        left: 30%;
        border-radius: 100%;
    }

}
   

.rvs-collage-img.second-image {
    right: 0;
    bottom: 0;
    position: absolute;
    border-radius: 100px 0 100px 0;
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    z-index: 3;
}

.optional-logo{
    max-width: 300px;
}

.wn-image-collage{
    display: flex;
    flex-wrap: wrap;
}


img.wn-image-collage-img {
    height: 218px;
    object-fit: cover;
    max-width: 100%;
    display: inline-block;
}

img.wn-image-collage-img.first-image{
    border-radius: 4rem 0 0 0;
}

img.wn-image-collage-img.second-image{
    border-radius: 0 4rem 0 0;
}

img.wn-image-collage-img.third-image{
    border-radius: 0 0 0 4rem;
} 
img.wn-image-collage-img.last-image{
    border-radius: 0 0 4rem 0;
}


@media(min-width: 1200px){

    img.wn-image-collage-img {
        width: 250px;
    }

}
    

@media(min-width: 1440px){

    img.wn-image-collage-img {
        height: 262px;
        width: 300px;
        padding: 12px;
    }

    img.wn-image-collage-img.first-image,
    img.wn-image-collage-img.second-image,
    img.wn-image-collage-img.third-image,
    img.wn-image-collage-img.last-image{
        border-radius: 3rem;
    }

    .wn-image-collage{
        position: absolute;
        right: 0;
        display: block;
    }

    img.wn-image-collage-img.first-image{
        width: 479px;
        height: 417px;
        display: block;
    }

    img.wn-image-collage-img.last-image{
        position: absolute;
        left: -300px;
        top: 45%;
    }

    img.wn-image-collage-img.third-image{
        border-radius: 3rem 0 0 3rem;
        padding-right: 0;
    }
}


.special:nth-of-type(odd) {
    background: #ebf1f4;
}

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


.view-all-communites {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    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;
    z-index: 999999;
}

.all-communities-icon {
    background: rgba(var(--primary) / 100%);
    width: 70px;
    border-radius: 50px;
    height: 70px;
    width: 70px;
}

#footer .view-all-communites a {
    color: var(--primary-text-color);
}

.view-all-communites:hover .all-communities-icon {
    transform: scale(1.1);
}

.all-communities-title {
    background: rgba(var(--primary) / 100%);
    color: var(--primary-text-color);
    padding: .5em;
    opacity: 0;
    visibility: hidden;
    -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;
}

.view-all-communites:hover .all-communities-title {
    opacity: 1;
    visibility: visible;
}

/*==================
 Gravity Form Styles
 ==================*/

.gform_wrapper.gravity-theme input,
.gform_wrapper.gravity-theme select  {
    border-radius: 50px;
    border: transparent;
}

.gform_wrapper.gravity-theme .gfield textarea {
    border-radius: 20px;
    border: transparent;
}

input[type=submit] {
    margin: auto;
    display: block;
    padding: .5em 1.5em;
    background: rgba(var(--primary) / 100%);
    border-radius: 50px;
    color: var(--primary-text-color);
    font-weight: 700;
}

.form-wrap input[type=submit] {
    background: #fff;
    color: rgba(var(--primary) / 100%);
}

div.gform_wrapper.gravity-theme .gfield_required {
    color: inherit;
    font-weight: bolder;
}


/*==================
 Nearby Places Styles
 ==================*/

div#nearbyplaces {
    border-radius: 2rem;
}

.nearbyplaces-map__map.npm-column {
    max-width: 100%;
    flex: 0 0 100%;
}

.nearbyplaces-map__menu.npm-column {
    max-width: 100%;
    flex: 0 0 100%;
    height: auto !important;
    background: transparent !important;
    margin: 2rem auto;
}

div.nearbyplaces-map__menu .nearbyplaces-map__menu-item {
    flex: 0 0 10em !important;
    font-size: 1em;
    color: #212529;
    border-bottom: none;
    border-radius: 50px;
    padding: 20px;
    height: auto;
    vertical-align: middle;
    position: relative;
    margin: 10px;
    background: #fff;
}

div.nearbyplaces-map__menu .nearbyplaces-map__menu-item>.inner{
    transform: translateY(0);
    text-align: center;
}

div.nearbyplaces-map__menu .nearbyplaces-map__menu-item.is-active,
div.nearbyplaces-map__menu .nearbyplaces-map__menu-item:hover,
div.nearbyplaces-map__menu .nearbyplaces-map__menu-item:focus {
    background: rgba(var(--primary) / 100%);
    color: #fff;
}


@media(min-width: 992px){
    .nearbyplaces-map__map.npm-column {
        order: 1;
    }

    div.nearbyplaces-map__menu .nearbyplaces-map__menu-item.is-active:after {
        content: " ";
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border: 20px solid transparent;
        border-top: 20px solid rgba(var(--primary) / 100%);
    }
}


