/*   
Theme Name: RealFood
Theme URI: Thttps://rfhsd.com/
Description: Custom WordPress theme for RealFood
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:"big-shoulders-dis-variable", sans-serif;
    --font-body:"lato", sans-serif;

    --color-olive:#AEBB20;
    --color-tomato:#EC543E;
    --color-bluegrey:#4A5B68;
    --color-navy:#0A2337;
    --color-lightgrey:#FAFAFA;
    --color-grey:#2E2E2E;
    --color-black:#131314;
    --color-text:#414B52;

    --container-width:1310px;
    --margin-width:calc((100vw - var(--container-width)) / 2);

}

html, body{
    font-family:var(--font-body);
    font-weight:400;
    overflow-x:hidden;
    scroll-behavior: smooth;
}
h1, h2, h3, h4,
.h1, .h2, .h3, .h4{
    font-family:var(--font-heading);
}

h2, .h2{
    font-size:48px;
    font-weight:500;
}
h3, .h3{
    font-size:32px;
    font-weight:400;
}
h4, .h4{
    font-size:24px;
    font-weight:700;
}
h5, .h5{
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
p{
    font-size:18px;
    font-weight:400;
    line-height:2;
    color:var(--color-text);
}

/*HELPERS*/

.container{
    max-width:1340px;
}
.centered{
    text-align: center;
}
.nhc_flex{
    display: flex;
    align-items: center;
    height:100%;
}

/*BUTTONS & LINKS*/

a:hover, a:focus{
    text-decoration: none;
}
.nhc_button{
    display:inline-block;
    padding:0.75rem 2rem;
    background:var(--color-olive);
    border:1px solid var(--color-olive);
    color:var(--color-grey);
    border-radius:5px;
    text-transform: uppercase;
    font-family:var(--font-body);
    font-weight:500;
    font-size:14px;
    letter-spacing: 0.6px;
    transition-duration: 0.75s;
}
.nhc_button:hover{
    border:1px solid var(--color-navy);
    color:var(--color-navy);
    background:transparent;
    border-radius:0;
    text-decoration: none;
}
.nhc_button_border{
    border-color:var(--color-tomato);
    background:transparent;
    color:var(--color-bluegrey);
}
.nhc_button_border:hover{
    background:var(--color-bluegrey);
    color:white;
}
.nhc_button_dark{
    border-color:var(--color-bluegrey);
    background:var(--color-bluegrey);
    color:var(--color-olive);
}
.nhc_button_dark:hover{
    border-color:var(--color-bluegrey);
    color:var(--color-bluegrey);
    background:transparent;
}
.nhc_link{
    text-transform: uppercase;
    font-family:var(--font-body);
    font-weight:700;
    font-size:14px;
    letter-spacing: 0.6px;
    transition-duration: 0.75s;
    color:var(--color-black);
}
.nhc_link::after{
    content:'\f061';
    font: var(--fa-font-solid);
    margin-left:1rem;
    display:inline-block;
    color:var(--color-black);
    transition-duration: 0.75s;
}
.nhc_link:hover::after{
    margin-left:2rem;
}

/*HEADER*/

.nhc_header,
.nhc_header_logo{
    height:100px;
}
.nhc_header{
    position:fixed;
    width:100%;
    z-index:9999;
    background: linear-gradient(180deg,rgba(23, 23, 23, 1) 0%, rgba(23, 23, 23, 0) 100%);
}
.nhc_header_scrolled{
    border-bottom: 1px solid rgba(234, 235, 236, 0.16);
    background: rgba(23, 23, 23, 0.60);
    backdrop-filter: blur(10px);
}
.nhc_header_logo a{
    display:block;
    width:100%;
    height:100%;
}
.nhc_header_logo img{
    height:100%;
    width:auto;
    padding:1.5rem 0;
}
.nhc_header_mobile{
    display:none;
    color:white;
    padding:1.375rem 1rem;
    font-size:24px;
}
.nhc_header_mobile_toggle{
    display:none;
}
.nhc_header_right{
    display:flex;
    justify-content: right;
    align-items:center;
}
.nhc_header_nav{
    list-style:none;
    margin:0;
    padding:0;
    font-size:18px;
    font-weight:500;
}
.nhc_header_nav li{
    display:inline-block;
}
.nhc_header_nav li a{
    display:block;
    padding:2.25rem 1rem;
    color:white;
}
.nhc_header_nav li a:hover{
    text-decoration: none;
}
.nhc_header_nav li a:not(.nhc_link, .nhc_header_megamenu li a, .nhc_header_subnav_default li a)::after{
    content:'';
    width:0;
    height:1px;
    background:white;
    display:block;
    transition-duration: 0.75s;
}
.nhc_header_nav li a:not(.nhc_link, .nhc_header_megamenu li a, .nhc_resources_megamenu a):hover::after,
.nhc_header_nav li:hover a:not(.nhc_link, .nhc_header_megamenu li a, .nhc_resources_megamenu a)::after{
    width:100%;
}
.nhc_header_button{
    padding-left:2rem;
}
.nhc_header_button .nhc_button:hover{
    border-color:white;
    color:white;
}
.nhc_header_subnav_default{
    display:none;
    position: absolute;
    width:300px;
    background:#F0F0F0;
    border-bottom-right-radius: 30px;
    box-shadow:0 30px 30px rgba(0,0,0,0.1);
    list-style: none;
    margin:0;
    padding:0.5rem 0;
    font-weight:300;
}
.nhc_header_subnav_default li{
    display:block;
}
.nhc_header_subnav_default li a{
    padding:0.5rem 2.5rem;
    color:var(--color-black);
    display:block;
    position: relative;
}
.nhc_header_subnav_default li a:hover{
    font-weight:400;
}
.nhc_header_nav li:hover .nhc_header_megamenu,
.nhc_header_nav li:hover .nhc_resources_megamenu,
.nhc_header_nav li:hover .nhc_header_subnav_default{
    display:block;
}
.nhc_header_megamenu,
.nhc_resources_megamenu{
    display:none;
    width:100%;
    position:fixed;
    left:0;
    right:0;
    background:#F0F0F0;
    border-bottom-right-radius: 60px;
    box-shadow:0 30px 30px rgba(0,0,0,0.1);
}
.nhc_header_megamenu .nhc_col_olive{
    background:var(--color-olive);
}
.nhc_header_megamenu::before{
    content:'';
    background:var(--color-olive);
    width:35%;
    height:100%;
    display:block;
    position: absolute;
    left: 0;
    top: 0;
}
.nhc_header_megamenu_content{
    padding:2rem 2rem 2rem 0;
    display:flex;
    height:100%;
    align-items: center;
}
.nhc_header_megamenu_content h4{
    margin:0 0 1rem;
}
.nhc_header_megamenu_content p{
    color:var(--color-grey);
    font-size:16px;
    margin:0;
    font-weight:300;
}
.nhc_header_megamenu_content .nhc_link{
    color:var(--color-black);
    padding:0;
    margin:1.5rem 0 0;
}
.nhc_header_submenu{
    padding:0 0 1rem 0;
}
.nhc_header_subnav{
    list-style: none;
    margin:0;
    height: 100%;
    padding: 2rem 0 1rem 1rem;
    font-size:18px;
    font-weight:300;
    columns:2;
}
.nhc_header_subnav li{
    display:block;
    width:100%;
}
.nhc_header_submenu.with-submenu .nhc_header_subnav{
    columns:1;
}
.nhc_header_submenu.with-submenu .nhc_header_subnav li{
    width:55%;
}
.nhc_header_subnav li a{
    color:var(--color-grey);
    padding:0.5rem 2rem 0.5rem 1.5rem;
    display:block;
    position: relative;
}
.nhc_header_subnav li a:hover,
.nhc_header_subnav li:hover a{
    font-weight:500;
}
.nhc_header_subnav li a:not(.nhc_header_subsubnav li a, .nhc_link):hover::before,
.nhc_header_subnav li:hover a:not(.nhc_header_subsubnav li a, .nhc_link)::before{
    content:'';
    width:10px;
    height:10px;
    background:var(--color-tomato);
    display:inline-block;
    position: absolute;
    left:0;
    top:17px;
}
.nhc_header_subnav_default li:hover a::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--color-tomato);
    display: inline-block;
    position: absolute;
    left: 1rem;
    top: 17px;
}
.nhc_header_submenu.with-submenu .nhc_header_subnav li a:not(.nhc_header_subsubnav li a, .nhc_link):hover::after,
.nhc_header_submenu.with-submenu .nhc_header_subnav li:hover a:not(.nhc_header_subsubnav li a, .nhc_link)::after{
    content:'\f105';
    font: var(--fa-font-solid);
    display:inline;
    background:transparent;
    margin-left:1rem;
    font-size:16px;
    transition-duration: 0;
}
.nhc_header_subsubnav{
    position: absolute;
    right: 0;
    top:0;
    width: 45%;
    padding: 2rem 0 2rem 2rem;
    margin: 0;
    list-style: none;
    font-size:16px;
    height:100%;
    border-left:1px solid #D8D8D8;
    display:none;
    font-weight:300;
}
.nhc_header_subsubnav li{
    width:100% !important;
    display:block;
    font-weight:300;
}
.nhc_header_subsubnav li a{
    padding:0.35rem 0.5rem;
    display:block;
    font-weight:300 !important;
}
.nhc_header_subsubnav li a:hover{
    font-weight:400 !important;
}
.nhc_header_subsubnav_logo{
    width:100%;
    border-top:1px solid var(--color-olive);
    padding:1rem 0;
    margin:1rem 0;
}
.nhc_header_subsubnav_logo a{
    display:block;
}
.nhc_header_subsubnav_logo img{
    height:20px;
    width:auto;
}
.nhc_header_subnav li:hover .nhc_header_subsubnav{
    display:block;
}
.nhc_header_megamenu_link{
    border-top:1px solid var(--color-olive);
    display:inline-block;
    margin-left:1.5rem;
    margin-top:1rem;
}
.nhc_header_megamenu_link .nhc_link{
    padding:1rem 0;
    color:var(--color-black);
}
.nhc_header_resources_submenu .nhc_header_subnav{
    columns:1;
    margin:2rem 0;
    padding:0;
    margin-left:-1.5rem;
    height:100%;
}
.nhc_header_resources_submenu .nhc_header_subnav li a::after,
.nhc_header_resources_submenu .nhc_header_subnav li:hover a::after{
    content:none;
}
.nhc_resources_megamenu_posts{
    margin:2rem 0;
    padding:0 0 0 2rem;
    border-left:1px solid var(--color-olive);
}
.nhc_resources_megamenu_posts a{
    padding:0 !important;
}
.nhc_resources_megamenu .nhc_post a::after,
.nhc_resources_megamenu .nhc_post a:hover::after{
    content:none;
}
.nhc_resources_megamenu .nhc_post .nhc_post_image{
    width:100%;
    padding-bottom:65%;
    position: relative;
    border-radius:5px;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin:0;
    position: relative;
}
.nhc_resources_megamenu .nhc_image_link .nhc_image_container::after{
    width:20px;
    height:20px;
    bottom:-10px;
}
.nhc_resources_megamenu .nhc_post .nhc_post_image .nhc_post_cat{
    position:absolute;
    padding:0.25rem 0.5rem;
    border-radius:0 5px 5px 0;
    background:var(--color-olive);
    color:var(--color-black);
    font-size:14px;
    display:inline-block;
    top:0.75rem;
    left:0;
}
.nhc_resources_megamenu .nhc_post .nhc_post_image .nhc_post_hover{
    position:absolute;
    padding:0.5rem;
    background:var(--color-olive);
    color:var(--color-black);
    font-size:14px;
    display:inline-block;
    bottom:0;
    right:0;
    width:0;
    height:30px;
    display:flex;
    align-items: center;
    justify-content: center;
    opacity:0;
    transition-duration: 0.75s;
}
.nhc_resources_megamenu .nhc_post a:hover .nhc_post_image .nhc_post_hover{
    width:30px;
    opacity: 1;
}
.nhc_resources_megamenu .nhc_post h4{
    font-size:18px;
    color:var(--color-black);
    font-family:var(--font-body);
    font-weight:400;
}
.nhc_resources_megamenu .nhc_post p{
    font-size:14px;
    color:var(--color-black);
    margin:0;

}

/*HERO*/

.nhc_hero{
    width:100%;
    height:100vh;
    min-height:800px;
    position: relative;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    background-attachment: fixed;
}
.logged-in .nhc_hero_tall{
    height:calc(100vh - 32px);
}
.nhc_hero_short{
    height:600px;
    min-height:400px;
}
.nhc_hero_xshort{
    height:300px;
    min-height:300px;
}
.nhc_hero_video{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content: center;
}
.nhc_hero_video video{
    height:100%;
    width:auto;
}
.nhc_hero_overlay{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.90) -11.2%, rgba(0, 0, 0, 0.60) 52.32%);
    position: absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    display:flex;
    align-items: center;
    justify-content: center;
}
.nhc_hero_short .nhc_hero_overlay{
    padding-top:15rem;
}
.nhc_hero_xshort .nhc_hero_overlay{
    padding-top:12rem;
}
.nhc_hero_content{
    width:100%;
    padding-bottom:5rem;
}
.nhc_hero_content .h3{
    color:white;
    text-transform: uppercase;
    display:flex;
    align-items: center;
    font-size:38px;
    margin:0 0 1rem 0;
    letter-spacing: 3.056px;
    font-weight: 500;
}
.nhc_hero_content .h3 span:not(:first-of-type)::before{
    content:'';
    width:10px;
    height:10px;
    background:var(--color-tomato);
    display:inline-block;
    margin:0.5rem 1rem;
}
.nhc_hero_content h1{
    color:white;
    font-size:88px;
    font-weight:900;
    padding-right:20%;
}
.nhc_hero_content h1 strong{
    color:var(--color-olive);
}
.nhc_hero_content p{
    color:white;
    padding-right:46%;
}
.nhc_hero_cta{
    width:100%;
    background:white;
    border-radius:24px 24px 0 0;
    padding:1rem 0;
    position: absolute;
    bottom:0;
    left:0;
}   
.nhc_hero_logo{
    height:100px;
    width:100%;
    overflow:hidden;
    display: flex;
    align-items: center;
    justify-content: left;
}
.nhc_hero_logo img{
    height:100%;
    width:auto;
}
.nhc_hero_logo_gif img{
    height:280%;
    margin-left:-10%;
}
.nhc_hero_button{
    height:100%;
    display:flex;
    align-items: center;
    justify-content: right;
}

/*CONTENT*/

.nhc_content{
    padding:5rem 0;
    position: relative;
}
.nhc_content_top_large{
    padding-top:10rem;
}
.nhc_content_top_small{
    padding-top:2.5rem;
}
.nhc_content_top_none{
    padding-top:0;
}
.nhc_content_bottom_large{
    padding-bottom:10rem;
}
.nhc_content_bottom_small{
    padding-bottom:2.5rem;
}
.nhc_content_bottom_none{
    padding-bottom:0;
}
.nhc_content_lightgrey{
    background:var(--color-lightgrey);
}
.nhc_content_bluegrey{
    background:var(--color-bluegrey);
}
.nhc_content_green{
    background:var(--color-olive);
}
.nhc_content_half_green::before{
    content:'';
    width:100%;
    height:50%;
    position: absolute;
    bottom:0;
    left:0;
    background:var(--color-olive);
}

/*TEXT*/

.order-lg-1 .nhc_text_padded{
    padding:0 2rem 0 0;
}
.order-lg-2 .nhc_text_padded{
    padding:0 0 0 2rem;
}
.nhc_text h2{
    color:var(--color-bluegrey);
    margin:0 0 1rem;
}
.nhc_text h3{
    color:var(--color-bluegrey);
    text-transform: uppercase;
}
.nhc_text h3.lato{
    font-family:var(--font-body);
    font-size: 20px;
}
.nhc_text h4{
    color:var(--color-bluegrey);
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 700;
    margin:0 0 1rem;
    font-size:20px;
}
.nhc_text h5{
    color:var(--color-navy);
    margin:0 0 2rem;
}
.nhc_text h5::before{
    content:'';
    width:10px;
    height:10px;
    background:var(--color-tomato);
    display:inline-block;
    margin-right:1rem;
    margin-bottom:1px;
}
.nhc_text.nhc_title h5{
    font-family:var(--font-heading);
    font-size:30px;
    color:var(--color-bluegrey);
    font-weight:400;
    text-transform: none;
    margin:0 0 1rem;
}
.nhc_text.nhc_title h5::before{
    content:none;
}
.nhc_text p,
.nhc_text ul,
.nhc_text li{
    color:var(--color-text);
    font-size:18px;
    font-weight:400;
}
.nhc_text p a,
.nhc_text li a{
    color:var(--color-olive);
}
.nhc_text p a:hover,
.nhc_text li a:hover{
    color:var(--color-tomato);
}
.nhc_text .nhc_button{
    margin:1.5rem 0 0;
}
.nhc_text .nhc_text_callout{
    border:1px solid var(--color-tomato);
    padding:2rem 1.5rem;
    border-radius:5px;
    margin:3rem 0 0;
}
.nhc_text .nhc_text_callout p:last-of-type{
    margin-bottom:0;
}
.nhc_text.nhc_title_text{
    border-top:1px solid var(--color-lightgrey);
    padding-top:1.5rem;
}
.nhc_text.nhc_title_text h2{
    padding-right:18%;
}
.nhc_text.nhc_title_text p{
    padding-left:6%;
}
.nhc_text ul.nhc_check{
    list-style:none;
    margin:1rem 0;
    padding:0;
}
.nhc_text ul.nhc_check li{
    padding-left:1.5rem;
    position: relative;
    margin:0 0 1rem;
}
.nhc_text ul.nhc_check li::before{
    content:'\f14a';
    font: var(--fa-font-solid);
    color:var(--color-tomato);
    position: absolute;
    top: 5px;
    left: 0;
    font-size: 16px;
}
.nhc_content_bluegrey .nhc_text *:not(a){
    color:white;
}
.nhc_content_bluegrey .nhc_button{
    border-color:white;
    background-color:transparent;
    color:var(--color-olive);
}
.nhc_content_bluegrey .nhc_button:hover{
    border-color:var(--color-olive);
}


/*IMAGES*/

.nhc_content_image{
    width:100%;
    padding-bottom:80%;
    min-height:100%;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 4px 0 16px 0 rgba(0, 0, 0, 0.20);
    position: relative;
}
.nhc_content_image_default{
    border-radius: 24px;
}
.nhc_content_image_contain{
    background-size: contain;
    box-shadow:none;
}
.nhc_content_image_text.nhc_content_image_left{
    border-radius:0 80px 80px 0;
}
.nhc_content_image_text.nhc_content_image_right{
    border-radius:80px 0 0 80px;
}
.nhc_content_image .nhc_image_title_left,
.nhc_content_image .nhc_image_title_right{
    text-shadow: -3px 5px 10px rgba(0, 0, 0, 0.40);
    font-family: var(--font-heading);
    font-size: 125px;
    font-style: normal;
    font-weight: 500;
    color:var(--color-olive);
    text-transform: uppercase;
    display:inline-block;
    position: absolute;
    height: 120px;
    vertical-align: middle;
    line-height: 0.9;
    overflow: hidden;
}
.nhc_content_image .nhc_image_title_left strong,
.nhc_content_image .nhc_image_title_right strong{
    font-weight:700;
    color:white;
}
.nhc_content_image .nhc_image_title_left{
    transform:rotate(-90deg);
    left:-1rem;
    bottom:-6rem;
    transform-origin:top left;
}
.nhc_content_image .nhc_image_title_right{
    top:-1rem;
    right:80px;
}
.nhc_content_image_text.nhc_content_image::after{
    content:'';
    width:54px;
    height:54px;
    background:var(--color-tomato);
    position: absolute;
    bottom:-27px;
    right:100px;
}
.nhc_image_slider{
    margin-bottom:0 !important;
}
.nhc_image_slider .slick-dots{
    position:relative;
    margin:0.5rem 0 1rem;
    bottom:auto;
}
.nhc_image_slider .slick-dots li button::before{
    color:var(--color-navy);
}
.nhc_image_slider .slick-dots li.slick-active button::before{
    color:var(--color-olive);
}
.nhc_image_slide .nhc_image{
    width:100%;
    padding-bottom:60%;
    position: relative;
    background-size:contain;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius:15px;
}

/*LOGO SLIDER*/

.nhc_logo_slider,
.nhc_logo_slider_large{
    margin:3rem 0 0;
}
.nhc_logo_slide{
    margin:0 3rem;
}
.nhc_logo{
    width:100%;
    height:60px;
    display:flex;
    align-items: center;
    justify-content: center;
}
.nhc_logo img{
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;
}
.nhc_logo_greyscale img{
    filter:brightness(0);
    opacity: 0.75;
}
.nhc_logo_slider_large .nhc_logo{
    height:140px;
}
.nhc_logo_slider_static .slick-list {
    display: flex !important;
    justify-content: center !important;
}

/*SERVICES SCROLLER*/

.nhc_service_scroller .row{
    margin:0;
}
.nhc_service_scroller .nhc_col{
    padding:0;
    width:50%;
}
.nhc_service_scroller_content{
    background:var(--color-lightgrey);
    padding:5rem 3rem 5rem var(--margin-width);
    display:flex;
    align-items:center;
    height:100vh;
}
.nhc_service_scroller_services{
    width:100%;
    height:100vh;
}
.nhc_service_scroller_service{
    width:100%;
    height:100vh;
    display:flex;
    align-items: center;
    background:white;
    overflow:hidden;
    position: relative;
}
.nhc_service_scroller_services .nhc_service_scroller_service:not(:first-of-type){
    box-shadow:0 -30px 30px rgba(0,0,0,0.1);
}
.nhc_service_scroller_image{
    width:100%;
    padding-bottom:60%;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius:8px;
    margin:0 0 2rem;
}
.nhc_service_scroller_service .parallax-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    will-change: transform;
    box-sizing: border-box;
}
.parallax-container{
    
}
.parallax-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.parallax-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  will-change: transform;
  box-sizing: border-box;
  padding:2rem var(--margin-width) 2rem 3rem;
}
.nhc_service_scroller_summary{
    background:var(--color-olive);
    padding:2rem var(--margin-width) 2rem 10rem;
}
.nhc_service_scroller_summary h2{
    transform: rotate(-90deg);
    left: 0;
    bottom: -7rem;
    transform-origin: top left;
    position:absolute;
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    color:white;
    font-family:var(--font-heading);
    font-weight:500;
}
.nhc_service_scroller_summary h2 strong{
    font-weight:700;
}
.nhc_service_scroller_summary h3{
    text-transform: none;
    font-size:48px;
}

/*IMAGE LINK GALLERY*/

.nhc_link_gallery{
    columns: 3;
    column-gap: 1rem;
    margin-top:3rem;
}
.nhc_link_gallery_item{
    padding-bottom:120%;
    width:auto;
    border-radius:12px;
    overflow:hidden;
    margin:0 0 1rem;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.nhc_link_gallery_item a,
.nhc_link_gallery_item_container{
    display:block;
    width:100%;
    height:100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 56.85%, rgba(0, 0, 0, 0.60) 100%);
}
.nhc_link_gallery_label,
.detail_title{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:1rem 0.5rem;
    text-transform: uppercase;
    color:white;
    text-align:center;
    font-weight: 400;
    font-size:18px;
    letter-spacing: 1.6px;
}
.detail_title{
    display:block;
    position:relative;
    padding:0;
    /*color:var(--color-bluegrey);*/
    color:black;
    line-height:1.4;
}
.nhc_link_gallery_label span{
    position: relative;
    z-index:1;
    transition-duration: 0s;
}
.nhc_link_gallery_label p{
    transform:translateY(120%);
    position: relative;
    z-index:1;
    transition-duration: 0.75s;
    text-transform: none;
    font-size:14px;
    margin:0;
    color:black;
}
.nhc_link_gallery_label::before{
    content:'';
    width:100%;
    height:100%;
    background:var(--color-olive);
    position: absolute;
    top:0;
    left:0;
    z-index:0;
    transform:translateY(100%);
    transition-duration: 0.75s;
}
.nhc_link_gallery .nhc_link_gallery_item:nth-of-type(6n + 2){
    padding-bottom:60%;
}
.nhc_link_gallery .nhc_link_gallery_item:nth-of-type(9n + 4),
.nhc_link_gallery .nhc_link_gallery_item:nth-of-type(9n + 6){
    padding-bottom:90%;
}
.nhc_link_gallery_item a:hover .nhc_link_gallery_label,
.nhc_link_gallery_item_container:hover .nhc_link_gallery_label{
    color:var(--color-navy);
}
.nhc_link_gallery_item a:hover .nhc_link_gallery_label p,
.nhc_link_gallery_item_container:hover .nhc_link_gallery_label p{
    transform:translateY(0);
}
.nhc_link_gallery_item a:hover .nhc_link_gallery_label::before,
.nhc_link_gallery_item_container:hover .nhc_link_gallery_label::before{
    transform:none;
}
.nhc_image_links .nhc_link_gallery_item{
    padding-bottom:70%;
}
.nhc_image_links .nhc_link_gallery_item .nhc_link_gallery_label span:not(.detail_title){
    /*transform: translateY(250%);*/
    display: block;
    position:absolute;
    width:100%;
    padding:1rem;
    bottom:0;
    left:0;
    text-align:center;
    transition-duration: 0;
    line-height:1.4;
}
.nhc_image_links .nhc_link_gallery_item a:hover .nhc_link_gallery_label span:not(.detail_title),
.nhc_image_links .nhc_link_gallery_item_container:hover .nhc_link_gallery_label span:not(.detail_title){
    /*transform:translateY(0);*/
    opacity:0;
}
p.detail{
    line-height:1.5;
}
    

/*TESTIMONIAL SLIDER*/

.nhc_testimonial_slider_container{
    position:relative;
    padding-bottom:4rem;
    margin-top:3rem;
}
.nhc_testimonial_slider_container::before{
    content:'';
    position:absolute;
    height:50%;
    width:100%;
    background:var(--color-olive);
    bottom:0;
    left:0;
}
.nhc_testimonial_slider_container.nhc_testimonial_slider_container_green::before{
    background:var(--color-bluegrey);
}
.nhc_testimonial_slider .slick-track{
    display:flex !important;
}
.nhc_testimonial_slider .slick-list{
    padding:0 27% !important;
}
.nhc_testimonial_slide{
    margin:0 1rem;
    height: inherit !important;
}
.nhc_testimonial_slider .slick-dots{
    position:relative;
    bottom:auto;
    margin:2rem 0 0;
}
.nhc_testimonial_slider .slick-dots li.slick-active button:before{
    color:var(--color-bluegrey);
}
.nhc_testimonial{
    background:white;
    border: 1px solid #D5D7D9;
    padding:2rem;
    height:100%;
    display:flex;
    flex-direction:column;
    align-items: stretch;
}
.nhc_testimonial div{
    margin-top:auto;
}
.nhc_testimonial .nhc_text:not(.nhc_testimonial_attr .nhc_text)::before{
    content:'';
    width:64px;
    height:64px;
    background-image:url(public/img/quote.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    display:block;
    margin:0 0 1rem;
}
.nhc_testimonial_attr .nhc_text p{
    margin-bottom:0;
    font-size:16px;
    line-height: 1.5;
}
.nhc_testimonial_attr .nhc_text p strong{
    font-size:18px;
}
.nhc_testimonial_logo{
    width:100%;
    height:90px;
    padding:1rem;
    display:block;
    text-align: right;
}
.nhc_testimonial_logo img{
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;
    float:right;
}
.nhc_slider_button{
    position: relative;
    z-index:100;
    margin:2rem 0 0;
}
.nhc_testimonial_slider_container_green .nhc_slider_button .nhc_button:hover{
    border-color:white;
    color:white;
}
.nhc_testimonial_slider_container_white .nhc_slider_button .nhc_button{
    backgroud:var(--color-bluegrey);
    color:var(--color-green);
    border-color:var(--color-bluegrey);
}


/*POSTS*/

.nhc_posts .nhc_col{
    margin:2rem 0 0;
}
.nhc_post_image{
    width:100%;
    padding-bottom:65%;
    position: relative;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin:0;
}
.nhc_post_image .nhc_post_cat{
    background:var(--color-olive);
    position: absolute;
    padding:0.25rem 0.75rem;
    color:var(--color-black);
    font-size:14px;
    font-weight:500;
    top:1rem;
    left:0;
}
.nhc_post_content p{
    font-weight: 400;
    color:var(--color-bluegrey);
    font-size:18px;
    margin:0 0 0.5rem;
}
.nhc_post_content h4{
    font-family:var(--font-body);
    font-size:20px;
    font-weight: 500;
    color:var(--color-bluegrey);
    margin:0;
}

/*CTA*/

.nhc_cta{
    background:var(--color-olive);
    position: relative;
}
.nhc_cta_imade_sliders{
    display:flex;
    gap:1rem;
}
.nhc_cta_image_slider,
.nhc_cta_image_slider_reverse{
    flex:0 0 calc(50% - 0.5rem);
}
.nhc_cta_image_slider .slick-list,
.nhc_cta_image_slider_reverse .slick-list{
    padding:150px 0;
}
.nhc_cta_image_slider_reverse{
    transform: rotate(180deg);
}
.nhc_cta_image_slider_reverse .slick-slide {
    transform: rotate(-180deg);
}
.nhc_cta_image{
    width:100%;
    padding-bottom:100%;
    position: relative;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin:0 0 1rem;
    border-radius:12px;
}
.nhc_cta_image_slider .nhc_cta_image_slide:nth-of-type(3n+1) .nhc_cta_image,
.nhc_cta_image_slider_reverse .nhc_cta_image_slide:nth-of-type(3n+1) .nhc_cta_image{
    padding-bottom:120%;
}
.nhc_cta_image_slider .nhc_cta_image_slide:nth-of-type(3n+4) .nhc_cta_image,
.nhc_cta_image_slider_reverse .nhc_cta_image_slide:nth-of-type(3n+4) .nhc_cta_image{
    padding-bottom: 85%;
}
.nhc_cta_content{
    position: relative;
    height:100%;
    padding-left:30%;
    padding-right:var(--margin-width);
}
.nhc_cta_content h2{
    transform: rotate(-90deg) translate(15%,-50%);
    left: 0;
    bottom: auto;
    top:50%;
    transform-origin: center center;
    position:absolute;
    font-size: 125px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    color:white;
    font-family:var(--font-heading);
    font-weight:500;
}
.nhc_cta_content h2 strong{
    font-weight:700;
}
.nhc_cta_content h3{
    text-transform: none;
    font-size:48px;
}
.nhc_cta_content_main{
    padding:5rem 0;
    height:100%;
    display:flex;
    align-items:center;
}

/*FOOTER*/

.nhc_footer{
    background:var(--color-navy);
    padding:4rem 0;
}
.nhc_footer hr{
    border-color:rgba(255,255,255,0.35);
    margin:1rem 0 3rem;
}
.nhc_footer_logo{
    width:100%;
}
.nhc_footer_logo img{
    max-width:100%;
    width:auto;
    max-height:312px;
    height:auto;
}
.nhc_footer a,
.nhc_footer h2,
.nhc_footer h5,
.nhc_footer p{
    color:white;
}
.nhc_footer p{
    font-size:16px;
}
.nhc_footer a:hover{
    color:var(--color-olive);
}
.nhc_footer .nhc_form .gform_required_legend{
    display:none;
}
.nhc_footer .nhc_form .gform_wrapper.gravity-theme .gfield.gfield--type-email{
    grid-column: span 9;
}
.nhc_footer .nhc_form .gform_wrapper.gravity-theme .gfield.gfield--type-email input{
    padding:0.75rem 1rem;
    background:white;
    border:none;
    border-radius:5px;
}
.nhc_footer .nhc_form .gform_wrapper.gravity-theme #field_submit{
    grid-column: span 3;
}
.nhc_footer .nhc_form .gform_wrapper.gravity-theme #field_submit input{
    display:inline-block;
    padding:0.75rem 1.25rem;
    background:var(--color-olive);
    border:1px solid var(--color-olive);
    color:var(--color-grey);
    border-radius:5px;
    text-transform: uppercase;
    font-family:var(--font-body);
    font-weight:500;
    font-size:14px;
    letter-spacing: 0.6px;
    transition-duration: 0.75s;
    height:100%;
}
.nhc_footer .nhc_form .gform_wrapper.gravity-theme #field_submit input:hover{
    border:1px solid var(--color-navy);
    color:var(--color-navy);
    background:transparent;
    border-radius:0;
    text-decoration: none;
}
.nhc_footer_menus{
    display:flex;
    gap:3rem;
}
.nhc_footer_list{
    list-style: none;
    margin:0;
    padding:0;
    font-size:16px;
    font-weight:400;
}
.nhc_footer_list li{
    margin:0.75rem 0 0;
    display:block;
}
.nhc_footer_list li a{
    display:inline-block;
}
.nhc_footer_list li a:hover{
    color:var(--color-olive);
}
.nhc_footer_list li a::after{
    content:'';
    width:0;
    height:1px;
    background:var(--color-olive);
    margin:0.25rem 0 0;
    transition-duration: 0.75s;
    display:block;
}
.nhc_footer_list li a:hover::after{
    width:100%;
}
.nhc_footer_social{
    list-style: none;
    margin:0 0 2rem;
    padding:0;
    font-size:24px;
}
.nhc_footer_social li{
    display:inline-block;
    margin-right:1rem;
}
.nhc_footer_copy,
.nhc_footer_legal{
    margin:4rem 0 0;
    font-size:14px !important;
}
.nhc_footer_legal{
    list-style: none;
    padding:0;
    text-align:right;
}
.nhc_footer_legal li{
    display:inline-block;
    margin-left:2rem;
}
.nhc_footer .nhc_button{
    margin:0 0 2rem;
}
.nhc_footer .nhc_button:hover{
    border-color:white;
    color:white;
}

/*BLOCKS*/

.nhc_phase_blocks{
    display:flex;
    gap:3rem;
}
.nhc_phase_blocks .nhc_block{
    flex:1;
    position: relative;
    text-align:center;
    margin:3rem 0 0;
    padding:0;
    transition-duration: 0.5s;
}
.nhc_phase_blocks .nhc_block a{
    display:block;
    width:100%;
    height:100%;
}
.nhc_phase_blocks .nhc_block a,
.nhc_phase_blocks .nhc_block.nhc_block_padded{
    padding:2rem 1rem;
}
.nhc_phase_blocks .nhc_block:not(.nhc_block_padded):hover{
    outline:2px solid var(--color-tomato);
}
.nhc_phase_blocks .nhc_block:not(:first-of-type)::before{
    content:'';
    width:50px;
    height:50px;
    background-image:url(public/img/double-arrow.svg);
    background-position: center center;
    background-size:contain;
    background-repeat: no-repeat;
    position: absolute;
    top:50%;
    transform:translate(0,-50%);
    left:-50px;
}
.nhc_content_blocks{
    display:flex;
    gap:2rem;
    margin:2rem 0 0;
}
.nhc_content_blocks .nhc_block{
    flex:1;
    text-align:center;
}
.nhc_block{
    border:1px solid var(--color-tomato);
    padding:2rem 1rem;
    border-radius:10px;
}
.nhc_block h3{
    font-size:32px;
    color:var(--color-bluegrey);
    text-transform:none;
}
.nhc_block h6,
.nhc_block span.h6{
    text-transform: uppercase;
    font-size:18px;
    color:var(--color-text);
    font-family:var(--font-body);
    display:block;
}
.nhc_block h3.h6{
    text-transform:uppercase;
    font-size:20px;
    font-weight:700;
    color:var(--color-text);
    font-family:var(--font-body);
}
.nhc_block p{
    line-height:1.5;
    margin:0;
}
.nhc_block_image{
    width:100%;
    padding-bottom:60%;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin:0 0 1.5rem;
}
.nhc_icon_blocks .nhc_col{
    margin:2rem 0 0;
}
.nhc_icon_blocks .nhc_block{
    height:100%;
    padding:2rem 3rem;
    border-color:#C0C3C5;
}
.nhc_icon_blocks .nhc_block h3{
    text-transform: uppercase;
    font-size:30px;
}
.nhc_icon_blocks .nhc_block .nhc_button{
    margin:2rem 0 0;
}
.nhc_block_icon{
    width:100px;
    height:100px;
    position: relative;
    display:flex;
    align-items: center;
    justify-content: center;
    padding:1rem;
    margin-left:-1rem;
}
.nhc_block_icon img{
    max-width:100%;
    max-height: 100%;
    width:auto;
    height:auto;
}
.nhc_stat_blocks{
    display:flex;
    gap:2rem;
    flex-wrap:wrap;
}
.nhc_stat_blocks .nhc_block{
    flex:1;
    padding:2rem;
    text-align: center;
    margin:2rem 0 0;
}
.nhc_stat_num{
    font-family: var(--font-heading);
    font-size: 96px;
    font-style: normal;
    font-weight: 900;
    color:var(--color-bluegrey);
}
.nhc_content_half_green .nhc_block{
    border: 1px solid #D5D7D9;
    background: white;
    border-radius: 0;
    padding:3rem;
    height:auto;
    position: relative;
}
.nhc_content_half_green .nhc_block::after{
    content:'';
    width: 32px;
    height: 32px;
    background:var(--color-tomato);
    position: absolute;
    bottom:-17px;
    right:20px;
}
.nhc_content_half_green .nhc_image_block{
    padding:0;
}
.nhc_content_half_green .nhc_image_block .nhc_text{
    padding:0 3rem 3rem;
}
.nhc_location_block{
    background:var(--color-lightgrey);
    border-radius: 24px;
    display:flex;
    padding:2rem;
    gap:1rem;
    height:100%;
    flex-wrap:wrap;
}
.nhc_icon_blocks .nhc_col:first-of-type .nhc_location_block .nhc_block_icon{
    background:var(--color-olive);
}
.nhc_location_block .nhc_block_icon{
    width:48px;
    height:48px;
    background:var(--color-tomato);
    margin:0;
    position: relative;
    display:block;
}
.nhc_location_block .nhc_block_icon img{
    max-width: 100%;
    max-height:100%;
    width:auto;
    height:auto;
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}
.nhc_location_block p{
    line-height:1.5;
}
.nhc_location_block .nhc_phone{
    font-weight:700;
    color:var(--color-black);
    text-decoration: underline;
}
.nhc_location_block .nhc_phone:hover{
    color:var(--color-bluegrey);
}
.nhc_location_block h3{
    font-weight:400;
    font-size: 24px;
    letter-spacing: 0.96px;
}
.nhc_location_block .nhc_links{
    list-style:none;
    margin:0;
    padding:0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size:14px;
    font-weight:700;
}
.nhc_location_block .nhc_links li{
    font-size:14px;
    font-weight:700;
    margin:0 0 0.5rem;
}
.nhc_location_block .nhc_links li a,
.nhc_location_block .nhc_links li a:hover{
    color:var(--color-bluegrey);
}
.nhc_location_block .nhc_links li a::after{
    content:'\f061';
    margin-left:0.5rem;
    font: var(--fa-font-solid);
    transition-duration: 0.75s;
}
.nhc_location_block .nhc_links li a:hover::after{
    margin-left:1rem;
}

/*IMAGE LINKS*/

.nhc_image_links .nhc_col{
    margin:2rem 0 0;
}
.nhc_image_link{
    position: relative;
}
.nhc_image_link .nhc_image_container{
    width:100%;
    margin:0 0 1rem;
    position: relative;
}
.nhc_image_link .nhc_image{
    width:100%;
    position: relative;
    padding-bottom:80%;
    border-radius:24px;
    overflow:hidden;
}
.nhc_image_link .nhc_image.nhc_post_image{
    padding-bottom:65%;
}
.nhc_image_link .nhc_image img{
    position:absolute;
    height:100%;
    width:auto;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    transition-duration: 0.5s;
}
.nhc_image_link h4{
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    color:var(--color-bluegrey);
}
.nhc_image_link .nhc_image_container:hover{
    overflow:hidden;
    border-radius: 24px;
}
.nhc_image_link .nhc_image_container:hover .nhc_image img{
    transform:translate(-50%,-50%) scale(1.2);
}
.nhc_image_link .nhc_image_container::after{
    content:'';
    width:30px;
    height:30px;
    background:var(--color-tomato);
    position: absolute;
    bottom:-15px;
    right:2rem;
    left:auto;
    transition: content 0s linear 0.5s, width 0.5s, height 0.5s, bottom 0.5s, right 0.5s;
}
.nhc_image_link .nhc_image_container:hover::after{
    content:'\f061';
    font: var(--fa-font-solid);
    bottom:0;
    right:0;
    color:white;
    width:60px;
    height:60px;
    display:flex;
    align-items: center;
    justify-content: center;
    /*border-bottom-right-radius: 24px;*/
    transition: content 0s linear 0.5s, width 0.5s, height 0.5s, bottom 0.5s, right 0.5s;
}

/*FORMS*/

.nhc_content_form{
    padding:3rem;
    border-radius: 24px;
    border: 1px solid #C0C3C5;
    background: #FCFCFC;
}
.nhc_form h3{
    margin:0 0 2rem;
}
.nhc_form .gform_required_legend{
    display:none;
}
.nhc_form .gform_wrapper.gravity-theme input:not([type="submit"]),
.nhc_form .gform_wrapper.gravity-theme textarea{
    border-radius: 8px;
    border: 1px solid #C0C3C5;
    background:white;
    padding:0.75rem 1rem;
}
.nhc_form .gform_wrapper.gravity-theme .gfield_label{
    font-weight:400;
}
.nhc_form .gform_wrapper.gravity-theme .gfield_required{
    color:var(--color-tomato);
}
.nhc_form .gform_wrapper.gravity-theme .ginput_complex label.gform-field-label--type-sub{
    color: var(--color-grey);
    font-size: 14px;
    opacity: 0.75;
}
.nhc_form .gform_wrapper.gravity-theme #field_submit .gform-button--width-full, 
.nhc_form .gform_wrapper.gravity-theme .gform_footer .gform-button--width-full{
    padding:0.75rem 2rem;
    background:var(--color-olive);
    border:1px solid var(--color-olive);
    color:var(--color-grey);
    border-radius:5px;
    text-transform: uppercase;
    font-family:var(--font-body);
    font-weight:500;
    font-size:14px;
    letter-spacing: 0.6px;
    transition-duration: 0.75s;
}
.nhc_form .gform_wrapper.gravity-theme #field_submit .gform-button--width-full:hover, 
.nhc_form .gform_wrapper.gravity-theme .gform_footer .gform-button--width-full:hover{
    border:1px solid var(--color-olive);
    color:var(--color-navy);
    background:transparent;
    border-radius:0;
    text-decoration: none;
}
.nhc_form_navy{
    background:var(--color-navy);
    border-radius: 24px;
    padding:3rem;
}
.nhc_form.nhc_form_navy label,
.nhc_form.nhc_form_navy legend,
.nhc_form.nhc_form_navy h2,
.nhc_form.nhc_form_navy h3,
.nhc_form.nhc_form_navy h4,
.nhc_form.nhc_form_navy h5,
.nhc_form.nhc_form_navy h6,
.nhc_form.nhc_form_navy p,
.nhc_form.nhc_form_navy ul,
.nhc_form.nhc_form_navy li,
.nhc_form.nhc_form_navy ol{
    color:white !important;
}
.nhc_form.nhc_form_navy .gform_wrapper.gravity-theme #field_submit .gform-button--width-full:hover,
.nhc_form.nhc_form_navy .gform_wrapper.gravity-theme .gform_footer .gform-button--width-full:hover{
    color:white;
}

/*CASE STUDIES*/

.nhc_featured_work{
    background:white;
    padding:3rem;
}
.nhc_case_sidebar{
    background:var(--color-navy);
    border-radius:24px;
    padding:2rem;
}
.nhc_case_sidebar.active{
    position: fixed;
    top:5rem;
    z-index:1000;
}
.nhc_case_sidebar .nhc_text{
    color:white;
    margin:0 0 1rem;
}
.nhc_case_sidebar .nhc_text a{
    color:white;
    text-decoration: underline;
}
.nhc_case_sidebar .nhc_text a:hover{
    color:var(--color-olive);
}
.nhc_case_sidebar .nhc_text p,
.nhc_case_sidebar .nhc_text ul,
.nhc_case_sidebar .nhc_text li,
.nhc_case_sidebar .nhc_text h5{
    color:white;
    font-size:14px;
}
.nhc_case_sidebar .nhc_text ul,
.nhc_case_sidebar_section .nhc_text ul{
    list-style:none;
    margin:1rem 0;
    padding:0;
}
.nhc_case_sidebar .nhc_text ul li,
.nhc_case_sidebar_section .nhc_text ul li{
    padding-left:2rem;
    position:relative;
    margin:1rem 0 0;
}
.nhc_case_sidebar .nhc_text ul li::before,
.nhc_case_sidebar_section .nhc_text ul li::before{
    content:'';
    width:10px;
    height:10px;
    background:var(--color-tomato);
    position: absolute;
    top: 9px;
    left: 8px;
}
.nhc_case_sidebar .nhc_text ul li::before{
    width:7px;
    height:7px;
    top:7px;
}
.nhc_case_sidebar .nhc_text p{
    margin:0 0 0.5rem;
}
.nhc_case_sidebar .nhc_text h3{
    font-size: 38px;
    font-style: normal;
    font-weight: 500;
    color:white;
    text-transform: none;
}
.nhc_case_sidebar .nhc_text h4{
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    color:white;
    text-transform: none;
    font-family: var(--font-heading);
}
.nhc_case_sidebar .nhc_text img{
    max-height:100px;
    max-width:100%;
    display:block;
    margin:1rem 0 0;
}

/*TEAM*/

.nhc_team_image{
    width:100%;
    padding-bottom:65%;
    border-radius:24px;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin:0 0 1rem;
}
.nhc_team_member h4{
    font-family:var(--font-heading);
    font-size:24px;
    color:var(--color-bluegrey);
    font-weight:400;
    margin:0;
}
.nhc_modal{
    z-index:10000;
}
.nhc_modal .btn-close{
    position: absolute;
    right:2rem;
    top:2rem;
    background:var(--color-olive);
    border-radius:50%;
    width:40px;
    height:40px;
    border:none;
    color:var(--color-bluegrey);
}
.nhc_modal .btn-close:hover{
    background:var(--color-tomato);
    color:white;
}
.nhc_modal .modal-dialog{
    max-width:1200px;
}
.nhc_modal .modal-content{
    padding:5rem;
}
.nhc_modal .nhc_team_image{
    padding-bottom:0;
    position:relative;
    border-radius:0;
}
.nhc_modal .nhc_team_image img{
    width:100%;
    height:auto;
    border-radius:24px;
}
.nhc_modal h2{
    color:var(--color-bluegrey);
    margin:0;
}
.nhc_modal p.role{
    color:var(--color-olive);
}
.nhc_modal .nhc_text_overflow{
    /*height:600px;
    overflow:scroll;*/
}
.nhc_modal .nhc_text_overflow p,
.nhc_modal .nhc_text_overflow ul,
.nhc_modal .nhc_text_overflow ol,
.nhc_modal .nhc_text_overflow li{
    font-size:16px;
    line-height:1.5;
}
.nhc_modal blockquote{
    font-weight:300;
    font-style: italic;
    position:relative;
    padding-left:1.5rem;
}
.nhc_modal blockquote::after{
    content:'';
    width:5px;
    height:100%;
    background:var(--color-tomato);
    position: absolute;
    top:0;
    left:0;
}
.nhc_quote i{
    color:var(--color-tomato);
    font-size:28px;
    margin:0 0 0.5rem;
}
.nhc_modal .nhc_certifications{
    display:flex;
    align-items: center;
    width:100%;
    gap:2rem;
}
.nhc_modal .nhc_certification{
    flex:1;
    display:flex;
    align-items: center;
    justify-content: left;
    max-width:calc(50% - 1rem);
    height:90px;
    object-fit:contain;
}
.nhc_modal .nhc_certification img{
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;
}

/*BLOG/FILTERS*/

.nhc_filters{
    display:flex;
    align-items: center;
    gap:2rem;
    border-bottom:1px solid var(--color-navy);
    padding:2rem 0;
}
.nhc_filters h4{
    margin:0;
    font-family: var(--font-heading);
    font-size:24px;
    font-weight:400;
    color:var(--color-text);
}
.nhc_filters .nhc_cat_filter{
    list-style:none;
    margin:0;
    padding:0;
    text-transform:uppercase;
    font-wise:16px;
    font-weifht:700;
    color:var(--color-text);
}
.nhc_filters .nhc_cat_filter li{
    display:inline-block;
    margin:0 1rem;
    padding:5px 10px;
    border-radius:3px;
}
.nhc_filters .nhc_cat_filter li.active,
.nhc_filters .nhc_cat_filter li:hover{
    background:var(--color-olive);
    color:var(--color-navy);
    font-weight:700;
    cursor:pointer;
}
.nhc_post_hero{
    padding:calc(100px + 5rem) 0 5rem;
}
.nhc_post_hero::before{
    content:'';
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100px;
    background:black;
}
.nhc_post_hero h1{
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    color:var(--color-bluegrey);
}
.nhc_post_hero .nhc_image{
    width:100%;
    padding-bottom:50%;
    min-height:100%;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius:24px;
    position: relative;
}
.nhc_post_hero .nhc_image::after{
    content:'';
    width:30px;
    height:30px;
    background:var(--color-tomato);
    position: absolute;
    right:25px;
    bottom:-15px;
}
.nhc_post_hero .nhc_post_cats{
    list-style:none;
    margin:0 0 1rem;
    padding:0;
    display:flex;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color:var(--color-navy);
}
.nhc_post_hero .nhc_post_cats li{
    padding-left:1.5rem;
    position: relative;
}
.nhc_post_hero .nhc_post_cats li::before{
    content:'';
    width:10px;
    height:10px;
    background:var(--color-tomato);
    position: absolute;
    left:0;
    top:8px;
}
.nhc_post_hero p{
    font-size:24px;
}

/*TIMELINE*/

.nhc_timeline_container{
    border:1px solid var(--color-olive);
    padding:5rem 3rem;
    border-radius:24px;
}
.nhc_timeline_title{
    margin:-7rem 0 2rem;
    text-align:center;
}
.nhc_timeline_title h2{
    padding:0 2rem;
    display: inline-block;
    color:var(--color-grey);
}
.nhc_timeline_title_white h2{
    background-color:white;
}
.nhc_timeline_title_lightgrey h2{
    background-color:var(--color-lightgrey);
}
.nhc_timeline_stats{
    background:var(--color-navy);
    border-radius:10px;
}
.nhc_timeline_stat{
    text-align: center;
    padding:2rem;
}
.nhc_timeline_stat .num{
    color:var(--color-tomato);
    font-family:var(--font-heading);
    font-size:48px;
    font-weight:500;
}
.nhc_timeline_stat p{
    text-transform: uppercase;
    font-size: 20px;
    font-weight:400;
    color:white;
}
.nhc_timeline{
    margin:-2rem 0 0;
    padding-right:5rem;
}
.nhc_timeline_item{
    margin:3rem 0 0;
}
.nhc_timeline_date{
    display:inline-block;
    border-radius: 8px;
    border: 1px solid var(--color-olive);
    background: var(--color-olive);
    color:var(--color-bluegrey);
    font-family: var(--font-body);
    text-transform:uppercase;
    font-size: 18px;
    font-weight: 400;
    padding:0.5rem 4rem 0.5rem 0.5rem;
    min-width:150px;
}
.nhc_timeline_item .nhc_content_image{
    box-shadow:none;
    border-radius:10px;
    padding-bottom:60%;
}

/*POPUP*/

.pum-content.popmake-content{
    display:flex;
    gap:0;
}
.pum-content.popmake-content .tm_popup_image{
    flex:0 0 38%;
    height:100%;
}
.pum-content.popmake-content .tm_popup_image img{
    min-width:100%;
    min-height:100%;
    width:auto;
    height:auto;
    margin:0;
    object-fit: cover;
}
.pum-content.popmake-content .tm_popup_content{
    padding:1rem;
}
.pum-content.popmake-content .tm_popup_content h2{
    font-size:40px;
    color:var(--color-bluegrey);
}
.pum-content.popmake-content .tm_popup_content p{
    font-size:16px;
    line-height:1.5;
}
.pum-content.popmake-content .tm_popup_content p em{
    font-size:12px;
    margin:0;
}
.pum-content.popmake-content .tm_popup_content .nhc_button{
    margin:1rem 0 2rem;
}
.pum-theme-7037 .pum-content + .pum-close, .pum-theme-default-theme .pum-content + .pum-close{
    background:var(--color-olive);
    border:2px solid white;
    color:white;
    width:40px;
    height:40px;
    border-radius:50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
