/*   
Theme Name: Intrepid Research
Theme URI: https://www.intrepidresearchoh.com/
Description: Custom WordPress theme for Intrepid Research
Author: Torro Media
Author URI: https://torro.io/
Version: 1.0
*/

@CHARSET "UTF-8";

/* =WordPress Core from http://codex.wordpress.org/CSS#WordPress_Generated_Classes
-------------------------------------------------------------- */

/*Required Styles*/

.alignnone {
    margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}
.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
a img.alignnone {
    margin: 5px 20px 20px 0;
}
a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}
.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}
.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}
.wp-caption p.wp-caption-text {
    font-size: 13px;
    line-height: 17px;
    margin: 0;
    padding: 0.5rem 0;
}

/*CUSTOM SCSS
-------------------------------------------------------------- */


:root{
    --font-heading: "Sora", sans-serif;
    --font-body:"Cabin", sans-serif;

    --color-blue:#1194E6;
    --color-black:#080808;
    --color-grey:#747474;
    --color-navy:#0C1218;
    --color-lightblue:#F0F7FD;
    --color-darkblue:#095280;
    --color-lightgrey:#F5F5F5;

    --container-width:1140px;
}

html, body{
    width:100%;
    overflow-x:hidden;
    font-family: var(--font-body);
    scroll-behavior: smooth;
    scroll-padding:120px 0 0;
}
h1, .h1{
    font-family: var(--font-heading);
    font-size: 86px;
    font-style: normal;
    font-weight: 600;
    line-height: 105%;
}
h2, .h2{
    font-family: var(--font-heading);
    font-size: 54px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
}
h3, .h3{
    font-family: var(--font-heading);
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -0.72px;
}
h4, .h4{
    font-family: var(--font-heading);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.4px;  
}
h5, .h5, h6, .h6{
    font-family: var(--font-heading);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}
span.h1,
span.h2,
span.h3,
span.h4,
span.h5,
span.h6{
    display:block;
}
p, .p{
    font-family: var(--font-body);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; 
}
a:hover, a:focus{
    text-decoration: none;
}
main{
    margin-top:100px;
}
.centered{
    text-align: center;
}
.nhc_flex{
    height:100%;
    display:flex;
    align-items: center;
}

/*BUTTONS & LINKS*/

.nhc_button{
    background:var(--color-blue);
    padding:1rem 4rem 1rem 2rem;
    border-radius:30px;
    display:inline-block;
    color:white;
    font-family: var(--font-heading);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 1.28px;
    text-transform: uppercase;
    position: relative;
    transition-duration: 0.5s;
}
.nhc_button::after{
    content:'';
    width:15px;
    height:15px;
    border-radius:50%;
    background:white;
    position: absolute;
    top:50%;
    right:2rem;
    transform:translate(0,-50%);
    transition-duration: 0.5s;
}
.nhc_button:hover{
    background:var(--color-darkblue);
    color:white;
    padding:1rem 2rem 1rem 4rem;
}
.nhc_button:hover::after{
    right:auto;
    left:2rem;
}
.nhc_button_secondary{
    background:white;
    color:var(--color-blue);
}
.nhc_button_secondary::after{
    background:var(--color-blue);
}
.nhc_button_secondary:hover{
    background:white;
    color:var(--color-blue);
}

/*HEADER*/

.nhc_header{
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
    position:fixed;
    width:100%;
    z-index:9999;
}
.nhc_header, .nhc_header_logo{
    height:100px;
}
.nhc_header_logo a{
    display:block;
    width:100%;
    height:100%;
}
.nhc_header_logo img{
    height:100%;
    width:auto;
    padding:0.5rem 0;
}
.nhc_header_mobile{
    display:none;
}
.nhc_header_nav_mobile{
    display:none;
    list-style:none;
    margin:0;
    padding:0;
    font-size:18px;
    text-align: center;
}
.nhc_header_nav{
    list-style:none;
    margin:0;
    padding:0;
    font-size:18px;
    text-align: center;
}
.nhc_header_nav li{
    display:inline-block;
    position: relative;
}
.nhc_header_nav li a:not(.nhc_button){
    padding:2.2815rem 1rem;
    display:block;
    color:var(--color-black);
}
.nhc_header_nav li a:not(.nhc_button):hover,
.nhc_header_nav li:hover > a:not(.nhc_button){
    color:var(--color-blue);
}
.nhc_header_nav li.parent a:not(.nhc_header_subnav a, .nhc_button)::after{
    font: var(--fa-font-solid);
    content: '\f107';
    margin-left:0.5rem;
    font-size:14px;
}
.nhc_header_nav li.parent:hover a:not(.nhc_header_subnav a, .nhc_button)::after{
    transform:rotate(180deg);
    transition-duration: 0.5s;
}
.nhc_header_subnav{
    display:none;
    position: absolute;
    background:white;
    list-style: none;
    margin:0;
    padding:0;
    text-align: left;
    font-size:16px;
    width:200px;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
    border-radius: 0 0 5px 5px;
}
.nhc_header_subnav:not(.nhc_header_megamenu .nhc_header_subnav)::before,
.nhc_header_megamenu::before{
    content:'';
    height: 10px;
    aspect-ratio: 2;
    clip-path: polygon(50% 0,100% 100%,0 100%);
    background: white;
    right:2rem;
    position:absolute;
    top:-10px;
}
.nhc_header_megamenu::before{
    right:auto;
    left:38%;
}
.nhc_header_subnav li{
    display:block;
}
.nhc_header_subnav li a{
    display: block;
    padding:1rem 1.5rem !important;
    color:var(--color-black);
}
.nhc_header_megamenu{
    display:none;
    position: fixed;
    background:white;
    width:var(--container-width);
    left:50%;
    transform:translate(-50%,0);
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
}
.nhc_header_megamenu .nhc_header_subnav{
    position:relative;
    width:100%;
    box-shadow:none;
    padding:5rem 3rem;
    font-size:18px;
}
.nhc_header_megamenu .nhc_header_subnav li a:hover{
    color:var(--color-blue);
    background:rgba(0,0,0,0.04);
    border-left:3px solid var(--color-blue);
}
.nhc_header_megamenu .nhc_header_subnav li:not(:last-child){
    border-bottom:1px solid rgba(0, 0, 0, 0.05);
}
.nhc_megamenu_cta{
    background:#EDF2F7;
    padding:2rem;
    text-align:left;
    height:100%;
}
.nhc_megamenu_cta_image{
    width:100%;
    padding-bottom:50%;
    border-radius:5px;
    background-size: cover;
    background-position: center center;
    background-repeat:no-repeat;
    margin:0 0 1rem;
}
.nhc_megamenu_cta p{
    font-size:16px;
}
.nhc_header_nav li.parent:hover .nhc_header_subnav,
.nhc_header_nav li.parent:hover .nhc_header_megamenu{
    display:block;
}
.nhc_header_button{
    display:flex;
    height:100%;
    width:100%;
    justify-content: right;
    align-items:center;
}

/*HERO*/

.nhc_hero{
    width:100%;
    position:relative;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.nhc_hero_video{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    display:flex;
    align-items: center;
    justify-content: center;
    overflow:hidden;
}
.nhc_hero_video video{
    min-height: 100%;
    min-width: 100%;
    width: auto;
    height: auto;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}
.nhc_hero_overlay{
    padding:13rem 0;
    display:flex;
    align-items: center;
    justify-content: center;
    background: rgba(6,49,77,0.6);
    width:100%;
    height:100%;
    position: relative;
}
.nhc_hero_content{
    width:100%;
}
.nhc_hero_content h1,
.nhc_hero_content p{
    color:white;
}
.nhc_hero_content p{
    font-size:18px;
    padding-right:15%;
}
.nhc_hero_buttons{
    margin:2rem 0 0;
    display:block;
}
.nhc_hero_buttons .nhc_button{
    margin-right:1rem;
}
.nhc_hero .nhc_scroller{
    position: absolute;
    right:-4rem;
    transform: rotate(-90deg);
    transform-origin: center;
}
.nhc_hero .nhc_scroller a{
    display: flex;
    align-items: center;
    gap:0.5rem;
    transition-duration: 0.5s;
}
.nhc_hero .nhc_scroller span{
    color:white;
    margin:0;
}
.nhc_hero .nhc_scroller_arrow{
    width: 44px;
    height: 6px;
    background-image:url(public/img/arrow.png);
    background-size:contain;
    background-position: center center;
    background-repeat: no-repeat;
    transition-duration: 0.5s;
}
.nhc_hero .nhc_scroller a:hover{
    gap:1.5rem;
}

/*CONTENT*/

.nhc_content{
    padding:7rem 0;
    position:relative;
}
.nhc_content_top_large{
    padding-top:14rem;
}
.nhc_content_top_small{
    padding-top:3.5rem;
}
.nhc_content_top_none{
    padding-top:0;
}
.nhc_content_top_overlap{
    padding-top:0;
    margin-top:-7rem;
}
.nhc_content_bottom_large{
    padding-bottom:14rem;
}
.nhc_content_bottom_small{
    padding-bottom:3.5rem;
}
.nhc_content_bottom_none{
    padding-bottom:0;
}
.nhc_content_bottom_overlap{
    padding-bottom:0;
    margin-bottom:-7rem;
}
.nhc_content_lshape{
    background-image:url(public/img/bg-pattern-left.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size:200px auto;
}
.nhc_content_rshape{
    background-image:url(public/img/bg-pattern-right.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size:400px auto;
}
.nhc_content_dark{
    background-color:var(--color-navy);
}
.nhc_content_dark::before{
    content: '';
    width: 350px;
    height: 40%;
    background-image: url(public/img/bg-pattern-dark.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: 0;
    bottom: 0;
}
.nhc_content_blue{
    background-color: var(--color-blue);
}
.nhc_content_lightblue{
    background-color: #F0F7FD;
}
.nhc_content_frame{
    background-color:white;
}
.nhc_content_frame .container{
    background-color:var(--color-navy);
    padding:5rem;
    border-radius: 15px;
}
.nhc_content_frame .container .nhc_text *{
    color:white;
}
.nhc_content iframe{
    width:100%;
}


/*TEXT*/

.nhc_text h2{
    color:var(--color-black);
    margin:0 0 1rem;
}
.nhc_text h2 strong{
    color:var(--color-blue);
    font-weight:600;
}
.nhc_text h3,
.nhc_text .h3{
    margin:0 0 1rem;
}
.nhc_text h5,
.nhc_text .h5{
    color:var(--color-grey);
    margin:0 0 1rem;
}
.nhc_text p,
.nhc_text ul,
.nhc_text li{
    color:var(--color-black);
    font-size:20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; 
}
.nhc_text .nhc_button{
    margin:1.5rem 0 0;
}
.nhc_content_dark .nhc_text h2,
.nhc_content_dark .nhc_text .h2,
.nhc_content_dark .nhc_text h3,
.nhc_content_dark .nhc_text .h3,
.nhc_content_dark .nhc_text h4,
.nhc_content_dark .nhc_text .h4,
.nhc_content_dark .nhc_text h6,
.nhc_content_dark .nhc_text .h6,
.nhc_content_dark .nhc_text p,
.nhc_content_dark .nhc_text ul,
.nhc_content_dark .nhc_text li,
.nhc_content_blue .nhc_text h2,
.nhc_content_blue .nhc_text .h2,
.nhc_content_blue .nhc_text h3,
.nhc_content_blue .nhc_text .h3,
.nhc_content_blue .nhc_text h4,
.nhc_content_blue .nhc_text .h4,
.nhc_content_blue .nhc_text h5,
.nhc_content_blue .nhc_text .h5,
.nhc_content_blue .nhc_text h6,
.nhc_content_blue .nhc_text .h6,
.nhc_content_blue .nhc_text p,
.nhc_content_blue .nhc_text ul,
.nhc_content_blue .nhc_text li{
    color:white;
}
.nhc_content_dark .nhc_text h5,
.nhc_content_dark .nhc_text .h5{
    color:var(--color-blue);
}
.nhc_text ul.checklist_bullets{
    list-style:none;
    margin:0;
    padding:0;
}
.nhc_text ul.checklist_bullets li{
    position:relative;
    padding-left: 3rem;
    margin:0.5rem 0;
}
.nhc_text ul.checklist_bullets li::before{
    font: var(--fa-font-solid);
    content: '\f058';
    position: absolute;
    top:0.3rem;
    left:0;
    width:3rem;
    text-align: center;
    color:var(--color-blue);
}
.nhc_text ul.two_col{
    columns:2;
}
.nhc_text ul.fa-ul{
    margin-left:0;
}
.nhc_text ul.fa-ul li{
    position:relative;
    padding-left: 3rem;
    margin:0.5rem 0 1rem
}
.nhc_text ul.fa-ul li i{
    position: absolute;
    top:0.3rem;
    left:0;
    width:3rem;
    text-align: center;
    color:var(--color-blue);
}
.nhc_text p a,
.nhc_text ul a{
    color:var(--color-blue);
}
.nhc_text p a:hover,
.nhc_text ul a:hover{
    color:var(--color-darkblue);
}

/*IMAGES & VIDEO*/

.nhc_content_image{
    width:100%;
    border-radius:5px;
    padding-bottom:70%;
    min-height:100%;
    background-position: center center;
    background-repeat: no-repeat;
}
.nhc_content_image.contain{
    background-size:contain;
}
.nhc_content_image.cover{
    background-size:cover;
}
.nhc_content_video_container{
    width: calc(100% + 4rem);
    height: calc(100% + 4rem);
    display: flex;
    align-items: center;
    background-image: url(public/img/video-shadow.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    padding: 2rem 3rem;
    margin-left: -2rem;
    margin-top: -2rem;
}
.nhc_content_video{
    width:100%;
    border-radius:5px;
    padding-bottom:56.25%;
    position: relative;
    overflow:hidden;
}
.nhc_content_video iframe,
.nhc_content_video video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height: 100%;
}
.nhc_logo_slide{
    margin:0 0.5rem;
}
.nhc_logo{
    width:100%;
    padding-bottom:40%;
    position: relative;
    border-radius:5px;
}
.nhc_logo img{
    width:auto;
    height:auto;
    max-width:100%;
    max-height:100%;
    padding:0.75rem;
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}
.nhc_content_blue .nhc_logo img{
    filter:brightness(0) invert(1);
}
.nhc_content_blue .nhc_logo:hover{
    background:white;
}
.nhc_content_blue .nhc_logo:hover img{
    filter:none;
}
.nhc_gallery{
    columns: 3;
    column-gap: 1rem;
}
.nhc_gallery img{
    margin:0 0 1rem;
    width:100%;
    height:auto;
}
.nhc_gallery img.middle{
    margin-top:-1.5rem;
}

/*STAT BLOCKS*/

.nhc_stat_block{
    background:var(--color-navy);
    border-radius:5px;
    padding:5rem 2rem 3rem;
    height:100%;
}
.nhc_stat_block .h2{
    color:var(--color-blue);
}
.nhc_stat_block .h3{
    color:white;
}
.nhc_stat_block p{
    margin:2rem 0 0;
    color:white;
    font-size:16px;
}

/*LINK BLOCKS*/

.nhc_link_blocks{
    margin-top:-2rem;
}
.nhc_link_block{
    background:white;
    border:1px solid var(--color-lightgrey);
    border-radius: 10px;
    height:100%;
}
.nhc_link_blocks .nhc_col{
    margin:2rem 0 0;
}
.nhc_link_block a{
    padding:1rem 1rem 3rem;
    display:block;
    height:100%;
    width:100%;
    position: relative;
}
.nhc_link_block .nhc_content_image{
    padding-bottom:40%;
    min-height: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin:0 0 1rem;
}
.nhc_link_block .h4,
.nhc_link_block p{
    color:var(--color-black);
}
.nhc_link_block .nhc_link{
    color:var(--color-blue);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 1.28px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    position: absolute;
    bottom:0;
    left:0;
    display:block;
    padding:1rem;
    text-align:right;
    width:100%;
}
.nhc_link_block:hover .nhc_link{
    color:var(--color-darkblue);
}

/*BG BLOCK*/

.nhc_bg_block{
    width:100%;
    border-radius:10px;
    background-size:100% auto;
    background-position: top;
    background-repeat: no-repeat;
    padding:3rem;
}

/*CTA BLOCK*/

.nhc_cta_block{
    text-align:center;
    padding:5rem 14%;
    border-radius:5px;
}

/*LIST BLOCK*/

.nhc_list_block{
    background:var(--color-lightblue);
    border-radius:10px;
    padding:3rem;
}
.nhc_list_block ul{
    list-style: none;
    margin:0;
    padding:0;
    columns:2;
    font-size:20px;
}
.nhc_list_block ul li{
    margin:0 0 1rem;
}

/*FOOTER*/

.nhc_footer{
    padding:4rem 0 2rem;
    position: relative;
    background-color:white;
    box-shadow:0 0 5px rgba(0,0,0,0.2);
}
.nhc_footer::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:170px;
    height:120px;
    background-image:url(public/img/bg-pattern-left.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size:100% auto;
}
.nhc_footer_logo{
    width:200px;
}
.nhc_footer_logo img{
    width:100%;
}
.nhc_footer_tagline p{
    font-size:18px;
}
.nhc_footer_button{
    margin:2rem 0 0;
}
.nhc_footer_lists{
    width:100%;
    display:flex;
    justify-content: right;
    gap:3rem;
}
.nhc_footer_list h6,
.nhc_footer_contact h6{
    color:var(--color-blue);
    text-transform:none;
    letter-spacing: 0;
    font-weight:600;
    font-size:16px;
}
.nhc_footer_list ul{
    list-style:none;
    margin:0;
    padding:0;
    font-size:16px;
}
.nhc_footer_list ul li{
    margin:1rem 0 0;
}
.nhc_footer_list ul li a{
    color:var(--color-black);
}
.nhc_footer_list ul li a:hover{
    color:var(--color-blue);
}
.nhc_footer_contact_section{
    font-size:16px;
    display:flex;
    margin:1rem 0 0;
}
.nhc_footer_contact_section i{
    flex:0 0 50px;
    text-align:center;
    color:var(--color-blue);
    padding:4px 0 0;
}
.nhc_footer_contact_section p{
    font-size:16px;
    margin:0;
}
.nhc_footer hr{
    margin:3rem 0 2rem;
}
.nhc_footer_copy{
    font-size:14px;
    margin:0;
}
.nhc_footer_copy a{
    color:var(--color-black);
    text-decoration: underline;
}
.nhc_footer_copy a.nhc_footer_link{
    margin-right:2rem;
}
.nhc_footer_copy a:hover{
    color:var(--color-blue);
}
.nhc_footer_social{
    list-style:none;
    margin:0;
    padding:0;
    text-align:right;
    font-size:18px;
}
.nhc_footer_social li{
    display:inline-block;
    margin-left:1rem;
}
.nhc_footer_social li a{
    color:var(--color-navy);
}
.nhc_footer_social li a:hover{
    color:var(--color-blue);
}

/*TITLE BAR*/

.nhc_title_bar{
    width:100%;
    padding-bottom:30%;
    position: relative;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.nhc_title_overlay{
    position:absolute;
    width:100%;
    height:100%;
    display:flex;
    align-items: center;
    justify-content: center;
    background: rgba(6,49,77,0.9);
}
.nhc_title_content{
    text-align:center;
}
.nhc_title_content h1{
    margin:0;
    color:white;
}
.nhc_title_content p{
    color:white;
    padding:0 10%;
    margin:1rem 0 0;
}

/*TEAM*/

.nhc_team_slider .slick-list{
    padding:0 12% !important;
}
.nhc_team_slide{
    margin:0 1rem;
}
.nhc_team_image{
    width:100%;
    padding-bottom:115%;
    border-radius:10px;
    background-size:cover;
    background-position: top;
    background-repeat:no-repeat;
    position: relative;
}
.nhc_team_image .nhc_button{
    display:none;
    position: absolute;
    bottom:2rem;
    left:50%;
    transform:translate(-50%,0);
    width:calc(100% - 4rem);
}
.nhc_team_slide:hover .nhc_team_image .nhc_button{
    display:block;
}
.nhc_team_slide h4{
    margin:1rem 0 0;
    font-family: var(--font-heading);
    font-size:18px;
    color:var(--color-black);
}
.nhc_team_slide h4 b,
.nhc_team_slide h4 strong{
    font-weight:600;
}
.nhc_team_slider .slick-dots{
    position: relative;
    bottom:auto;
    margin:2rem 0 0;
}
.nhc_team_slider .slick-dots li button:before{
    color:var(--color-grey);
    font-weight:700;
    opacity:0.5;
}
.nhc_team_slider .slick-dots li.slick-active button:before{
    color:var(--color-blue);
    opacity: 1;
}
.nhc_team_modal .modal-dialog{
    max-width:var(--container-width);
}
.nhc_team_modal .modal-content{
    padding:5rem;
}
.nhc_team_modal .btn-close{
    position: absolute;
    padding:1rem;
    top:0;
    right:0;
    background:transparent;
    border:none;
    color:var(--color-blue);
    opacity: 1;
    font-size:20px;
}
.nhc_team_modal .btn-close:hover{
    opacity: 0.5;
}
.nhc_team_modal .nhc_text h2{
    font-size:36px;
}
.nhc_team_modal .nhc_text p{
    font-size:18px;
}

/*EMBED STYLES*/

.nhc_embed *{
    scroll-behavior: smooth !important;
    scroll-padding: 120px 0 0 !important;
}
.nhc_embed .osTitle span{
    font-family:var(--font-heading);
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -0.72px;
    margin:0 0 1.5rem;
    display: block;
}
.nhc_embed .osTitle{
    font-family:var(--font-heading);
    padding:0;
}
.nhc_embed .osTitle a{
    color:var(--color-blue);
}
.nhc_embed .osTitle a:hover{
    color:var(--color-darkblue);
}
.nhc_embed .osBoxContainer{
    margin-bottom:-4rem;
}
.nhc_embed .osBoxContainer .osBox{
    display:flex;
    width:100%;
    float:none;
    gap:1rem;
    flex-wrap: wrap;
}
.nhc_embed .osStudyItem{
    flex:0 0 calc(50% - 1rem);
    margin:0;
}
.nhc_embed .osStudyItem a{
    padding:1rem;
    display:block;
    border-radius:5px;
    background:var(--color-lightblue);
    color:var(--color-black);
}
.nhc_embed .osStudyItem a:hover{
    color:white;
    text-decoration: none;
    background:var(--color-blue);
}
.nhc_embed .osArea,
.nhc_embed h2{
    font-family: var(--font-heading);
    font-size: 54px !important;
    font-style: normal;
    font-weight: 600;
    line-height: 110% !important;
    background:none !important;
    color:var(--color-black);
}
.nhc_embed .osArea{
    margin:5rem 0 2rem;
}
.nhc_embed .osDetail h2{
    font-size:36px !important;
}
.nhc_embed .osListing{
    border:none;
    padding:2rem;
    margin:2rem 0 0;
    background:var(--color-lightblue);
    border-radius: 15px;
}
.nhc_embed div .osListing:nth-child(odd){
    background:var(--color-lightgrey);
}
.nhc_embed .osListing .osThumb{
    background:none;
    padding:0;
}
.nhc_embed .osListing .osThumb img{
    border:none;
    border-radius: 10px;
}
.nhc_embed .osButton,
.nhc_embed input[type=submit]{
    background:var(--color-blue) !important;
    padding:1rem 4rem 1rem 2rem !important;
    border-radius:30px !important;
    display:inline-block;
    color:white;
    font-family: var(--font-heading);
    font-size: 16px !important;
    font-style: normal;
    font-weight: 600;
    line-height: 150% !important;
    letter-spacing: 1.28px !important;
    text-transform: uppercase;
    position: relative;
    transition-duration: 0.5s;
    margin:0 !important;
}
.nhc_embed .rt-application-button-container input[type=submit]{
    padding:1rem 4rem 1rem 2rem !important;
    border-radius:30px !important;
    font-size: 16px !important;
}
.nhc_embed .osButton:hover,
.nhc_embed input[type=submit]:hover,
.nhc_embed .rt-application-button-container input[type=submit]:hover{
    background:var(--color-darkblue) !important;
    color:white;
    padding:1rem 2rem 1rem 4rem !important;
}
.nhc_embed .rt-study-area-buttons,
.nhc_embed .rt-application-button-container{
    display:inline-block;
    position:relative;
}
.nhc_embed .rt-study-area-buttons::after,
.nhc_embed .rt-application-button-container::after{
    content:'';
    width:15px;
    height:15px;
    border-radius:50%;
    background:white;
    position: absolute;
    top:50%;
    right:2rem;
    transform:translate(0,-50%);
    transition-duration: 0.5s;
}
.nhc_embed .rt-study-area-buttons:hover::after,
.nhc_embed .rt-application-button-container:hover::after{
    right:auto;
    left:2rem;
}
.nhc_embed .rt-study-listing,
.nhc_embed .rt-study-content-singlepage-application{
    width:100%;
    float:none;
}
.nhc_embed .osFlyer{
    padding:0;
    border-radius:10px;
    background:var(--color-lightgrey);
    margin:1.5rem 0;
    width:100%;
    padding-bottom:30%;
    position: relative;
    overflow:hidden;
}
.nhc_embed .osFlyer img{
    width:100%;
    position: absolute;
    left:50%;
    top:50;
    transform:translate(-50%,-50%);
}
.nhc_embed .rt-study-content-info .osTitle{
    font-family: var(--font-heading);
    font-size: 54px !important;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    background:none !important;
    color:var(--color-black);
}
.nhc_embed h2{
    color:var(--color-black);
    margin:0 0 1rem;
}
.nhc_embed h2 strong{
    color:var(--color-blue);
    font-weight:600;
}
.nhc_embed h3,
.nhc_embed .h3{
    margin:0 0 1rem;
}
.nhc_embed h5,
.nhc_embed .h5{
    color:var(--color-grey);
    margin:0 0 1rem;
}
.nhc_embed p,
.nhc_embed ul,
.nhc_embed li{
    color:var(--color-black);
    font-size:20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; 
}
.nhc_embed .rt-study-content-singlepage-application{
    width:100vw;
    margin-left:calc((100vw - var(--container-width)) / -2 - 15px);
    background:var(--color-navy);
    padding:5rem 0;
    display:flex;
    justify-content: center;
}
.nhc_embed .rt-study-content-singlepage-application form{
    width:calc(var(--container-width) * 0.75);
}
.nhc_embed .rt-study-content-singlepage-application h1,
.nhc_embed .rt-study-content-singlepage-application .osApplicationHeader,
.nhc_embed .rt-study-content-singlepage-application .osApplicationDescriptor,
.nhc_embed .rt-study-content-singlepage-application .osClear{
    color:white;
}
.nhc_embed .rt-study-content-singlepage-application h1,
.nhc_embed .rt-study-content-singlepage-application .osApplicationHeader,
.nhc_embed .rt-study-content-singlepage-application .osApplicationDescriptor{
    text-align:center !important;
}
.nhc_embed .rt-study-content-singlepage-application h1{
    font-size:54px !important;
    line-height: 1.5;
}
.nhc_embed .rt-study-content-singlepage-application .osApplicationDescriptor,
.nhc_embed .rt-study-content-singlepage-application .osApplicationDescriptor strong{
    color:var(--color-blue) !important;
    font-size:28px;
    font-weight:600 !important;
    font-family: var(--font-heading);
    line-height: 1.5;
}
.nhc_embed .rt-study-content-singlepage-application .singlePageBlockElem{
    text-align:left;
    width:100%;
}
.nhc_embed .rt-study-content-singlepage-application .application-question-container{
    display:block !important;
}
.nhc_embed .rt-study-content-singlepage-application .application-question-container-left,
.nhc_embed .rt-study-content-singlepage-application .application-question-container-right{
    display:block;
    width:100%;
    margin-right:0 !important;
    flex:none !important;
}
.nhc_embed .rt-study-content-singlepage-application .osFormLabel,
.nhc_embed .rt-study-content-singlepage-application label,
.nhc_embed .rt-study-content-singlepage-application .application-question-container-left p{
    color:white;
}
.nhc_embed .rt-study-content-singlepage-application input:not([type="checkbox"], [type="submit"]),
.nhc_embed .rt-study-content-singlepage-application select,
.nhc_embed .rt-study-content-singlepage-application textarea{
    width:100% !important;
    max-width:100% !important;
    color:white;
    background:var(--color-navy);
    padding:1rem !important;
    border:1px solid white;
    border-radius:5px;
}
.nhc_embed .rt-study-content-singlepage-application textarea{
    height:100px;
}
.nhc_embed .rt-study-content-singlepage-application hr{
    display:none;
}

/*iCON BLOCKS*/

.nhc_icon_blocks{
    margin-top:-2rem;
}
.nhc_icon_blocks .nhc_col{
    margin:2rem 0 0;
}
.nhc_icon_block{
    width:100%;
    height:100%;
    background:white;
    border-radius:5px;
    border:1px solid var(--color-lightgrey);
    padding:2rem;
}
.nhc_content_dark .nhc_icon_block{
    background:var(--color-navy);
    border-color:white;
    color:white;
}
.nhc_icon{
    width:40px;
    height:40px;
    display:flex;
    align-items: center;
    justify-content:center;
    margin:0 0 1rem;
}
.nhc_icon img{
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;
}

/*FORMS*/

.nhc_form{
    background:var(--color-navy);
    padding:2rem;
    border-radius:10px;
}
.nhc_form .gform_required_legend{
    display:none;
}
.nhc_form .gform_wrapper.gravity-theme .gfield_required{
    color:var(--color-blue);
}
.nhc_form .gform_wrapper.gravity-theme .gfield_label,
.nhc_form .gform_wrapper.gravity-theme .ginput_complex label{
    color:white;
}
.nhc_form .gform_wrapper.gravity-theme input[type=color], 
.nhc_form .gform_wrapper.gravity-theme input[type=date], 
.nhc_form .gform_wrapper.gravity-theme input[type=datetime-local], 
.nhc_form .gform_wrapper.gravity-theme input[type=datetime], 
.nhc_form .gform_wrapper.gravity-theme input[type=email], 
.nhc_form .gform_wrapper.gravity-theme input[type=month], 
.nhc_form .gform_wrapper.gravity-theme input[type=number], 
.nhc_form .gform_wrapper.gravity-theme input[type=password], 
.nhc_form .gform_wrapper.gravity-theme input[type=search], 
.nhc_form .gform_wrapper.gravity-theme input[type=tel], 
.nhc_form .gform_wrapper.gravity-theme input[type=text], 
.nhc_form .gform_wrapper.gravity-theme input[type=time], 
.nhc_form .gform_wrapper.gravity-theme input[type=url], 
.nhc_form .gform_wrapper.gravity-theme input[type=week], 
.nhc_form .gform_wrapper.gravity-theme select, 
.nhc_form .gform_wrapper.gravity-theme textarea,
.nhc_form .gform_wrapper.gravity-theme textarea{
    padding:0.75rem;
    border:1px solid white;
    background:transparent;
    color:white;
    border-radius:5px;
}
.nhc_form .gform_wrapper.gravity-theme input[type=submit]{
    background:var(--color-blue);
    padding:1rem 4rem 1rem 2rem;
    border-radius:30px;
    display:inline-block;
    color:white;
    font-family: var(--font-heading);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 1.28px;
    text-transform: uppercase;
    position: relative;
    transition-duration: 0.5s;
    border:none;
    margin:0;
}
.nhc_form .gform_button_container{
    position: relative;
    display:inline-block;
    transition-duration: 0.5s;
}
.nhc_form .gform_button_container::after{
    content:'';
    width:15px;
    height:15px;
    border-radius:50%;
    background:white;
    position: absolute;
    top:50%;
    right:2rem;
    transform:translate(0,-50%);
    transition-duration: 0.5s;
}
.nhc_form .gform_wrapper.gravity-theme input[type=submit]:hover{
    background:var(--color-darkblue);
    color:white;
    padding:1rem 2rem 1rem 4rem;
}
.nhc_form .gform_button_container:hover::after{
    right:auto;
    left:2rem;
}

/*ACCORDIONS*/

.nhc_accordion_section{
    padding:1rem;
    cursor: pointer;
    position: relative;
    transition-duration: 0.5s;
    background:white;
    border-radius:10px;
    border:1px solid var(--color-lightgrey);
    margin:0 0 1rem;
}
.nhc_accordion_section::after{
    content:'\2b';
    font: var(--fa-font-solid);
    position: absolute;
    top:1rem;
    right:1rem;
    font-size:14px;
    width:30px;
    height:30px;
    padding:8px;
    text-align: center;
    border-radius:50%;
    color:white;
    background:var(--color-blue);
}
.nhc_accordion_section.opened::after{
    content:'\f068';
    background:var(--color-grey);
}
.nhc_accordion_title{
    font-size:20px;
    font-weight:600;
    color:var(--color-black);
    padding-right:4rem;
    font-family: var(--font-heading);
}
.nhc_accordion_content{
    display:none;
    margin-top:1rem;
}

/*TABLES*/

.nhc_table table{
    width:100%;
    border:1px solid #D0D0D0;
}
.nhc_table th{
    background:var(--color-blue);
    color:white;
}
.nhc_table th,
.nhc_table td{
    padding:0.5rem 1rem;
    border-left:1px solid #D0D0D0;
}
.nhc_table tr{
    border-bottom:1px solid #D0D0D0;
}
.nhc_table tr th:not(:first-child),
.nhc_table tr td:not(:first-child){
    text-align: center;
}

/*CHARTS*/

.nhc_charts{
    background:var(--color-lightblue);
    border-radius:10px;
    padding:3rem;
}
.nhc_chart_nav{
    gap:1.25rem;
}
.nhc_chart_nav .nav-link{
    color:var(--color-black);
    font-weight:400;
    background:transparent;
    border:none;
    padding:0;
    font-size:14px;
}
.nhc_chart_nav .nav-link.active,
.nhc_chart_nav .show>.nav-link{
    color:var(--color-black);
    font-weight:600;
    background:transparent;
    border:none;
    padding:0;
}
.nhc_chart{
    position: relative;
    padding-top:30px;
}
.nhc_chart_grid{
    width:calc(100% + 1rem);
    padding-left:25%;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
}
.nhc_chart_numbers{
    list-style: none;
    margin:0;
    padding:0;
    display:flex;
    justify-content: space-between;
    font-size:14px;
    color:rgba(0,0,0,0.5);
    height:100%;
    z-index:1;
    position: relative;
}
.nhc_chart_items{
    list-style: none;
    margin:0;
    padding:0;
    width:100%;
    font-size:14px;
    text-align:right;
    z-index:2;
    position: relative;
}
.nhc_chart_numbers li{
    position:relative;
}
.nhc_chart_numbers li::after{
    content:'';
    width:1px;
    height:calc(100% - 30px);
    border-left:1px dashed rgba(0,0,0,0.2);
    left:50%;
    transform:translate(-50%,0);
    bottom:0;
    position: absolute;
}
.nhc_chart_numbers li:first-child::after{
    border:1px solid rgba(0,0,0,0.5);
}
.nhc_chart_items li{
    display:flex;
    padding:0;
    gap:1rem;
}
.nhc_chart_items li .nhc_chart_label{
    flex:0 0 24%;
    display: flex;
    justify-content: right;
    align-items: center;
}
.nhc_chart_items li .nhc_chart_bar{
    flex:0 0 75%;
    padding:8px 24px 8px 0;
    border-bottom:1px dashed rgba(0,0,0,0.2);
}
.nhc_chart_items li:first-child .nhc_chart_bar{
    border-top:1px dashed rgba(0,0,0,0.2);
}
.nhc_chart_items li .nhc_chart_bar_line{
    height:18px;
    background:var(--color-blue);
}
.nhc_chart_items li .nhc_chart_bar_line span{
    margin-right: -2rem;
    text-align: left;
    width: 2rem;
    display: inline-block;
    padding: 0 5px;
}


