:root {
    --light-gray: #f7f7f7;
    --red: #ED1B2E;
}

b, strong {
    font-weight: 600;
}

.full-width-banner-container #crumb_socialmedia .flow-meter-home {
    left: unset;
    padding-left: 0;
}

#body .live-help-text-link-footer {
    color: rgba(240, 197, 17, 1) !important;
}

.full-banner .cta {
    margin: 0 auto;
    margin-top: 0px;
    padding: 10px;
    text-align: center;
    font-size: 2rem;
    min-width: 240px;
    height: 48px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, .17) 0%, rgba(0, 0, 0, .17) 100%);
    border-radius: 9px;
    font-family: proxima-nova-alt, sans-serif;
    color: white;
}

.full-banner .cta a {
    color: white !important;
}

.full-banner .cta:hover {
    background-color: #39F;
    text-shadow: 0 2px 2px rgba(0, 20, 155, 0.5);
}

.full-banner .cta .glyphicon {
    margin-right: 6px;
}

.full-banner .cta-label {
    color: #f7e300;
    width: 100%;
    font-size: 2rem;
    font-family: proxima-nova-alt, sans-serif;
    font-weight: 500;
    margin-top: 55px;
    text-align: center;
    user-select: none;
    pointer-events: none;
}


.home .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.gallery-block {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    padding: 3rem;
}

.gallery-block a p {
    color: #505050 !important;
}

/* ================================================================================ */
/* Video Hero */
/* ================================================================================ */
.home__video-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: min(60rem, 56.25vw); /* 56.25vw = 9/16 of the width */
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
}

.home__video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: clamp(30rem, 90vw, 60rem);
    transform: translate(-50%, -50%);
    display:flex;
    flex-direction: column;
    align-items: center;
    gap:2rem;
}

.home__video-overlay > img {
    max-width: 95%;
    min-width: 31rem;
}

@media screen and (min-width: 768px) {
    .home__video-overlay {
        gap:3.6rem;
    }
}

.home__video-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;          /* fills, then clips when capped */
    object-position: center;    /* change focus if needed */
    pointer-events: none;
}

.headline-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
    position: absolute;
    text-transform: uppercase;
    color: #FFF;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 600px) {
    .headline-wrapper{
        top: 55%;
    }
}

.headline-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
}

.headline-column > .xxl {
    font-size: clamp(12.5rem, 20vw, 22rem);
    font-weight: 900;
    letter-spacing: clamp(-1rem, 1vw, -.5rem);
    line-height: clamp(8rem, 16vw, 16rem);
}

.headline-column-subheadline {
    margin: 0;
    padding: 0;
    font-size: clamp(3.7rem, 6vw, 6rem);
    font-weight: 400;
    line-height: 6rem;
}

.headline-wrapper-arrows {
    display: flex;
    flex-direction: column;
    margin-top:4rem;
    position: absolute;
    bottom: 6rem;
}

@media screen and (max-width: 940px) {
    .headline-wrapper-arrows {
        display: none;
    }
}

.arrow-1 > svg {
    fill: #FFF;
    width: 4rem;
    height: 4rem;
}
.arrow-2 > svg {
    fill: #FFF;
    opacity: 50%;
    width: 4rem;
    height: 4rem;
    margin-top: -3.5rem;
}
.arrow-3 > svg {
    margin-top: -7rem;
    fill: #FFF;
    opacity: 25%;
    width: 4rem;
    height: 4rem;

}

@media screen and (min-width: 880px) {
    .headline-column > h1.xxl {
        letter-spacing: -2rem;
    }
}

.home__video-wrapper.headline {
    color: white;
}

.home__video-wrapper.tagline {
    color: white;
}

.home__video-wrapper header .container {
    position: relative;
    z-index: 2;
}

.home__video-wrapper header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 1;
}

/* ================================================================================ */
/* Subheader */
/* ================================================================================ */
.home__subheader-wrapper {
    padding: clamp(2rem, 4vw, 4rem) 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.home__subheader-wrapper > h2 {
    color: #1F1F1F;
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 4.7rem);
    font-weight: bold;
}

.home__subheader-wrapper > p {
    color: #FFF;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin: 0;
    padding: 0;
}

.home__subheader-wrapper.bg-red {
    background: var(--red);
}

.home__subheader-wrapper.bg-red > h2 {
    margin-bottom: 1.2rem;
    color: #FFF;
}

/* ================================================================================ */
/* Sierra Can Help */
/* ================================================================================ */

#home-panel-2 {
    background-color: #f8f8f8;
    background-image: url("/assets/images/home/measuring_methane.png");
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#home-panel-2 .parallax {
    height: 100%;
}

#home-panel-2 > .headline {
    color: #ED1B2F;
}

#home-panel-2 > .tagline > span {
    white-space: nowrap;
}

#home-panel-2 > .tagline > span:after {
    visibility: hidden;
    font-weight: 100;
    font-size: 200%;
    vertical-align: sub;
    content: "|"
}

/* Redy Meters */

#home-panel-3-0 .headline {
    color: #456;
    font-size: 4.5rem;
    margin-top: 80px;
}

#home-panel-3-0 .headline.red {
    color: #ED1B2F;
}

#home-panel-3-0 .tagline {
    color: #ED1B2F;
    weight: 300;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 3.4rem;
    margin-top: .5rem;
}

#home-panel-3-0 p {
    display: inline-block;
    width: 600px;
    margin-left: calc(50% - 300px);
    float: left;
    clear: both;
    text-align: center;
}

#home-panel-3-0 p:first-of-type,
#home-panel-3-0 p:nth-of-type(2),
#home-panel-3-0 p:nth-of-type(3),
#home-panel-3-0 p:nth-of-type(4) {
    width: 674px;
    margin-left: calc(50% - 337px);
    margin-top: 10px;
}

#home-panel-3-0 p:first-of-type {
    margin-top: 32px;
}

#home-panel-3-0 .cta-wrapper {
    clear: both;
}

#home-panel-3-0 .slick-arrow {
    color: transparent;
    user-select: none;
    background: transparent;
}

#home-panel-3-0 .slick-dots {
    display: block;
    float: left;
    clear: both;
    margin-left: calc(50% - 80px);
    margin-top: 1vw;
}

#home-panel-3-0 .slick-dots li.slick-active button {
    background-color: #E02;
}

#home-panel-3-0 .callout.NODRIFT {
    display: block;
    position: absolute;
    right: 20%;
    top: 10% !important;
    width: calc(10vw + 10px);
    height: calc(10vw + 10px);
    z-index: 99;
    opacity: 1;
    background-size: contain;
}

#home-panel-3-0 .slick-slide {
    position: relative;
}

#home-panel-3-0 .slick-slide .slide-label {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    text-align: center;
}

.slide-label .slide-title {
    color: #ED1B2F;
    font-size: 3.5rem;
    line-height: .9;
    font-family: 'clarendon-text-pro', serif !important;
    padding-top: 2rem;
}

.slide-label .slide-subtitle {
    font-size: 2.25rem;
}

/* ================================================================================ */
/* What's your flow */
/* ================================================================================ */
#home-panel-3 > .headline {
    color: #1f1f1f;
    font-family: "Proxima Nova", sans-serif;
    font-weight: bold;
    font-size: clamp(2.4rem, 4vw, 4.7rem);
    margin: 0;
    padding:0;
}

#home-panel-3 .gallery-block {
    background-color: white;
    padding: 3rem;
    transition: background 900ms ease;
}

#home-panel-3 {
    padding: clamp(4rem,6vw,7rem) 0;
}

#home-panel-3 h4 {
    color: #ffffff;
    font-size: 45px;
    padding-top: 95px;
}

#home-panel-3 #gas-block {
    background-color: #123456;
    background-image: url("/assets/images/home/gas.png");
    background-position: center;
    background-repeat: no-repeat;
}

#home-panel-3 #liquid-block {
    background-color: #123456;
    background-image: url("/assets/images/home/liquid.png");
    background-position: center;
    background-repeat: no-repeat;
}

#home-panel-3 #steam-block {
    background-color: #123456;
    background-image: url("/assets/images/home/steam.png");
    background-position: center;
    background-repeat: no-repeat;
}

/* ================================================================================ */
/* Featured Product */
/* ================================================================================ */
.home__product-wrapper {
    padding: 0 2rem 4rem 2rem;
    max-width: 52rem;
    margin: 0 auto;
    display:flex;
    flex-direction: column;
    align-items: center;
}

.home__product-wrapper > h2 {
    color: #1f1f1f;
    font-size: clamp(2.4rem, 4vw, 4.7rem);
    text-align: center;
    font-weight: 700;
    line-height: 2.7rem;
    margin: 0;
}

.home__prod-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    position: relative;
    margin-top: 2rem;
}

.home__prod-img-wrapper::before {
    content: "";
    height: .2rem;
    width: 50%;
    background-color: #C9C9C9;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-45%);
}

.home__prod-img-wrapper > img {
    width: clamp(25.5rem, 36vw ,36rem);
}

.home__prod-text-wrapper {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: start;
    margin-top: 3rem;
}

.home__prod-text-wrapper > a.home__btn-primary {
    margin-top: 3rem;
}

.home__prod-text-wrapper > h3 > span {
    display: inline-block;
    color: #818284;
}

.home__prod-text-wrapper > h3 {
    font-size: clamp(3.7rem, 8vw, 5.4rem);
    color: var(--red) !important;
    letter-spacing: -1px;
    font-weight: 800;
    margin: 0;
}

.home__prod-text-wrapper > p {
    font-size: 1.6rem;
    margin: 0;
    padding-top: 1.2rem;
    color: #1f1f1f;
    line-height: 24px;
}

.home__prod-text-wrapper > ul.qtherm-specs {
    margin-top: 1.6rem;
    display: flex;          /* or grid */
    flex-direction: column; /* if flex */
    gap: .4rem;
}

.home__prod-text-wrapper > ul.qtherm-specs > li:not:last-child {
    margin-bottom: 1rem;
}

a.home__btn-cta {
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    line-height: 1.6rem !important;
    min-height: unset !important;
    background: var(--red);
    color: #FFF !important;
    text-shadow: none !important;
    text-align: center;
    font-weight: 600;
    transition: all .2s ease-in-out;
    cursor: pointer;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    a.home__btn-cta {
        padding: 2rem 4rem;
        font-size: 2rem;
        line-height: 2.4rem;
    }
}

a.home__btn-cta:hover {
    background: #F03A4B;
}

a.home__btn-primary {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 5.5rem;
    font-size: 1.8rem;
    background: #1f1f1f;
    color: #FFF !important;
    text-shadow: none !important;
    text-align: center;
    font-weight: 600;
    transition: all .2s ease-in-out;
}

a.home__btn-primary:hover {
    background: #2E2E2E;
}

@media screen and (min-width: 880px) {
    .home__product-wrapper {
        max-width: 128rem;
        overflow-y: hidden;
        padding: 4rem 2rem;
    }

    .home__product-wrapper > h2 {
        text-align: left;
    }

    .home__prod-content {
        display: flex;
        align-items: center;
        margin-top: 1rem;
    }

    @media screen and (min-width: 768px) {
        .home__prod-content {
            gap: 6rem;
        }
    }

    .home__prod-img-wrapper {
        order: 2;
        flex: 1;
        justify-self: center;
        margin-top:0;
    }

    .home__prod-img-wrapper::before {
        display:none;
    }

    .home__prod-img-wrapper > img {
        transform: translateY(4rem);
    }

    .home__prod-text-wrapper {
        max-width: clamp(40rem, 40vw, 45rem);
    }

    .home__btn-primary {
        max-width: 26rem;
    }


    #home-panel-3 .gallery {
        display: flex;
        gap: 2rem;
        justify-content: center;
        max-width: 128rem;
    }
    #home-panel-3 .gallery-block {
        min-height: 20rem;
    }
    #home-panel-3  h4 {
        vertical-align: center;
        padding-top: 65px !important;
    }
}

/* ================================================================================ */
/* Service Cards */
/* ================================================================================ */
.home__services-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--light-gray);
    padding: 4rem 0;
}

.home__services-cards-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 128rem;
}

.home__services-wrapper > h2 {
    font-size: clamp(2.8rem, 8vw, 4.7rem);
    color: #1F1F1F;
    font-weight: bold;
    margin-bottom: clamp(2.5rem, 4vw, 6rem);
}

.home__services-wrapper > article {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.home__services-card {
    padding: 2.5rem 0;
    position: relative;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home__services-card:hover {
    background: #FFF;
    box-shadow: #DBDBDB 0 4px 10px 0;
}

.home__services-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.home__services-card > p {
    max-width: 25rem;
    font-size: 1.6rem;
    line-height: 20px;
    margin: 0;
}

.home__services-card::before {
    content: "";
    width: 80%;
    height: .2rem;
    background: #C9C9C9;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.2s ease-in-out;
}

.home__services-card:hover::before {
    width: 100%;
    transition: all 0.2s ease-in-out;
}

.home__services-card:not(:last-child)::after {
    content: "";
    width: 0;
    height: .2rem;
    background: #C9C9C9;
    position: absolute;
    bottom: -.2rem;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.2s ease-in-out;
}

.home__services-card:hover:not(:last-child)::after {
    width: 100%;
    transition: all 0.2s ease-in-out;
}

.home__services-card-content-wrapper--top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: .8rem auto;
}

.home__services-card-content-wrapper--top > h3 {
    font-size: 2.4rem;
    font-weight: bold;
    color: #1F1F1F !important;
    margin: 0;
}

.home__services-card-content-wrapper--top > svg {
    width: 2.4rem;
    height: 2.4rem;
    fill: var(--red);
}

@media screen and (min-width: 768px) {
    .home__services-card-content-wrapper--top > svg {
        width: 5rem;
        height: 5rem;
    }
}

.home__services-cta-wrapper {
    display: none;
}

@media screen and (min-width:501px) {
    .home__services-wrapper {
        padding: 7rem 2rem;
    }
}

@media screen and (min-width: 880px) {
    .home__services-cards-wrapper {
        flex-direction: row;
        gap: 2rem;
        margin-bottom: 7.5rem;
    }

    .home__services-card::before {
       display: none;
    }

    .home__services-card:not(:last-child)::after {
        display: none;
    }

    .home__services-card-content-wrapper--top {
        flex-direction: column;
    }

    /*.home__services-card-content-wrapper--top > svg {*/
    /*    order: 2;*/
    /*}*/

    .home__services-card {
        border: 1px solid #C9C9C9;
        text-align: center;
        padding: clamp(2rem, 4vw, 4rem);
        background-color: #FFF;
    }

    .home__services-card:hover {
        box-shadow: #DBDBDB 0 4px 10px 0;
        transform:translateY(-.2rem);
    }

    .home__services-cta-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3.2rem;
    }

    .home__services-cta-wrapper > h4 {
        margin: 0;
        font-size: 2.8rem;
        font-weight: 400;
    }
}

/* ================================================================================ */
/* Products Showcase */
/* ================================================================================ */
.home__showcase-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 7rem 2rem 4rem 2rem;
    font-size: 1.6rem;
}

.trade-symbol {
    transform: translate(clamp(-1.4rem, -1vw, -.8rem), clamp(-1.6rem, -1.2vw, -.8rem));
    font-size: clamp(1rem, 1vw, 1.6rem);
}

.home__showcase-wrapper > h2 {
    font-weight: bold;
    font-family: "Proxima Nova", sans-serif;
    color: #1F1F1F;
    font-size: clamp(2.8rem, 8vw, 4.7rem);
    margin-bottom: 4rem;
    white-space: nowrap;
}

.home__showcase-cards-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
}

.home__showcase-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home__showcase-card--description {
    margin-bottom: 2.4rem;
}

.home__showcase-card > h3 {
    font-size: 3.8rem;
    color: var(--red) !important;
    font-weight: 800;
    margin: .6rem 0 0 0;
}

.home__showcase-card > h3 > span {
    display: inline-block;
    color: #818284;
}

.home__showcase-card--subheader {
    font-size: 1.8rem;
    color: #1F1F1F;
    font-weight: bold;
    margin: 1.6rem 0 0 0;
}

.home__showcase-card-img-wrapper {
    position: relative;
}

.home__showcase-card-img-wrapper::before {
    content: "";
    height: .2rem;
    width: 50%;
    background-color: #C9C9C9;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 10;
}

@media screen and (min-width:501px) {
    .home__showcase-wrapper {
        padding: 7rem 2rem;
    }
}

@media screen and (min-width: 880px) {
    .home__showcase-cards-wrapper {
        flex-direction: row;
        gap: 2rem;
    }
}

/* ================================================================================ */
/* Blogs Scroller */
/* ================================================================================ */
/* Carousel container */
.home__carousel-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 4rem 0;
    background: var(--light-gray);
}

.home__carousel-section > h2 {
    font-size: clamp(2.8rem, 8vw, 4.7rem);
    color: #1F1F1F !important;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}

.home__carousel-container {
    position: relative;
    width: 100%;
    max-width: 128rem;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 1.5rem 0;
}

/* Carousel track */
.home__carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 0;
    padding: 0;
}

/* Individual cards */
.home__carousel-card {
    flex: 0 0 auto;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    min-height: 40.3rem;
}

/* Card visual section */
.home__card-visual {
    position: relative;
    width: 100%;
    height: 19.2rem;
    overflow: hidden;
}

.home__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Card content */
.home__card-content {
    padding: 2.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.2rem;
    flex: 1 1 auto;
}

.home__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    height: fit-content;
}

.home__card-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1f1f1f !important;
    margin: 0;
    line-height: 1.4;
}

.home__card-desc {
    font-size: 1.4rem;
    color: #282731;
    margin: 0;
    line-height: 1.6;
}

/* Card link */
a.home__card-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    color: var(--red) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.4rem;
    margin-top: auto;
    transition: color 0.2s ease;
    width: fit-content;
    height: fit-content;
    line-height: 1.4rem !important;
    min-height: unset !important;
}

.home__link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    color: var(--red);
    font-size: 1.4rem;
    transition: transform 0.2s ease;
    min-height: unset !important;
    line-height: 1.4rem !important;
    margin-top: auto;
}

.home__card-link:hover .home__link-icon {
    transform: translateX(2px);
}

/* Navigation arrows - Hidden on all screen sizes */
.carousel-nav {
    display: none !important;
}

/* Pagination dots */
.home__carousel-dots {
    margin: 2rem auto 0 auto;
    width: fit-content;
    display: flex;
    gap: .8rem;
    z-index: 10;
}

.home__dot {
    width: 1rem !important;
    min-height: 1rem !important;
    height: 1rem !important;
    border-radius: 50%;
    padding:0 !important;
    border: 1px solid #1f1f1f;
    background-color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.home__dot:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}

.home__dot.active {
    background-color: #1f1f1f;
}

/* Responsive design - Above 500px (non-full-width cards) */
@media (min-width: 501px) {
    .home__carousel-section {
        padding: 4rem 2rem;
    }

    .home__carousel-section > h2 {
        margin-bottom: 4rem;
    }

    .home__carousel-track {
        gap: 3rem;
        padding: 0 3.2rem 3.2rem 3.2rem;
    }

    .home__carousel-card {
        width: 100%;
        min-width: 30rem;
        max-width: 38.4rem;
        height: 100%;
        background-color: #ffffff;
    }

    .home__carousel-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2), 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .home__carousel-dots {
        margin: 0 auto;
    }

}

@media (min-width: 768px) {
    .home__carousel-track {
        padding: 0 4.8rem 4.8rem 4.8rem;
    }

    .home__card-content {
        padding: 3.2rem;
    }

    .home__carousel-section {
        padding: 6rem 4rem;
    }
}

/* Smooth scrolling fallback */
@media (prefers-reduced-motion: no-preference) {
    .home__carousel-track {
        transition-duration: 0.5s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home__carousel-track {
        transition-duration: 0.2s;
    }

    .home__carousel-card:hover {
        transform: none;
    }
}

/* ================================================================================ */
/* Subscribe */
/* ================================================================================ */
.home__subscribe {
    padding: 4rem 2rem;
    display: flex;
    background: var(--light-gray);
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.home__subscribe > h2 {
    font-size: clamp(2.8rem, 8vw, 4.7rem);
    color: #1F1F1F !important;
    font-weight: bold;
    margin: 0;
}

.home__subscribe > p {
    font-size: 1.8rem;
    color: #1f1f1f !important;
    text-align: center;
    margin: 0;
    line-height: 2.7rem;
    max-width: 30rem;
}

@media screen and (min-width: 501px) {
    .home__subscribe {
        padding: 7rem 2rem;
        gap: 3rem;
    }

    .home__subscribe > p {
        max-width: unset;
        margin-bottom: 1.4rem;
    }
}

/* ================================================================================ */
/* Who We Are */
/* ================================================================================ */
.home__about {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFF;
    gap: 2rem;
}

.home__about > h2 {
    font-size: clamp(2.8rem, 8vw, 4.7rem);
    color: #1F1F1F !important;
    font-weight: bold;
    margin: 0;
}

.home__about > h3 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: #1F1F1F !important;
    font-weight: normal;
    text-align: center;
    margin:0;
}

.home__about > p {
    font-size: 1.6rem;
    color: #1f1f1f;
    text-align: center;
    margin: 0;
    line-height: 2.7rem;
    max-width: 33rem;
}

a.home__subscribe-link {
    margin: 0;
    font-weight: bold;
    font-size: 1.8rem;
    color: var(--red) !important;
    min-height: unset !important;
    line-height: unset !important;
}

.home__subscribe-link:hover {
    text-decoration: underline !important;
    color: var(--red) !important;
    text-shadow: none;
}

@media screen and (min-width: 501px) {
    .home__about {
        padding: 7rem 2rem;
        gap: 3rem;
    }

    .home__about > h2 {
        font-size: clamp(2.8rem, 8vw, 4.7rem);
    }

    .home__about > h3 {

    }

    .home__about > p {
        max-width: 67rem;
    }
}

/* ================================================================================ */
/* Here's what we can do */
/* ================================================================================ */

#home-panel-4 {
    background-color: #FFF;
}

#home-panel-4 h2 {

    margin-top: 60px;
    margin-bottom: -20px;
    text-align: center;
}

#home-panel-4 .cta {
    margin-bottom: 100px;
}

#home-panel-4 h4 {
    color: #123456;
    font-weight: 500;
}

#home-panel-4 .headline {
    color: #505050;
}

#home-panel-4 .gallery-block {
    padding: 0;
    margin-right: 0;
    background: linear-gradient(to bottom, transparent 0, transparent 30px, #ffffff 30px, #ffffff 100%);
}

#home-panel-4 .gallery-block a:hover .shadow {
    box-shadow: 2px 5px 10px #606060;
}

#home-panel-4 a:hover h4,
#home-panel-4 a:hover p {
    text-shadow: none;
}

/* ================================================================================ */
/* Sierra lineup */
/* ================================================================================ */

#home-panel-5 {
    background-color: #2D4059;
    padding: 1px;
}

#home-panel-5 .headline {
    color: #ffffff;
}

#home-panel-5 .gallery {
    margin: 0 auto;
    width: 100%;
}

#home-panel-5 .gallery-block {
    padding: 1px;
}

#home-panel-5 .gallery-block .inner {
    background-color: white;
    height: 0;
    padding-bottom: 63%;
}

#home-panel-5 .gallery-block .content h3 {
    color: #ED1B2F;
}

#home-panel-5 .gallery-block .content h4 {
    color: #123456;
}

#home-panel-5 .gallery-block .content button {
    font-size: 1.4rem;
    color: #ffffff;
    text-transform: uppercase;
    background-color: #3498DB;
    border: 1px solid #3498DB;
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

#home-panel-5 .gallery-block .content button a {
    color: #ffffff !important;
}

#innovasonic-block img.product-image {
    position: absolute;
    top: 10%;
    right: 45%;
    width: 45%;
    height: auto;
}

#innovasonic-block .content {
    position: absolute;
    text-align: left;
    bottom: 4%;
    right: 4%;
    left: 10%;
    top: 6%;
}

#quadratherm-block img.product-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
}

#quadratherm-block .content {
    position: absolute;
    text-align: left;
    bottom: 4%;
    left: 5%;
    width: 90%;
    top: 6%;
    right: 5%;
}

#innovamass-block img.product-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

#innovamass-block .content {
    position: absolute;
    text-align: left;
    bottom: 4%;
    left: 5%;
    width: 90%;
    top: 6%;
    right: 5%;
}

#innovamass-block .content img.product-thumb {
    display: block;
    padding-top: 45%;
    padding-left: 25%;
}

#smarttrak-block img.product-image {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 38%;
    height: auto;
}

#smarttrak-block .content {
    position: absolute;
    text-align: left;
    bottom: 4%;
    left: 5%;
    width: 90%;
    top: 6%;
    right: 5%;
}

#redy-gallery img {
    display: block;
    max-width: 1000px;
    max-height: 580px;
    margin: 0 auto;
}

#redy-gallery img[alt="SmartTrak 100"] {
    margin-bottom: -18px;
}

/* ================================================================================ */
/* Solving flow challenges */
/* ================================================================================ */

#home-panel-6 .headline {
    color: #ED1B2F;
}

#home-panel-6 .gallery {
    margin: 0 auto 45px;
    width: 100%;
}

#home-panel-6 .gallery-block {
    padding: 0;
}

#home-panel-6 h4 {
    text-transform: none;
}

#home-panel-6 .panel-tags:after {
    content: "";
    display: table;
    clear: both;
}

#home-panel-6 .readmore {
    float: right;
}

#home-panel-6 span i.fa {
    padding-left: 10px;
}

#blogs-block,
#blogs-block a,
#blogs-block a p {
    color: white;
}

#home-panel-6 #blog-cta a {
    font-size: 2.1rem;
}

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

.full-width-banner-container h3,
.full-width-banner-container .nav-section,
.full-width-banner-container .footer {
    user-select: none;
    cursor: default;
    color: white;
}

@media (min-width: 1450px) {

    #home-panel-5 .gallery h3 {
        max-width: 21vw;
    }

    #quadratherm-block .content img.product-thumb {
        height: 60%;
    }

    #home-panel-3-0 #redy-gallery ~ p {
        font-size: 1.8rem !important;
    }
}

@media (min-width: 1281px) {

    #redy-gallery img[alt="Redy Series"] ~ .slide-label {
        bottom: -36px;
    }

    .gallery {
        width: 1280px;
        margin: 0 auto;
    }


    #home-panel-1 .container {
        max-width: 100%;
    }

    #home-panel-1 .headline {
        padding-top: 16%;
        font-size: 7rem;
    }

    #home-panel-1 .tagline {
        font-size: 4.4rem;
    }

    #home-panel-1 .cta {
        margin-top: 12px;
    }

    #home-panel-1 .cta-label {
        font-size: 2.2rem;
    }

    /* Sierra Can Help */
    #home-panel-2 {
        min-height: 350px;
    }

    #home-panel-2 > .headline {
        padding-top: 90px;
        font-size: 4.5rem;
    }

    #home-panel-2 > .tagline {
        padding-top: 20px;
        font-size: 1.8rem;
        font-weight: 400;
    }

    #home-panel-2 > .tagline > span:not(:last-child):after {
        visibility: visible;
        padding-left: 10px;
        padding-right: 5px;
        color: #ED1B2F;
    }

    #home-panel-3-0 .slick-list {
        max-height: 540px;
        min-height: 450px;
    }

    #home-panel-3-0 #redy-gallery ~ p {
        font-size: 1.5rem !important;
    }

    #redy-block-3 img {
        margin-left: 280px;
        margin-top: 100px;
        margin-bottom: -200px;
    }

    #redy-block-4 img {
        margin-left: 190px;
        transform: scale(.9) translateY(80px);
    }

    #home-panel-3-0 p:last-of-type {
        margin-bottom: 50px;
    }

    #home-panel-3 .gallery-block {
        height: 290px;
        padding: 3rem;
        width: 416px;
    }

    #home-panel-3 .gallery-block:not(:last-child) {
        margin-right: 16px;
    }

    /* Who We Are */
    #home-panel-3-1 {
        width: 1280px;
        margin: 0 auto;
    }

    #home-panel-3-1 .tagline {
        font-size: 3.4rem;
    }

    /* You have a lot riding on your decision */
    #home-panel-4 {
        height: 650px;
    }

    #home-panel-4 .headline {
        padding: 110px 0 80px;
        font-size: 4.5rem;
    }

    #home-panel-4 .gallery-block {
        width: 308px;
        height: 226px;
    }

    #home-panel-4 .gallery-block .shadow {
        margin-top: -30px;
        padding: 30px 4rem;
        width: 308px;
        height: 196px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    }

    #home-panel-4 .gallery-block:not(:last-child) {
        margin-right: 14px;
    }

    #home-panel-4 h4 {
        font-size: 24px;
        margin: 0;
        padding: 12px 0;
    }

    #home-panel-4 .gallery-block p {
        font-size: 16px;
    }

    #home-panel-4 .cta {
        margin-top: 48px;
    }

    /* Sierra Lineup */
    #home-panel-5 p {
        position: absolute;
        bottom: 0;
    }

    #innovasonic-block p {
        right: 6%;
    }

    #innovasonic-block h3 {
        margin-top: 20%;
    }

    #innovasonic-block h3,
    #innovasonic-block h4,
    #innovasonic-block button {
        margin-left: 64%;
        max-width: 200px;
    }

    #quadratherm-block h3 {
        margin-top: calc(15% + 2.65rem);
        max-width: 23rem;
    }

    #quadratherm-block p {
        right: 28%;
    }

    #innovamass-block p {
        left: 35%;
    }

    #innovamass-block h3,
    #innovamass-block h4,
    #innovamass-block button {
        margin-left: 67%;
    }

    #innovamass-block h3,
    #smarttrak-block h3 {
        margin-top: 4%;
        max-width: 22rem;
    }

    #home-panel-5 .headline {
        padding: 92px 0 77px;
        font-size: 4.5rem;
    }

    #home-panel-5 .cta {
        margin-top: 78px;
        margin-bottom: 78px;
        width: 250px;
        line-height: 1.5;
    }

    #home-panel-5 .gallery-block .content h3 {
        font-size: 3.4rem;
        color: #ED1B2F;
    }

    #home-panel-5 .gallery-block .content h4 {
        font-size: 2rem;
    }

    #quadratherm-block .content img.product-thumb {
        position: absolute;
        display: block;
        top: -140px;
        right: 0;
        height: 250px;
        padding: 0;
    }

    #innovamass-block .content img.product-thumb {
        padding-top: 10%;
    }

    /* Solving flow challenges */
    #home-panel-6 .headline {
        font-size: 4.5rem;
        margin: 76px 0 59px;
    }

    /* Stay In Touch */
    #home-panel-7 .headline {
        color: #ED1B2F;
        font-size: 4.2rem;
        padding-bottom: 21px;
    }

    #home-panel-7 p {
        color: #505050;
        font-size: 2.4rem;
    }

    #home-panel-7 .cta-wrapper {
        margin-top: 65px;
    }

    #home-panel-7 .form-group {
        width: 650px;
        margin-right: 14px;
    }

    #home-panel-7 .btn {
        width: 130px;
    }

    .toggle-more {
        display: none !important;
        height: 0;
        opacity: 0;
        pointer-events: none;
    }

}

@media (min-width: 1025px) and (max-width: 1280px) {
    #home-panel-3 .gallery {
        width: 100vw;
        margin: 0 auto;
    }

    #home-panel-3 .gallery-block {
        height: 230px;
    }

    #home-panel-3 .gallery-block:not(:last-child) {
        margin-right: 8px;
    }

    #home-panel-3 h4 {
        font-size: 37px;
        padding-top: 65px;
    }
}

#home-panel-3-0 .cta-wrapper {
    padding-bottom: 40px;
}

@media (max-width: 1280px) {
    #redy-gallery {
        margin: 0;
        margin-left: 10%;
        margin-right: 10%;
        width: 80%;
    }

    #redy-gallery img {
        max-width: 70vw;
        display: block;
        margin: 0 auto;
    }

    #redy-gallery .slide-label {
        bottom: inherit;
        top: 26vw;
    }

    .slick-list {
        height: 37vw;
    }

    #redy-block-3 img {
        max-width: 50vw;
        height: auto;
        margin-left: 10vw;
    }

    #redy-block-4 img {
        width: 45vw;
        margin-left: 17vw;
    }

    #home-panel-3-0 p:last-of-type {
        margin-bottom: 45px;
    }
}

@media (min-width: 769px) and (max-width: 1280px) {

    #innovasonic-block h3 span,
    #quadratherm-block h3 span {
        white-space: nowrap;
    }

    /* We Understand Flow is Hard */
    #home-panel-1 {
        min-height: 380px;
    }

    #home-panel-1 header {
        min-height: 380px;
    }

    #home-panel-1 header .container {
        padding-bottom: 30px;
    }

    #home-panel-1 .headline {
        padding-top: 9%;
        font-size: calc(30px + 2vw);
    }

    #home-panel-1 .tagline {
        font-size: 42px;
        line-height: 40px;
    }

    #home-panel-1 .cta {
        margin-top: 8px;
    }

    #home-panel-1 .cta-label {
        margin-top: 40px;
    }

    /* Sierra Can Help */
    #home-panel-2 {
        min-height: 235px;
    }

    #home-panel-2 > .headline {
        padding-top: 65px;
        font-size: 3.7rem;
    }

    #home-panel-2 > .tagline {
        padding-top: 20px;
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 1;
    }

    #home-panel-2 > .tagline > span:not(:last-child):after {
        visibility: visible;
        padding-left: 10px;
        padding-right: 5px;
        color: #ED1B2F;
    }

    /* Who We Are */
    #home-panel-3-1 .gallery {
        margin-left: 0;
        margin-right: 0;
        padding-left: 20px;
    }

    #home-panel-3-1 .gallery p {
        padding-left: 20px;
        padding-right: 80px;
    }

    #home-panel-3-1 .collapsee {
        margin-left: 0;
        margin-right: 0;
        padding-left: 35px;
    }

    /* You have a lot riding on your decision */
    #home-panel-4 {
        height: 640px;
    }

    #home-panel-4 .headline {
        padding: 100px 0 55px;
        font-size: 3rem;
    }

    #home-panel-4 .gallery {
        width: 100vw;
        margin: 0 auto;
    }

    #home-panel-4 .gallery-block {
        width: 24vw;
        height: 195px;
    }

    #home-panel-4 .gallery-block .shadow {
        margin-top: -30px;
        padding: 30px calc(1rem + 2.5vw);
        width: 24vw;
        height: 165px;
    }

    #home-panel-4 .gallery-block:not(:last-child) {
        margin-right: 6px;
    }

    #home-panel-4 h2 {
        margin-top: 80px;
    }

    #home-panel-4 h4 {
        font-size: 24px;
        margin: 0;
        padding: 12px 0;
    }

    #home-panel-4 .gallery-block p {
        font-size: 14px;
    }

    #home-panel-4 .gallery-block p br {
        display: none;
    }

    #home-panel-4 .cta {
        margin-top: 40px;
    }

    /* Sierra Lineup */
    .gallery .toggle-more {
        user-select: none;
        cursor: default;
        background-color: transparent !important;
        transition: 0.2s ease all;
        position: absolute;
        color: #ED1B2F;
        bottom: 0px;
        z-index: 99;
        right: 0;
        transform: rotate(180deg);
        text-align: right;
        font-size: 20px;
        font-weight: bold;
        padding-right: 20px;
        padding-left: 20px;
        right: calc(50% - 20px);
    }

    .gallery .toggle-more.open {
        bottom: 20px;
        transform: rotate(0deg);
    }

    .gallery-block .content {
        overflow: visible;
    }

    #smarttrak-block img.product-image {
        height: auto !important;
        width: 38% !important;
    }

    .gallery .inner .content p {
        transition: 0.2s ease bottom !important;
        position: absolute;
        bottom: -8px;
        max-height: 40px;
        overflow: hidden;
    }

    .gallery .inner h3,
    .gallery .inner h4,
    .gallery .inner button,
    .gallery .inner img {
        user-select: none;
        transition: 0.3s ease all;
        overflow: visible;
    }

    .gallery .toggle-more.open + .inner h3,
    .gallery .toggle-more.open + .inner h4,
    .gallery .toggle-more.open + .inner button,
    .gallery .toggle-more.open + .inner img {
        opacity: 0.7;
        filter: brightness(1.5) blur(15px) saturate(0.5);
    }

    .gallery .toggle-more.open + .inner p {
        bottom: 0 !important;
        left: -16px !important;
        right: -16px !important;
        padding-bottom: calc(32px + 2vw) !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        height: auto !important;
        max-height: 400px !important;
        background-color: transparent !important;
        padding-top: 16px !important;
        margin-bottom: -16px !important;
        line-height: 1.6 !important;
        font-size: calc(2vw - 2px);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 1.0) 100%) !important;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    }

    #innovasonic-block .content {
        left: 5% !important;
    }

    .gallery .toggle-more.open + .inner p::after {
        opacity: 0;
    }

    #home-panel-5 #quadratherm-block .inner,
    #home-panel-5 #innovamass-block .inner {
        overflow: hidden;
    }

    #home-panel-5 #quadratherm-block img.product-image {
        transition: 0.2s ease all;
    }

    .gallery .inner {
        overflow: hidden;
    }

    .gallery .inner .content p:after {
        transition: 0.2s ease-out all;
        display: block;
        position: absolute;
        content: "";
        opacity: 1;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        pointer-events: none;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 0.5) 70%, rgba(255, 255, 255, 1.0) 100%);
    }

    #smarttrak-block img.product-image {
        width: 36%;
    }

    #innovasonic-block h3,
    #innovasonic-block h4,
    #innovasonic-block button {
        margin-left: 62%;
    }

    #innovamass-block h3,
    #innovamass-block h4,
    #innovamass-block button {
        margin-left: 67%;
    }

    #innovamass-block .content p {
        left: 34%;
    }

    #innovasonic-block h3,
    #quadratherm-block h3 {
        margin-top: 2rem;
    }

    #quadratherm-block p {
        right: 30%;
    }

    #home-panel-5 #quadratherm-block img.product-image {
        width: 100%;
    }

    #home-panel-5 .headline {
        padding: 92px 0 77px;
        font-size: 4.5rem;
    }

    #home-panel-5 .cta {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    #home-panel-5 .gallery-block .content h3 {
        font-size: 3vw;
        max-width: 22vw;
    }

    #home-panel-5 .gallery-block .content h4 {
        font-size: 2.4vw;
    }

    #quadratherm-block img.product-image {
        right: 0;
    }

    #quadratherm-block .content img.product-thumb {
        display: none;
    }

    #innovamass-block .content img.product-thumb {
        display: none;
    }

    /* Solving flow challenges */
    #home-panel-6 .headline {
        font-size: 3.7rem;
        margin: 70px 0;
    }

    #energy-block .content {
        padding-top: 20px;
    }

    #history-block .readmore,
    #energy-block .readmore {
        color: #ED1B2F;
    }

    #home-panel-7 .headline {
        color: #ED1B2F;
        font-size: 3.7rem;
        padding-bottom: 24px;
    }

    #home-panel-7 p {
        color: #505050;
        font-size: 2.1rem;
    }

    #home-panel-7 .cta-wrapper {
        margin-top: 50px;
    }

    #home-panel-7 .form-group {
        width: 600px;
        margin-right: 10px;
    }

    #home-panel-7 .btn {
        width: 80px;
    }
}

/* Special breakpoint fix for wide banner 2 list */

@media (max-width: 1190px) {
    #home-panel-2 {
        padding: 0 10% 40px;
    }

    #home-panel-2 > .tagline {
        font-size: 2rem;
        font-weight: 500;
        line-height: 1;
        text-align: center;
    }

    #home-panel-2 > .tagline > span {
        display: block;
    }

    #home-panel-2 > .tagline > span:not(:last-child):after {
        visibility: hidden;
        padding-left: 0;
        padding-right: 0;
    }

    /* Sierra Lineup */
    #home-panel-5 .content img.product-thumb {
        display: none;
    }
}

@media (min-width: 1025px) {

    #home-panel-3 .gallery-block .details {
        overflow: hidden;
        height: 0;
        background: transparent;
        opacity: 0;
        justify-content: center;
    }

    #home-panel-3 .gallery-block:hover {
        position: relative;
    }

    #home-panel-3 .gallery-block:hover .details {
        position: absolute;
        top: 40%;
        left: 0;
        width: 100%;
        height: 60%;
        padding-top: 40px;
        background: rgba(255, 255, 255, 0.8) !important;
        opacity: 1;
        transition: 0.82s ease all;
    }

    #home-panel-3 .gallery-block:hover span {
        display: block;
        padding-bottom: 20px;
    }

    #home-panel-3 .gallery-block:hover p {
        font-weight: 500;
        font-size: 2.1rem;
        margin-bottom: 2%;
        color: rgba(51, 51, 51, .8) !important;
    }

    #home-panel-3 .gallery-block:hover h4 {
        transition: 0.82s ease all;
        padding-top: 5%;
        padding-bottom: 10%;
    }

    #home-panel-3 a:hover {
        text-decoration: underline;
        font-weight: 500;
        font-size: 105%;
    }

    #home-panel-3 a,
    #home-panel-3 a:hover {
        color: rgba(51, 51, 51, .8) !important;
    }

    #home-panel-3 .gallery-block h4 {
        transition: 0.82s ease all;
    }
}

/* =======================================
 *      TABLET
 * ======================================= */

@media (max-width: 1024px) {

    /* What's your flow -- mobile */
    #home-panel-3 .gallery {
        margin-left: 0;
        margin-right: 0;
    }

    #home-panel-3 #gas-block,
    #home-panel-3 #liquid-block,
    #home-panel-3 #steam-block {
        margin-top: 12px;
        background-size: cover;
    }

    #home-panel-3 h4 {
        color: #ffffff;
        font-size: 36px !important;
        padding-top: 32px;
        padding-bottom: 22px;
        font-weight: 600;
        user-select: none;
    }

    #home-panel-3 .gallery-block .details {
        transition: 0.22s ease all;
        height: 0;
        max-height: 0;
        background: transparent;
        opacity: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    #home-panel-3 .gallery-block.expanded .details {
        height: 120px;
        max-height: 120px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), white);
        opacity: 1.0;
        box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .bug-report:not( .open ) {
        display: none;
    }

    .bug-report.open {
        display: block;
    }

    #home-panel-3 .gallery-block .details > p {
        display: block;
        padding-left: 10px;
        padding-right: 10px;
        line-height: 1.5 !important;
        margin-bottom: 0;
        margin-top: 60px;
        font-weight: 500;
        font-size: 2.1rem;
        color: rgba(51, 51, 51, .8);
        text-align: center;
        user-select: none;
    }

    #body #new_body #home-panel-3 .gallery-block .details:hover a {
        text-decoration: underline !important;
    }

    #home-panel-3 .gallery-block .details a {
        font-size: 105%;
        display: inline-block;
        color: rgba(51, 51, 51, .8) !important;
        transition: 0.2s ease all;
        text-decoration: underline;
        text-decoration-color: rgba(51, 51, 51, .8);
        transform: scale(1.0);
    }

    #home-panel-3 .gallery-block .details:active a {
        color: rgba(51, 51, 51, .3) !important;
        transform: scale(.92);
        text-decoration: underline;
        text-decoration-color: transparent;
    }

    #home-panel-3 .gallery-block .details a:active, #home-panel-3 .gallery-block .details a:active {
        color: #ED1B2F !important;
        text-decoration: underline;
        transform: scale(1.1);
        text-decoration-color: #ED1B2F;
    }

    #home-panel-3 .details span:first-child {
        display: block;
        position: absolute;
        pointer-events: none;
        left: 0;
        right: 0;
        text-align: center;
        padding: 1rem;
        font-size: 16px;
        margin-top: 14px;
    }

    #home-panel-3 .gallery #gas-block,
    #home-panel-3 .gallery #liquid-block,
    #home-panel-3 .gallery #steam-block {
        background-size: cover;
        background-position: center;
    }

    #home-panel-3 .gallery {
        margin-left: 0;
        margin-right: 0;
    }

    #home-panel-3 .gallery-block {
        width: 100%;
        height: auto;
        padding: 0;
        margin-top: 16px;
    }

    #home-panel-3 h4 {
        color: #FFF;
        padding-top: 32px;
        padding-bottom: 22px;
        text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3), 0px 2px 2px rgba(0, 0, 0, 0.2);
        text-transform: capitalize;
        font-weight: 600;
        font-size: 40px !important;
    }

    #home-panel-3 .gallery-block .details {
        overflow: hidden;
        transition: 0.22s ease all;
        height: 0;
        max-height: 0;
        background: transparent;
        opacity: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    #home-panel-3 .expanded.gallery-block .details {
        height: 120px;
        max-height: 120px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), white);
        opacity: 1.0;
        box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    #home-panel-3 .gallery-block-active h3 {
        padding-top: 10px;
    }

    #home-panel-3 .gallery-block-active {
        position: relative;
        padding-top: 10px;
    }

    #home-panel-3 .gallery-block-active p {
        font-weight: 600;
        font-size: 1.6rem;
        margin-bottom: 2%;
        color: rgba(51, 51, 51, .8) !important;
    }

    #home-panel-3 .gallery-block-active > h4 {
        display: none;
    }

    #home-panel-3 .gallery-block-active .details h4 {
        color: #ED1B2F;
        font-size: 20px !important;
        padding-top: 0;
    }

    #home-panel-6 .slider-nav {
        width: 100%;
    }

    #home-panel-6 #blog-cta {
        position: absolute;
        right: 20px;
        text-align: center;
        text-transform: uppercase;
        font-size: 1rem;
        border: 2px solid #ED1B2F;
        border-radius: 4px;
        color: #ED1B2F;
        width: 100px;
        height: 40px;
        bottom: 10px;
    }

    #body #home-panel-6 #blog-cta a span {
        display: none;
    }

    #body #home-panel-6 #blog-cta a {
        line-height: 3.8;
        font-size: 1rem;
        min-height: unset;
    }
}

@media (min-width: 769px) {

    #home-panel-3-1 .tagline br {
        display: none;
    }

    #home-panel-6 .gallery-block {
        display: inline-block;
        width: 680px;
    }

    #home-panel-6 .gallery-block:after {
        content: "";
        display: table;
        clear: both;
    }

    #home-panel-6 img {
        float: left;
        width: 300px;
        height: 300px;
    }

    #home-panel-6 .content {
        float: left;
        width: 360px;
        height: 300px;
        padding: 30px 32px;
        text-align: left;
        background-color: #ED1B2F;
        color: white;
    }

    #home-panel-6 .content h3 {
        font-size: 2.4rem;
        font-weight: bold;
    }

    #home-panel-6 .content h4 {
        font-size: 2.1rem;
        font-weight: normal;
    }

    #home-panel-6 .content div,
    #home-panel-6 .content p {
        font-size: 1.6rem;
    }

    #home-panel-6 .content .panel-tags {
        position: absolute;
        bottom: 15px;
        width: 300px;
    }

    #home-panel-6 .thermal-flow-blog-block {
        width: 740px;
    }

    #home-panel-6 .thermal-flow-blog-block .content {
        width: 420px;
    }

    /* Reset the arrows from the slide-inline and overlay format in home.css */
    .slick-arrow {
        background: no-repeat none;
        border: 0;
        display: block;
        text-indent: 0;
        top: -10px;
        z-index: 0;
    }

    #home-panel-3-0 .slick-arrow::after {
        color: #777;
        content: "<";
        position: absolute;
        top: 50%;
        left: 0;
    }

    #home-panel-3-0 .slick-prev {
        left: 0;
        top: 34%;
        position: absolute;
        width: 4vw;
        height: 10vw;
        z-index: 20;
    }

    #home-panel-3-0 .slick-next {
        right: 0;
        top: 34%;
        position: absolute;
        width: 4vw;
        height: 10vw;
        z-index: 20;
    }

    #home-panel-3-0 .slick-prev::after {
        color: #777;
        opacity: .5;
        content: "〈";
        position: absolute;
        top: 50%;
        left: 13px;
        font-size: 3vw;
    }

    #home-panel-3-0 .slick-next::after {
        color: #777;
        content: "〉";
        opacity: .5;
        position: absolute;
        top: 50%;
        right: 13px;
        font-size: 3vw;
    }

    #home-panel-6 .slide-m-prev,
    #home-panel-6 .slide-m-next {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .slide-m-prev {
        width: 0;
        height: 0;
        border-top: 12px solid transparent;
        border-right: 24px solid #3498DB;
        border-bottom: 12px solid transparent;
    }

    .slide-m-next {
        width: 0;
        height: 0;
        border-top: 12px solid transparent;
        border-left: 24px solid #3498DB;
        border-bottom: 12px solid transparent;
    }

    .slider-nav {
        text-align: center;
    }

    .slick-dots {
        display: inline-block;
        margin: 0 auto;
        text-align: center;
    }

    .slide-m-dots, .slide-m-prev, .slide-m-next,
    .slick-dots li {
        display: inline-block;
    }

    .slick-dots {
        list-style-type: none;
        padding: 0 30px;
    }

    .slick-dots li {
        margin: 0 9px;
    }

    .slick-dots button {
        display: block;
        width: 11px;
        height: 11px;
        padding: 0;

        border: 1px solid #707070;
        border-radius: 100%;
        background-color: transparent;

        text-indent: -9999px;
    }

    .slick-dots li.slick-active button {
        background-color: #707070;
    }

}

@media (max-width: 768px) {

    #body #home-panel-3-0 p:first-of-type,
    #home-panel-3-0 p:nth-of-type(2),
    #home-panel-3-0 p:nth-of-type(3),
    #home-panel-3-0 p:nth-of-type(4) {
        width: 80vw;
        margin-left: calc(50% - 40vw);
        margin-top: 16px;
        font-size: 1.5rem !important;
    }

    #body #home-panel-3-0 .callout.NODRIFT {
        top: calc(340px - 10vw) !important;
        right: 15%;
        bottom: inherit !important;
    }

    #home-panel-3-1 > .headline {
        font-size: 3.0rem;
        padding-bottom: 3rem;
    }

    #home-panel-3-1 .gallery {
        padding-right: 20px;
    }

    .hide-on-mobile {
        display: none;
    }

    .full-banner .cta-wrapper {
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .full-banner .cta-wrapper > a {
        text-align: center;
        line-height: 30px !important;
    }

    .full-banner .cta {
        width: 288px;
    }

    .container.full-width-banner-container {
        padding: 0 !important;
    }

    /* #home-panel-1 {
      height: 360px;
      background: #123456 url("/assets/images/home/mobile-hero.png") center center no-repeat;
      background-size: cover;
    }

    #home-panel-1 video {
      display:none;
    } */
    #home-panel-1 header {
        height: 20rem;
    }

    #home-panel-1 .container {
        max-width: 100%;
        margin-bottom: 70px;
    }

    #home-panel-1 .headline {
        padding-top: 85px;
        font-size: 37px;
        line-height: 1.1;
    }

    #home-panel-1 .tagline {
        margin: 0 auto;
        font-size: 21px;
        padding-top: 15px;
    }

    #home-panel-1 .cta-label {
        font-size: 1.6rem;
        margin-top: 32px;
    }

    #home-panel-1 .cta {
        margin-top: 10px;
        width: 288px;
    }


    /* Sierra Can Help */
    #home-panel-2 {
        padding-top: 40px;
    }

    #home-panel-2 > .headline {
        font-size: 3.0rem;
    }

    #home-panel-2 > .tagline {
        padding: 25px 0;
    }

    #home-panel-2 > .tagline > span {
        white-space: normal;
        padding: 15px 0;
        line-height: .7;
    }

    /* Who We Are */
    #home-panel-3-1 .gallery {
        margin-left: 0;
        margin-right: 0;
        padding-left: 20px;
    }

    #home-panel-3-1 ul {
        list-style-position: inside;
        padding-top: 0;
        padding-left: 2px;
    }

    #home-panel-3-1 .gallery li,
    #home-panel-3-1 .collapsee li {
        font-size: 1.6rem;
    }

    #home-panel-3-1 .collapsee {
        margin-left: 0;
        margin-right: 0;
        padding-left: 35px;
        padding-right: 30px;
    }

    /* You have a lot riding on your decision -- mobile */
    #home-panel-4 {
        padding-bottom: 1px; /* needed to fix box model padding issue for cta */
    }

    #home-panel-4 .headline {
        margin: 0 auto;
        padding-top: 40px;
        padding-bottom: 20px;
        width: 80%;
        font-size: 2.4rem;
    }

    #home-panel-4 .gallery {
        margin: 0 auto;
        width: 90%;
    }

    #home-panel-4 .gallery-block {
        width: 100%;
        height: 195px;
    }

    #home-panel-4 .gallery-block:not(:last-child) {
        margin-bottom: 22px;
    }

    #home-panel-4 .gallery-block .shadow {
        position: absolute;
        top: 30px;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        padding: 30px 1rem;
    }

    #home-panel-4 h4 {
        padding-top: 20px;
        font-size: 2.4rem !important;
        color: #ED1B2F;
        text-decoration: underline;
    }

    #home-panel-4 p {
        padding: 0;
        font-size: 1.6rem;
    }

    #home-panel-4 .cta {
        margin-top: 48px;
        margin-bottom: 48px;
        width: 288px;
    }

    /* Sierra Lineup -- mobile */
    #home-panel-5 .headline {
        padding: 35px 0;
        font-size: 3rem;
    }

    #home-panel-5 .cta {
        margin-top: 40px;
        margin-bottom: 30px;
    }

    #home-panel-5 .gallery-block {
        width: 100%;
    }

    #home-panel-5 h3 {
        font-size: 2.7rem !important;
        font-weight: 500;
        margin-bottom: 0;
    }

    #innovasonic-block h3,
    #quadratherm-block h3 {
        max-width: 170px !important;
    }

    #home-panel-5 h4 {
        font-size: 1.6rem !important;
    }

    #home-panel-5 .gallery-block .inner {
        height: 280px;
        padding-bottom: 0;
        margin-bottom: 10px;
        transition: 0.25s ease all;
    }

    #home-panel-5 .gallery-block .toggle-more.open + .inner {
        height: 440px;
        font-size: 15px;
    }

    #home-panel-5 #innovasonic-block .toggle-more.open + .inner {
        height: 430px;
    }

    #home-panel-5 #smarttrak-block .toggle-more.open + .inner {
        height: 390px;
    }

    #home-panel-5 .gallery-block .content {
        width: 90%;
    }

    #home-panel-5 .gallery-block .content h4 {
        text-transform: none;
    }

    #home-panel-5 .gallery-block .content button {
        font-size: 1rem;
        height: 30px;
        min-height: 30px;
        line-height: unset;
        box-shadow: none;
        width: 100px;
    }

    #home-panel-5 .gallery-block .content button a {
        line-height: 30px;
        min-height: 30px;
    }

    #home-panel-5 #innovasonic-block .content {
        position: absolute;
        top: 18px;
        bottom: unset;
        right: 0;
        left: 0;
        margin: 0 auto;
    }

    #home-panel-5 #innovasonic-block .content h3 {
        text-align: center;
    }

    #home-panel-5 #innovasonic-block .content h4 {
        text-align: center;
    }

    #home-panel-5 #innovasonic-block .content button {
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    #home-panel-5 #innovasonic-block img {
        position: absolute;
        top: unset;
        bottom: 10px;
        right: 0;
        left: 0;
        margin: 0 auto;
    }

    #home-panel-5 #quadratherm-block .content {
        position: absolute;
        top: 22px;
        bottom: unset;
    }

    #home-panel-5 #innovamass-block img {
        top: 10px;
        left: unset;
        right: -160px;
        width: auto;
        max-height: 270px;
    }

    #home-panel-5 #innovamass-block .content {
        right: 20px;
        top: 18px;
    }

    #home-panel-5 #smarttrak-block .content {
        top: 18px;
    }

    #home-panel-5 #smarttrak-block img {
        width: 177px;
        height: 190px;
        max-height: 190px;
        top: 35px;
        right: 10px;
        left: unset;
    }

    #home-panel-5 #quadratherm-block .inner p {
        right: calc(20vw + 20px);
    }

    #home-panel-5 #innovamass-block .inner p {
        right: calc(16vw + 100px);
        top: 186px;
    }

    /* Solving flow challenges -- mobile */

    #home-panel-6 .headline {
        font-size: 3rem;
        margin: 30px 0 20px 20px;
        text-align: left;
    }

    #home-panel-6 .gallery-block {
        width: 100%;
        display: inline-block;
    }

    #home-panel-6 .slick-slide {
        width: 100vw;
    }

    #home-panel-6 img {
        width: 100%;
        height: 115px;
        display: block;
        object-fit: cover;
    }

    #home-panel-6 .content {
        margin: 0;
        padding: 20px;
        text-align: left;
        width: 100%;
        height: 240px;
        background-color: #ED1B2F;
        color: white;
    }

    #home-panel-6 .content h3 {
        font-size: 2.6rem !important;
        font-weight: normal;
    }

    #home-panel-6 .content h4 {
        font-size: 1.2rem !important;
        font-weight: normal;
    }

    #home-panel-6 .content div,
    #home-panel-6 .content p {
        font-size: 1.4rem;
    }

    #home-panel-6 .panel-tags span {
        display: none;
    }

    #home-panel-6 .panel-tags span.readmore {
        display: inline-block;
        border-radius: 4px;
        padding: 12px 15px 10px;
        font-size: 1rem;
        text-transform: uppercase;
        margin-right: 20px;
    }

    #home-panel-6 .readmore i.fa {
        display: none;
    }

    #home-panel-6 .content .panel-tags {
        position: absolute;
        bottom: 5px;
        width: 300px;
    }

    /* Reset the arrows from the slide-inline and overlay format in home.css */
    .slick-arrow {
        outline-color: transparent !important;
        outline: none !important;
        background: no-repeat none;
        border: 0;
        display: block;
        position: relative;
        text-indent: 0;
        top: 0;
        z-index: 0;
    }

    #body button.slick-arrow {
        line-height: unset;
        min-height: unset;
    }

    .slide-m-prev {
        width: 0;
        height: 0;
        border-top: 12px solid transparent;
        border-right: 24px solid #3498DB;
        border-bottom: 12px solid transparent;
    }

    .slide-m-next {
        width: 0;
        height: 0;
        border-top: 12px solid transparent;
        border-left: 24px solid #3498DB;
        border-bottom: 12px solid transparent;
    }

    .slider-nav {
        text-align: center;
    }

    .slick-dots {
        display: inline-block;
        margin: 0 auto;
        text-align: center;
    }

    .slide-m-dots, .slide-m-prev, .slide-m-next,
    .slick-dots li {
        display: inline-block;
    }

    .slick-dots {
        list-style-type: none;
        padding: 0 30px;
    }

    .slick-dots li {
        margin: 0 9px;
    }

    .slick-dots button {
        display: block;
        width: 11px;
        height: 11px;
        padding: 0;
        border: 1px solid #707070;
        border-radius: 100%;
        background-color: transparent;
        text-indent: -9999px;
    }

    #body .slick-dots button {
        min-height: 11px;
        line-height: unset;
    }

    .slick-dots li.slick-active button {
        background-color: #707070;
    }

    #home-panel-6 .row {
        margin-left: 0;
        margin-right: 0;
    }

    #home-panel-6 #blog-cta {
        position: absolute;
        right: 20px;
        text-align: center;
        text-transform: uppercase;
        font-size: 1rem;
        border: 2px solid #ED1B2F;
        border-radius: 4px;
        color: #ED1B2F;
        width: 100px;
        height: 40px;
        bottom: 10px;
    }

    #body #home-panel-6 #blog-cta a {
        line-height: 3.8;
        min-height: unset;
    }

}

@media (pointer: coarse) and (hover: none) {

    /* #home-panel-1 header {
      background: #123456 url("/assets/images/home/mobile-hero.png") center center no-repeat;
      background-size: cover;
    }

    #home-panel-1 header video {
      display: none;
    } */
}

@media (max-width: 480px) {

    #home-panel-5 #quadratherm-block .inner > img {
        top: inherit;
        bottom: 0;
        right: 0;
    }

    #home-panel-5 #quadratherm-block .toggle-more.open + .inner > img {
        top: 40px;
        bottom: inherit;
    }

    #home-panel-5 #innovamass-block .inner > img {
        top: inherit;
        left: inherit;
        right: calc(24vw - 260px);
        width: auto;
        max-height: 240px;
        bottom: 0;
    }

    #home-panel-5 #innovamass-block .toggle-more.open + .inner > img {
        bottom: inherit;
        top: 30px;
    }

    #home-panel-5 #innovamass-block .toggle-more.open + .inner > .content > p {
        font-size: .9em !important;
        top: calc(12vw + 60px) !important;
        bottom: inherit !important;
    }

}


@media (max-width: 410px) {

    #home-panel-5 #innovasonic-block .inner > img {
        max-height: calc(50vw - 25px);
        top: 8vw;
    }

    #home-panel-5 #innovamass-block .inner > img {
        right: -158px !important;
        bottom: inherit;
        max-height: 220px;
        top: calc(14vw - 18px) !important;
    }

    #home-panel-5 #innovamass-block .toggle-more.open + .inner > .content > p {
        top: calc(12vw + 120px) !important;
        right: calc(16vw + 60px);
    }

    #home-panel-5 #quadratherm-block .inner p {
        top: 184px !important;
    }

}


@media ( min-width: 501px ) {
    /* any phone device */
    #home-panel-2 br {
        display: none;
    }
}


/*@media (min-width: 1281px) and (max-width: 1420px) {*/
/*    #home-panel-5 .gallery-block .content {*/
/*        min-width: 220px;*/
/*    }*/
/*}*/

@media (min-width: 1800px) {
    #home-panel-5 p {
        font-size: 17px;
    }
}


@media ( max-width: 768px ) {
    /* any phone device */
    #home-panel-2 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #home-panel-2 > .tagline {
        font-size: calc(9px + 2vw);
        padding: 0;
    }

    #home-panel-3 .gallery-block p br {
        display: none;
    }

    #home-panel-4 .gallery-block p br {
        display: none;
    }

    #home-panel-4 .gallery-block p {
        padding-left: 10px;
        padding-right: 10px;
    }

    #home-panel-5 .gallery #innovasonic-block .content,
    #home-panel-5 .gallery #quadratherm-block .content,
    #home-panel-5 .gallery #innovamass-block .content,
    #home-panel-5 .gallery #smarttrak-block .content {
        right: inherit;
        left: 5%;
        text-align: left;
    }

    #home-panel-5 .gallery #innovasonic-block .content h3,
    #home-panel-5 .gallery #innovasonic-block .content h4 {
        text-align: left;
    }

    #home-panel-5 .gallery #innovasonic-block button {
        right: inherit;
    }

    #quadratherm-block img.product-image {
        width: unset;
        max-height: 275px;
        top: 0px;
        right: 20px;
    }

    #home-panel-5 #innovasonic-block img {
        left: unset;
        right: unset;
        width: unset;
        max-height: 190px;
        top: 25px;
        right: 4vw;
    }

    #home-panel-5 #smarttrak-block h3 {
        max-width: 160px;
    }

    #home-panel-5 #smarttrak-block img {
        left: unset;
        top: 25px;
        right: 30px;
        width: auto;
    }

    #home-panel-5 .gallery-block .content p {
        position: absolute;
        top: 226px;
        right: 20px;
        left: 20px;
    }

    .gallery-block .toggle-more.open + .inner p {
        right: 0;
    }

    #home-panel-5 #innovasonic-block .toggle-more.open + .inner p {
        top: calc(18vw + 140px);
    }

    #home-panel-5 #smarttrak-block .toggle-more.open + .inner p {
        top: 224px;
    }

    .gallery-block .inner p::after {
        z-index: 1;
        transition: 0.15s ease all;
        pointer-events: none;
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: 0;
        padding: 0;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 1.0) 50%);
    }

    .gallery-block .toggle-more.open + .inner p::after {
        pointer-events: none;
        opacity: 0;
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: 0;
        padding: 0;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 1.0) 50%);
    }

    .gallery .gallery-block .inner {
        overflow: hidden;
        z-index: 1;
    }

    .gallery .toggle-more {
        background-color: rgba(255, 255, 255, 0.1);
        transition: 0.2s ease all;
        position: absolute;
        color: #ED1B2F;
        bottom: 16px;
        z-index: 99;
        right: 0;
        transform: rotate(0deg);
        text-align: right;
        font-size: 30px;
        font-weight: bold;
        padding-right: 20px;
        padding-left: 20px;
    }

    .gallery .toggle-more.open {
        position: absolute;
        color: #ED1B2F;
        bottom: 16px;
        z-index: 99;
        right: 0;
        transform: rotate(180deg);
        text-align: right;
        font-size: 30px;
        font-weight: bold;
        padding-right: 20px;
    }

}

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

    .slick-list {
        height: inherit !important;
    }

    #home-panel-3-0 #redy-block-2 img {
        transform: scale(.75) translateY(-25px);
    }

    #redy-gallery .slide-label .slide-title {
        font-size: 2.25rem;
    }

    #redy-gallery .slide-label .slide-subtitle {
        font-size: 1.25rem;
    }

    #home-panel-3-0 #redy-block-2 .slide-label {
        top: inherit !important;
        bottom: -24px;
    }

    #home-panel-3-0 #redy-block-1 .slide-label {
        top: inherit !important;
        bottom: -18px;
    }

    #home-panel-3-0 #redy-block-1 img {
        margin-top: -30px;
    }

}
