/*  HERO  */
    .hero {
        background: url(/assets/hero/decor-customization-cover-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);
}
.title {
    display: inline-block;
    color: var(--darkBlue);
    font-size: 7em;
    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: 5em;
    padding: 10px 0;
    display: block;
    color: var(--midGrey);
    text-transform: uppercase;
}
.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 p strong {
    line-height: var(--lh-body);
    font-weight: bold;
    display: block;
    color: var(--midGrey);
}
.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%;
        padding: 0 0 50px 0;
    }
    .productPreview .products .product {
        display: flex;
        flex-direction: column;
        justify-content: center;
        scroll-snap-align: center;
    }
    .productPreview .products .product .product_cta img {
        width: 100%;
        padding: 50px 0 0 0;
    }
    .productPreview .products .product .product_cta span.productName {
        color: var(--orange);
        font-size: var(--fs-h2);
        padding: 25px 25px 0 25px;
        display: block;
    }
    .productPreview .products .product .product_cta span.productDescription {
        font-size: var(--fs-body);
        line-height: var(--lh-body);
        padding: 0 25px 25px 25px;
        color: var(--midGrey);
        display: block;
    }
    .productPreview .products .product .product_cta span.productDescription strong {
        line-height: var(--lh-body);
        font-weight: bold;
        display: block;
        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: 650px) 
{
    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/decor-customization-cover.jpg), var(--green);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;

        }
    /*  HERO END  */

    /*  CONTENT  */
        .content {
            flex-direction: row;
            padding: 25px 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: 1.33rem;
        }
        .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: 70%;
        margin: 0 auto;
        padding: 50px 0;

        /*width: calc(100vw - 8%);
        padding: 4%;*/
    }
    .productPreview .products {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        column-gap: 50px;
        row-gap: 50px;
    }
    .productPreview .products .product {
        width: calc(50% - 25px);
        padding: 0;
    }
    .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 span.productName {
        padding: 50px 0 10px 0;
    }
    .productPreview .products .product .product_cta span.productDescription {
        padding: 0 0 100px 0;
    }
/*   PRODUCT PREVIEW END   */
}

/*    LARGE SCREEN PORTRAIT    */
@media only screen and (min-width: 650px) and (orientation: portrait) 
{
    .collection {
        padding: 0 0 50px 0;
    }
    .productPreview .products .product .product_cta span.productName {
        padding: 25px 0 10px;
    }
    .productPreview .products .product .product_cta span.productDescription {
        padding: 0;
    }
}
