.hero {
    background: url(/assets/hero/the-architypes-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);
}

.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;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;
}

.contentSubHeading {
font-size: var(--fs-subheading);
padding: 25px 15px;
display: block;
color: var(--darkBlue);
}

/*  BENEFITS  */
.benefits {
    display: flex;
    flex-direction: column;
    background: #C4CBCD;
    margin: 25px 0 0 0;
}
.information {
    display: flex;
    flex-direction: column;
    padding: 10%;
    row-gap: 25px;
    width: calc(100% - 20%);
}
.information .benefit {
    display: flex;
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    flex-direction: column;
    align-items: center;
}
.information .benefit span {
    display: inline-block;
    text-align: center;
}
.information .benefit span:first-child {
    font-weight: bold;
}
.information .benefit span:last-child {
    text-align: center;
    font-weight: 100;
}
/*  BENEFITS END  */

/*  CONTENT 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   */

/*   BOTTLE PREVIEW   */
.collectionPreview {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.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%;
    padding: 0 0 50px 0;
}
.collectionPreview .bottles .bottle span {
    text-align: center;
    width: 100vw;
    display: block;
    font-size: var(--fs-body);
    font-weight: bold;
}
.collectionPreview .bottles .bottle .bottle_cta {
    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 {
        justify-content: left;
        
        overflow: visible;
        overflow-x: clip;
    }
}

/*   BOTTLE PREVIEW END   */



/*    LARGE SCREEN    */

@media only screen and (min-width: 650px) 
{
/*  HERO  */
    .hero {
        background: url(/assets/hero/the-architypes.jpg), var(--green);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;

    }
/*  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%;
    }
    .content .contentTitle {
        font-size: var(--fs-body);
    }

    .contentSubHeading {
        display: block;
        padding: 50px 10%;
        font-size: var(--fs-subheading);
    }
    .tableofcontents {
        position: sticky;
        top: 0;
    }
    .tocActive {
        color: var(--darkGrey) !important;
    }
    /*  BENEFITS  */
    .information {
        width: calc(50% - 20%);
    }
    .benefits {
        flex-direction: row;
    }
    .benefits img {
        width: 50%;
    }
    .benefits .information .benefit {
        font-size: var(--fs-body);
        line-height: var(--lh-body);;
    }
    /*  BENEFITS END  */
/*  CONTENT END  */


/*   BOTTLE PREVIEW   */
    .collectionPreview {
        padding: 0% 0 5%;
    
    }
    .collectionPreview .bottles {
        flex-wrap: wrap;
        justify-content: center;
    }
    .collectionPreview .bottles .bottle {
        width: 25%;
    }
/*   BOTTLE PREVIEW 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 0 0;
    }
    .contentSubHeading {
        padding: 25px 10%;
    }
}
/*    LARGE SCREEN PORTRAIT END    */