    .hero {
        background: url(/assets/hero/wildlyCrafted-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;
    }
/*  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;
}
.right {
    display: flex;
    justify-content: end;
}
.content {
    display: flex;
    flex-direction: column;
}
.content .brandLogo {
    width: 30%;
    padding: 25px;
}
.content .contentTitle {
    padding: 15px;
}
.content .contentTitle span.active {
    color: var(--darkBlue);
}
.content .contentTitle span {
    font-size: 5em;
    padding: 10px 0;
    display: block;
    color: var(--midGrey);
}
.content .contentBody {
    padding: 0 15px;
}
.content .contentBody p {
/*    font-size: 5em;*/
    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  */


/*   3 COLUMN   */
    .threeColumn {
        display: flex;
        flex-direction: column;
        background-color: #C4CBCD;
        padding: 50px 25px;
    }
    .threeColumn .heading {
        font-size: 10em;
        padding: 0 0 5% 0;
    }
    .threeColumn .columns {
        display: flex;
        flex-direction: column;
    }
    .threeColumn .columns .column {
        padding: 25px 0;
    }
    .threeColumn .columns .column .heading {
        font-size: 7em;
        display: block;
        padding: 0 0 25px 0;
        font-weight: bold;
    }
    .threeColumn .columns .column .body {
        font-size: 5em;
    }
/*   3 COLUMN END   */


/*   BOTTLE PREVIEW   */
    .collectionPreview {
        width: 100%;
    }
    .collectionPreview .bottles {
        display: flex;
        overflow: hidden;
        overflow-x: scroll;
        width: 100%;
        scroll-snap-type: x mandatory;
    }
    .collectionPreview .bottles .bottle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100vw;
        scroll-snap-align: center;
    }
    .collectionPreview .bottles .bottle img {
        width: 50%;
        padding: 0 0 50px 0;
    }
    .collectionPreview .bottles .bottle span {
        text-align: center;
        width: 100vw;
        display: block;
        font-size: 5em;
    }
    .collectionPreview .bottles .bottle .bottle_cta {
        color: var(--midGrey);
        text-decoration: none;
        font-size: 4em;
    }

    .collectionPreview .bottles::-webkit-scrollbar {
      display: none;
    }

    .collectionPreview .bottles {
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;  /* Firefox */
    }
/*   BOTTLE PREVIEW END   */


/*   QUOTES   */
.quotes {
    display: flex;
    align-items: center;
    background-color: var(--orange);
    position: relative;
}
.quotes .navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
}
.quotes .quoteFrame {
    display: flex;
    width: 100vw;
    overflow: hidden;
    overflow-x: scroll; 
    scroll-snap-type: x mandatory;
}
.quotes .navigation .left img, .quotes .navigation .right img {
    width: 3em;
    padding: 10px;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.quoteFrame::-webkit-scrollbar {
  display: none;
}

.quoteFrame {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.quotes .quote {
    padding: 10vw;
    scroll-snap-align: center;
}
.quotes .quote span {
    color: white;
    display: block;
    width: calc(100vw - 20vw);
}
.quotes .quote span:first-child {
    font-size: 5em;
    text-align: center;
    display: inline-block;
}
.quotes .quote span:last-child {
    font-size: 3em;
    padding: 10vw 0 0 0;
    text-align: right;
    display: inline-block;
}
/*   QUOTES END   */

/*    LARGE SCREEN    */

@media only screen and (min-width: 1024px) 
{
    /*  HERO  */
        .hero {
            background: url(/assets/hero/wildlyCrafted-desktop.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: 3.2em;
        }
        .tableofcontents {
            position: sticky;
            top: 0;
        }
        .tocActive {
            color: var(--darkGrey) !important;
        }
    /*  CONTENT END  */

    /*   3 COLUMN   */
        .threeColumn {
            padding: 10%;
        }
        .threeColumn .columns {
            flex-direction: row;
        }
        .threeColumn .heading {
            font-size: 5em;
        }
        .threeColumn .columns {
            column-gap: 5%;
        }
        .threeColumn .columns .column {
            width: 100%;
        }
        .threeColumn .columns .column .heading {
            font-size: 2em;
        }
        .threeColumn .columns .column .body {
            font-size: 1.33em;
            line-height: 2.5rem;
        }
/*   3 COLUMN END   */

/*   BOTTLE PREVIEW   */
    .collectionPreview {
        padding: 10% 0;
    }
    .collectionPreview .bottles {
        flex-wrap: wrap;
    }
    .collectionPreview .bottles .bottle {
        width: 33vw;
    }
    .collectionPreview .bottles .bottle span {
        width: 25%;
        font-size: 2em;
    }
    .collectionPreview .bottles .bottle .bottle_cta {
        font-size: 1.25em;
    }
/*   BOTTLE PREVIEW END   */


/*   QUOTE   */
    .quotes .quote {
        padding: 5vw 10vw;
    }
    .quotes .quote span:first-child {
        font-size: 3em;
    }
    .quotes .quote span:last-child {
        font-size: 2em;
        text-align: center;
    }
/*   QUOTE END   */
}
