@charset "UTF-8";
/* CSS Document */

/* Adobe Fonts Import */
@import url("https://use.typekit.net/zjj3ghm.css");

/* === Global Vars === */

:root {
    --orange: #F37D1C;
    --taupe: #93837E;
    --light: #D4CDC3; 
    --ultra_light: #F5F4F2;
    --light_trans: rgba(212, 205, 195, 0.25);
    --dark: #20282E;
    --gray: #43494d;
    --red: #AC252A;
    --blue: #94ABB2;
    --blue-trans: rgba(148, 171, 179, 0.2);
    --gold: #DBAA2E;
    --display: "fraunces-variable", sans-serif;
}

/* ============= Header / Navigation ============= */

header {
    background-color: #FFF;
    /*overflow: hidden;*/
/*    padding: 16px 16px 20px 12px;*/
/*    transition: all 0.2s ;*/
}

.logo_col {
    padding: 10px;
}

.logo_col img {
    max-width: 250px;
    height: auto;
}

.m_only {
    display: block;
}

.d_only {
    display: none;
}

.m_nav {
    position: fixed;
    background-color: var(--navy);
    width: 100%;
    z-index: 10;
}

.d_nav {
    display: none;
}

.m_nav.open {    
    display: inline-block;
    width: 45px !important;
    /*height: 45px;*/
    padding: 6px;
    border-radius: 6px;
}

.m_nav.open {
    position: absolute;
    top: 10px;
    right: 10px;
    width: auto;
    cursor: pointer;
    background-color: var(--orange);
    line-height: 0;
}

.m_nav.open img {
    width: 100%;
    height: auto;
    margin: 0;
}

.m_nav nav,
.m_nav ul,
.m_nav li {
    display: block;
    width: 100%;
    background-color: var(--orange);
}

.m_nav ul {
    padding: 30px;
}

.m_nav li {
    display: block !important;
    margin-bottom: 0;
}

.m_nav li:not(li li) {
    border-top: 1px solid #ddd;
}

.m_nav a {
    color: #FFF !important;
    display: block;
    width: 100%;
    /*text-align: center;*/
    padding: 5px 0 !important;
    font-size: 1.2em;

}

.m_nav button {
    display: none !important;
}

.m_nav ul ul,
.m_nav ul ul li {
    display: block !important;
    width: 100% !important;
    height: fit-content !important;
    background-color: transparent !important;
    padding: 0 !important;
}

.m_nav ul ul {
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    border: none !important;    
}

.m_nav ul ul li a {
    font-family: basic-sans, sans-serif !important;
    text-align: center !important;
    padding-left: 30px !important;
}

/* ============= Basic Styles (body, h1, etc) ============= */

body {
    font-size: 18px;
    font-family: basic-sans, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--dark);
    background-color: var(--dark);
    padding: 0;
}

body.wp-admin,
body.js.site-editor-php,
body#tinymce {
    background-color: #FFF !important;
}

.skip, .homepage_h1, .VisuallyHidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

h1, h2 {
    font-family: var(--display);
    font-weight: 600;
    font-style: normal;
    line-height: 1.1;
}

h1, h2, h3, p, li {
    margin-bottom: 16px;
    /*text-align: center;*/
}

h2 {
    font-size: 2.25em;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.25em;
    font-weight: normal;
    margin-bottom: 6px;
}

h4 {
    font-size: 1em;
    font-weight: bold;
}

p, li {
    line-height: 1.3;
}

ul {
    padding-left: 20px;
}

.spaced li {
    margin: 8px 0;
}

ul li::marker {
  color: var(--orange);
}

ol ul li {
    list-style-type: disc;
}

a {
     color: var(--orange);
     font-family: var(--display);
     transition: 0.2s color;
}

a:hover {
    color: var(--light);
}

ul.li_lines li {
    list-style: none;
    border-bottom: rgba(221, 221, 221, 0.34) 1px solid;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

figure img {
    border-radius: 12px;
}

.noround img,
figure.noround img {
    border-radius: 0;
}

p.med {
    font-size: 1.2em;
}

p.big {
    font-size: 1.5em;
}

.small {
    font-size: 0.75;
}

.psize {
    font-size: 1em;    
}

.maxw {
    max-width: 1200px;
}

.container-fluid {
    margin-bottom: 0 !important;
}

.pad1 {
    padding: 4vw !important;
}

.pad1.pb-0 {
    padding: 4vw 4vw 0 !important;
}

.pad2 {
    padding: 1.5vw !important;
}

.hidden, 
.backend_message {
    display: none;
}

.wp-block-wp-bootstrap-blocks-button div,
.btn.btn-primary,
.form_block .frm_style_formidable-style .frm_submit button {
    border: 2px solid #FFF;
    border-radius: 200px;
    font-weight: 500;
    font-size: 1em;
    font-weight: bold;
    margin: 0 auto 1em;
    width: fit-content;
    padding: 10px 30px;
    font-family: var(--display);
    background: #F37D1C;
    background: linear-gradient(220deg,rgba(219, 170, 46, 1) 0%, rgba(243, 125, 28, 1) 100%);
}

.btn.btn-primary:hover {
    background-color: var(--dark);
}

.bg_red {
    background-color: var(--red);
}

.bg_light {
    background-color: var(--light_trans);
}

.bg_ultralight {
    background-color: var(--ultra_light);
}

.bg_lightfade,
main.story {
    background: linear-gradient(180deg,rgba(245, 244, 242, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.bg_orange {
    background-color: var(--orange);
    background-image: none;
}

.bg_blue {
    background-color: var(--blue-trans);
}

.bg_dark {
    background-color: var(--dark);
}

.bg_dark :is(h2,h3,p,li),
.bg_orange :is(h2,h3,p,li),
.bg_red :is(h2,h3,p) {
    color: #FFF !important;
}

.breadcrumbs h1 {
    display: inline-block;
    font-size: 1em;
}

p.large_text {
    font-size: 1.6em;
}

.round_img img {
    border-radius: 1000px;
}

.round25 {
    border-radius: 25px !important;
}

.round12 {
    border-radius: 12px !important;
}

.round10 {
    border-radius: 10px !important;
}

.icon_bg figure {
    border-radius: 1000px;
    padding: 8%;
    max-width: 150px;
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    justify-content: center;
    display: flex !important;
}

.icon_bg figure img {
    border-radius: 0;
    width: 100%;
    height: auto;
    align-self: center;    
}

.icon_bg.white figure {
    background-color: #FFF;
}

.icon_bg.light figure  {
    background-color: var(--light_trans);
}

.special_list_1 strong {
    display: block;
}

.stat_wrap {
    margin-bottom: 1em;
}

.stat_wrap > .wp-block-group__inner-container:not(.wp-toolbar .stat_wrap > .wp-block-group__inner-container) {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
}

.stat_wrap .stat, .stat { 
  margin: 0 0 10px 0; 
  font-family: var(--display);
  color: var(--orange);
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 1;
  flex: 0 0 auto;           /* fixed width for the number */
}

.stat_wrap p:not(.stat) {
  margin: 0;
  flex: 1 1 auto;
  align-self: center;
}

.col_line_left > div {
/*    border-left: rgba(221, 221, 221, 0.34) 1px solid;
    border-left: #666 1px solid;*/
}

.m_full {
    margin-left: -4vw;
    padding: 4vw !important;
    width: calc(100% + 8vw);
    border-radius: 0 !important;
}

/* ============= Slideshow ============= */

.slideshow {
    width: 100%;
    height: auto;
}

.slideshow img {
    width: 100%;
    height: auto;
}

.slide, .slick-list {
    padding: 0;
}

/* ============= Hero ============= */


.hero {
    padding: 0;
    position: relative;
    z-index: 1;
}

.hero .content {
    background: rgba(32, 40, 46, 0.8);
    padding: 20px;
}

.hero .content span.headlines {
/*    position: absolute;
    text-align: left;
    top: 50%;
    left: 12vw;
    transform: translate(0,-50%);*/
}

.hero figure {
    position: absolute;
    z-index: -1;
    overflow: hidden;
    height: 100%;
    /*border: solid red 2px;*/
}

.hero img {
    min-height: 100%;
    max-width: 100%;
    object-fit: cover;  
    border-radius: 0;  
}

.hero :is(.breadcrumbs,h1,h2,p) {
    color: #FFF;
}

.hero h2 {
    font-size: 3.5em;
    text-wrap: balance;
}

.hero p {
    font-size: 1.5em;
}

/* Flipped Hero */

.home .hero {
    text-align: left;
}

.home .hero .content {
    /*background: linear-gradient(90deg,rgba(32, 40, 46, 0) 0%, rgba(32, 40, 46, 1) 50%);*/
    /*left: 0;*/
    /*right: 0;   */
}

.home .hero .content span {
    /*left: 50%;*/
}

.hero_2 {
    text-align: center;
    background-color: var(--dark);
    padding: 3vw;
}

.hero_2:has(.breadcrumbs,p,h2) {
    color: #FFF;
}

.hero_2 .breadcrumbs h1 {
    color: var(--orange);
}

.intro p {
    font-size: 1.8em;
    font-weight: 300;
    line-height: 1.3;
}


/* == Slick Carousel == */



/* ========== Page Styles ========= */

.form_block h2 {
    color: var(--orange);
}

main {
    background-color: #FFF;
    overflow: hidden;
}

.col_line_left > div {
    padding-top: 15px;
    border-top: #666 1px solid;
}    

/* == Home == */

.introbox {
    background-color: var(--light_trans);
    border-top: solid 35px var(--orange);
    border-radius: 12px 12px 0 0;
    position: relative;
    /*top: -35px;*/
    padding: 3vw;
    margin-top: 25px;
}

.case_studies figure {
    /*background-color: red;*/
}

.case_studies img {
    border-radius: 12px 12px 0 0;
    width: 100%;
    height: auto;
}

.case_studies .wp-block-group {
    background-color: #FFF;
    border-radius: 12px;
    height: 100%;
}

.case_studies .wp-block-group p {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.case_studies .text-right {
    text-align: end;
}

/* ========== Patient Stories ========== */

main.story .row > div:first-child:not(.story_loop div) {
    padding-right: 5em;
}

main.story .row > div:last-child:not(.story_loop div),
.story_loop .row > div .inner {
    border: solid 1px var(--light);
    background-color: #FFF;
    padding: 0;
    border-radius: 12px;
    height: 100%;
}

main.story .row > div:last-child img, 
.story_loop .row img {
    width: 100%;
    height: auto; 
    border-radius: 12px 12px 0 0;   
}

main.story h2:first-of-type:not(.more_stories h2) {
    font-size: 3em;
    color: var(--orange);
}

main.story h3 {
    margin-left: 20px;
    font-size: 1.5em;    
}

main.story ul {
    margin-right: 20px;
}

main.story li {
    list-style-type: none;
    background-image: url(/wp-content/uploads/2026/03/checkmark.webp);
    background-size: auto 50%;
    background-position: left 5px;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--light);
    padding-left: 25px;
    padding-bottom: 10px;
    margin-top: 10px;
}

main.story li:last-child {
    border-bottom: none;
}

.more_stories :is(h2,p),
.story_loop :is(h3,p,a) {
    text-align: center;
    display: block;
}

.story_loop div {
    padding: 15px;
}

.story_loop .text {
    padding: 20px;
}

.story_loop h3 {
    font-weight: bold;
    font-size: 1.5em; 
}

/* ========== Team ========== */

.team_matrix img {
    width: 100%;
    height: auto;
}

/* ========== Footer ========== */


/* ========== Responsive Start ========== */

@media(min-width: 768px) {

    body {
        font-size: 16px;
    }

    h1, h2, h3, p {
        text-align: initial;
    }

    h2 {
        font-size: 2.25em;
    }   

    p, li {
        line-height: 1.5;
    }

    .btn.btn-primary {
    }

    .d_only {
        display: block;
    }

    .m_full {
        margin-left: 0;
        padding: 30px !important;
        width: 100%;
    }    

    /* === Header / Navigation === */

    header {
        /*padding: 1em;*/
    }

    .m_only,
    .m_nav,
    .m_nav.open {
        display: none;
    }    

    .d_nav {
        display: block;
    }

    .top_nav {
        padding: 0;
    }

    .logo_col {
        flex: none;
        width: 100%;
        display: block;
        align-self: center;
    }

    .logo_col img {
        width: 200px;
        height: auto;
        cursor: pointer;
    }

    .primary {
        padding: 0;
        justify-content: space-between;
    }

    .primary .col {
        flex: initial;
    }    

    .primary .nav_col {
        width: 100%;
        /*flex: 1;*/
        /*width: fit-content;*/
    }

    .primary .right_col div {
        /*width: fit-content;*/
    }

    .primary nav {
        width: 100%;
        padding-inline: 10vw;
    }

    .primary .nav_col ul {
        justify-content: space-between;
    }   

    .primary .nav_col li {
        padding: 0 1px;
        margin: 0;
    }  

    .primary .nav_col a {
        font-family: interstate-condensed, sans-serif;
        font-weight: 600;
        font-style: normal;        
        color: var(--dark);
        font-size: 1em;
        padding: 10px 10px;
        position: relative;
        line-height: 1;
        text-align: center;
        cursor: pointer;
    }

    .primary .nav_col a:before {
        content: '';
        width: 1%;
        height: 1%;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        opacity: 0.5;
        background-repeat: no-repeat;
        background-size: auto 70%;
        background-position: center;  
        z-index: -1; 
        transition: width 0.2s, height 0.2s;
    }

    .primary .nav_col a:hover:before {
        width: 100%;
        height: 100%;        
    }

    .primary .right_col {
        align-self: center;
        position: absolute;
        top: 0;
        right: 0;
        padding: 0.5em;
        width: fit-content;
        text-align: right;
    }

    .primary .right_col a {
        margin-bottom: 0;
    }

    /* === Subnav === */

    .primary .nav_col ul :is(ul,ul ul li a) {
        /*background-color: var(--gray) !important;*/
    }

    .primary .nav_col ul ul {        
        background-color: var(--gray) !important;
        padding: 0.75em;
        top: -1em;
    }

    .primary .nav_col ul ul li a {
        padding: 0.75em;
        color: #FFF !important;
        white-space: nowrap;
        /*border: solid 1px red;*/
    }

    .primary .nav_col ul ul li a:hover {
        opacity: 0.85;
    }

    /* === SuperNav === */

    .secondary {
        background-color: #2DB1C3;
        padding: 15px 0;
    }

    .secondary .row {
        justify-content: flex-end;
    }

    .secondary .row > div {
        width: fit-content;
    }

    .secondary .nav_col {
        flex: none;
    }

    .secondary .nav_col a {
        color: #FFF !important;
    }

    .secondary .search_col {
        max-width: 200px;
    }

    .secondary .search_col input,
    .secondary .search_col button {
        height: 25px;
        border: none;
    }

    .secondary .search_col input {

    }

    .secondary .search_col button {
        padding: 0;
        margin: 0;      
        background-color: #e8e8e8;
    }

    /* === Submenu Icon Swap to override WP default===  */

    .wp-block-navigation__submenu-icon.wp-block-navigation-submenu__toggle svg {
      display: none !important; /* hide the default arrow icon */
    }

    .wp-block-navigation__submenu-icon.wp-block-navigation-submenu__toggle::before {
      content: "+";              /* add the plus sign */
      display: inline-block;
      font-size: 1.2em;
      font-weight: 600;
      line-height: 1;
      height: 1em;
      color: var(--orange);       /* inherits text color */
      transition: transform 0.2s ease;
      margin-top: -0.25em;
    }

    /* Optional: turn plus into minus when submenu is open */
    .wp-block-navigation__submenu-icon.wp-block-navigation-submenu__toggle[aria-expanded="true"]::before {
      content: "–"; /* or use "\2212" for a proper minus sign */
    }

    /* === Stuck Header === */

    header.stuck {
        filter: drop-shadow(0px 1px 4px #000000);
        /*background-color: greenyellow;*/
        /*padding: 0 1em;*/
    }

    /* ======== Hero Areas ======== */

    .logo {
        position: relative;
        display: block;
        margin: initial;
        text-align: left;
    }

    /* ============= Hero ============= */


    .hero {
        padding: 0;
        position: relative;
        background: #20282E;
    }

    .hero .content {
        z-index: 10;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #20282E;
        background: linear-gradient(90deg, rgba(32, 40, 46, 1) 30%, rgba(32, 40, 46, 0) 100%);    
        display: flex;
    }

    .hero:has(img) .content {
        min-height: 340px;
        /*border: solid yellow 10px;*/
    }

    .hero .content span.headlines {
        position: relative;
        text-align: left;
        width: 50vw;
        display: inline-block;
        padding: 3vw;
        align-self: center;
    }

    .hero figure {

        /*z-index: 0;*/
    }

    .hero img {
        position: relative;
        right: -5vw;
        left: auto;
    }

    .home .hero img {
        left: 0;
        right: auto;
    }

    .hero :is(.breadcrumbs,h1,h2,p) {
        color: #FFF;
    }

    .hero h2 {
        font-size: 3.5em;
    }

    .hero p {
        font-size: 1.5em;
    }

    /* Flipped Hero */

    .home .hero {
        text-align: left;        
    }

    .home .hero .content {
        background: linear-gradient(90deg,rgba(32, 40, 46, 0) 0%, rgba(32, 40, 46, 1) 50%);
        left: 0;
        /*right: 0;   */
    }

    .home .hero .content span {
        left: 50%;
    }

    .hero_2 {
        text-align: center;
        background-color: var(--dark);
        padding: 3vw;
    }

    .hero_2:has(.breadcrumbs,p,h2) {
        color: #FFF;
    }

    .hero_2 .breadcrumbs h1 {
        color: var(--orange);
    }

    .intro p {
        font-size: 1.8em;
        font-weight: 300;
        line-height: 1.3;
    }    

    .introbox {
        top: -35px;
        margin-top: 0;
        z-index: 10;        
    }   

    /* ========== Page Styles ========= */

    .round10 {
        border-radius: 10px !important;
    }

    .col_line_left > div {
        border-top: none;
        padding-top: 0;
        border-left: #666 1px solid;
    }     

    .row > div:first-child.img_col {
        padding-right: 3vw;
        /*background-color: red;*/
    }
  
    .row > div:last-child.img_col {
        padding-left: 3vw;
        /*background-color: green;*/
    }    

}

@media(min-width: 875px) {

    .hero figure {
        right: 0;
        left: auto;
    }    

    .hero .content {
        /*background: linear-gradient(90deg, rgba(32, 40, 46, 1) 40%, rgba(32, 40, 46, 0) 100%);*/
    }    

}

@media(min-width: 950px) {

    /* === Header / Navigation === */
    .primary > div {
        width: fit-content;
    }

}

@media(min-width: 992px) {

    header {
        padding: 0 3vw;
    }

    .primary nav {
        padding-inline: 0;
    }

    .primary .nav_col {
        width: fit-content;
        /*background-color: peru;*/
    }

    .primary .nav_col ul {
        padding-left: 45px;
    }   

    .primary .nav_col li {
        /*margin: 0 1em;*/
    }   

    .primary .nav_col a {
        padding: 3.5em 0; 
        transition: padding 0.2s;
    }    

    .primary .right_col {
        align-self: center;
        position: relative;
        top: auto;
        right: auto;
        padding: 0;
        width: fit-content;
        text-align: right;
    }     

    /* === stuck === */

    header.stuck .primary .nav_col a:not(ul ul a) {
        padding: 30px 0;
    }

}

@media(min-width: 1150px) {

    .primary .nav_col li {
        margin: 0 1em;
    }      

    .hero .content {        
        display: flex;
    }

    .hero:has(img) .content {
        min-height: 530px;
    }

    .home .hero figure {
        left: 0;
        /*border: solid green 5px;*/
    }    

    .hero img:not(.home .hero img) {
        top: 50%;
        position: relative;
        transform: translateY(-50%);        
    }    

    .hero .content .headlines {
        align-self: center;
    }        

}

@media(min-width: 1300px) {


    .hero .row > div:first-child div {
        /*padding: 0 3vw 0 0;*/
        padding: 0;
    } 

    .hero .content span.headlines:not(.home .hero .content span.headlines) {
        padding-left: 10vw;
    }

    .hero figure {
        object-fit: cover;
    }    
}

@media(min-width: 1800px) {

    .hero .content {
        background: linear-gradient(90deg, rgba(32, 40, 46, 1) 40%, rgba(32, 40, 46, 0) 100%);
    }

    .home .hero .content {
        background: linear-gradient(90deg,rgba(32, 40, 46, 0) 0%, rgba(32, 40, 46, 1) 35%);
    }    

    .hero img {
        right: 0;
    }

    .home .hero figure  {
        right: auto;
        left: 0;
    }

}


