section {
    width: 100%;
    margin: 25px;
}

h1 {
    text-align: center;
}

.flexRow {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-evenly;
    /*flex-wrap: wrap;*/
}

.flexCol {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
}

.flexCell {
    flex: 1 1 50%;
}

.flexCell h4 {
    text-align: center;
}

.rackingStyle h3 {
    margin-left: 50px;
}

.rackingStyle img {
    max-height: 210px;
}

.imgContainer-vintner {
    text-align: center;
}

.imgContainer-vintner img {
    max-width: 80%;
    height: auto;
}

.stainImg img {
    width: 200px;
    height: 90px;
}

li {
    margin-left: 50px;
}

ul {
    padding: 0px;
}

.halfRow {
    flex: 0 1 50%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.halfRow div h4 {
    margin: 5px auto;
}

.halfRow div {
    display: flex;
    flex-direction: column;
    width: 250px;
    margin: 10px;
}

.halfRow div div {
    width: 250px;
    margin: 0px auto;
}

.halfRow div div img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

.halfRow p {
    max-width: 350px;
    margin: 18px 30px;
}

.fontSizing {
    font-size: 32px;
}

[id^="collectionDetail"] {
    display: inherit !important;
}

.stickyHeader {
    border-bottom: solid 1px #7F0B0E;
    margin-bottom: 20px;
    position: sticky;
    position: -webkit-sticky;
    top: 168px;
    background: white;
    padding-top: 15px;
}

.backgroundBanner {
    background: #7F0B0E;
    opacity: .8;
    padding: 15px 15px 15px 200px;
    position: relative;
    top: calc(100% - 150px);
    max-width: min(700px, 100%);
    width: fit-content;
    z-index: 0;
}

.backgroundDiv {
    width: 100%;
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

@media only screen and (max-width: 767px) {
    .flexRow.flexwrap {
        flex-direction: column;
    }

    .dNoneMobile {
        display: none;
    }

    /* or 301 if you want really the same as previously.  */
    .fontSizing {
        font-size: 28px;
    }

    .heightButton {
        width: 35px;
    }

    .stickyHeader {
        padding-top: 25px;
    }

    .backgroundBanner {
        padding: 15px;
    }

    .backgroundDiv{
        height: 35vh;
    }
}