:root {
    /* On-Demand */
    --on-demand-headings: #284C72;
    --on-demand-buttons: #548CC5;
    --on-demand-other: #234162;
}

/* Desktop */

/* Internal Page Fixes */
*[class*="p_row"] strong:hover {
    color: #04364e;
}

.p_row6 {
    margin-bottom: 7px;
    line-height: 1.3;
}

.p_row7 {
    line-height: 2;
}

/* Our Providers Page */
.Our-Providers-con.no-image {
    padding: 38px;
    height: calc(100% - 80px);
}

/* Mobile */

@media (max-width: 1200px) {
    .d-wrapper div.map-section {
        display: none;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 13px;
        line-height: 1;
    }
}

/* On-Demand Landing Page */
.heading {
    color: var(--on-demand-headings);
}

.page-sub-heading {
    width: max-content;
    color: var(--on-demand-headings);
}

.page-sub-heading::before, .page-sub-heading::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--on-demand-buttons);
}

.page-sub-heading::before {
    margin-bottom: 20px;
}

.page-sub-heading::after {
    margin-top: 20px;
}

.section-heading {
    color: var(--on-demand-headings);
    padding-bottom: 20px;
}

.section-heading::after {
    content: '';
    display: block;
    width: 25%;
    height: 2px;
    background-color: var(--on-demand-buttons);
    margin-top: 20px;
}

.card-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 30px 0;
}

.card-grid > div {
    width: 100%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.card-grid > div img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.card-grid > div .lower {
    height: 175px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    text-align: center;
    padding: 1rem;
}


@media screen and (max-width: 767px) {
    .card-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* FAQ */
.faq {
    --border-width: 2px;
    height: auto;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    margin: 0 0 25px;
}

.faq .heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid transparent;
    color: var(--theme-white);
    scroll-margin-top: 100px;
    margin: 0;
    padding: 10px 16px 10px 40px;
    transition: 150ms all ease-in;
}

.faq .heading:hover {
    border-bottom: 2px solid var(--on-demand-buttons);
    transition: 150ms all ease-in;
    cursor: pointer;
}

.faq .heading.active {
    border-bottom: 2px solid var(--on-demand-buttons);
}

.faq .heading:hover .arrow,
.faq .heading.active .arrow {
    cursor: pointer;
    transition: 250ms all ease-in;
}

.faq .arrow {
    --size: 24px;
    width: var(--size);
    height: var(--size);
    fill: var(--on-demand-buttons);
    transition: 250ms all ease-in;
}

.faq .arrow.rotate {
    transform: rotate(90deg);
}

.faq .content {
    overflow: hidden;
    max-height: 0px;
    display: flex;
    text-align: left;
    flex-direction: column;
    color: var(--theme-white);
    margin: 0;
    padding: 0 40px;
    transition: 250ms all ease-in;
    box-sizing: border-box;
}

.faq .content * {
    margin: 0;
}

.faq .content.open {
    padding: 32px 40px;
    transition: 250ms all ease-in;
}




























