/* **************************************************************** */
/* BASE ITEMS  **************************************************** */
/* **************************************************************** */

/* to make headers have the largert first letter */
/* add nocap style to not put in caps */
.first-letter-large {
    font-size: 125% !important;
}

/* circle text */
.circletext {
    display: inline-block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
    text-align: center;
    line-height: 70px;
    font-size: 50px;
}

.topo-background {
    background-color: white;
    background-image: url("/images/topo-background.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
}
.topo-dark-background {
    background-color: #57575a;
    background-image: url("/images/topo-background-dark.png");
    background-repeat: no-repeat;
    background-size: auto;
}

.background-gray-agent {
    /*background-color: #e3e3e3;*/
    background-color: #e6e6e6;
    padding: 80px 0;
}

.acorn-white-background {
    background-color: #fff;
    background-image: url("/images/lightgrayacorn.png");
    background-repeat: no-repeat;
    background-position: left top;
    background-position-y: -40px;
    background-position-x: -40px;
}

.acorntitle {
    position: relative;
    text-align: center;
    background-image: url("/images/acorntitle.png");
    background-repeat: no-repeat;
    background-position: center top;
    padding-top: 45px;
    padding-bottom: 7px;
}
.acorntitle span {
    font-size: 13px;
    color: var(--bs-primary);
    text-transform: uppercase;
    max-width: 450px;
    display: flex;
    gap: 1em;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.acorntitle span::after,
.acorntitle span::before {
    background-color: var(--bs-primary);
    content: "";
    display: block;
    flex: 1 0 auto;
    height: 1px;
    position: relative;
    vertical-align: middle;
}
/*.acorntitle span::before {
    right: 0.5em;
    margin-left: -50%;
}
.acorntitle span::after {
    left: 0.5em;
    margin-right: -50%;
}*/

.greentitle {
    font-size: 13px;
    color: var(--bs-primary);
    text-transform: uppercase;
    position: relative;
}
.greentitle::before {
    content: "";
    display: block;
    height: 70px; /* Adjust the height as needed */
    border-left: 1px solid var(--bs-primary); /* Creates the vertical line */
    position: absolute;
    top: -80px; /* Adjust this value to position the line above the text */
    left: 50%;
    transform: translateX(-50%); /* Centers the line horizontally */
}
.greentitle-noline {
    font-size: 13px;
    color: var(--bs-primary);
    text-transform: uppercase;
    position: relative;
}
.smallletterspacing {
    letter-spacing: 0.2em;
}
.greentitle-start-line {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.greentitle-start-line .line {
    width: 50px; /* Adjust the width as needed */
    height: 1px; /* Adjust the thickness as needed */
    background-color: var(--bs-primary);
    margin-right: 10px;
}

.custom-container {
    max-width: 1530px;
}

/* **************************************************************** */
/* END BASE ITEMS  ************************************************ */
/* **************************************************************** */

/* **************************************************************** */
/* START SOCIALS  ************************************************ */
/* **************************************************************** */
.social-icons__icon {
    background: transparent;
    border-radius: 50%;
    height: 1.25rem;
    margin: 0 0.5rem;
    position: relative;
    width: 1.25rem;
}
.social-icons__icon i {
    align-items: center;
    color: #56565a;
    display: inline-block;
    font-size: 1.25rem;
    height: auto;
    justify-content: center;
    width: auto;
}
/* **************************************************************** */
/* END SOCIAL  ************************************************ */
/* **************************************************************** */

/* **************************************************************** */
/* START BUTTONS  ************************************************ */
/* **************************************************************** */

/* *** */

#floorPlanTabs {
    .btn {
        border: 1px solid transparent;
        --bs-nav-link-hover-color: var(--bs-white);
    }

    .btn.active {
        --bs-nav-link-color: var(--bs-primary);
        --bs-nav-link-hover-color: var(--bs-primary);
        --bs-btn-active-color: var(--bs-primary);
        --bs-btn-active-bg: var(--bs-white);
        --bs-btn-border-color: var(--bs-primary);
    }

    /*.active:hover {
        background: var(--bs-secondary);
    }*/
}

.btn-flex {
    width: 50%;
}

@media (max-width: 1199px) {
    .btn-flex {
        width: 100%;
    }
}

.btn-lowpadding {
    padding: 8px 15px;
}

/* **************************************************************** */
/* END BUTTONS  ************************************************ */
/* **************************************************************** */

/* CARDS ***********************************************************/

.card-footer .button {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: var(--bs-primary);
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    margin: 4px 2px; /* Margin around the button */
    cursor: pointer; /* Cursor to pointer when hovering over the button */
    border-radius: 25px; /* Rounded corners */
    display: inline-block; /* Allows setting width and height */
}

.card-footer .button:hover {
    background-color: var(--bs-primary);
    color: white;
}
.card-footer .button:active {
    background-color: var(--bs-primary);
    color: white;
}

.card-footer .fa-circle-arrow-right {
    color: var(--bs-primary);
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    font-size: 36px;
}

/* END CARDS *******************************************************/

/* border responsive **************************************************/
@media (max-width: 991px) {
    .border-end-sm-0 {
        border: none !important;
    }
}
/* end border responsive **************************************************/

/* **************************************************************** */
/* START NAVIGATION *********************************************** */
/* **************************************************************** */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.2s ease-in-out;
}
@media (max-width: 1199px) {
    header {
        padding-block: 0;
    }
}
header:after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 200%;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 43%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
    transition: all 0.2s ease-in-out;
}
@media (max-width: 400px) {
    header:after {
        height: 170px;
    }
}
header .navbar .navbar-brand {
    position: relative;
}
header .navbar .navbar-brand img {
    transition: all 0.2s ease-in-out;
}
header .navbar .navbar-brand .navbar-brand-image-wide {
    position: absolute;
    inset: 0;
    width: 100%;
    margin: auto;
    opacity: 0;
}
/* ---- */
header.header-shrink,
header:not(:has(+ #maincontent, + #maincontent .slider-widget-wrap:first-child)),
header:has(+ #maincontent #plan-header-slideshow) {
    background: #ffffff;
    color: #57575a;
    padding-block: 0;
}
header.header-shrink:after,
header:not(:has(+ #maincontent, + #maincontent .slider-widget-wrap:first-child)):after,
header:has(+ #maincontent #plan-header-slideshow):after {
    opacity: 0;
    pointer-events: none;
}
header.header-shrink .navbar,
header:not(:has(+ #maincontent, + #maincontent .slider-widget-wrap:first-child)) .navbar,
header:has(+ #maincontent #plan-header-slideshow) .navbar {
    padding-block: 0;
}
header.header-shrink .navbar .navbar-brand,
header:not(:has(+ #maincontent, + #maincontent .slider-widget-wrap:first-child)) .navbar .navbar-brand,
header:has(+ #maincontent #plan-header-slideshow) .navbar .navbar-brand {
    padding: 0;
}
header.header-shrink .navbar .navbar-brand .navbar-brand-image-tall,
header:not(:has(+ #maincontent, + #maincontent .slider-widget-wrap:first-child))
    .navbar
    .navbar-brand
    .navbar-brand-image-tall,
header:has(+ #maincontent #plan-header-slideshow) .navbar .navbar-brand .navbar-brand-image-tall {
    width: 120px !important;
    height: 75px;
    opacity: 0;
}
header.header-shrink .navbar .navbar-brand .navbar-brand-image-wide,
header:not(:has(+ #maincontent, + #maincontent .slider-widget-wrap:first-child))
    .navbar
    .navbar-brand
    .navbar-brand-image-wide,
header:has(+ #maincontent #plan-header-slideshow) .navbar .navbar-brand .navbar-brand-image-wide {
    opacity: 1;
}
@media (min-width: 1200px) {
    header.header-shrink .navbar #nav-main .navbar-nav .nav-link + .dropdown-menu,
    header:not(:has(+ #maincontent, + #maincontent .slider-widget-wrap:first-child))
        .navbar
        #nav-main
        .navbar-nav
        .nav-link
        + .dropdown-menu,
    header:has(+ #maincontent #plan-header-slideshow) .navbar #nav-main .navbar-nav .nav-link + .dropdown-menu {
        --bs-dropdown-spacer: 1.12rem;
    }

    /* ADA Contrast Fix for Nav Links on Image Background */
    header:not(.header-shrink) .navbar #nav-main .navbar-nav .nav-link:not(:focus):not(:hover) {
        background-color: rgba(0,0,0,.005);
    }
}
header:not(:has(+ #maincontent, + #maincontent .slider-widget-wrap:first-child)),
header:has(+ #maincontent #plan-header-slideshow) {
    position: sticky;
}
/* --- */
.navbar {
    position: relative;
    z-index: 1;
}
.navbar > .container {
    max-width: 1400px;
}
.navbar .navbar-brand img {
    height: auto;
}
.navbar .navbar-toggler {
    border-color: transparent;
}
.navbar .navbar-toggler:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.5);
}
.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-color: #57575a;
}
.navbar #nav-main {
    font-family: "Roboto Condensed", sans-serif;
    font-variant-numeric: lining-nums;
    font-feature-settings: "lnum";
}
.navbar #nav-main .navbar-nav {
    --bs-navbar-color: $dark;
    --bs-nav-link-hover-color: var(--bs-white);
    --bs-nav-link-font-size: 1rem;
    --bs-nav-link-font-weight: 400;
    --bs-nav-link-padding-x: 1.125rem;
    --bs-navbar-nav-link-padding-x: var(--bs-nav-link-padding-x);
    --bs-navbar-active-color: $dark;
    --bs-navbar-active-bg: transparent;
}
.navbar #nav-main .navbar-nav .dropdown-menu {
    --bs-dropdown-border-width: 0;
    --bs-dropdown-spacer: 0;
    --bs-dropdown-link-hover-bg: #f1e8e3;
    --bs-dropdown-link-active-bg: transparent;
    --bs-dropdown-link-active-color: dark;
    --bs-dropdown-border-radius: 0;
}
.navbar #nav-main .navbar-nav .dropdown-menu .dropdown-item.active {
    text-decoration: none;
}
.navbar #nav-main .navbar-nav .dropdown-menu .dropdown-item.active:hover,
.navbar #nav-main .navbar-nav .dropdown-menu .dropdown-item.active:focus {
    background: var(--bs-primary);
}
@media (min-width: 1200px) {
    .navbar #nav-main .navbar-nav {
        --bs-navbar-color: var(--bs-white);
        --bs-navbar-active-color: var(--bs-white);
    }
    .navbar #nav-main .navbar-nav .dropdown-menu {
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
    }
}
@media (max-width: 1340px) and (min-width: 1271px) {
    .navbar #nav-main .navbar-nav {
        --bs-nav-link-font-size: 0.95rem;
        --bs-nav-link-padding-x: 1rem;
    }
}
@media (max-width: 1270px) and (min-width: 1200px) {
    .navbar #nav-main .navbar-nav {
        --bs-nav-link-font-size: 0.9rem;
        --bs-nav-link-padding-x: 0.9rem;
    }
}
.navbar #nav-main .nav-link {
    text-transform: uppercase;
    font-size: 0.75em;
    letter-spacing: 0.2em;
}
.navbar #nav-main .nav-link:hover,
.navbar #nav-main .nav-link:focus,
.navbar #nav-main .nav-link.show {
    background-color: var(--bs-primary); /* var(--bs-primary); */
    color: white;
}
.navbar #nav-main .nav-link.active {
    text-decoration: underline;
    text-underline-position: under;
    text-decoration-color: #a3a691;
    text-underline-offset: 0.1rem;
}
.navbar #nav-main .nav-link.active:hover,
.navbar #nav-main .nav-link.active:focus {
    color: white;
}

/* -------------------*/
.dropdown-item {
    font-size: 0.75em;
}
.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--bs-primary);
    color: #ffffff;
}
.dropdown-item:focus,
.dropdown-item:hover {
    background-color: var(--bs-primary);
    color: #ffffff;
}

header.header-shrink .nav-link {
    color: #57575a;
}
/* **************************************************************** */
/* END NAVIGATION ************************************************* */
/* **************************************************************** */

/* **************************************************************** */
/* START HEADER SLIDESHOW ***************************************** */
/* **************************************************************** */

@media (min-width: 901px) {
    .slider-widget-wrap .slider-widget .swiper-slide.slide-content-center .slider-content {
        /* justify-content: left; */
    }
}
.slider-widget-wrap-comm-model {
    position: absolute;
    bottom: 80px;
    left: 100px;
    width: 100% !important;
    text-align: left !important;
}
@media (max-width: 900px) {
    .slider-widget-wrap-comm-model {
        padding: 0 10px;
        bottom: 40px;
    }
}
@media (max-width: 600px) {
    .slider-widget-wrap-comm-model {
        left: 0;
    }
}

/* **************************************************************** */
/* END HEADER SLIDESHOW ******************************************* */
/* **************************************************************** */

/* BS SLIDER - not used ********************************************************* */
.slide-description {
    letter-spacing: 0.15rem;
}
.slider-widget-wrap .swiper-button-next,
.slider-widget-wrap .swiper-button-prev {
    background: rgba(0, 0, 0, 0.3);
    height: 40px;
    width: 40px;
    border-radius: 20px;
}
.slider-widget-wrap .swiper-button-next i,
.slider-widget-wrap .swiper-button-prev i {
    color: #fff;
    font-size: 20px;
}
/* end slider ****************************************************** */

/* Swiper *********************************************************** */
.swiper-button-next,
.swiper-button-prev {
    color: rgba(0, 0, 0, 0.5) !important;
}
.swiper-button-next:not(.spotlight-swiper-button-next):after,
.swiper-button-prev:not(.spotlight-swiper-button-prev):after {
    font-size: 14px !important;
}
.swiper {
    padding-bottom: 30px !important;
}
.swiper-pagination-bullet {
    border: 1px solid var(--bs-primary) !important;
    background: transparent !important;
    width: 10px !important;
    height: 10px !important;
}
.swiper-pagination-bullet-active {
    background: var(--bs-primary) !important;
}
.swiper-slide {
    height: auto !important;
}
.swiper-content {
    height: 100% !important;
}

.swiper-wrapper-container {
    position: relative;
}

.swiper-container {
    overflow: hidden; /* Keep overflow hidden for the swiper container */
}

/* for use on comm detail */
.buttons-below-swiper .swiper-button-next,
.buttons-below-swiper .swiper-button-prev {
    position: absolute;
    bottom: -30px !important;
    top: unset !important;
    transform: translateY(-50%);
    width: 30px !important;
    height: 30px !important;
    background-color: #fff;
    border-radius: 30px;
    z-index: 10; /* Ensure arrows are above other content */
    border: 1px solid #c0c0c0;
}

.swiper-button-next {
    /*right: -55px !important;  Adjust this value to move the arrow further right */
}

.swiper-button-prev {
    /*left: -55px !important;  Adjust this value to move the arrow further left */
}

/* End Swiper ****************************************************** */

/* Maps ****************************************************** */
/* this button is weird atm so adding this to get it out of the way */
#listings .btn-view {
    /* bottom: -1em; */
}

#metro-map {
    height: 800px;
    min-height: 620px;
}

@media (max-width: 767px) {
    #metro-map {
        height: calc(100vh - 100px);
    }
}

.gm-style .gm-style-iw-c,
.gm-style .gm-style-iw-d {
    border-radius: 10px !important;
}
.marker-infowindow {
    width: 350px;
    padding: 1rem;
    border-radius: 15px;
}

.marker-infowindow .button {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: var(--bs-primary);
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    margin: 4px 2px; /* Margin around the button */
    cursor: pointer; /* Cursor to pointer when hovering over the button */
    border-radius: 25px; /* Rounded corners */
    display: inline-block; /* Allows setting width and height */
    max-width: 229px;
}

.marker-infowindow .button:hover {
    background-color: var(--bs-primary);
    color: white;
}
.marker-infowindow .button:active {
    background-color: var(--bs-primary);
    color: white;
}

.marker-infowindow .fa-circle-arrow-right {
    color: var(--bs-primary);
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    font-size: 36px;
}
/* dark map */
.marker-infowindow-dark {
    background: #57575a;
    border-radius: 0px !important;
    width: 180px;
    text-align: center;
}
#community-detail-map .gm-style .gm-style-iw-tc::after {
    background: #57575a;
}
#community-detail-map .gm-ui-hover-effect > span {
    background-color: #fff;
}
.marker-infowindow-dark-button {
    border: 1px solid white;
    padding: 10px;
    border-radius: 30px;
}
.marker-infowindow-dark-button a {
    color: white;
}
.marker-infowindow-dark-button:hover {
    background-color: var(--bs-primary);
}

#community-detail-map,
#lot-detail-map {
    height: 700px;
    min-height: 400px;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
}

/* Community Detail - weird piece sticking out the top of the info window */
#community-detail-map .gm-style-iw-chr {
    display: none;
}
/* dark map */

/* detail map */
#listings-options {
    margin: 0;
    padding: 2.5rem 0 0 1.5rem;
}
.listing-header {
    background-color: #f1f1f1;
}
#listings-options ul li {
    margin: 0 0.5rem 0 0;
}
#listings-options ul li .btn-filter {
    background-color: #444;
    border: 0px solid #444;
    border-radius: 10px 10px 0 0;
    color: #fff;
}
#listings-options ul li .btn-filter.active {
    background: #fff;
    color: var(--bs-primary);
}

/* the close button appears weird */
.gm-style-iw-chr {
    position: absolute;
    top: 3px;
    right: 3px;
    z-index: 1000;
}

/* END Maps ************************************************** */

/* Spotlights ****************************************************** */
.carousel-indicators {
    bottom: -35px;
}
.carousel-control-next {
    right: -100px;
}

.carousel-control-prev {
    left: -100px;
}

.spotlight-slideshow {
    padding-bottom: 0 !important;
}

.spotlight-swiper-button-next, .spotlight-swiper-button-prev {
    --swiper-navigation-size: 24px;
}

.spotlight-swiper-button-next:after, .spotlight-swiper-button-prev:after {
    font-weight: bold;
    color: var(--bs-primary);
}

/* END SPotlights ************************************************** */

/* Home Testimonials ****************************************************** */
.acorn-gray {
    background-color: #57575a;
    background-image: url("/images/darkgrayacorn.png");
    background-repeat: no-repeat;
    background-position: left top;
    background-position-y: 20px;
}
.halfbottomborder {
    position: relative;
    padding-bottom: 15px;
}
.halfbottomborder::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 150px;
    height: 2px;
    background-color: #fff;
}
.home-testimonials-body {
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;
}
/* end Home Testimonials ****************************************************** */

/* profile icosn / above contact form ********************************* */
.profile-icons {
    display: flex; /* Aligns icons horizontally */
    justify-content: center;
    align-items: center; /* Ensures icons are aligned vertically in the center */
}

.icon {
    width: 60px; /* Set the width for the icon container */
    height: 60px; /* Set the height for the icon container */
    position: relative; /* Needed for absolute positioning of the overlay */
    border-radius: 50%; /* Makes the icon circular */
    margin-right: -10px; /* Overlaps each icon by 10px */
    z-index: 1; /* Ensures the stacking context starts at 1 */
}
.icon img {
    width: 100%; /* Ensures the image fills the icon div */
    height: auto; /* Maintains the aspect ratio */
    border-radius: 50%; /* Makes the image circular */
    display: block; /* Removes any extra space below the image */
    border: 2px solid white;
}
.icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent; /* Semi-transparent overlay */
}
/* end profile icosn / above contact form ********************************* */

/* community PAge ******************************************************* */

/* start spacial comm header slideshow ******************** */
.comm-model-overlay-menu {
    position: absolute;
    bottom: 100px;
    right: 100px;
    z-index: 1;
}

.comm-model-overlay-menu .list-group-item {
    background: #2b292a;
    border: 1px solid #141314;
    min-width: 230px;
    color: white;
    border-radius: 0;
}
.comm-model-overlay-menu .list-group-item:hover {
    background: var(--bs-primary);
}
@media (max-width: 1200px) {
    .comm-model-overlay-menu {
        display: none;
    }
}
/* end spacial comm header slideshow ******************** */

.comm-sub-nav .list-group-item {
    border: none;
    padding: 20px 0px;
    text-align: center;
    border-radius: 0 !important;
    font-weight: bold;
}
.comm-sub-nav .list-group-item:hover {
    background: var(--bs-primary);
    color: white;
    cursor: pointer;
}
@media (max-width: 1200px) {
    .comm-sub-nav .list-group-item {
        font-weight: normal;
        padding: 10px 0px;
    }
}

/* description */
.bg-img {
    padding-left: 0;
    padding-right: 0;
    position: relative;
}
@media (min-width: 768px) {
    .container-y-padding-md {
        padding-bottom: 6rem;
        padding-top: 6rem;
    }
}
.bg-img__img {
    inset: 0;
    position: absolute;
}
.bg-img__img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    z-index: -1;
}

/* sales */
.round-sales-agent {
    width: 150px; /* Set the width for the icon container */
    height: 150px; /* Set the height for the icon container */
    border-radius: 50%; /* Makes the icon circular */
    border: 4px solid white;
}

.agent-badge {
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, -50%) translateX(60px);
}

/* amenities */
.amenities-background-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.amenities-background-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90%;
    background-image: url("/images/topo-background-dark.png");
    background-size: cover;
    background-position: center;
}
.amenities-foreground-image {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    height: auto;
    width: auto;
    margin-bottom: 50px;
    border: 1px solid white;
}

/* areainfo */
.areainfo-background-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.areainfo-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    background-image: url("/images/topo-background-dark.png");
    background-size: cover;
    background-position: center;
}
.areainfo-foreground-image {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    height: auto;
    width: auto;
    margin-top: 50px;
    margin-left: 50px;
    border: 1px solid white;
}

/* END community PAge ******************************************************* */

/* PLAN PAGE **************************************************************** */
.planimage-background-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.planimage-background-image {
    position: absolute;
    top: 50px;
    left: 0;
    width: 90%;
    height: 90%;
    background-image: url("/images/topo-background-dark.png");
    background-size: cover;
    background-position: center;
}
.planimage-foreground-image {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    height: auto;
    width: auto;
    margin-bottom: 50px;
    margin-left: 50px;
    border: 1px solid white;
}

.imagezoom {
    color: white;
    padding: 30px;
    border-radius: 60px;
    background: RGBA(0, 0, 0, 0.3);
}
.accordion-button {
}
.accordion-button:not(.collapsed) {
    background-color: #57575a;
    color: white;
}
.accordion-button:focus {
    outline: 2px solid var(--bs-primary); /* Change 'red' to your desired color */
    box-shadow: 0 0 0 0.25rem rgba(119, 154, 9, 0.25); /* Optional: Add a shadow with the same color */
}

.accordion-button::after {
    content: "";
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"%3E%3Cpath fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/%3E%3C/svg%3E');
    transform: rotate(0deg);
}
.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-chevron-down" viewBox="0 0 16 16"%3E%3Cpath fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/%3E%3C/svg%3E');
    transform: rotate(180deg);
}

.accordion-columns {
    column-count: 2;
}
@media (max-width: 767px) {
    .accordion-columns {
        column-count: 1;
    }
}

/* END PLAN PAGE **************************************************************** */

/* start list Testimonials ****************************************************** */
.card-img-top-matchheight {
    width: 100%;
    height: 50vw;
    object-fit: cover;
}
@media (min-width: 767px) {
    .card-img-top-matchheight {
        height: 30vw;
    }
}
@media (min-width: 991px) {
    .card-img-top-matchheight {
        height: 25vw;
    }
}
@media (min-width: 1200px) {
    .card-img-top-matchheight {
        height: 20vw;
    }
}
@media (min-width: 1400px) {
    .card-img-top-matchheight {
        height: 15vw;
    }
}
.image-container {
    position: relative;
    display: inline-block;
}
.overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}
/* end list Testimonials ****************************************************** */

/* start Sub-Navigation ****************************************************** */
#commGroupMenu .list-group-item {
    flex: 0 0 auto;
    width: auto;
    padding-inline: 1.5rem;
}
/* end Sub-Navigation ****************************************************** */
