    .hero {
        background: url(/assets/hero/closures_mobile.jpg), var(--green);
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        height: 100svh;
        margin: 0 0 50px 0;
    }
    .pageHeading {
        position: absolute;
        color: white;
        font-size: 13em;
        line-height: 3rem;
        letter-spacing: 0.03em;
        padding: 0.5em;
        bottom: 0;
        width: calc(100% - 1em);
        height: 100svh;
        display: flex;
        align-items: end;
        background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0) 100%);
    }
/*  HERO END  */

/*  CONTENT  */
.orange {
    color: var(--orange) !important;
    padding: 30px 0 25px 0;
}
.midGrey {
    color: var(--midGrey);
}
.midGrey {
    color: var(--darkGrey);
}
.title {
    display: inline-block;
    color: var(--darkBlue);
    font-size: 2.5em;
    font-weight: 500;
    padding: 25px 0;
}
.content {
    display: flex;
    flex-direction: column;
}
.content .brandLogo {
    width: calc(100% - 50px);
    padding: 25px;
}
.content .contentTitle {
    padding: 15px;
}
.content .contentTitle span.active {
    color: var(--darkBlue);
}
.content .contentTitle span {
    font-size: var(--fs-body);
    padding: 10px 0;
    display: block;
    color: var(--midGrey);
}
.content .contentBody {
    padding: 0 15px;
}
.content .contentBody p {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    padding: 0 0 25px 0;
}
.content .contentBody img.wideImage {
    width: 100%;
    padding: 25px 0;
}

.contentSubHeading {
    font-size: 7em;
    padding: 25px 15px;
    display: block;
    color: var(--darkBlue);
}
/*  CONTENT END  */

/*   PRODUCT PREVIEW   */
    .productPreview {
        width: 100%;
    }
    .productPreview .products {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .productPreview .products .product {
        display: flex;
        flex-direction: column;
        /* justify-content: center; */
        scroll-snap-align: center;
        padding: 25px 4%;
    }
    .productPreview .products .product .product_cta img {
        width: 100%;
    }
    .productPreview .products .product .product_cta span.productName {
        color: var(--orange);
        font-size: 5.13em;
        padding: 10px 0;
        display: block;
    }
    .productPreview .products .product .product_cta span.productDescription {
        font-size: 5.13em;
        color: var(--midGrey);
    }
    .productPreview .products .product .product_cta {
        text-decoration: none;
    }

    .productPreview .products::-webkit-scrollbar {
      display: none;
    }

    .productPreview .products {
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;  /* Firefox */
    }
/*   PRODUCT PREVIEW END   */




/*    LARGE SCREEN    */

@media only screen and (min-width: 1024px) 
{
    /*  HERO  */
        .hero {
            background: url(/assets/hero/closures.jpg);
            background-size: cover;
            background-repeat: no-repeat;

        }
        .pageHeading {
            font-size: 10em;
            line-height: 10rem;
        }
    /*  HERO END  */

    /*  CONTENT  */
        .content {
            flex-direction: row;
            padding: 50px 0;
        }
        .contentTitle {
            width: 30%;
            padding: 0 0 0 25px !important;
        }
        .contentBody {
            width: 70%;
        }
        .content .contentBody p {
            width: 80%;
        }
        .title {
            font-size: 2.5em;
        }
        .content .contentTitle span {
            font-size: 2em;
        }
        .contentSubHeading {
            display: block;
            padding: 50px 10%;
            font-size: var(--fs-subheading);
        }
        .tableofcontents {
            position: sticky;
            top: 0;
        }
        .tocActive {
            color: var(--darkGrey) !important;
        }
    /*  CONTENT END  */

/*   PRODUCT PREVIEW   */
    .productPreview {
        width: calc(100% - 8%);
        padding: 4%;
    }
    .productPreview .products {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .productPreview .products .product {
        width: calc(50% - 8%);
    }
    .productPreview .products .product .product_cta {
    }
    .productPreview .products .product .product_cta .productPhoto {
        overflow: hidden;
        display: block;
    }
    .productPreview .products .product .product_cta img {
        width: 100%;
        transition: all 1s;
    }
    .productPreview .products .product .product_cta:hover .productPhoto img {
        transform: scale(1.2);
    }
    .productPreview .products .product .product_cta:hover span.productDescription {
        color: var(--darkGrey);
    }
    .productPreview .products .product .product_cta span.productName {
        font-size: 2em;

    }
    .productPreview .products .product .product_cta span.productDescription {
        font-size: 1.33em;
        line-height: 2.33rem;
    }
/*   PRODUCT PREVIEW END   */



}
