@media screen and (min-width: 1300px) {

    /* Two Column Content and Image */
    .two-column-content-and-image .add-image-overlay .image-overlay.right {
        right: -32px;
    }

    /* Case Study Section */

    .case-studies .case-content .row {
        margin-right: -16px;
        margin-left: -16px;
        row-gap: 24px;
    }

    .case-studies .case-content .row [class^="col-sm-"] {
        padding-right: 16px;
        padding-left: 16px;
    }
}

@media screen and (max-width: 1200px) {

    h1,
    h1.inner-page {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    .gap-64.row,
    .gap-80.row,
    .location-two-column-content-and-image .row {
        margin-right: -24px;
        margin-left: -24px;
    }

    .gap-64>[class^="col-sm-"],
    .gap-80>[class^="col-sm-"],
    .location-two-column-content-and-image [class^="col-sm-"] {
        padding-right: 24px;
        padding-left: 24px;
    }

    .arrow-button {
        font-size: 14px;
        padding: 8px 22px;
    }

    /* Header */
    .header-menu ul.menu a {
        padding: 5px 8px;
    }

    /* Icon and Content Cards */
    .icon-cards-wrapper.four-cards-layout .col-sm-3 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Cards with Numbers */
    .numbered-cards-wrapper .card p.card-number {
        font-size: 48px;
    }

    /* Founders Video Section */
    .video-box {
        width: 472px;
    }

    .founder img {
        height: 348px;
    }

    /* Case Study Section */
    .case-study-slider {
        max-width: 1140px;
    }

    .case-studies .case-info {
        font-size: 14px;
        gap: 8px;
    }

    .case-studies .info-box {
        padding: 8px 16px;
    }

    .case-studies .info-box strong {
        font-size: 16px;
    }

    .case-studies .highlighted-card {
        padding: 16px;
    }

    .case-studies .highlighted-card .header {
        flex-wrap: wrap;
        justify-content: center;
    }

    .case-studies .highlighted-card .footer h5 {
        font-size: 14px;
    }

    .case-studies .highlighted-card .footer p strong {
        font-size: 20px;
    }

    .case-studies .highlighted-card .subcard {
        padding: 8px;
    }

    /* Book CTA with Features and Form */
    .book-cta-with-features-and-form .form-wrapper {
        margin-top: 0;
    }

    /* Two Column Content and Image */
    .two-column-content-and-image .add-image-overlay .image-overlay h3 {
        font-size: 20px;
    }

    .two-column-content-and-image .arrow-button {
        padding: 8px 22px;
    }

    /* CTA Section */
    .cta-section h2 {
        font-size: 36px;
    }

    /* Icon Pointers Section */
    .icon-pointers-section li {
        width: calc(50% - 8px);
    }

    /* Two Column Content with Statistics Cards */
    .two-column-content-with-statistics-cards .card>div {
        font-size: 28px;
    }

    .two-column-content-with-statistics-cards .card p {
        font-size: 14px;
    }

    /* Location Two Column Content and Image */
    .location-two-column-content-and-image .row {
        padding: 0;
    }

    /* Locations Detail Page CSS */
    .parent-pageid-836 .strategy-steps-section .step-count {
        font-size: 32px;
    }

    .speciality-card .specifications .value {
        font-size: 20px;
    }

    .case-studies .highlighted-card .subcard p strong {
        font-size: 15px;
    }
}

@media screen and (max-width: 992px) {
    .p-100 {
        padding: 64px 0;
    }

    ::-webkit-scrollbar {
        width: 4px;
    }


    .gap-48.row,
    .gap-40.row,
    .gap-24.row {
        margin-right: -20px;
        margin-left: -20px;
    }

    .gap-48 [class^="col-sm-"],
    .gap-40 [class^="col-sm-"],
    .gap-24 [class^="col-sm-"] {
        padding-right: 20px;
        padding-left: 20px;
    }

    /* Header */
    .header-wrapper {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-header-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        width: 100%;
    }

    .mobile-logo-wrapper {
        max-width: 100px;
    }

    .mobile-right {
        display: flex;
        gap: 20px;
    }

    .hamburger-menu {
        position: relative;
    }

    .button-container {
        position: absolute;
        top: 0;
        right: 0;
        height: 18px;
        width: 24px;
        cursor: pointer;
        z-index: 100;
        transition: opacity 0.25s ease;
        bottom: 0;
        margin: auto;
    }

    .button-container span {
        background-color: var(--midnight-blue);
        border: none;
        border-radius: 20px;
        height: 3px;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: transform 0.35s ease, opacity 0.35s ease;
        cursor: pointer;
    }

    .button-container span:nth-of-type(2) {
        top: 8px;
    }

    .button-container span:nth-of-type(3) {
        top: 16px;
    }

    .button-container.active .top {
        transform: translateY(11px) translateX(0) rotate(45deg);
    }

    .button-container.active .middle {
        opacity: 0;
    }

    .button-container.active .bottom {
        transform: translateY(-5px) translateX(0) rotate(-45deg);
    }

    .overlay {
        position: fixed;
        background-color: var(--color-white-solid);
        top: 0;
        left: 0;
        width: 100%;
        height: 0%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s, visibility 0.35s, height 0.35s;
        overflow: hidden;
        z-index: 9;
        padding: 0 24px;
    }

    .overlay.open {
        opacity: 1;
        visibility: visible;
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
    }

    body:has(.overlay.open) {
        position: fixed;
    }

    .inner-overlay {
        width: 100%;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 32px;
        padding: 40px 0 64px;
    }

    .overlay nav {
        transform: translateY(68px);
    }

    .overlay ul {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .overlay ul li {
        position: relative;
        padding: 8px 4px;
    }

    .overlay ul li.menu-item-has-children {
        padding: 0;
        position: relative;
    }

    .overlay ul li a {
        color: var(--midnight-blue);
        font-family: 'Inter';
        font-size: 20px;
        font-weight: 500;
        line-height: 115.5%;
        padding: 5px 14px;
        display: block;
    }

    .overlay ul li.menu-item-has-children>a {
        padding: 13px 18px;
    }

    .overlay ul.menu>li.current-menu-item,
    .overlay ul.menu li.current-menu-item.menu-item-has-children>a,
    .overlay ul.menu li.menu-item-has-children:has(.sub-menu .current-menu-item)>a {
        border-radius: 4px;
        background: #F5F6F8;
    }

    .overlay ul.menu>li.current-menu-item.menu-item-has-children {
        background: transparent;
    }

    .overlay ul li.menu-item-has-children .submenu-toggle {
        background-image: url('../images/chevron-right.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 20px;
        width: 20px;
        height: 20px;
        display: block;
        position: absolute;
        top: 22px;
        right: 12px;
        transform: rotate(0);
        transition: transform 0.25s linear;
        padding: 12px;
        margin: -12px;
        z-index: 1;
    }

    .overlay-menu ul li.menu-item-has-children.open .submenu-toggle {
        transform: rotate(90deg);
    }

    .overlay-menu li.menu-item-has-children ul {
        max-height: 0;
        opacity: 0;
    }

    .overlay-menu li.menu-item-has-children.open ul {
        padding-top: 12px;
        max-height: fit-content;
        opacity: 1;
    }

    .overlay-menu ul.sub-menu li {
        padding: 4px 0 4px 32px;
    }

    .overlay-menu ul.sub-menu li a {
        font-size: 16px;
        font-weight: 400;
        line-height: 150%;
    }

    .overlay ul.sub-menu {
        gap: 12px;
    }

    .overlay ul li.current-menu-item>a {
        font-weight: 700;
    }

    .mobile-menu .arrow-button {
        display: none;
    }

    /* Footer */
    .footer-top-wrapper {
        flex-direction: column;
    }

    /* Two Column Content and Image */
    .two-column-content-and-image .left-side-image,
    .two-column-content-and-image.light-teal-bg .row {
        flex-direction: column-reverse !important;
    }

    .two-column-content-and-image .image-wrapper.add-image-overlay .image-overlay {
        display: none;
    }

    /* Content with Statistics and Quote */
    .stats-card {
        padding-bottom: 20px;
        border-bottom: 1px solid #E7E7E7;
        border-right: none;
    }

    .stats-wrapper>div:last-child .stats-card {
        padding: 0;
        border: none;
    }

    /* Icon and Content Cards */
    .icon-cards-wrapper.row {
        column-gap: 0;
    }

    /* Cards with Numbers */
    .heading-quote-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .numbered-cards-wrapper .card {
        padding: 24px;
    }

    .heading-quote-wrapper h6 {
        max-width: 100%;
    }

    /* Book CTA with Features and Form */
    .book-cta-with-features-and-form .row {
        flex-direction: column-reverse;
    }

    .book-cta-with-features-and-form.download-form .row {
        flex-direction: column;
        row-gap: 24px;
    }

    .book-cta-with-features-and-form .form-wrapper {
        padding-top: 60px;
    }

    .book-cta-with-features-and-form.download-form .content-wrapper ul {
        padding: 24px 0 0;
    }

    .book-cta-with-features-and-form .content-wrapper p {
        max-width: 100%;
    }

    /* Founders Video Section */
    .founder {
        display: none;
    }

    .video-box {
        width: 100%;
    }

    /* Content with Form */
    .content-with-form .iframe-header {
        padding: 32px 20px 0;
    }

    /* Blogs Section */
    .blogs-section .row {
        padding-bottom: 16px;
    }

    .blogs-section .no-slider .row {
        padding-bottom: 40px;
    }

    .blogs-section .button-wrapper {
        display: none;
    }

    /* Case Study Section */
    .case-studies .desktop-hide {
        display: flex;
        margin: auto;
    }

    .case-studies .mobile-hide,
    .case-studies .highlighted-card {
        display: none;
    }

    .case-study-slider {
        max-width: 720px;
        padding: 0 10px 20px;
    }

    /* Video Popup */
    .video-popup-close {
        top: 20px;
        right: 10px;
    }

    /* FAQ Section */
    .custom-faq-content h4 {
        font-size: 18px;
    }

    /* Two Column Content with Cards */
    .two-column-content-with-cards .cards-wrapper .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Pointers Section */
    .pointers-section li {
        width: 100%;
    }

    /* Two Column Content with Statistics Cards */
    .two-column-content-with-statistics-cards .cards-wrapper>[class^="col-sm-"] {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Case Study Banner */
    .case-study-banner-section .mobile-hide {
        display: none;
    }

    .case-study-banner-section .desktop-hide {
        display: block;
    }

    .case-study-banner-section .row {
        row-gap: 0;
    }

    .case-study-banner-section .property-specs {
        padding: 20px 0;
    }

    .case-study-banner-section .headings h5 {
        font-size: 20px;
    }

    /* Blogs Section */
    .blogs-section .transparent-button.desktop-hide {
        display: none;
    }

    .blogs-section .transparent-button.desktop-hide {
        display: flex;
        margin: auto;
    }

    /* Resources Page */
    .resources-podcasts-section a.button,
    .resources-locations-section .transparent-button.mobile-hide,
    .resources-case-studies-section .transparent-button.mobile-hide {
        display: none;
    }

    .resources-locations-section .transparent-button.desktop-hide,
    .resources-case-studies-section .transparent-button.desktop-hide {
        display: flex;
        margin: auto;
    }

    .case-studies-wrapper,
    .locations-wrapper{
        padding-bottom: 40px;
    }

    /* Product Section */
    .product-section .mobile-hide {
        display: none;
    }

    .product-section .desktop-hide {
        display: flex;
        margin-top: 15px;
    }

    .product-section p {
        padding-bottom: 0;
        font-size: 14px;
    }

    .product-section .row {
        row-gap: 12px;
    }

    /* Location Detail Page */
    .location-two-column-content-and-image br,
    .locations-banner-with-form br {
        display: none;
    }

    .podcast-guestings-grid>[class^="col-sm-"] {
        width: 50%;
    }

    .podcast-guestings-episode {
        grid-template-columns: 240px 1fr;
        gap: 18px;
    }

    .podcast-guestings-episode-media {
        min-height: 190px;
    }

    .podcast-guestings-episode-body h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {

    .scroll-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }

    h1,
    h1.inner-page {
        font-size: 36px;
    }

    .mobile-hide {
        display: none;
    }

    .desktop-hide {
        display: block;
    }

    .arrow-button {
        padding: 13px 22px;
    }

    /* Footer */
    .footer-menu-wrapper {
        flex-wrap: wrap;
    }

    .footer-menu {
        width: calc(50% - 12px);
    }

    .footer-mid-wrapper {
        flex-wrap: wrap;
    }

    .footer-links-wrapper ul {
        padding-left: 30px;
    }

    .footer-top-wrapper {
        padding-bottom: 40px;
    }

    .footer-bottom-wrapper {
        padding: 16px 0 20px;
    }

    /* Two Column with Iframe Home Banner */
    .two-column-with-iframe-home-banner {
        padding: 82px 0 60px;
    }

    .two-column-with-iframe-home-banner .content-wrapper {
        gap: 24px;
    }

    /* Logo Slider */
    .logo-slider h5 {
        font-size: 14px;
    }

    /* Icon and Content Cards */
    .icon-cards-wrapper.four-cards-layout .col-sm-3 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Heading and Button */
    .heading-and-button {
        padding: 64px 0;
    }

    .heading-and-button-wrapper {
        flex-direction: column;
        text-align: center;
    }

    /* Image and CTA Cards */
    .image-cta-card .cta-wrapper {
        padding: 20px;
    }

    /* Client Stories */
    .client-stories-slider-wrapper {
        overflow: visible;
        padding-bottom: 20px;
    }

    .client-story-card.review-card p,
    .client-story-card.review-card.review-with-image p {
        max-width: 100%;
    }

    .client-story-card.review-card.midnight-blue-bg {
        box-shadow: none;
    }

    /* Blogs Section */
    .blogs-section .section-header {
        padding-bottom: 32px;
    }

    /* Case Study Section */
    .case-studies .case-top,
    .case-studies .case-content {
        padding: 24px;
    }

    .case-studies label {
        font-size: 12px;
    }

    .case-studies .info-box strong {
        font-size: 14px;
    }

    .case-studies .icon {
        width: 28px;
        height: 28px;
    }

    .case-studies .icon svg {
        max-width: 14px;
        max-height: 14px;
    }

    .case-studies .info-box {
        padding: 10px 12px;
    }

    .case-study-slider {
        max-width: 540px;
    }

    .case-studies .case-image img{
        height: auto;
    }

    /* Book CTA with Features and Form */
    .book-cta-with-features-and-form.gradient::after {
        display: none;
    }

    /* Two Column Content with Cards */
    .two-column-content-with-cards .cards-wrapper .col-sm-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Inner Page Banner */
    .inner-page-banner p br {
        display: none;
    }

    /* Contact Banner Section */
    .contact-info-wrapper {
        gap: 16px;
    }

    /* Icon Pointers Section */
    .icon-pointers-section li {
        width: 100%;
    }

    /* Case Study Banner */
    .case-study-banner-section {
        padding: 32px 0;
    }

    .case-study-banner-section .property-specs .property {
        width: 100%;
        padding: 16px;
    }

    .case-study-banner-section .property-specs {
        margin-left: 0;
        margin-right: 0;
        gap: 12px;
    }

    .case-study-banner-section .content-wrapper .property-specs .property {
        border-right: none;
        border-bottom: 1px solid var(--gray-border);
    }

    .case-study-banner-section .headings h5 {
        font-size: 14px;
        padding-bottom: 4px;
    }

    .case-study-banner-section .property-specs p,
    .outcome-block .card div {
        font-size: 24px;
    }

    .case-study-banner-section .property-specs h6,
    .outcome-block .card p {
        font-size: 10px;
    }

    /* Case Study Narrative */
    .case-study-narrative {
        padding: 48px 0;
    }

    .case-study-narrative h2 {
        font-size: 24px;
        padding-top: 0;
    }

    .client-block .client-card {
        padding: 20px;
    }

    .narrative-wrapper.content-wrapper {
        gap: 40px;
    }

    .outcome-block .outcome-cards {
        gap: 12px;
    }

    .outcome-block .outcome-cards .card {
        width: 100%;
    }

    /* Locations Banner with Form */
    .locations-banner-with-form a.button {
        margin: 0;
    }

    .locations-banner-with-form .content-wrapper {
        gap: 18px;
    }

    .locations-banner-with-form .speciality-card {
        padding: 28px;
    }

    /* Locations Content and Images */
    .location-images-wrapper {
        gap: 12px;
    }

    .location-images-wrapper .location-info span {
        display: none;
    }

    /* Resources Podcasts Section */
    .podcast-card h3 {
        font-size: 24px;
    }

    .podcast-card p {
        font-size: 14px;
        line-height: 140%;
    }

    .episode {
        padding: 12px;
        gap: 12px;
    }

    .podcast-card {
        padding: 20px;
    }

    /* Resources Case Studies Section */
    .case-study-card .case-study-content {
        padding: 20px;
    }

    /* --- Must-watch grid --- */
    .podcast-guestings-grid {
        padding-top: 24px;
    }

    .podcast-guestings-grid>[class^="col-sm-"] {
        width: 100%;
    }

    .podcast-guestings-card-media {
        height: 200px;
    }

    .podcast-guestings-section.is-must-watch .section-header {
        flex-direction: column;
    }

    .podcast-guestings-section.is-must-watch .section-header .button-wrapper {
        width: 100%;
    }

    /* --- Latest episodes --- */
    .podcast-guestings-list {
        padding-top: 24px;
    }

    .podcast-guestings-episode {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        overflow: hidden;
    }

    .podcast-guestings-episode-media {
        min-height: 200px;
        border-radius: 0;
    }

    .podcast-guestings-episode-body {
        gap: 12px;
        padding: 20px;
    }

    .podcast-guestings-episode-body h3 {
        font-size: 16px;
        line-height: 137%;
    }

    .podcast-guestings-episode-body p {
        font-size: 14px;
        line-height: 140%;
    }

    .podcast-guestings-listen {
        margin-top: 0;
        padding: 8px 16px;
    }

    /* --- Featured interview --- */
    .podcast-guestings-video {
        border-radius: 16px;
        box-shadow: 0 12px 24px 0 rgba(0, 27, 69, 0.13);
    }

    .podcast-guestings-video-image {
        aspect-ratio: 3 / 2;
    }

    .podcast-guestings-video-label {
        bottom: 12px;
        left: 12px;
        padding: 6px 10px;
        letter-spacing: 0.9px;
    }

    .podcast-guestings-featured-content {
        gap: 12px;
    }

    .podcast-guestings-featured-content .content-wrapper p {
        font-size: 15px;
        line-height: 155%;
    }

    .podcast-guestings-checklist li.check {
        font-size: 14px;
        line-height: 140%;
    }

    /* --- Platforms band --- */
    .podcast-guestings-platforms-inner {
        gap: 12px;
    }

    .podcast-guestings-platform-list {
        gap: 12px;
        padding: 28px 0;
    }

    .podcast-guestings-platform {
        flex: 1 1 calc(50% - 6px);
        justify-content: center;
        min-width: 150px;
        padding: 0 12px;
    }

    .podcast-guestings-platforms-cta {
        width: 100%;
        min-width: 0;
    }

    .podcast-guestings-platforms-cta {
        font-size: 13px;
    }

    .podcast-guestings-platforms-cta svg {
        width: 13px;
    }

}

@media screen and (max-width: 575px) {

    /* Button */
    .button {
        width: 100% !important;
    }

    .arrow-button {
        padding: 12px;
    }

    /* Two Column with Iframe Home Banner */
    .two-column-with-iframe-home-banner .iframe-header {
        padding: 20px 20px 8px;
    }

    /* Header */
    header,
    .mobile-header {
        height: 68px;
    }

    /* Footer */
    .footer-menu {
        width: 100%;
    }

    .video-wrapper iframe {
        min-height: 220px;
    }

    /* Logos Slider */
    .marquee-logos__container {
        animation-duration: 40s;
        gap: 8px;
    }

    /* FAQ Section */
    .accordionjs .acc_section .ant-collapse-header {
        padding: 20px;
    }

    .accordionjs .acc_section .acc_content {
        padding: 0 20px 20px;
    }

    /* Contact Banner Section */
    .contact-info-wrapper .contact-info {
        padding: 18px;
    }

    .contact-banner-section .form-wrapper {
        padding: 22px 24px;
    }

    .contact-banner-section .iframe-header {
        padding-bottom: 22px;
    }

    /* Strategy Steps Section */
    .step {
        padding: 28px 20px;
        flex-direction: column;
    }

    /* Two Column Content with Statistics Cards */
    .two-column-content-with-statistics-cards .cards-wrapper>[class^="col-sm-"] {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Property Snapshot */
    .property-snapshots-card p {
        font-size: 14px;
    }

    /* Case Study Narrative */
    .testimonial-block .testimonial-card {
        padding: 24px;
    }

    .testimonial-block .testimonial-card h3 {
        padding: 0;
        border: none;
    }

    /* Image and CTA Cards */
    .image-and-cta-cards .advisor-button-wrapper {
        flex-direction: column;
    }

    .podcast-guestings-platform {
        flex-basis: 100%;
    }
}

@media screen and (max-width: 400px) {

    h1,
    h1.inner-page {
        font-size: 32px;
    }

    h2,
    .cta-section h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 16px;
    }

    h5 {
        font-size: 14px;
    }

    .p-100,
    .heading-and-button {
        padding: 50px 0;
    }

    html,
    body {
        font-size: 14px;
    }

    .arrow-button {
        padding: 12px;
        font-size: 14px;
    }

    .heading-wrapper,
    .case-study-section .heading-wrapper {
        padding-bottom: 34px;
    }

    .gap-48.row {
        row-gap: 40px;
    }

    .gap-24.row {
        row-gap: 20px;
    }

    .button-container span {
        height: 2px;
    }

    .case-studies .case-top,
    .case-studies .case-content,
    .icon-content-card {
        padding: 20px;
    }

    .custom-faq-content h4 {
        font-size: 16px;
    }

    /* Contact Banner Section */
    .contact-info-text a,
    .contact-info-text a strong {
        word-break: break-all;
    }

    .step {
        padding: 20px;
        gap: 14px;
    }

    /* Locations Content and Images */
    .location-images-wrapper .location-image {
        width: 100%;
    }

    /* Location Detail Page */
    .speciality-card .specifications .value {
        font-size: 16px;
    }

    .speciality-card .specifications h6 {
        font-size: 10px;
    }
}