.contentTitle {
    display: none;
}

/*   HERO START   */
.hero {
    background: url(/assets/hero/decor_customization-coatings-mobile.jpg), var(--green);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    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 {
    font-size: var(--fs-subheading);
    display: inline-block;
    color: var(--darkBlue);
    /* 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;
    display: block;
    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: var(--fs-body);
    line-height: var(--lh-body);
    padding: 0 0 25px 0;
}
.content .contentBody img {
    width: 100%;
    height: 40vw;
    object-fit: contain;
    padding: 0 0 25px 0;
}

.contentSubHeading {
    font-size: var(--fs-subheading);
    padding: 25px 15px;
    display: block;
    color: var(--darkBlue);
}
.content .contentBody p strong {
    line-height: var(--lh-body);
    font-weight: bold;
    display: block;
    color: var(--midGrey);
}
/*  CONTENT 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: 100%;
    }
    .collectionPreview .bottles .bottle span {
        text-align: center;
        width: 100vw;
        display: block;
        font-size: var(--fs-body);
        font-weight: bold;
    }
    .collectionPreview .bottles .bottle a {
        color: var(--midGrey);
        text-decoration: none;
        font-size: var(--fs-body);
    }

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

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

    /*  SLIDE INDICATOR  */
    .slideLocation {
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 5px;
        padding: 25px 0;
        width: 100%;
    }
    .slideLocation .indicator {
        display: inline-block;
        background: url(/assets/icons/indicator-grey.svg);
        background-repeat: no-repeat;
        background-size: 5px 5px;
        width: 5px;
        height: 5px;
    }
    .slideLocation .active {
        background: url(/assets/icons/indicator-blue.svg);
        background-repeat: no-repeat;
        background-size: 5px 5px;
    }
    /*    LARGE SCREEN    */
    @media only screen and (min-width: 650px) 
    {
        .slideLocation {
            display: none;
        }
        .collectionPreview .bottles {
            overflow: visible;
            overflow-x: clip;
        }
    }

/*   BOTTLE PREVIEW END   */



/*    LARGE SCREEN    */

@media only screen and (min-width: 650px) 
{
 
    .contentTitle {
        display: unset;
    }

    /*  HERO  */
        .hero {
            background: url(/assets/hero/decor_customization-coatings.jpg), var(--green);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
        }
        .pageHeading {
            font-size: var(--fs-h1);
            line-height: var(--lh-h1);
        }
    /*  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: 85%;
        }
        .title {
            font-size: 1.8em;
            padding: 100px 0 50px 0;
            padding: 25px 0;
        }
        .title:first-child {
            /* padding: 0 0 25px 0; */
        }
        .title.firstTitle {
            padding: 0 0 25px 0  !important;
          }

        .content .contentTitle span {
            font-size: var(--fs-overview);
            text-transform: uppercase;
        }
        .content .contentBody img {
            height: auto;
            /* padding: 0; */
            padding: 25px 0 50px 0;
        }
        .contentSubHeading {
            display: block;
            padding: 50px 10%;
            font-size: 1.8em;
        }
        .tableofcontents {
            position: sticky;
            top: 100px;
        }
        span[data-anchor] {
            cursor: pointer;
        }
        span[data-anchor]:hover {
            color: black;
        }
        .tocActive {
            color: var(--darkGrey) !important;
        }
    /*  CONTENT END  */


/*   BOTTLE PREVIEW For More From this Collection   */
.collectionPreview {
    padding: 6% 0;
    }
    
    .collectionPreview .bottles {
    
    flex-wrap: wrap;
    justify-content: left;
    }
    .collectionPreview .bottles .bottle {
    width: calc(100%/4);
    cursor: pointer;
    }
    .collectionPreview .bottles .bottle span {
    width: 50%;
    font-size: var(--fs-body)
    }
    .collectionPreview .bottles .bottle a {
    font-size: var(--fs-body);
    }
    /*   BOTTLE PREVIEW END   */

}

/*    LARGE SCREEN PORTRAIT    */
@media only screen and (min-width: 650px) and (orientation: portrait) 
{
    .hero {
        background-position: left;
    }
    .title {
        padding: 50px 0 25px 0;
    }
    .content .contentBody img {
        padding: 0;
    }
    .contentSubHeading {
        padding: 0 10%;
    }

}
