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

    }
/*  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: var(--fs-body);
    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 p strong {
    line-height: var(--lh-body);
    font-weight: bold;
    display: block;
    color: var(--midGrey);
}

.collection {
    padding: 50px 0;
}

.bottles {
    display: flex;
    flex-direction: column;
}
.bottle {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.bottle img {
    width: 100%;
    transition: all 1s;
    padding: 50px 0 0 0;
}
.bottle h2 {
    color: var(--orange);
    font-size: var(--fs-h2);
    padding: 25px 25px 0 25px;
    font-weight: normal;
}

.bottle span {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    padding: 0 25px 25px 25px;
}

/*  CONTENT END  */


/*    LARGE SCREEN    */
@media only screen and (min-width: 650px) 
{
    /*  COMMON  */
    h2:first-child {
        font-size: 1.8em;
        padding: 0 0 25px 0;
    }
    h2 {
        font-size: 3.2em;
        padding: 100px 0 25px 0;
    }
    /*  COMMON END  */

    /*  HERO  */
    .hero {
        background: url(/assets/hero/bottles.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: 80%;
        font-size: 1.1em;
        line-height: 1.5em;
    }
    .title {
        font-size: 5em;
    }

    .collection {
        width: 70%;
        margin: 0 auto;
        padding: 50px 0;
    }
    .bottles {
        flex-direction: row;
        column-gap: 50px;
    }
    .bottle {
        width: 100%;
        border-bottom: 10px solid white;
        transition: all 1s;
    }
    .bottle h2 {
        padding: 50px 0 10px;
    }
    .bottle span {
        padding: 0 0 100px 0;
    }
    /*  CONTENT END  */
}

/*    LARGE SCREEN PORTRAIT    */
@media only screen and (min-width: 650px) and (orientation: portrait) 
{
    .collection {
        padding: 0 0 50px 0;
    }
    .bottle h2 {
        padding: 25px 0 10px;
    }
    .bottle span {
        padding: 0;
    }
}
