.top-bar{
    background-color: var(--blue);
    height: 60px;
    line-height: 60px;
    color: var(--cream);
}
.logo img {
    width: 100%;
    max-width: 525px;
}

.bg-cream {
    background-color: var(--cream);
}

.disclaimer {
    background-color: var(--navy);
    color: var(--off-white);
    padding: 60px 0;
}
.disclaimer p {
    font-family: 'Inter', sans-serif;
    text-align: justify;
    color: var(--tan);
    font-size: 1rem;
    line-height: 1.4;
}

.disclaimer a {
    color: var(--off-white);
    text-decoration: none;
    transition: all 0.3s ease;
}
.disclaimer a:hover {
    color: var(--tan);
    text-decoration: underline;
}

.page-head {
    background-color: var(--green);
}
.page-head h1 {
    color: var(--cream);
    font-family: 'Tiempos', sans-serif;
    font-size: 54px;
    font-weight: normal;
    padding: 40px 0;
    margin-bottom: 0;
}
.page-head-img {
    border-radius: 25px;
    position: relative;
    z-index: 10;
    margin-bottom: -15%;
}

.first-row {
    padding-top: 200px !important;
}

/* START CSS FOR HERO SLIDER */

.hero-slider-section {
    position: relative;
}

.hero-slider {
    position: relative;
    min-height: 800px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    min-height: 800px;
    opacity: 0;
    transition: opacity .6s ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(19, 37, 59, .45);
}

.hero-slide .container {
    position: relative;
    z-index: 3;
}

.hero-slide-content {
    min-height: 690px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.hero-slide-content h1 {
    color: var(--white);
    font-size: clamp(3rem, 6vw, 4rem);
    line-height: .95;
    margin-bottom: 2rem;
    font-family: 'Tiempos', sans-serif;
    max-width: 700px;
}

.hero-copy {
    max-width: 499px;
    font-size: 1.35rem;
    line-height: 1.35;
    margin-bottom: 2.5rem;
}

.hero-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-links a:not(.btn):not(.btn-sh) {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.hero-feature-bar {
    background: var(--green);
    color: var(--white);
    padding: 2rem 0;
}

.hero-feature-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 1.2rem;
}

.hero-feature-inner strong {
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 700;
}

.hero-feature-inner span {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
}

.hero-feature-inner i {
    color: var(--white);
}

.svg-inline--fa {
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .hero-slider,
    .hero-slide,
    .hero-slide-content {
        min-height: 560px;
    }

    .hero-feature-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* END CSS FOR HERO SLIDER */

/* START CSS FOR OVERLAP IMAGE TEXT BLOCKS LAYOUT */

.overlap-section {
    position: relative;
}

.overlap-row {
    position: relative;
}

.overlap-row-top {
    padding: 6rem 0 5rem;
}

.overlap-row-bottom {
    padding: 5rem 0 6rem;
}

.overlap-image-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 43%;
    transform: translateY(0);
    z-index: 2;
}

.overlap-image {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

@media (max-width: 991px) {
    .overlap-image-wrap {
        position: static;
        width: 100%;
        margin-bottom: 2rem;
    }

    .overlap-image {
        height: auto;
    }

    .overlap-row-top,
    .overlap-row-bottom {
        padding: 3rem 0;
    }

    .overlap-row .offset-lg-6 {
        margin-left: 0;
    }
}

/* END CSS FOR OVERLAP IMAGE TEXT BLOCKS LAYOUT */

/* START CSS FOR OUR SERVICES BLOCK LAYOUT */

.services-tabs {
    background: linear-gradient(
            to bottom,
            var(--cream) 0,
            var(--cream) 375px,
            var(--off-white) 375px,
            var(--off-white) 100%
    );
}

.services-tabs-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
}

.services-tabs-nav {
    background: var(--green-15);
}

.services-tab-button {
    width: 100%;
    min-height: 135px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.55);
    background: var(--green-15);
    color: var(--blue);
    text-align: left;
    transition: background-color .2s ease;
}

.services-tab-button:hover,
.services-tab-button.active {
    background: var(--white);
}

.services-tab-button i, .services-tab-button svg {
    color: var(--orange);
    font-size: 3rem;
    width: 48px;
    text-align: center;
}

.services-tab-button span {
    font-size: 1.45rem;
    line-height: 1.15;
    font-family: var(--heading-font);
}

.services-tabs-content {
    padding: 2.25rem 3rem;
}

.services-tabs-content b {
    color: var(--green);
}

.services-tab-panel {
    display: none;
}

.services-tab-panel.active {
    display: block;
}

.services-tab-panel p:last-child,
.services-tab-panel ul:last-child {
    margin-bottom: 0;
}

.services-tab-panel strong {
    color: var(--green);
}

.services-tabs-cta {
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    /*gap: 1.5rem;*/
}

@media (max-width: 991px) {
    .services-tabs-card {
        grid-template-columns: 1fr;
    }

    .services-tab-button {
        min-height: auto;
    }

    .services-tabs-content {
        padding: 2rem;
    }

    .services-tabs-cta {
        flex-direction: column;
    }
}

/* END CSS FOR OUR SERVICES BLOCK LAYOUT */

/* START CSS FOR ONGOING PLANNING BLOCK LAYOUT */

.planning-list {
    display: grid;
    gap: .75rem;
}

.planning-card {
    background: var(--off-white);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
}

.planning-card h3 {
    color: var(--green);
    font-family: 'Termina', sans-serif;
    text-transform: uppercase;
    font-size: 1.25rem !important;
    margin-bottom: 0;
    letter-spacing: .03em;
}

.planning-card-title {
    color: var(--blue);
    margin-bottom: .75rem;
}

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

.planning-card li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: .25rem;
}

.planning-card li::before {
    font-family: "FA";
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-size: 1rem;
    line-height: 1rem;
}

.planning-note {
    background: rgba(113, 156, 135, .22);
    color: var(--blue);
    border-radius: 10px;
    text-align: center;
    padding: 1.25rem 2rem;
    font-size: 1.35rem;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .planning-orbit {
        width: 340px;
        height: 340px;
    }

    .planning-center {
        width: 210px;
        height: 210px;
    }

    .orbit-label {
        display: none;
    }
}

.planning-graphic-wrap {
    text-align: center;
}

.planning-graphic {
    max-width: 100%;
    height: auto;
}

/* END CSS FOR ONGOING PLANNING BLOCK LAYOUT */

.contact-us-form .container .row .news {
    background-color: var(--cream);
    border-radius: 25px;
    padding: 50px 30px;
}

.news label {
    font-size: 1.5rem;
}

.news input, .news textarea {
    border-radius: 15px;
    line-height: 60px;
    padding-top: 17px;
    height: 60px;
    color: gray;
}
.news textarea {
    padding-top: 0;
    height: 150px;
}

.news ::placeholder {
    color: lightgray; /* Your desired color */
    opacity: 1;    /* Optional: Ensure full visibility in Firefox */
}

/* START CSS FOR CLIENT CENTER PAGE */

.inter-regular {
    font-family: 'Inter', sans-serif !Important;
    font-size: 16px;
    text-align: justify;
}

/* END CSS FOR CLIENT CENTER PAGE*/

/* START CSS FOR CARD GRID BLOCK LAYOUT */

.card-grid-section {
    padding: 6rem 0;
}

.content-card {
    min-height: 100%;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.content-card-image {
    margin-bottom: 2.5rem;
}

.content-card-image img {
    max-height: 70px;
    width: auto;
}

.content-card-copy {
    margin-bottom: 3rem;
}

.content-card-btn {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.content-card-btn i {
    font-size: 1.25rem;
}

/* END CSS FOR CARD GRID BLOCK LAYOUT */

/* START CSS FOR FAQ BLOCK LAYOUT */

.faq-accordion-section {
    padding: 5rem 0;
}

.faq-list {
    border-radius: 12px;
    overflow: hidden;
}

.faq-item:nth-child(odd) .faq-question {
    background: var(--green-25);
}

.faq-item:nth-child(even) .faq-question {
    background: var(--off-white);
}

.faq-question {
    width: 100%;
    border: 0;
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: var(--blue);
    font-size: 1.35rem;
    font-family: var(--heading-font);
}

.faq-question i {
    color: var(--orange);
    font-size: 1.5rem;
    margin-left: 1rem;
}

.faq-icon-minus {
    display: none;
}

.faq-item.is-open .faq-icon-plus {
    display: none;
}

.faq-item.is-open .faq-icon-minus {
    display: inline-block;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-item:nth-child(odd) .faq-answer {
    background: var(--green-25);
}

.faq-item:nth-child(even) .faq-answer {
    background: var(--off-white);
}

.faq-item.is-open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 2rem 2rem;
}

.faq-cta {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.faq-cta p {
    margin: 0;
}

.faq-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 767px) {
    .faq-question {
        font-size: 1.1rem;
        padding: 1.25rem 1rem;
    }

    .faq-cta {
        flex-direction: column;
        gap: 1rem;
    }
}

/* END CSS FOR FAQ BLOCK LAYOUT*/

/* START CSS FOR AT A GLANCE BLOCK LAYOUT */

.at-a-glance {
    padding: 6rem 0;
}

.at-a-glance-card {
    border-radius: 10px;
    overflow: hidden;
    background: var(--light);
    display: flex;
    flex-direction: column;
}

.at-a-glance-card-top {
    background: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    min-height: 185px;
}

.at-a-glance-card-top > i, .at-a-glance-card-top > svg {
    color: var(--orange);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.at-a-glance-card-top h3 {
    color: var(--blue);
    font-size: 1.55rem;
    line-height: 1.15;
    margin: 0;
    max-width: 185px;
}

.at-a-glance-card-bottom {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.at-a-glance-card-bottom ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.at-a-glance-card-bottom li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: .75rem;
}

.at-a-glance-card-bottom li::before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: .1rem;
    width: 1rem;
    height: 1rem;
    color: var(--green);
    font-family: "FA", sans-serif;
    font-size: 1rem;
    line-height: .9rem;
    text-align: center;
}

.at-a-glance-card-bottom .svg-inline--fa, .latest-posts-section .svg-inline--fa, .posts-listing-section .svg-inline--fa, .sbtxt-form-shell .svg-inline--fa {
    margin-bottom: 0;
}

/* END CSS FOR AT A GLANCE BLOCK LAYOUT */

/* START CSS FOR LATEST POSTS BLOCK LAYOUT */

.latest-posts-section {
    padding: 6rem 0;
}

.latest-post-card {
    background: var(--off-white);
    border-radius: 16px;
    padding: .75rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr auto;
    align-items: center;
    color: var(--blue);
    text-decoration: none;
    min-height: 210px;
}

.latest-post-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.latest-post-category {
    color: var(--green);
    text-transform: uppercase;
    font-weight: lighter;
    letter-spacing: .04em;
    margin-top: 40px;
    margin-bottom: 1rem;
}

.latest-post-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-left: 20px;
}

.latest-post-content h3 {
    margin-bottom: auto;
}

.latest-post-arrow {
    margin-top: 2rem;
    align-self: flex-end;
    color: var(--orange);
}

.posts-empty-state {
    padding: 6rem 0;
}

.posts-empty-state h3 {
    color: var(--blue);
    margin: 0;
}

@media (max-width: 767px) {
    .latest-post-card {
        grid-template-columns: 1fr;
    }

    .latest-post-arrow {
        margin-right: 0;
    }
}

/* END CSS FOR LATEST POSTS BLOCK LAYOUT */

/* START CSS FOR POSTS LISTING ON POSTS PAGE */

.posts-listing-section {
    background: var(--white);
}

.posts-listing-hero {
    background: var(--green);
    color: var(--white);
    padding: 0 0 6rem;
}

.posts-listing-hero h1 {
    color: var(--white);
    margin: 0;
}

.posts-youtube-link {
    color: var(--cream);
    font-weight: normal;
    margin: 0;
}

.posts-youtube-link .svg-inline--fa {
    margin-bottom: 0;
}

.posts-youtube-link i {
    margin-right: .5rem;
}

.posts-listing-body {
    margin-top: -7rem;
    padding-bottom: 6rem;
}

.posts-grid {
    position: relative;
    z-index: 2;
}

.posts-category-filter {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.posts-category-btn,
.posts-clear-filter {
    border: 0;
    background: transparent;
    color: var(--green);
    font-weight: 700;
}

.posts-category-btn.active {
    color: var(--orange);
}

.posts-empty-state {
    display: block;
    padding: 6rem 0;
    min-height: 250px;
}

.posts-empty-state h3 {
    color: var(--blue);
    margin: 0;
}

.insight-card {
    display: block;
    background: var(--off-white);
    border-radius: 10px;
    padding: 1.25rem;
    text-decoration: none;
    color: var(--blue);
    height: 100%;
}

.insight-card-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 8px;
}

.insight-card-category {
    color: var(--green);
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 1.25rem;
}

.insight-card-content h3 {
    color: var(--blue);
}

.insight-card-arrow {
    display: block;
    text-align: right;
    color: var(--orange);
    margin-top: 2rem;
}

/* END CSS FOR POSTS LISTING ON POSTS PAGE */