    .hero {
        background: url(/assets/hero/custom-glass-mobile.jpg), var(--green);
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        height: 100svh;
        margin: 0 0 50px 0;
    }
/*  HERO END  */

/*  CONTENT  */
.orange {
    color: var(--orange) !important;
    padding: 30px 0 25px 0;
}
.midGrey {
    color: var(--midGrey);
}
.midGrey {
    color: var(--darkGrey);
}
.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: var(--fs-overview);
    padding: 10px 0;
    color: var(--midGrey);
    text-transform: uppercase;
}

.content .contentTitle a{
    font-size: inherit;
   text-decoration: none; 
    padding: 10px 0;
}
.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;
}
.content .contentBody p strong {
    line-height: var(--lh-body);
    font-weight: bold;
    display: block;
    color: var(--midGrey);
}
.contentSubHeading {
    font-size: var(--fs-subheading);
    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-reverse;
    justify-content: space-between;
    padding: 25px 0px;
    row-gap: 25px;
}

.inspirationText{
    font-size: inherit;
}

.downloadButton {
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50px;
    background: url(../../assets/icons/file-download-white.svg);
    background-repeat: no-repeat;
    background-position: 34px center;
    background-color: #EA6851;
    color: white;
    font-weight: 600;
    border: none;
    font-size: 4em;  
    background-size: 24px;
    padding: 14px 45px 14px 70px;
    margin: 30px auto;
    max-width: 70%;
    text-align: center;
}
/*   DOWNLOAD CATALOGUE END   */

/*    LARGE SCREEN    */

@media only screen and (min-width: 650px) 
{
    /*  HERO  */
        .hero {
            background: url(/assets/hero/custom-glass.jpg), var(--green);
            background-size: cover;
            background-repeat: no-repeat;
        }
    /*  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: 85%;
        }
        .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;
    margin:0;
}
.downloadButton {
    font-size: var(--fs-h3);
    height: fit-content;
    margin: 50px 10%;
}
/*   DOWNLOAD CATALOGUE END   */
}
/*    LARGE SCREEN PORTRAIT    */
@media only screen and (min-width: 650px) and (orientation: portrait) 
{
        .content {
            padding: 0;
        }
        .video {
            padding: 25px 0 50px 0;
        }
        .contentSubHeading {
            padding: 25px 10%;
        }
}
/*    LARGE SCREEN PORTRAIT END    */
