/*  HERO  */
.hero {
    background: url(/assets/hero/collections-hero-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;
font-weight: 500;
padding: 25px 0;
}
.content {
display: flex;
flex-direction: column;
}
.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);
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 img.wideImage {
width: 100%;
padding: 25px 0;
}
.tableofcontents {
display: none;
}
/*  CONTENT END  */

/*  COLLECTIONS  */
.collections {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 25px 15px 15px;
}
.collections .collection {
    text-decoration: none;
    width: calc(100vw - 82px);
    height: 110em;
}
.collections .collection:last-child {
    height: 250px;
}
.collections .collectionHeading {
    font-size: 9em;
    line-height: 1em;
    font-family: IvyPresto;
    display: block;
    padding: 0 0 10px 0;
}
.collections a.collectionLinks:hover {
    color: var(--green);
}
.collections a.collectionLinks {
    font-size: 5em;
    font-family: IvyPresto;
    display: block;
    text-decoration: none;
    color: var(--midGrey);
    width: fit-content;
}
.collection {
    border: 1px solid var(--midGrey);
    border-radius: 25px;
    padding: 50px 20px;
    margin: 25px 0;
}
.collection:nth-child(1) {
    background: url(/assets/images/collection_bottles_thumbnail.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 300px auto;
}
.collection:nth-child(2) {
    background: url(/assets/images/collection_decor_thumbnail.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 300px auto;
}
.collection:nth-child(3) {
    background: url(/assets/images/collection_closures_thumbnail.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 300px auto;
}
.collection:nth-child(4) {
    background: url(/assets/images/collection_packaging_thumbnail.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 300px auto;
}
/*  COLLECTIONS END  */

/*    LARGE SCREEN    */
@media only screen and (min-width: 650px) 
{
/*  COMMON  */
/*  COMMON END  */

/*  HERO  */
.hero {
    background: url(/assets/hero/collections-hero-desktop.jpg), var(--green);
    background-size: cover;
    background-repeat: no-repeat;
}
/*  HERO END  */

/*  CONTENT  */
.content {
    flex-direction: row;
}
.contentTitle {
    width: 30%;
    padding: 0 0 0 25px !important;
}
.contentBody {
    width: 70%;
}
.content .contentBody p {
    width: 85%;
}
.title {
    font-size: 5em;
}
.tableofcontents {
    position: sticky;
    top: 0;
}
/*  CONTENT END  */



/*  COLLECTIONS  */
    .collection:hover {
        background-size: 47% !important;
        transition: background-size 0.8s ease !important;
    }

    .collection {
        background-position: 95% 100% !important;
        background-size: 44% !important;
        transition: all 0.2s;
        transition: background-size 0.8s ease !important;
        height: 500px !important;
        width: calc(80vw - 82px) !important;
        padding: 50px 15px 15px;
    }
    .collections .collectionHeading {
        font-size: 5em;
        padding: 50px 0 25px 50px;
    }
    .collections a.collectionLinks {
        font-size: 1.3em;
        text-decoration: none;
        padding: 0 0 0 50px;
    }
    .collections a .collectionSummary {
        font-size: 2.5em;
    }
    .collections a .collectionSummary {
        padding: 0 50px;
    }
    .collection:nth-child(4) {
        background-size: 65% auto !important;
        background-position: center -100px;
    }
    .collection:nth-child(4):hover {
        background-size: 69% !important;
        transition: background-size 0.8s ease !important;
    }
/*  COLLECTIONS END  */

}
/*    LARGE SCREEN PORTRAIT    */
@media only screen and (min-width: 650px) and (orientation: portrait) 
{
.collection {
    height: 350px !important;
}
.collections .collection:last-child {
    height: 200px !important;
}
}
