.pageHeading {
    position: absolute;
    color: white;
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
    letter-spacing: 0.03em;
    padding: 25px 25px 50px 25px;
    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-overview);
    padding: 10px 0;
    text-transform: uppercase;
    color: var(--midGrey);
}

.content .contentTitle a{
    font-size: inherit;
   text-decoration: none; 
    padding: 10px 0;
}
.content .contentBody {
padding: 0 15px;
}
.content .contentBody p {
/*    font-size: 5em;*/
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: var(--fs-subheading);
padding: 25px 15px;
display: block;
color: var(--darkBlue);
}
/*  CONTENT END  */

/*   PRODUCT PREVIEW   */
/* .collectionPreview {
    width: 100%;
} */


.collectionPreview .products {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    width: 100%;
    row-gap: 50px;
    margin-bottom: 50px;

}
.collectionPreview .products .product {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    scroll-snap-align: center;
    width: 50%;
}
.collectionPreview .products .product img {
    width: 100%;
}
.collectionPreview .products .product span {
    text-align: center;
/*        width: 100vw;*/
    display: block;
    font-size: var(--fs-body);
    font-weight: bold;
}
.collectionPreview .products .product .bottle_cta {
    color: var(--midGrey);
    text-decoration: none;
    font-size: var(--fs-body);
}

.collectionPreview .products::-webkit-scrollbar {
  display: none;
}

.collectionPreview .products {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
/*   PRODUCT PREVIEW END   */




/*    LARGE SCREEN    */

@media only screen and (min-width: 650px) 
{
/*  HERO  */
    .pageHeading {
        font-size: var(--fs-h1);
        line-height: var(--lh-h1);
        padding: 25px 25px 50px 40px;
        width: calc(100% - 65px);
    }
/*  HERO END  */

/*  CONTENT  */
    .content {
        flex-direction: row;
        padding: 0 0 25px;
    }
    .contentTitle {
        width: 30%;
        padding: 0 0 0 25px !important;
    }
    .contentBody {
        width: 70%;
    }
    .content .contentBody p {
        width: 85%;
    }
    .title {
        font-size: 2.5em;
    }
    .content .contentTitle span {
        font-size: var(--fs-overview);
        text-transform: uppercase;
        color: var(--midGrey);
    }
    .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   */

.collectionPreview {
    padding: 0% 0% 5%;
}

.collectionPreview .products {
    row-gap: 50px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left;
    padding: 10px 5%;
    width: calc(100% - 10%);
    margin: 0;
}
.collectionPreview .products .product {
    width: calc((100% / 4));
}
/* .collectionPreview .products .product span {

    font-size: var(--fs-body);
}
.collectionPreview .products .product .bottle_cta {
    font-size: var(--fs-body);
} */
/*   PRODUCT PREVIEW END   */



}
