main#main {
    padding: 0 !important;
}

.main-menu {
    padding-bottom: 1% !important;
}

#wrapper #main .fullwidth-box .fusion-row {
    width: 100% !important;
    max-width: 100% !important;
}

.fusion-fullwidth.fullwidth-box.fusion-builder-row-1.fusion-flex-container.has-pattern-background.has-mask-background.nonhundred-percent-fullwidth.non-hundred-percent-height-scrolling {
    margin: 0 !important;
    padding: 0 !important;
}

.fusion-fullwidth {
    padding: 0 !important;
}

.fusion-column-wrapper.fusion-flex-justify-content-flex-start.fusion-content-layout-column {
    margin: 0 !important;
    padding: 0 !important;
}

.fusion-post-content p,
.post-content p {
    margin: unset;
}

.fusion-layout-column {
    margin-bottom: 0;
}


/* ─── Design Tokens ───────────────────────────────────────── */
:root {
    --clr-white: #ffffff;
    --clr-blue: #0C4C7D;
    --clr-orange: #FAA61C;
    --clr-text: #000000;
    --clr-green-bg: #E6F0D1;
    --clr-yellow-bg: #FFE8B9;
    --clr-faq-border: #BDDC80;
    --clr-faq-bg-start: #F5F9E7;
    --clr-faq-bg-end: #ECF4D3;
}

/* ─── Base ────────────────────────────────────────────────── */
body #ehr-main {
    font-family: 'Lato', sans-serif;
    color: var(--clr-text);
    font-size: 1.0625rem;
    line-height: 1.6;
    background-color: var(--clr-white);
    overflow-x: hidden;
    font-variant-ligatures: none;
}

#ehr-main h3 {
    font-family: 'Lato', sans-serif !important;
    color: var(--clr-blue) !important;
}

#ehr-main h1.hero-section-heading {
    font-family: 'Inter', sans-serif;
    color: var(--clr-blue);
    font-size: 2.25rem !important;
    line-height: 1.05 !important;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1rem;
}

#ehr-main .hero-content h2.subheading {
    font-family: 'Lato', sans-serif;
    font-size: 1.3125rem !important;
    line-height: 1.5 !important;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

#ehr-main h2.section-heading {
    font-family: 'Inter', sans-serif;
    color: var(--clr-text) !important;
    font-size: 1.875rem !important;
    line-height: 1.3 !important;
    font-weight: 600;
    margin-bottom: 0.625rem;
}

/* ─── Layout Containers ───────────────────────────────────── */
.container {
    width: 100%;
    max-width: 72.5rem;
    margin: 0 auto;
    padding: 4rem 1.25rem;
    overflow: visible;
}

.container-wide {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    padding: 4rem 1.25rem;
}

/* ─── Primary Button ──────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background-color: var(--clr-orange);
    color: var(--clr-blue);
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: 2rem;
    border: none;
    cursor: pointer;
    font-size: 1.3125rem;
    line-height: 1.625rem;
    font-family: 'Lato', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-0.125rem);
}

.btn-primary:focus-visible,
*:focus-visible {
    outline: 0.125rem solid var(--clr-blue) !important;
    outline-offset: 0.125rem;
}

.btn-primary svg {
    width: 25px;
    fill: var(--clr-blue);
}

/* ═══════════════════════════════════════════════════════════
   SECTION 1 – HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
    background: linear-gradient(0deg, #FCD893 0%, #FFF 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    padding: 4rem 0;
    max-width: 72.5rem;
    margin: 0 auto;
}

.hero-content {
    flex: 1 1 46%;
    max-width: 46%;
}

p.hero-desc {
    margin-top: 1.5rem !important;
    font-size: 1.0625rem;
    line-height: 1.6;
}

.hero-images {
    flex: 1 1 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-card {
    position: relative;
    overflow: visible;
    width: 100%;
}

img.hero-overlay-temp {
    position: absolute;
    right: -4rem;
    top: -2rem;
    z-index: 1;
    max-width: 12rem;
}

img.hero-overlay-calender {
    position: absolute;
    right: -6rem;
    bottom: -2.5rem;
    z-index: 1;
    max-width: 18rem;
}

.hero-img-card img.hero-main-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 2 – TOOLS (Therap's Tools for Health Documentation)
   ═══════════════════════════════════════════════════════════ */
.tools {
    background: var(--clr-white);
    text-align: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    column-gap: 2.125rem;
    margin-top: 2.5rem;
    text-align: left;
}

.tool-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 0 1.5rem 0;
    border-width: 0 0 3px 0;
    border-style: solid;
    border-image: linear-gradient(90deg, #FFE493 40.87%, #FFF 100%) 1;
}

.tool-item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tool-icon {
    flex-shrink: 0;
    height: 2rem;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
}

.tool-icon img {
    height: 100%;
    width: auto;
}

.tool-item h3 {
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
    font-weight: 600;
    margin: 0 0 0.25rem 0 !important;
    color: var(--clr-blue);
    font-family: 'Lato', sans-serif;
}

.tool-item p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--clr-text);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 3 – EHR HELPS
   ═══════════════════════════════════════════════════════════ */
.ehr-helps {
    background: linear-gradient(0deg, #FFF 0%, #E6F0D1 96.63%);
    text-align: center;
}

.ehr-helps-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2.5rem;
    text-align: left;
}

.ehr-helps-photo {
    position: relative;
    max-width: 90%;
    margin: 0 auto;
}

.ehr-helps-photo img.ehr-helps-main-img {
    width: 100%;
    display: block;
}

img.benefits-overlay-pie-chart {
    position: absolute;
    right: -1rem;
    top: 2rem;
    z-index: 1;
    max-width: 12.5rem;
}

img.benefits-overlay-bar-chart {
    position: absolute;
    left: -3rem;
    bottom: -3rem;
    z-index: 1;
    max-width: 14.5rem;
}

.ehr-helps-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ehr-help-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 2px solid #FFE000;
    background: #FFFBE6;
    gap: 0;
}

.ehr-help-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.ehr-help-icon {
    flex-shrink: 0;
    width: 1.5rem;
    margin-top: 2px;
}

.ehr-help-icon img {
    width: 100%;
    height: auto;
}

.ehr-help-card h3 {
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
    font-weight: 600;
    margin: 0 !important;
    color: var(--clr-blue);
    font-family: 'Lato', sans-serif;
}

.ehr-help-card p {
    font-size: 1.0625rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 3.25rem;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 4 – TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials {
    background: #FFE8B9;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    border-radius: 1.25rem;
    border: 2px solid #FFB92E;
    background: #fff;
    padding: 2.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

p.testimonial-quote {
    font-size: 1.0625rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    color: #000;
}

h3.author-title {
    font-size: 1.0625rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    color: var(--clr-blue);
    font-weight: 700;
    font-family: 'Lato', sans-serif;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 5 – THERAP CONNECT
   ═══════════════════════════════════════════════════════════ */
.connect {
    background: url('https://www.therapservices.net/images/product/2026/ehr/therap-connect-backgraound-image.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    text-align: center;
}

.connect .container {
    padding-block: 4rem 0;
}

.connect .container-wide {
    padding: 1.5rem 0 4rem;
}

p.connect-intro {
    font-size: 1.0625rem;
    line-height: 1.6;
    margin: 1.5rem auto 0;
    color: #000;
}

.connect-intro a {
    text-decoration: none;
    color: #0C4C7C;
    font-weight: 700;
}

.connect-screenshot {
    margin: 0 auto 2rem;
}

.connect-screenshot img {
    max-width: 40rem;
}

.connect-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

.devices-banner-left,
.devices-banner-right {
    display: flex;
    gap: .5rem;
    align-items: center;
    flex-direction: column;
}

.device-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-icon img {
    width: 8.5rem;
    height: auto;
    margin: 0;
    object-fit: contain;
}

.devices-banner-left .device-icon:nth-child(2) {
    transform: translateX(-3rem);
}

.devices-banner-right .device-icon:nth-child(2) {
    transform: translateX(3rem);
}

.connect-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

/* Feature item cards – rendered as  links */
.connect-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3125rem;
    padding: 1.5rem 1rem;
    background: #fff;
    border: 3px solid #FFB92E;
    border-radius: 1.25rem;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.connect-feature-item:hover,
.connect-feature-item:focus-visible {
    background: #FFF7E9;
    border-color: #FFB92E;
    transform: translateY(-2px);
    outline: none;
}

.connect-feature-item:focus-visible {
    outline: 0.125rem solid var(--clr-blue) !important;
    outline-offset: 0.125rem;
}

.connect-feature-item:active {
    transform: translateY(-2px);
}

.connect-feature-icon {
    width: 2.875rem;
    height: 2.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.connect-feature-icon.environment-monitoring {
    height: 3.2rem;
    width: 2.25rem;
    margin-bottom: 0rem;
}

.connect-feature-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.connect-feature-item h3 {
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
    font-weight: 700;
    margin: 0 !important;
    margin-top: 0.625rem !important;
    color: var(--clr-blue);
    font-family: 'Lato', sans-serif;
}

.connect-feature-item p {
    font-size: 1.0625rem;
    line-height: 1.5;
    color: #000;
    margin: 0;
}

/* Screenshot fade transition */
.connect-screenshot img {
    transition: all 0.2s ease-in-out;
}

.connect-screenshot img.is-fading {
    opacity: 0;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 6 – FAQ (mirrored from EVV page design)
   ═══════════════════════════════════════════════════════════ */
/* FAQ SECTION */
.faq {
    background: #fff;
}

.faq .section-heading {
    text-align: center;
}

.faq-columns {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-top: 2rem;
}

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

/* Card-style accordion items */
details.faq-item {
    border: 1.5px solid #BDDC80;
    border-radius: 0.9375rem;
    background: linear-gradient(180deg, #F5F9E7 0%, #ECF4D3 100%);
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.875rem;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 0.75rem;
}


span.faq-question {
    font-family: 'Lato', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.5;
    font-weight: 600;
    color: var(--clr-text);
    flex: 1;
}

/* Single chevron icon that rotates */
.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.9375rem;
    flex-shrink: 0;
    transform: rotate(180deg);
    transition: transform 0.25s ease;
}

.faq-icon img {
    width: 100%;
    height: auto;
}

details.faq-item[open] .faq-icon {
    transform: rotate(0deg);
}

details.faq-item[open] .faq-summary {
    padding-bottom: 10px;
}

.faq-content {
    padding: 0rem 1.875rem 1.25rem;
}

.faq-content p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #000;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media(min-width: 900px) {

    .connect-screenshot {
        display: flex;
        align-items: flex-start;
        justify-content: space-evenly;
        width: 100%;
        max-width: 70%;
    }
}

@media(min-width: 2100px) {

    .container,
    .hero-container {
        max-width: 1400px;
    }
}

@media (max-width: 1920px) {
    img.hero-overlay-temp {
        position: absolute;
        right: -4rem;
        top: -2rem;
        z-index: 1;
        max-width: 13rem;
    }

    img.hero-overlay-calender {
        position: absolute;
        right: -6rem;
        bottom: -2.5rem;
        z-index: 1;
        max-width: 22rem;
    }
}

@media (max-width: 1480px) {
    .hero-container {
        padding: 3rem 1.25rem;
    }

    #ehr-main h1.hero-section-heading {
        font-size: 2.25rem !important;
    }

    .connect-screenshot img {
        max-width: 30rem;
    }

    .connect .container-wide {
        max-width: 95%;
    }

    img.hero-overlay-calender {
        position: absolute;
        right: -7.6rem;
        bottom: -2.5rem;
        z-index: 1;
        max-width: 21rem;
    }

    img.hero-overlay-temp {
        position: absolute;
        right: -4rem;
        top: -2rem;
        z-index: 1;
        max-width: 12rem;
    }

    .connect-screenshot {
        max-width: 85%;
    }

    .device-icon img {
        width: 7.5rem;
        height: auto;
        margin: 0;
        object-fit: contain;
    }
}

@media(max-width:1281px) {
    .connect-features {
        gap: 0.625rem;
    }

    .hero-img-card {
        max-width: 88%;
    }

    .ehr-helps-photo {
        position: relative;
        max-width: 80%;
        margin: 0 auto;
    }

    img.hero-overlay-temp {
        position: absolute;
        right: -2rem;
        top: -1.5rem;
        z-index: 1;
        max-width: 10.5rem;
    }

    img.hero-overlay-calender {
        position: absolute;
        right: -3rem;
        bottom: -2rem;
        z-index: 1;
        max-width: 19rem;
    }

    img.benefits-overlay-pie-chart {
        position: absolute;
        right: -1.5rem;
        top: 1.5rem;
        z-index: 1;
        max-width: 11.5rem;
    }

    img.benefits-overlay-bar-chart {
        position: absolute;
        left: -3rem;
        bottom: -3rem;
        z-index: 1;
        max-width: 13.5rem;
    }

    .connect-features {
        /* grid-template-columns: repeat(3, 1fr); */
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .connect-feature-item {
        flex: 0 1 calc(33.333% - 1rem);
    }
}

@media (max-width: 1180px) {
    .hero-container {
        max-width: 95%;
    }

    .container,
    .container-wide {
        max-width: 90%;
    }

    .connect-features {
        /* grid-template-columns: repeat(3, 1fr); */
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .connect-feature-item {
        flex: 0 1 calc(33.333% - 1rem);
    }

    img.benefits-overlay-bar-chart {
        position: absolute;
        left: -3rem;
        bottom: -3rem;
        z-index: 1;
        max-width: 12.5rem;
    }

    img.benefits-overlay-pie-chart {
        position: absolute;
        right: -1.5rem;
        top: 1.5rem;
        z-index: 1;
        max-width: 11.5rem;
    }

}

@media (max-width: 1024px) {

    .container,
    .container-wide {
        width: 100%;
        padding: 3rem 1.25rem;
        max-width: 90%;
    }

    .hero-container {
        padding: 3rem 2rem;
        gap: 1.5rem;
    }

    .hero-content {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .hero-images {
        flex: 1 1 100%;
        width: 100%;
    }

    img.hero-overlay-temp {
        position: absolute;
        right: -2rem;
        top: -1.5rem;
        z-index: 1;
        max-width: 9rem;
    }

    img.hero-overlay-calender {
        position: absolute;
        right: -3rem;
        bottom: -2rem;
        z-index: 1;
        max-width: 16rem;
    }

    #ehr-main h1.hero-section-heading {
        font-size: 2.1875rem !important;
    }

    #ehr-main .hero-content h2.subheading {
        font-size: 1.25 !important;
        line-height: 1.5 !important;
    }

    p.hero-desc {
        line-height: 1.6;
    }

    #ehr-main h2.section-heading {
        text-align: center;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .ehr-helps-inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .ehr-helps-photo {
        max-width: 50%;
        margin: 0 auto;
    }

    img.benefits-overlay-pie-chart {
        position: absolute;
        right: -2rem;
        top: 1rem;
        z-index: 1;
        max-width: 11rem;
    }

    img.benefits-overlay-bar-chart {
        position: absolute;
        left: -3rem;
        bottom: -2rem;
        z-index: 1;
        max-width: 12.5rem;
    }

    .connect-screenshot {
        max-width: 100%;
    }

}


@media (max-width: 900px) {
    .connect .container {
        padding-block: 3rem 0;
    }

    .hero-container {
        flex-direction: column;
        padding: 3rem 1.25rem;
        gap: 1.5rem;
        max-width: 90%;
    }

    .hero-content {
        flex: 1 1 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    img.hero-overlay-temp {
        position: absolute;
        right: -1.6rem;
        top: -1rem;
        z-index: 1;
        max-width: 9.5rem;
    }

    img.hero-overlay-calender {
        position: absolute;
        right: -1.5rem;
        bottom: -1.5rem;
        z-index: 1;
        max-width: 18rem;
    }

    #ehr-main h1.hero-section-heading,
    p.hero-desc,
    #ehr-main .hero-content h2.subheading {
        text-align: center;
    }

    #ehr-main h2.section-heading {
        font-size: 1.6875rem !important;
        line-height: 1.3 !important;
    }

    .hero-img-card {
        width: 70%;
    }

    .faq-columns {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .connect-features {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .connect-feature-item.active-mobile {
        background: #FFF7E9;
        border-color: #FFB92E;
        transform: translateY(-2px);
        outline: none;
    }

    .connect .container-wide {
        max-width: 85%;
    }

    .devices-banner-left,
    .devices-banner-right {
        display: none;
    }

    /* Add some margin to the wrapper when placed in the accordion to look nice */
    #connect-screenshot-wrapper {
        margin: auto;
        margin-bottom: 1rem;
    }

    .connect-screenshot img {
        max-width: 38rem;
        padding-inline: 1rem;
        margin-bottom: 0;
    }

    .ehr-helps-photo {
        max-width: 60%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .ehr-helps-photo {
        max-width: 80%;
    }

    .hero-container {
        padding: 3rem 2rem;
        max-width: 100%;
    }

}

@media (max-width: 700px) {

    .container {
        max-width: 100%;
        padding: 3rem 1.5rem;
    }

    .connect .container-wide {
        max-width: 100%;
        padding: 1.5rem 1.5rem 3rem;
    }

    .connect .container {
        padding-block: 3rem 0;
    }

    #ehr-main h1.hero-section-heading {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem;
    }

    #ehr-main .hero-content h2.subheading {
        font-size: 1.125rem !important;
        line-height: 1.4 !important;
    }

    #ehr-main h2.section-heading {
        font-size: 1.25rem !important;
    }

    .tool-item h3,
    .ehr-help-card h3,
    .connect-feature-item h3 {
        font-size: 1.125rem !important;
    }

    .tool-icon {
        height: 1.8rem;
    }

    .testimonials-grid,
    .ehr-helps-inner {
        margin-top: 1.5rem;
    }

    p.connect-intro {
        margin: 1rem auto 0;
    }

    .connect-feature-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .hero-container {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .connect-features {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.25rem;
    }

    .ehr-help-card-header {
        gap: 1rem;
    }

    .ehr-help-card p {
        padding-left: 2.25rem;
    }

    .hero-img-card {
        width: 100%;
    }

    img.hero-overlay-temp {
        position: absolute;
        right: -1.6rem;
        top: -1rem;
        z-index: 1;
        max-width: 7.5rem;
    }

    img.hero-overlay-calender {
        position: absolute;
        right: -1.5rem;
        bottom: -1.5rem;
        z-index: 1;
        max-width: 13rem;
    }

    img.benefits-overlay-pie-chart {
        position: absolute;
        right: -2rem;
        top: 1rem;
        z-index: 1;
        max-width: 10.5rem;
    }

    img.benefits-overlay-bar-chart {
        position: absolute;
        left: -2rem;
        bottom: -2rem;
        z-index: 1;
        max-width: 11rem;
    }

}

@media (max-width: 600px) {

    img.benefits-overlay-pie-chart {
        position: absolute;
        right: -2rem;
        top: 0.8rem;
        z-index: 1;
        max-width: 7.5rem;
    }

    img.benefits-overlay-bar-chart {
        position: absolute;
        left: -2rem;
        bottom: -2rem;
        z-index: 1;
        max-width: 8rem;
    }
}

@media (max-width: 400px) {
    img.hero-overlay-temp {
        position: absolute;
        right: -1.6rem;
        top: -1rem;
        z-index: 1;
        max-width: 6.5rem;
    }

    img.hero-overlay-calender {
        position: absolute;
        right: -1.5rem;
        bottom: -1.5rem;
        z-index: 1;
        max-width: 12rem;
    }
}

@media (max-width: 361px) {
    #ehr-main h1.hero-section-heading {
        font-size: 1.5rem !important;
    }
}




/* modals */
.fusion-checklist .fusion-li-icon,
ul.fusion-checklist .fusion-li-icon {
    padding-top: 15px;
    font-size: 12px;
}

rs-layer a {
    padding-top: 9px !important;
}

@media only screen and (min-width: 600px) {
    rs-layer a {
        padding-left: 25px !important;
        padding-right: 25px !important;
        padding-top: 9px !important;
    }
}

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

    .fusion-checklist .fusion-li-icon,
    ul.fusion-checklist .fusion-li-icon {
        padding-top: 0px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 1100px) {
    .fusion-checklist .fusion-li-item-content span {
        line-height: 32px !important;
    }

    .fusion-layout-column.fusion_builder_column.fusion-builder-column-2.fusion_builder_column_1_2 {
        margin-bottom: 0;
    }

    .fusion-checklist .fusion-li-icon,
    ul.fusion-checklist .fusion-li-icon {
        font-size: 8px;
    }

    .fusion-fullwidth.fullwidth-box.fusion-builder-row-2.fusion-flex-container.nonhundred-percent-fullwidth.non-hundred-percent-height-scrolling {
        padding-top: 10px !important;
        /* padding-bottom: 20px; */
    }

    .fusion-column-wrapper.fusion-column-has-shadow.fusion-flex-justify-content-flex-start.fusion-content-layout-column {
        margin-left: 0;
        margin-right: 0;
    }

    .fusion-fullwidth.fullwidth-box.fusion-builder-row-3.fusion-flex-container.nonhundred-percent-fullwidth.non-hundred-percent-height-scrolling {
        padding-right: 3%;
    }
}

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

    .fusion-checklist .fusion-li-icon,
    ul.fusion-checklist .fusion-li-icon {
        padding-top: 0px;
        font-size: 12px;
        padding-left: 15px;
    }
}

@media only screen and (max-width: 600px) {
    .fusion-layout-column.fusion_builder_column.fusion-builder-column-2 .fusion-text.fusion-text-1.fusion-text-no-margin {
        font-size: 20px !important;
        line-height: 30px !important;
        padding-bottom: 0px;
        margin-top: 20px;
    }

    .fusion-layout-column.fusion_builder_column.fusion-builder-column-1 {
        padding-bottom: 0px !important;
        margin-bottom: 0px !important;
    }

    .fusion-flex-container.fusion-builder-row-2 .fusion-li-item-content {
        font-size: 16px !important;
    }

    .fusion-checklist .fusion-li-icon,
    ul.fusion-checklist .fusion-li-icon {
        padding-top: 0px;
        font-size: 6px;
        padding-left: 40px;
        margin-top: -12px;
    }

    .fusion-fullwidth.fullwidth-box.fusion-builder-row-3 .fusion-builder-row.fusion-row.fusion-flex-align-items-flex-start {
        padding-right: 26px !important;
        padding-left: 26px !important;
    }

    .fusion-li-item-content {
        line-height: 27px !important;
    }

    ul.fusion-checklist {
        margin-top: 0px !important;
    }

    .fusion-layout-column.fusion_builder_column.fusion-builder-column-2.fusion_builder_column_1_2 ul li.fusion-li-item,
    .fusion-layout-column.fusion_builder_column.fusion-builder-column-3.fusion_builder_column_1_2 ul li.fusion-li-item {
        margin: 0 3% 0 -5%;
    }

    /* .fusion-layout-column.fusion_builder_column.fusion-builder-column-2.fusion_builder_column_2_3 ul li.fusion-li-item {
    margin: 0 10%;
  } */

    .fusion-imageframe.imageframe-none.imageframe-2.hover-type-none.mobile-image-mobile,
    .fusion-imageframe.imageframe-none.imageframe-2.hover-type-none.mobile-image-mobile img {
        margin: 0 auto;
        display: block;
    }
}

/* Added By Onjon : 09-01-2022 - SF Form Slider */
* {
    outline: 0 !important;
}

.custom-modal,
.custom-modal-2 {
    display: none;
    position: fixed;
    overflow: auto;
    background: rgb(0 0 0 / 60%);
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    float: right;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 999;
}

.custom-modal-dialog,
.custom-modal-2-dialog {
    max-width: 680px;
    width: 100%;
    border-radius: 0px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.custom-modal-content,
.custom-modal-2-content {
    background: #ffffff;
    padding: 30px 30px;
    border-radius: 10px;
    border: 1px solid #ffc189;
    -webkit-box-shadow: 0 0 40px 15px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 40px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 40px 15px rgba(0, 0, 0, 0.15);
}

.close-modal,
.close-modal-2 {
    position: absolute;
    top: 6px;
    right: 4px;
    width: 105px;
    opacity: 1;
    color: #000000;
    border: 1px solid #ffffff;
    z-index: 9;
    padding: 0;
    text-align: center;
    line-height: 10px;
    cursor: pointer;
    padding: 14px 1px;
    font-weight: 600;
    border-radius: 10px;
    border: 0;
    width: 0px;
}

.close-modal .round,
.close-modal-2 .round {
    border-radius: 100%;
    background: #ffc189;
    margin-right: 2px;
    padding: 1px 8px 2px 8px;
    margin-left: -6px;
    margin-left: -50px;
}

body.modal-open .custom-modal,
body.modal-open .custom-modal-2 {
    background: rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 5px 2px #fff;
    -moz-box-shadow: 0 0 5px 2px #fff;
    box-shadow: 0 0 5px 2px #fff;
}

.custom-modal .custom-modal-body,
.custom-modal-2 .custom-modal-body {
    padding: 0 80px;
    max-height: 570px;
    overflow: hidden;
    overflow-y: auto;
    margin-top: 20px;
}

div#custom-modal-2 .custom-modal-body {
    max-height: 80vh;
}

.custom-modal .custom-modal-body .model-heading,
.custom-modal-2 .custom-modal-body .model-heading {
    font-size: 26px;
    text-align: center;
    line-height: 32px;
    color: #00437c;
    font-weight: 550;
    padding-bottom: 0px;
    margin-bottom: 20px;
    margin-top: -5px;
}

.fusion-imageframe.imageframe-1.mobile-image-desktop img {
    height: 100%;
    width: 100%;
}

.custom-modal .custom-modal-body::-webkit-scrollbar-track,
.custom-modal-2 .custom-modal-body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
    border-radius: 20px;
}

.custom-modal .custom-modal-body::-webkit-scrollbar,
.custom-modal-2 .custom-modal-body::-webkit-scrollbar {
    width: 6px;
    background-color: #f5f5f5;
}

.custom-modal .custom-modal-body::-webkit-scrollbar-thumb,
.custom-modal-2 .custom-modal-body::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background-color: orange;
    border: 1px solid #555555;
}

/**/
/**/
#first-form-web-to-case input,
#other-state-form input,
#comments {
    border: 1px solid #000;
    border-radius: 4px;
    -moz-border-radius: 4px !important;
    -webkit-border-radius: 4px;
    height: 36px;
    margin-bottom: 20px;
    color: #000;
    font-size: 16px;
}

#first-form-web-to-case label,
#choose-state-label,
#other-state-form label {
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

#first-form-web-to-case select,
#choose-state,
#other-state-form select,
#first-form-web-to-case select:focus,
#choose-state,
#other-state-form select:focus {
    display: block;
    width: 100%;
    border: 1px solid #ffaa06;
    border-radius: 4px;
    -moz-border-radius: 4px !important;
    -webkit-border-radius: 4px;
    height: 36px;
    margin-bottom: 10px;
    color: #000;
    font-size: 16px;
    outline: 0px;
    background: #fff8ec;
    padding-left: 10px;
    margin-bottom: 25px;
    margin-top: 5px;
}

#first-form-web-to-case .submit-btn,
#other-state-form .submit-btn,
#first-form-web-to-case .submit-btn:focus,
#other-state-form .submit-btn:focus {
    -moz-border-radius: 20px !important;
    -webkit-border-radius: 20px;
    border-radius: 20px !important;
    font-size: 18px !important;
    font-weight: 600;
    font-style: normal;
    line-height: 18px;
    color: #0c4c7c !important;
    background-color: #acca6d !important;
    width: 100%;
    margin-top: 0px;
    cursor: pointer;
    width: 100%;
    padding: 12px;
    border: none;
}

#first-form-web-to-case .radio-btn,
#other-state-form .radio-btn {
    width: 15px;
    margin-bottom: 4px;
}

#first-form-web-to-case .radio_text,
#other-state-form .radio_text {
    margin-left: 5px;
}

#comments {
    height: 150px !important;
}

.required-star {
    margin-left: 8px;
    font-size: 18px;
    color: #b30600;
    font-weight: 600;
}

#first-form-web-to-case label,
#choose-state-label,
#other-state-form label {
    margin-bottom: 0px;
    font-weight: 600;
    line-height: 28px;
}

#first-form-web-to-case input[type="text"],
#other-state-form input[type="text"],
#first-form-web-to-case input[type="email"],
#other-state-form input[type="email"],
#comments {
    -webkit-border-radius: 4px;
    border-radius: 4px;
    height: 36px;
    margin-bottom: 10px;
    color: #000;
    font-size: 16px;
    outline: 0px;
    border: 1px solid #ffaa06;
    background: #fff8ec;
    margin-bottom: 25px;
    width: 100%;
    padding: 0 5px;
    margin-top: 5px;
}

#comments {
    height: 150px;
    margin-bottom: 2px;
}

#first-form-web-to-case input[type="text"]:focus,
#other-state-form input[type="text"]:focus,
#first-form-web-to-case input[type="email"]:focus,
#other-state-form input[type="email"]:focus,
#comments:focus {
    outline: 0 !important;
}

#first-form-web-to-case .radio-btn,
#other-state-form .radio-btn {
    width: 15px;
    height: 22px;
    margin-bottom: 3px;
}

.radio_text {
    font-weight: 500 !important;
}

.custom-modal input[type="radio"]:after,
input[type="radio"]:checked:after,
.close-modal-2 input[type="radio"]:after,
.close-modal-2 input[type="radio"]:checked:after {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: #fff8ec;
    content: "";
    display: inline-block;
    visibility: visible;
    border: 1px solid #ffaa06;
}

.custom-modal input[type="radio"]:checked:after,
.close-modal-2 input[type="radio"]:checked:after {
    background-color: #ffaa06;
    border: 2px solid #fff8ec;
    height: 20px;
    width: 20px;
    left: -2px;
    top: auto;
}

#main {
    padding-top: 0px;
    padding-bottom: 0px;
}

.radio-label {
    font-size: 18px;
    font-weight: 600;
}

@media only screen and (max-width: 768px) {
    .fusion-imageframe.imageframe-none.imageframe-2.hover-type-none.mobile-image-mobile img {
        height: 100%;
        width: 100%;
    }

    .leftColumn h1 {
        padding-top: 0 !important;
    }

    .leftColumn p {
        font-size: 1.25rem;
        margin-bottom: 0;
    }
}

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

    .custom-modal .custom-modal-body .model-heading,
    .custom-modal-2 .custom-modal-body .model-heading {
        font-size: 20px;
        line-height: 28px;
    }

    #first-form-web-to-case label,
    #choose-state-label,
    #other-state-form label,
    .radio-label {
        font-size: 16px;
    }

    #first-form-web-to-case .submit-btn,
    #other-state-form .submit-btn,
    #first-form-web-to-case .submit-btn:focus,
    #other-state-form .submit-btn:focus {
        font-size: 16px !important;
    }
}

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

    .custom-modal .custom-modal-body,
    .close-modal-2 .custom-modal-body {
        padding: 0 10px;
    }

    .custom-modal-content,
    .custom-modal-2 .custom-modal-content {
        padding: 30px 10px;
    }

    .close-modal,
    .close-modal-2 {
        top: 3px;
    }

    .close-modal .round,
    .close-modal-2 .round {
        margin-left: -30px;
    }

    ul.fusion-checklist {
        font-size: 20px !important;
        margin-left: 5% !important;
    }
}

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

    .custom-modal .model-heading .break,
    .custom-modal-2 .model-heading .break {
        display: none;
    }
}

@media only screen and (max-width: 1030px) {
    .fusion-body .fusion-builder-column-1 {
        margin-bottom: 0px !important;
    }
}

.landingpage_green_button {
    padding: 10px 5px 10px !important;
}

a:is(#select-state, #book-a-meeting) img {
    max-width: 300px !important;
}

.landingpage_green_button {
    background-color: transparent !important;
}

.landingpage_green_button {
    margin: 0 auto !important;
    padding: 10px 5px 10px !important;
    border-radius: 35px;
    margin: 5px !important;
    /* width: 50%; */
}

.top-container-button {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    margin-left: 5%;
}

/* Media queries for responsiveness */
@media (max-width: 767px) {
    .top-container-button {
        flex-flow: column;
    }
}

@media screen and (min-width: 1100px) and (max-width: 1400px) {
    .landingpage_green_button {
        padding-bottom: 1% !important;
    }
}

@media screen and (max-width: 1100px) {
    .landingpage_green_button {
        background-color: transparent !important;
        padding-bottom: 10% !important;
    }
}

@media screen and (min-width: 1700px) {
    .fusion-fullwidth.fullwidth-box.fusion-builder-row-2.fusion-flex-container.nonhundred-percent-fullwidth.non-hundred-percent-height-scrolling {
        padding-top: 0 !important;
    }
}

@media screen and (min-width: 600px) and (max-width: 1100px) {
    .landingpage_green_button {
        padding-bottom: 2% !important;
    }
}

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

    .landingpage_green_button,
    .landingpage_green_button:hover {
        background-color: transparent !important;
        padding-bottom: 0% !important;
        width: 70%;
        display: flex;
        margin: 0 auto !important;
        justify-content: center;
        max-width: 200px !important;
    }

    a:is(#select-state, #book-a-meeting) img {
        max-width: 250px !important;
    }
}

@media only screen and (min-width: 600px) and (max-width: 768px) {
    .topContainer {
        background-size: cover !important;
    }

    .top-container-button {
        justify-content: center;
    }
}

@media only screen and (max-width: 768px) {
    .topContainer .leftColumn h1 {
        padding-top: 0 !important;
    }

    .topContainer .leftColumn p {
        font-size: 1.25rem !important;
        margin-bottom: 0 !important;
    }
}

body.modal-open {
    overflow: hidden !important;
}