    .hero {
        background: url(/assets/hero/wildly-crafted-wines-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  */
h2 {
    font-size: 5em;
    font-weight: bold;
    padding: 25px 0;
    color: var(--darkGrey);
}
.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: 50%;
    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: 4.5em;
    line-height: 1.5rem;
    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  */


/*   FORM   */
.form {
    display: flex;
    flex-direction: column;
    padding: 25px 15px;
}
label {
    display: flex;
    flex-direction: column;
    padding: 0 0 25px 0;
}
label span {
    font-size: 4em;
    text-transform: uppercase;
    color: var(--midGrey);
}
label span sup {
    color: var(--darkGrey);
}
input {
    color: var(--green);
    padding: 10px 0;
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid var(--midGrey);
}
input::placeholder {
    color: #ccc;
    font-size: 0.94rem;
    text-transform: uppercase;
}
textarea {
    font-size: 1rem;
    border: none;
    height: 60px;
}
button {
    text-transform: uppercase;
    padding: 25px;
    border: none;
    color: white;
    text-align: left;
    background: url("/assets/icons/arrow-white.svg"), var(--orange);
    background-repeat: no-repeat;
    background-position: 93% 50%;
    background-size: 14px;
}
/*   FORM END   */


/*   DOWNLOAD CATALOGUE   */
.downloadCatalogue {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    row-gap: 25px;
}
.inspirationText {
    font-size: 5em;
}
.downloadButton {
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--midGrey);
    font-size: 4em;
    text-decoration: none;
    border-radius: 50px;
    padding: 10px 40px;
    background: url(/assets/icons/file_download.svg);
    background-repeat: no-repeat;
    background-position: 15px center;
    background-size: 20px;
    color: var(--midGrey);
}
/*   DOWNLOAD CATALOGUE END   */


/*    LARGE SCREEN    */

@media only screen and (min-width: 1024px) 
{
    h2:first-child {
        font-size: 1.8em;
        padding: 0 0 25px 0;
    }
    h2 {
        font-size: 3.2em;
        padding: 100px 0 25px 0;
    }
    /*  HERO  */
        .hero {
            background: url(/assets/hero/wildly-crafted-wines.jpg);
            background-size: cover;
            background-repeat: no-repeat;
        }
        .pageHeading {
            font-size: 9em;
            line-height: 10rem;
        }
    /*  HERO END  */

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


    /*   FORM   */
    .form {
        width: 35%;
        padding: 50px 10%;
    }
    label span {
        font-size: 1em;
    }
    button {
        font-size: 1.1em;
    }
    /*   FORM END   */


    /*   DOWNLOAD CATALOGUE   */
        .downloadCatalogue {
            flex-direction: row;
            align-items: center;
            padding: 50px 10%;
        }
        .inspirationText {
            font-size: 1.8em;
        }
        .downloadButton {
            font-size: 1.33em;
            height: fit-content;
        }
    /*   DOWNLOAD CATALOGUE END   */
}
