/* Defaults */
:root{
    --bg-color: #111111;
    --blue: #004F6E;
    --orange: #C06D28;
    --dark-gray: #2c3033;
    --extra-dark-gray: #111111;
    --accent-color: #919288;
    --accent-color-darker: #7c786e;
    --accent-color-transparent: rgb(156 151 138 / 90%);
    --serif-font: "Yeseva One";
    --sans-serif-font: "Open Sans";
    --purple: #3E2B37;
}

html{
  scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
    font-weight: 300;
}

body, p {
    font-family: var(--sans-serif-font), sans-serif;
    letter-spacing: -0.2px;
    font-size: 17px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif-font), sans-serif;
    font-weight: 300;
    letter-spacing: 0;
    margin-bottom: 1.5rem;
}

.h1, h1 {
    font-size: 3.4rem;
}

a {
    color: var(--accent-color);
}

a:hover {
    color: var(--dark-gray);
}

@media (max-width: 768px) {
    .h1, h1 {
        font-size: 2.4rem;
    }
}

ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

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

a{
  cursor: pointer !important;
  transition: all 0.3s;
}

a:hover{
  text-decoration: none;
}

/* Header Nav */
.home-header {
    width: 100%;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px 0;
    position: absolute;
    z-index: 9999;
}

.home-header .logo {
    display: none;
}

.home-header .logo img {
    max-width: 250px;
}

.left-header,
.right-header {
    display: flex;
    gap: 35px;
    align-items: center;
}

.right-header {
    justify-content: flex-end;
}

.page-id-3923 .inner_menu {
    height: 130px;
    display: flex;
    align-items: center;
}

.inner_menu .left-header {
    top: 10px;
}

.home-header ul,
.inner_menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.home-header ul li a,
.inner_menu ul li a {
    color: #fff!important;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 15px;
}

.inner_menu_nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.home-header a:hover,
.inner_menu a:hover {
    color: var(--accent-color);
}

.home-header .menu-toggle {
    display: none;
}

@media (max-width: 768px) {

    .home-header {
        justify-content: space-between;
    }

    .home-header .logo {
        display: block;
    }

    .home-header .menu-toggle {
        display: flex;
    }

    .home-header ul.menu {
        display: none;
    }
}

@media (max-width: 960px) {
    .right-header ul {
        display: none;
    }
}

.phone-number a {
    letter-spacing: 1px;
    color: #fff;
}

@media (max-width: 960px) {
    .phone-number a::before {
        content: "";
        width: 28px;
        height: 28px;
        background: url('../img/phone-icon.svg');
        display: block;
    }

    .phone-number a span {
        display: none;
    }
}

/* Menu Toggle */
.menu-toggle {
    flex-shrink: 0;
    display: inline-block;
    width: 30px; /* slightly smaller */
    height: 20px; /* reduced height for tighter layout */
    cursor: pointer;
    position: relative;
}

.menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 9px;
    width: 85%;
}

.menu-toggle span:nth-child(3) {
    bottom: 0;
}

/* Hover effect */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle:hover span:nth-child(2) {
    width: 100%;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

/**
 * Hero
 */
.section-hero {
    position: relative;
    z-index: 9;
}
.hero {
    background-position: center;
    background-size: cover;
    height: 80vh;
    display: flex;
    align-items: flex-end;
}

.hero h1 {
    font-size: 100px;
    color: #fff;
    margin-bottom: -70px;
    margin-left: 50px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
        margin-bottom: -30px;
        margin-left: 20px;
    }
}

/* Modal */
.modal_form{}
.modal_form .contact-field{
    margin: 10px 0;
    position: relative;
}
.form_field_icon{
    position: absolute;
    top: 12px;
    right: 20px;
}
.modal_form .wpcf7-response-output{
    display: none !important;
}
.modal_form .contact-field span.wpcf7-form-control-wrap{
    position: relative;
    display: block;
}
.modal_form .contact-field .wpcf7-not-valid-tip{
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 50px;
    line-height: 50px;
}
.modal_form input, .modal_form textarea, .modal_form select{
    width: 100%;
    font-size: 16px;
    padding: 10px 15px;
    -webkit-appearance: none;
    background: #fff;
    border: 1px solid #e5e5e5;
    outline: none;
    transition: all 0.3s;
    margin: 0;
    border-radius: 0;
}
.modal_form input:focus, .modal_form textarea:focus{
    border-color: #2a2d33;
}
.modal_form textarea{
    height: 150px;
}
.modal_form input.wpcf7-submit{
    background: #eeaa00;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 21px;
    padding: 15px 40px;
    display: inline-block;
    line-height: 21px;
    border-radius: 4px;
    transition: all ease 0.5s;
    border: none;
}
.modal_form input.wpcf7-submit:hover{
    background: #2a2d33;
    text-decoration: none;
}
.modal_form .contact-field .ajax-loader{
    position: absolute;
    top: 18px;
    left: 8px;
}

p:last-child{
    margin-bottom: 0;
}

.cover{
    background-size: cover !important;
    background-position: center !important;
}

.home_header {
	position: relative;
    height: 100vh;
}

.header_video {
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.home_header_menu {
    text-align: center;
	height: 150px;
	display: flex;
	align-items: center;
}

.home_header_menu ul {}

.home_header_menu ul li {
    display: inline-block;
    margin: 0 10px;
}

.home_header_menu ul li a,
.inner_menu_nav ul li a {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1.5px;
    font-weight: 300;
    font-size: 14px;
	font-family: var(--sans-serif-font)
}

.home_header_menu ul li a:hover {
    color: var(--accent-color);
}

.home_header_content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home_header_content_logo img {
    max-width: 700px;
}

.home_header_inner {
	height: 99%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 13%, rgba(0, 0, 0, 0.2) 50%, transparent 70%);
    position: relative;
}
.two_column_box_inner {
    background: var(--accent-color);
    padding: 100px 60px;
}
.home .section_2 .two_column_box_inner{

}
.two_column_box_image {
    padding-left: 50px;
}

.two_column_box_content {
    color: #fff;
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto;
}

.two_column_box_content h2 {
    font-family: var(--serif-font), sans-serif;
    font-size: 40px;
	line-height: 1.3;
    margin-bottom: 20px;
    color: #fff;
}

.two_column_box_content p {
    line-height: 28px;
}

.two_column_box_content p a,
.parallax_content_box_content p a {
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid #fff;
    padding: 7px 60px;
    font-size: 12px;
    margin: 10px 8px 0 0;
	font-family: var(--sans-serif-font);
	letter-spacing: 2px;
}

.two_column_box_content p a:hover, .floorplan_modal .main-button:hover {
    background: var(--accent-color);
    color: #fff;
}

body.home .two_column_box_content p a:hover, .floorplan_modal .main-button:hover {
    background: #fff;
    color: var(--accent-color);
}

.three_col_box_item_content {
    height: calc(100vw / 3 + 150px);
    display: flex;
    background: rgb(0 0 0 / 10%);
}

.three_col_box_item:hover {
    background-size: 120% !important;
    transition: all 0.5s;
}

.three_col_box_item {
    transition: all 0.2s;
    background-size: 110% !important;
    padding: 0;
}

.three_col_box_item_content_inner {
    width: 100%;
    margin-top: auto;
    padding: 40px 40px;
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1.3;
    transition: all 0.3s;
	font-family: var(--sans-serif-font);
}
.three_col_box_item_content_inner {
    background: linear-gradient(0, rgba(0,0,0,0.7) 5%, rgba(0,0,0,0.4) 30%, transparent 80%);
}
.three_col_box_inner .row {
    margin: 0;
}

.three_col_box_item:hover .three_col_box_item_content_inner {
    padding-bottom: 60px;
}
.home .cta_box_inner{
    /* background: url(../img/cta-logo.png); */
}

.cta_box_inner .container {
    max-width: 840px;
}

.cta_box {
    background: var(--dark-gray);
    color: #fff;
    text-align: center;
    padding: 20px;
}

.cta_box_inner,.home .cta_box_inner {
    background-size: contain !important;
    background-repeat: no-repeat;
    padding: 100px 0;
    background-position: center;
}
.page-id-10 .cta_box_inner{
    background: initial;
}
.cta_box_inner h2 {
    font-family: var(--serif-font);
    font-size: 40px;
	line-height: 1.3;
}
.parallax_content_box {
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    min-height: 600px;
}

@supports (-webkit-overflow-scrolling: touch) {
    .parallax_content_box {
        background-attachment: scroll !important;
    }
}

.home .parallax_content_box{
	min-height:initial;
}
.parallax_content_box_inner {
    padding: 160px 90px;
    display: flex;
}

@media (max-width: 960px) {
    .parallax_content_box_inner {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.hero-parallax {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero_content_box_content {
    max-width: 680px;
    padding: 0 30px 20px;
    color: #fff;
    text-align: center;
}

.hero_content_box_inner {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 120px;
    background: linear-gradient(0deg, rgb(0 0 0 / .9) 0%, rgb(0 0 0 / .2) 70%, transparent);
}

.parallax_content_box_content {
    width: 620px;
    max-width: 100%;
    background: rgb(145 146 136 / 85%);
    color: #fff;
    padding: 80px 60px;
    margin-left: auto;
}
.parallax_content_box_content h2 {
    font-family: var(--serif-font), sans-serif;
    font-size: 40px;
    margin-bottom: 20px;
	line-height: 1.3;
}

.parallax_content_box_content p {
    line-height: 26px;
    font-weight: 300;
    font-size: 16px;
}

video#background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.page-id-10 video#background-video{
/* 	transform: rotateY(180deg); */
}
.footer {
    background: var(--bg-color);
    color: #fff;
    padding: 80px 80px;
    position: relative;
}

/* .footer::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(https://media.istockphoto.com/id/1341467515/photo/background-marble-black-total-texture-abstract-luxury-onyx-pattern-splashing-reflection.jpg?s=2048x2048&w=is&k=20&c=xTbxP1BEDG0qhZSArSGWz5aAicCsVluRWpcFh0lNBU4=);
    background-size: 766px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: black;
    opacity: 0.4;
} */

.footer_content {
    padding: 60px 0 150px;
}

.footer-logos {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer-logos {
        justify-content: center;
        gap: 10px;
    }
}

.footer-logos > div {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-logos span {
    font-family: var(--serif-font);
    opacity: 0.6;
    font-size: 14px;
}

.footer-logos img { 
    width: 150px;
}

.footer-logos > div:nth-child(1) img {
    filter: invert(1) brightness(100);
}

.footer_content_btns {}

.footer_content_btns h2 {
    font-family: var(--serif-font);
    font-size: 44px;
    margin-bottom: 40px;
}

.footer_content_btns p a, .main-button {
    display: inline-block!important;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid #fff;
    padding: 10px 60px;
    font-size: 12px;
    margin-right: 15px;
    letter-spacing: 2px;
	font-family: var(--sans-serif-font);
}

.footer_content_btns p a:hover {
    background: var(--accent-color);
}

.footer_content_contact {
    text-align: center;
    display: inline-block;
}

.footer_content_contact a {
    color: #fff;
}

.footer_content_contact p {
    margin-bottom: 15px;
}

.footer_content_contact p img {
    max-width: 240px;
    margin-bottom: 20px;
}



.footer_social a {
    color: #fff;
    margin: 0 4px;
}
.footer_social a:hover {
    color: #aa8066;
}

.drawer_menu .footer_social a {
    margin: 0 10px;
}

.drawer_menu .footer_social.menu-social a:hover {
    color: #fff;
}

.footer_menu ul {}

.footer_menu ul li {
    display: inline-block;
    margin-right: 20px;
}

.footer_menu ul li a {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 300;
    font-size: 14px;
	font-family: var(--sans-serif-font);
}

.footer_menu ul li a:hover {
    color: var(--accent-color);
}
.footer_links {
    margin-top: 30px;
    margin-bottom: 30px;
}

.footer_links ul li a {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

.footer_links ul {}

.footer_links ul li {
    display: inline-block;
}

@media (max-width: 768px) {
    .footer_links ul {
        text-align: center;
    }
}

.footer_copyright_menu li {
    margin-right: 10px;
}

.footer_menu ul li a {
    opacity: 0.7;
}

.footer_links ul li.current-menu-item a, .footer_links ul li a:hover {
    opacity: 1;
    color: #fff;
}

.footer_links ul li a {
    opacity: 0.7;
	font-family: var(--serif-font);
	font-weight: normal;
}

.footer_menu ul li.current-menu-item a, .footer_menu ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-copyright_details {
    text-align: right;
}

.footer-copyright_details li {
    margin-left: 20px;
}

.footer-copyright_details li img {
    width: 50px;
    opacity: 0.8;
}

.inner_menu {
    width: 100%;
    position: absolute;
    background: transparent;
    padding: 0 50px;
    z-index: 9999;
}

@media (max-width: 768px) {
    .inner_menu {
        padding: 0 20px;
    }
}

.sticky_menu .inner_menu {
    background-color: var(--extra-dark-gray);
    transition: background-color .2s ease;
    transition-delay: 0s; /* explicit for clarity */
    position: relative;
}

body.showdrawermenu .sticky_menu .inner_menu {
    background-color: transparent;
    transition-delay: 0.2s;
}

.header_logo {}

.header_logo {
    color: #fff;
    padding: 12px 0;
}

.header_logo img {
    max-width: 250px;
}

.page-id-3923 .header_logo img {
    max-width: 250px;
}

@media (max-width: 768px) {
    .header_logo img {
        max-width: 70px;
    }
}

.inner_menu_nav {
    text-align: right;
}

.inner_menu_nav ul {
	font-family: var(--sans-serif-font);
}

.inner_menu_nav ul li {
    display: inline-block;
    margin-left: 25px;
}


.inner_menu_nav ul li a:hover, .inner_menu_nav ul li.current-menu-item a {
    color: var(--accent-color);
    opacity: 1;
}
.content_background_rose .parallax_content_box_content {
    background: var(--accent-color-transparent);
}
.two_column_box.two_column_box_image_position_right.two_column_box_image_margin_1 .two_column_box_inner {
    padding-right: 0;
}

.two_column_box_content {color: #fff;}

.two_column_box_content p strong {color: #fff;}

.two_column_box_content h3 {
    margin-top: 40px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.two_column_box_content ul {
    list-style: disc;
    margin-left: 15px;
}

.two_column_box_content ul li {
    margin-bottom: 15px;
	line-height: 22px;
}
.two_column_box_content ul.amenities-list li {
    margin-bottom: 10px;
}
.main {
    width: 100vw;
    overflow-x: hidden;
}
.two_column_box.two_column_box_image_position_left.two_column_box_image_margin_1 .two_column_box_inner {
    padding-left: 0;
}

.two_column_box.two_column_box_image_position_left .two_column_box_content_col {
    order: 2;
}

.two_column_box.two_column_box_image_position_left .two_column_box_image_col {
    order: 1;
}

.two_column_box.two_column_box_image_position_left .two_column_box_image {
    padding-left: 0;
    padding-right: 50px;
}
.two_column_box_image img {
    max-width: 100%;
	width: 100%;
}
.gallery_section {
    background: var(--dark-gray);
    color: #fff;
    padding: 70px 0;
	min-height:950px;
}
@media(min-width:1200px){
	.gallery_section .container{
		max-width:85%;
	}
}
.gallery_filter {
    margin-bottom: 70px;
}

.gallery_filter ul {
    text-align: center;
}

.gallery_filter ul li {
    display: inline-block;
    cursor: pointer;
    color: #fff;
    opacity: 0.7;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin: 0 20px;
    border-bottom: 1px solid transparent;
    padding: 2px 0;
	font-family: var(--sans-serif-font);
    transition: all 0.2s;
}

.gallery_filter ul li.active {
    color: var(--accent-color);
    border-color: var(--accent-color);
    opacity: 1;
}

.gallery_box {
    display: none;
}

.gallery_box.active {
    display: block;
}

.gallery_box_video {
    position: relative;
}

.gallery_box_video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery_filter ul li:hover {
    color: var(--accent-color);
    opacity: 1;
}

.gallery_box_gallery {}

.gallery_box_gallery ul {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-gap: 15px;
}

.gallery_box_gallery ul li {}

.gallery_box_gallery ul li a {
    height: 230px;
    width: 100%;
    display: block;
}

.gallery_tours .gallery_box_gallery iframe {
    width: 100%!important;
    aspect-ratio: 16/9!important;
}

.gallery_tours .video-tours.row > div {
    margin-bottom: 30px;
}

#map{
    height: 750px;
}

@media (max-width: 768px) {
    #map {
        max-height: 50vh;
    }
}

.map_section_title {
    background: var(--accent-color);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.map_section_title h2 {
    margin: 0;
    font-family: var(--serif-font), sans-serif;
    font-size: 40px;
    letter-spacing: 2px;
}
.neighborhood_features {
    background: var(--accent-color);
    color: #fff;
    padding: 110px 90px;
}

.neighborhood_features_title {
    margin-bottom: 50px;
}

.neighborhood_features_title h2 {
    margin: 0;
    font-family: var(--sans-serif-font), sans-serif;
    text-transform: uppercase;
    font-size: 40px;
    letter-spacing: 2px;
}

.neighborhood_features_list_item {
    padding-right: 15px;
    color: rgb();
    font-weight: 300;
}

.neighborhood_features_list_item h3 {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.neighborhood_features_list_item ul {
    list-style: auto;
    margin-left: 15px;
}

.neighborhood_features_list_item ul li {
    font-size: 15px;
    margin-bottom: 14px;
}
.neighborhood_features_list_item ul li a{
	color: #fff;
}
.neighborhood_features_list_item ul li a:hover {
    text-decoration: underline;
    font-size: 17px;
}
.sticky_menu_trigger {
    font-weight: 300;
    font-size: 14px;
    background: transparent;
    color: #fff;
    border: 0;
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none !important;
}

.sticky_menu_trigger i {
    font-size: 18px;
}

.sticky_menu_trigger span {
    margin-right: 10px;
    border-right: 1px solid #fff;
    padding: 3px 10px 3px 0;
	letter-spacing: 2px;
}

.sticky_menu {
    position: fixed;
    width: 100%;
    left: 0;
    top: -150%;
    z-index: 9999;
    transition: all 0.5s;
}

body.stickyheader .sticky_menu {
    top: 0;
}

@media (max-height: 1000px) {
    .sticky_menu .header_logo img {
        max-width: 250px;
    }
}

.drawer_menu {
    background: #111;
    position: fixed;
    left: 0;
    top: -150%;
    width: 100%;
    height: 100%;
    z-index: 99;
    transition: all 0.5s;
    overflow: scroll;
}

.drawer_menu .header_logo {
    display: none;
}

.drawer_menu_inner {
    padding: 30px 50px;
    height: 100%;
    background-size: 130px;
    background-repeat: no-repeat;
    background-position: center 20px;
}
@media(max-width: 1280px){
	.drawer_menu_inner {
    background-size: 80px;
    }
}
.drawer_menu_inner .container-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.drawer_menu_nav {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	flex-direction: column;
    padding-bottom: 40px;
    gap: 30px;
}

.drawer_menu_nav ul { 
font-family: var(--sans-serif-font)
}

.drawer_menu_nav ul li a {
    display: block;
    color: #fff;
	font-size: 22px;
    line-height: 1.8;
    font-size: 40px;
    font-family: var(--serif-font);
}

.drawer_menu_nav ul:hover li a {
    color: rgba(255 255 255 / 0.2);
}

.drawer_menu_nav ul li:hover a {
    color: #fff;
}
body.showdrawermenu .drawer_menu {
    top: 0;
}

body.showdrawermenu {
    overflow: hidden;
}

span.drawer_menu_header_close_trigger {
    cursor: pointer;
    color: #fff;
    font-weight: 300;
    font-size: 30px;
    font-family: var(--sans-serif-font);
}
.lightboxOverlay {
    z-index: 9999999 !important;
}

.lightbox {
    z-index: 10000000 !important;
}
.gallery_box_video_cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 70%);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    cursor: pointer;
    backdrop-filter: blur(25px);
}

.gallery_box_video_cover i {
    color: rgb(255 255 255 / 75%);
}
@media (min-width: 1200px){
    .page-id-14 .container {
	    max-width: 1300px;
	}
}
.floorplans_section {
    background: var(--dark-gray);
    background-image: url('../img/bg-pattern-wavy-dark.png');
    background-repeat: repeat-x;
    background-position: top center;
    color: var(--dark-gray);
    text-align: center;
    padding: 100px 0 60px;
    position: relative;
}

.floorplans_section_filter {
    margin-bottom: 30px;
}

.floorplans_section_filter::after {
    content: "";
    width: 200px;
    height: 1px;
    background: #707070;
    display: block;
    margin: 10px auto 0;
}

.filter_box {}

.filter_box ul {}

.filter_box ul li {
    display: inline-block;
    text-transform: uppercase;
    margin: 0 50px;
    font-size: 14px;
    letter-spacing: 2px;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    padding-bottom: 3px;
	font-family: var(--sans-serif-font);
	font-weight:800;
}
.filter_box ul li a{
	color: #fff;
}
.floorplans_header .filter_box ul li {
    opacity: 0.7;
}
.filter_box ul li.active {
	border-color: #B2B2B2;
}
.filter_box ul li.active, .filter_box ul li:hover {
    color: var(--accent-color);
    font-weight: 800;
}
.page-id-14 .filter_box ul li span.doubleOh, .page-id-14 .filter_box ul li span.doubleOh
.page-id-10 .gallery_filter ul li span.doubleOh, .page-id-10 .gallery_filter ul li span.doubleOh{
	position: relative;
    left: 7px;
    margin-right: 6px;
}
#floorplans {
    position: absolute;
    top: -100px;
}
.floorplans_section_filter .filter_box {
    margin-bottom: 30px;
}

.floorplans_header {
    margin-bottom: 50px;
}

.floorplan_plan_item_inner {
    margin-bottom: 30px;
    background: #fff;
}

.floorplan_plan_item_image {
    background-size: auto 240px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    margin-bottom: 20px;
    padding-top: 15px;
    height: 280px;
    position: relative;
    background-color: #fff!important;
}

.floorplan_plan_item_inner h2 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 25px;
}

.floorplan_plan_item_inner p {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
    overflow: auto;
}

.floorplan_plan_item_inner p span {
    border-right: 1px solid rgb(0 0 0 / 20%);
    margin-right: 10px;
    padding-right: 10px;
	padding-top: 2px;
    padding-bottom: 2px;
	font-family: var(--sans-serif-font);
}

.floorplan_plan_item_inner p span:last-child {
    border: 0;
    padding: 0;
    margin: 0;
}

.floorplan_plan_item_inner .btn {
    background: var(--accent-color);
    color: #fff;
    border-radius: 0;
    margin-top: 10px;
    padding: 1rem;
    display: block;
    width: 100%;
}

.floorplan_plan_item_inner .btn:hover {
    background: var(--accent-color-darker);
}

.floorplan_plan_item_image_cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floorplan_plan_item_image_cover a {
    height: 100%;
    width: 100%;
    background: var(--accent-color-transparent);
    opacity: 0;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.floorplan_plan_item_image_cover a:hover {
    border: 0;
    opacity: 1;
}

.floorplan_modal {
    background: var(--dark-gray);
    z-index: 9999999;
}

.modal-dialog {
    max-width: 880px;
    background: transparent;
}

.page-id-14 .modal-dialog {
    max-width: 1400px;
}

.modal-content {
    background: transparent;
    border: 0;
    color: #fff;
}

button.close {
    position: fixed;
    top: 20px;
    right: 20px;
    text-shadow: none;
    color: #fff;
    font-weight: 300;
    font-family: var(--sans-serif-font);
    opacity: 1;
    transition: all 0.3s;
}

.floorplan_modal_content_details {}

.floorplan_modal_content_details h2 {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 22px;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.floorplan_modal_content_details p {
    font-weight: 300;
    margin-bottom: 0;
	letter-spacing: 1px;
}

.floorplan_modal_content_divider {
    margin: 35px 0;
    height: 1px;
    background: #fff;
    max-width: 200px;
}

.floorplan_modal_content_details h3 {
    font-weight: 300;
    font-size: 22px;
    margin-bottom: 10px;
}

.floorplan_modal_content_details ul {
    list-style: disc;
    padding-left: 17px;
}

.floorplan_modal_content_details ul li {
    font-weight: 300 !important;
    margin-bottom: 7px;
	line-height: 25px;
}

.floorplan_modal_content_details_links {}

.floorplan_modal_content_details_links a {
    color: #fff;
    font-size: 12px;
    margin-bottom: 15px;
    display: block;
	font-family: var(--sans-serif-font);
}
.floorplan_modal_content_details_links a.main-button {
    display: block!important;
    text-align: center;
    max-width: 70%;
}

.contact_section {
    background: var(--accent-color); 
    color: #fff;
    padding: 80px 0;
    position: relative;
}

.contact_section .container {
    position: relative;
    z-index: 1;
}

.contact_section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(/wp-content/uploads/2025/11/subscribe_bg.jpg);
    background-position: center;
    background-repeat: repeat;
    background-blend-mode: multiply;
    opacity: 0.3;
}

.contact_section_header {
    margin-bottom: 50px;
    text-align: center;
}

.contact_section_header h2 {
    font-size: 44px;
    font-weight: normal;
    text-align: center;
	line-height:1.3;
    margin: 0;
}

.contact_field {
    padding: 15px;
    display: block;
}

.contact_field br {
    display: none;
}

.contact_field input, .contact_field textarea, .contact_field select {
    width: 100%;
    border: 0;
    padding: 10px 15px;
}

.contact_field label {
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact_field textarea {
    height: 250px;
}

.submit_field {
    text-align: center;
    margin-top: 20px;
}

.submit_field input {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 70px;
    display: inline-block;
    transition: all 0.3s;
	font-family: var(--sans-serif-font);
}

.submit_field input:hover {
    background: rgb(0 0 0 / 10%);
}

.contact_section_contact {
    max-width: 1160px;
    margin: 0 auto;
}

.contact_section_contact_info {
	padding-top:15px;
}

.contact_section_contact_info p {
    margin: 0;
    line-height: 25px;
}

.contact_section_contact_info a {
    color: #fff;
}

.contact_section_contact_info a:hover {
    color: rgb(255 255 255 / 60%);
}

.contact_section_contact_info_basic {
    margin-bottom: 20px;
}

.contact_section_contact_info_social p {
    margin-bottom: 5px;
}

.contact_section_contact_info_social a {
    color: #fff;
    margin-right: 5px;
}

.contact_section_contact_form {
    padding-right: 50px;
}
.wpcf7-not-valid-tip {
    text-transform: uppercase !important;
    font-size: 10px !important;
    margin-top: 8px !important;
    color: #ffff00 !important;
}

body.page-id-160 .cta_box_inner h2,
body.page-id-260 .cta_box_inner h2 {
    margin-bottom: 20px;
}

body.page-id-160 .cta_box_inner p,
body.page-id-260 .cta_box_inner p{
    max-width: 520px;
    font-weight: 300;
    margin: 0 auto 20px;
}


body.page-id-160 .cta_box_inner
body.page-id-260 .cta_box_inner{
    background: transparent;
    padding-bottom: 150px;
}

body.page-id-160 .cta_box_inner img,
body.page-id-260 .cta_box_inner img{
    width: 180px;
    margin-bottom: 20px;
}
.thank-you-btns {
    align-items: center;
    justify-content: center;
	margin: 50px auto;
}
.thank-you-btns a{
	color: #fff;
    text-transform: uppercase;
    border: 1px solid #fff;
    padding: 10px 20px;
    font-size: 12px;
    margin: 0 25px;
    letter-spacing: 1px;
    font-family: var(--sans-serif-font);
}
.thank-you-btns a:hover {
    background-color: var(--accent-color);
}
.page-id-160 .thank-you-btns + .footer_social.flex.row.justify-content-center a,
.page-id-260 .thank-you-btns + .footer_social.flex.row.justify-content-center a{
    font-size: 25px;
    margin: 0 15px;
}
.page-id-160 .thank-you-btns + .footer_social.flex.row.justify-content-center a:hover,
.page-id-260 .thank-you-btns + .footer_social.flex.row.justify-content-center a:hover{
	color:#fff;
}
.page-id-160 .cta_box_inner
.page-id-260 .cta_box_inner{
	padding-top:60px;
}

.modal-body button.close img {
    width: 25px;
}
.lb-data .lb-details {
    opacity: 0 !important;
}

.lb-dataContainer {
    top: 0 !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
	z-index: 999999 !important;
}

.lb-data .lb-close {
    margin: 10px 10px !important;
    background: url(/wp-content/uploads/2023/03/brown-close.png) !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
	width: 45px !important;
    height: 45px !important;
	opacity: 1 !important;
}

.lightbox .lb-image {
    border: 0 !important;
}

.lb-nav a.lb-next {
    background: url(/wp-content/uploads/2023/03/brown-right.png)  right 50% no-repeat !important;
    background-size: 30px !important;
}

.lb-nav a.lb-prev {
    background: url(/wp-content/uploads/2023/03/brown-left.png) left 50% no-repeat !important;
    background-size: 30px !important;
}
.share_a_friend_modal_content h2 {
    font-weight: normal;
    text-align: center;
    font-size: 40px;
	line-height: 1.2;
    margin-bottom: 30px;
}
.page-id-20 .wpcf7-spinner{
	display:none;
}
.lb-nav {
    width: 100vw !important;
    position: fixed !important;
}

.lb-dataContainer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
}
.lb-nav a {
    opacity: 1 !important;
}
.lightbox .lb-image{
	margin-top:80px;
}
.two_column_box_content ul li strong {
    font-weight: bold;
    font-family: var(--serif-font);
	text-transform: capitalize;
}
.page-id-3 .page_header_inner, 
.page-id-343 .page_header_inner,
.page-id-3966 .page_header_inner {
	margin-top:50px
}
.page-id-3 .container h2,
.page-id-343 .container h2, 
.page-id-3966 .container h2 {
	margin-bottom:50px
}
.page-id-3 .single_page_content,
.page-id-343 .single_page_content,
.page-id-3966 .single_page_content {
    padding: 0 0 100px;
}

.gallery_box_video video {
    width: 100%;
    height: auto;
}
.two_column_box_content h4,

p.tagline {
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 14px;
    font-family: var(--sans-serif-font);
    color: rgb(255 255 255 / 80%);
    margin-bottom: 5px;
}

span.removedoubleo {
    width: 0;
    overflow: hidden;
    position: absolute;
    height: 0;
}
span.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    position: absolute;
    color: #fff !important;
    right: 10px;
    font-size: 10px !important;
    line-height: 10px !important;
    margin: 0 !important;
    bottom: -17px;
    background: #332f21 !important;
    padding: 4px 8px;
    height: 18px;
    border-radius: 0 0 5px 5px;
}

span.wpcf7-form-control-wrap {
    display: block;
}

.contact_field input.wpcf7-not-valid, .contact_field textarea.wpcf7-not-valid, .contact_field select.wpcf7-not-valid {
    border: 2px solid #332f21;
    display: block;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #332f21 !important;
    color: #332f21 !important;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 0;
    border: 1px solid;
}
.contact_field select{
	height: 48px;
}
.mobile_only{
	display: none;
}
.parallax_content_box_image img {
    width: 100%;
    height: auto;
}
.parallax_content_box_image {
	display: none;
}
.page-id-3 h1 {
	line-height: 1.2;	
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* behind page content */
}

/**
 * Floor Plan Filter
 */
.fp-filter {
	margin-bottom: 50px;
}

.fp-filter-form {
	display: flex;
	flex-direction: row;
	gap: 10px;
    justify-content: center;
}

@media (max-width: 600px) {
	.fp-filter-form { 
		flex-wrap: wrap;
	}
}

.fp-filter-form > div {
	display: flex;
	flex-direction: column;
}

.fp-filter-form .select-wrapper {
	border: 0;
	background: none;
	border: 1px solid #fff;
    background: #fff;
	position: relative;
}

.fp-filter-form select {
	background: none;
	border: 0;
	outline: none;
	-webkit-appearance: none;
	position: relative;
	z-index: 1;
	padding: 5px 30px 5px 40px;
	line-height: 34px;
    font-weight: 300;
}

.fp-filter-form .select-wrapper.beds-select-wrapper::before {
	width: 21px;
	height: 21px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 10px;
	content: '';
	-webkit-mask: url(../img/bed.svg) no-repeat 50% 50%;
	mask: url(../img/bed.svg) no-repeat 50% 50%;
	-webkit-mask-size: cover;
	mask-size: cover;
	background-color: #4b4b4b;
}

.fp-filter-form .select-wrapper.baths-select-wrapper::before {
	width: 21px;
	height: 21px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 10px;
	content: '';
	-webkit-mask: url(../img/bath.svg) no-repeat 50% 50%;
	mask: url(../img/bath.svg) no-repeat 50% 50%;
	-webkit-mask-size: cover;
	mask-size: cover;
	background-color: #4b4b4b;
}

.fp-filter-form .select-wrapper::after {
	content: '';
	width: 21px;
	height: 21px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 6px;
	-webkit-mask: url(../img/chevron-down.svg) no-repeat 50% 50%;
	mask: url(../img/chevron-down.svg) no-repeat 50% 50%;
	-webkit-mask-size: cover;
	mask-size: cover;
	background-color: #4b4b4b;
}

.fp-filter-form button,
.fp-filter-form a.btn {
	border: 0;
    border-radius: 0;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 22px;
	padding-right: 22px;
	position: relative;
	transition: all 0.2s;
	background: var(--accent-color);
    font-weight: 300;
}


.fp-filter-form a.btn {
    display: inline-block;
    color: #fff;
    display: flex;
    align-items: center;
    padding-left: 15px;
    background: #46494b;
    border: 1px solid #46494b;
}

.fp-filter-form button:hover,
.fp-filter-form a.btn:hover {
    background: var(--accent-color-darker);
}

.fp-filter-form a.btn:hover {
    border-color: var(--accent-color-darker)!important;
}

.fp-filter-form button span {
	position: relative;
	z-index: 1;
	font-size: 15px;
	color: #fff;
    transition: all 0.2s;
    font-weight: 300;
}

.fp-filter-form button:hover span {
	color: #fff;
}

.fp-filter-form button.clear-filter:hover {
    border-color: var(--accent-color-darker);
    background: var(--accent-color-darker);
}

.fp-filter-form button::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	background: var(--primary-color);
	transition: all 0.2s;
}

.fp-filter-form button:hover::after {
	width: 100%;
}

.fp-filter-form button.clear-filter {
	background: transparent;
	border: 1px solid rgba(255 255 255 / 0.2);
}

.fp-filter-form button.clear-filter span {
	color: #fff;
}

/**
 * Page Specific
 */
.page-id-12 .two_column_box_inner {
    background: var(--dark-gray);
}

.page-id-12 .two_column_box_inner a:hover {
    color: #fff;
}

body.page-id-1438 {
    background: var(--accent-color);
}

.page-id-1438 .main > .container {
    padding-top: 140px;
    color: #fff;
}

.page-id-3 .page_header,
.page-id-343 .page_header,
.page-id-3966 .page_header{
    padding-top: 140px;
}

.page-id-3 .inner_menu,
.page-id-343 .inner_menu,
.page-id-3966 .inner_menu {
    background: var(--extra-dark-gray);
}

.page-id-12 #section_2 .two_column_box_inner {
    background: var(--accent-color);
}

@media (max-width: 768px) {
    .footer {
        padding-top: 80px!important;
        padding-bottom: 80px!important;
    }
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: var(--accent-color)!important;
}

.footer_content_btns p a:hover {
    background: var(--accent-color);
    color: #fff!important;
}

/**
 * Tabs
 */
.nav-tabs {
    margin-bottom: 20px;
    border-bottom: 0;
}
.nav-tabs .nav-link {
    border: 0;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background: none;
    border: 0;
    color: #fff;
    border-bottom: 2px solid #fff;
    transition: color 0.2s;
}

.nav-tabs .nav-item .nav-link:hover {
    color: #fff;
    border-bottom: 2px solid #fff;
}

/**
 * Penthouse Page
 */

body.ph-page h1, body.ph-page h2, body.ph-page h3, body.ph-page h4, body.ph-page h5, body.ph-page h6 {
    font-family: Italiana;
    text-transform: uppercase;
    line-height: 1.1;
    color: #fff;
    display: block;
    letter-spacing: 1px;
}

body.ph-page h2 {
    font-size: 60px;
}

body.ph-page p {
    font-family: Outfit;
    font-size: 22px;
    line-height: 1.6;
    font-weight: 200;
}

/* Hero */
body.ph-page .hero {
    background-attachment: fixed;
}

@webkit-support {
    body.ph-page .hero {
        background-attachment: scroll;
    }
}

body.ph-page .hero h1 {
    font-family: Italiana;
    font-size: 140px;
    text-transform: uppercase;
    line-height: 1;
}

/* Content */
body.ph-page .two_column_box {
    background: var(--purple);
    position: relative;
}

body.ph-page .section_2 .two_column_box::before {
    content: "";
    background-image: url(/wp-content/uploads/2025/11/bg-pattern-shiny.png);
    background-repeat: repeat-x;
    background-color: var(--purple);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
}

body.ph-page .section_4 .two_column_box::before {
    content: "";
    background-image: url(/wp-content/uploads/2025/11/bg-pattern-shiny.png);
    background-repeat: repeat-x;
    background-color: var(--purple);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    transform: rotate(180deg);
    background-position: 0 -150px;
}

body.ph-page .two_column_box_inner {
    background: transparent;
    max-width: 1600px;
    margin: 0 auto;
}

body.ph-page .two_column_box_inner .two_column_box_content {
    margin-top: 80px;
}

body.ph-page .two_column_box_inner {
    padding-top: 0;
    padding-bottom: 0;
}

body.ph-page .section_2 .two_column_box {
    padding-top: 120px;
}

body.ph-page .section_4 .two_column_box_content {
    margin-top: 120px;
    margin-left: 0;
}

body.ph-page .section_4 .two_column_box_image img {
    margin-top: -110px;
}

@media (max-width: 1360px) {
    body.ph-page .section_4 .two_column_box_image img {
        margin-top: -40px;
    }
}

@media (max-width: 1200px) {
    body.ph-page .section_4 .two_column_box_image img {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    body.ph-page .two_column_box_inner .two_column_box_content {
        margin: 50px auto;
    }
}

body.ph-page .section_4 .two_column_box {
    padding-bottom: 100px;
}

body.ph-page .two_column_box_inner .col-md-5,
body.ph-page .two_column_box_inner .col-md-7 {
    flex: 0 0 50%!important;
    max-width: 50%!important;
}

@media (max-width: 768px) {
    body.ph-page .two_column_box_inner .col-md-5,
    body.ph-page .two_column_box_inner .col-md-7 {
        flex: 0 0 100%!important;
        max-width: 100%!important;
    }
}

/* Penthouse Parallax */
body.ph-page .parallax_content_box {
    height: 80vh;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

body.ph-page .parallax_content_box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%);
    z-index: 1;
}

body.ph-page .parallax_content_box_content {
    margin-right: auto;
    margin-left: 0;
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 2;
}

/* Penthouse Features */
#ph-features {
    background: var(--dark-gray);
    color: #fff;
    padding: 100px 0;
}

#ph-features .container {
    padding-left: 1.5rem!important;
    padding-right: 1.5rem!important;
}

#ph-features h2 {
    text-align: center;
}

#ph-features ul {
    margin-left: 20px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    #ph-features ul {
        margin-top: 0;
    }
}

#ph-features ul li {
    list-style: disc;
    padding: 10px 0;
}

/* Penthouse Floor Plans */
body.ph-page .section-floorplans {}

body.ph-page .floorplan_plan_item_details p {
    font-size: 14px;
}

body.ph-page .floorplan_plan_item_details h2 {
    color: var(--purple);
    font-size: 28px;
    font-family: Outfit;
}

/* Penthouse Page Responsive Styles */
@media (max-width: 1200px) {
    body.ph-page .section_2 .two_column_box {
        padding-bottom: 50px;
    }
    body.ph-page .section_3 .two_column_box {
        padding-bottom: 70px;
    }
}

@media (max-width: 768px) {
    body.ph-page .hero h1 {
        font-size: 70px;
    }

    body.ph-page h2 {
        font-size: 40px;
    }

    body.ph-page .parallax_content_box_inner {
        padding-left: 50px;
        padding-right: 50px;
    }
    body.ph-page .section_2 .two_column_box {
        padding-bottom: 0px;
    }
    body.ph-page .section_3 .two_column_box {
        padding-bottom: 0px;
    }
}

#finishes-content {
    background: #333;
    color: #fff;
    padding: 60px 0;
}

.page-id-3971 .two_column_box_inner {
    background: #fff;
    color: #333;
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom :60px;
}

.page-id-3971 .two_column_box_content,
.page-id-3971 .two_column_box_content h2 {
    color: #333;
}

.page-id-3971 .two_column_box_content_col {
    display: flex;
    align-items: center;
}

/** 
 * Floor Plan Gallery 
 */
.fp-gallery-tabs-section {
    background-color: #DADDDD;
    background-image: url('../img/bg-pattern-wavy.png');
    background-repeat: repeat-x;
    background-position: top center;
    padding: 80px;
}

@media (max-width: 600px) {
    .fp-gallery-tabs-section {
        padding: 40px 15px;
    }
}

.fp-gallery-tabs-section h2,
.fp-gallery-tabs-section h3 {
    text-align: center;
    margin-bottom: 50px;
    color: #333!important;
}

.fp-gallery-tabs-section h3 {
    margin-bottom: 35px;
}

.fp-gallery-tabs .tabs-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .fp-gallery-tabs .tabs-list {
        gap: 10px;
    }
}

.fp-gallery-tabs .tabs-list li {
    padding: 14px 26px;
    background: var(--dark-gray);
    color: #fff;
}

.fp-gallery-tabs .tabs-list li.active,
.fp-gallery-tabs .tabs-list li:hover {
    background: var(--purple);
    cursor: pointer;
}

.fp-gallery-tabs .tabs-content .tab-content:not(:first-child) {
    display: none;
}

/* Gallery Tabs */
.fp-tab-tabs {
    padding: 30px 0;
}

.fp-tab-tabs ul {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.fp-tab-tabs ul li {
    text-transform: uppercase;
    font-weight: 300;
}

.fp-tab-tabs ul li.active,
.fp-tab-tabs ul li:hover {
    cursor: pointer;
    border-bottom: 1px solid #333;
}

.fp-tab-tabs-content > div:not(:first-child) {
    display: none;
}

/* Gallery */
.fp-photo-gallery ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.fp-photo-gallery ul li {
    flex: 0 1 calc(33.333% - 20px);
}

/* Videos */
.fp-videos iframe {
    aspect-ratio: 16/9;
    width: 100%;
}

/* Penthouse Page Footer */
.penthouse-footer {
    background: var(--purple);
    color: #fff;
    padding: 80px 80px 80px;
    background-image: url('../img/driscoll-D.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
}

.penthouse-footer .left-footer {
    padding-top: 140px;
}

.penthouse-footer .left-footer span {
    font-family: Outfit;
    text-transform: uppercase;
    color: #9D7766;
    display: block;
    opacity: 1;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: normal;
    margin-bottom: 8px;
}

.penthouse-footer .left-footer > .container-inner > .row {
    margin-bottom: 40px;
}

.penthouse-footer .right-footer p {
    font-size: 16px;
}

.penthouse-footer .footer-logos {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.penthouse-footer .footer-logos > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.penthouse-footer .footer-menu-wrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.penthouse-footer-menu {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.penthouse-footer-menu li a {
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.penthouse-footer-menu li a:hover {
    color: #9D7766;
    opacity: 1;
}

.penthouse-footer .footer_social, 
.penthouse-footer .footer_social a {
    color: #9D7766;
}

@media (max-width: 768px) {
    .penthouse-footer .left-footer {
        padding-top: 60px;
        text-align: center;
    }

    .penthouse-footer .right-footer {
        margin-bottom: 60px;
    }

    .penthouse-footer-menu,
    .footer-menu-wrap {
        justify-content: center;
    }
}

@media (max-width: 530px) {
    .penthouse-footer {
        background-position: top left;
    }
}

/** Maps */
.r360-maps-filter-tab {
    background-color: #121316!important;
}
.r360-maps-filter-tab.active {
    background-color: var(--dark-gray)!important;
}
.r360-maps-location-panel { 
    background: var(--dark-gray)!important;
}

.r360-maps .container {
    padding-left: 2rem;
    padding-right: 2rem;
}

.container {
    padding-left: 15px!important;
    padding-right: 15px!important;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 768px) {
    .two_column_box_content {
        padding-left: 20px;
        padding-right: 20px;
    }
}


.r360-maps-category-filter,
.r360-maps-location-panel {
	display: none!important;
}

.two_column_box_inner {
    background-color: var(--blue);
}

.contact_section {
    background-color: #004F6E;
}

.section_3 .two_column_box_inner {
    background-color: #919288;
}

.section_5 .cta_box {
    background: var(--orange);
    position: relative;
}

.section_5 .cta_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
    background-image: url(/wp-content/uploads/2025/11/frontrow-favicon.png);
    background-position: center left;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.map_section_title {
    background-color: var(--blue);
}

#amenities .two_column_box_inner {
    background: #919288;
}

#amenities .two_column_box_image_col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer_content_btns p a:hover,
.submit_field input:hover {
    background: #fff;
    color: #333!important;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900!important;
    color: #ffb900!important;
}

@media (min-width: 768px) {
    .cta_box_inner h2 {
        font-size: 56px;
    }
}

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