.home_introduction {
    position: relative;
    background-color: var(--light-grey);
    width: 100%;
    height: calc(100vh - 192px);
    height: calc((var(--mobile_vh, 1vh) * 100) - 192px);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home_introduction .introduction_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home_video {
    width: 100%;
    height: calc(100vh - 192px);
    height: calc((var(--mobile_vh, 1vh) * 100) - 192px);
}

.home_video video {
    min-width: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
    background-color: var(--white);
}

.home_content_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-top: -96px;
}

.home_introduction h2,
.home_introduction h3 {
    font-size: 60px;
    color: var(--white);
    text-align: center;
    margin: 0 auto;
    z-index: 5;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.home_introduction h2 {
    letter-spacing: 24px;
}

.home_introduction h3 {
    font-size: 32px;
    margin-bottom: -15px;
    letter-spacing: 3px;
}

.wine_bottle_display {
    margin-bottom: -320px;
    width: 130px;
    height: 441px;
    z-index: 0;
    -webkit-filter: drop-shadow(0px 0px 30px #0000009d);
    filter:         drop-shadow(0px 0px 30px #0000009d); 
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.wine_bottle_display img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transition: 0.2s all ease-in-out;
}

.wine_bottle_display img:hover {
    transform:scale(1.04);
    transition: 0.2s all ease-in-out;
}

#page_jump {
    position: absolute;
    margin-top: -96px;
}

.home_illustration {
    display: block;
    width: 100px;
    height: 103px;
    margin-left: auto;
}

.home_illustration .st0,
.home_illustration .st1,
.home_illustration svg path {
    fill: var(--white);
}

.explore_link {
    color: var(--white);
    font-style: normal;
    font-family: 'noah_grotesqueextrabold';
    text-transform: uppercase;
    font-size: 18px;
    margin-top: auto;
    position: absolute;
    bottom: 96px;
    left: 50%;
    margin-left: -38.5px;
}

.home_chevron {
    width: 15px;
    height: 16px;
    margin-top: 0px;
    margin-left: 30px;
    transition: 0.1s all ease-in-out;
}

.home_chevron:hover {
    opacity: 0.9;
    transition: 0.1s all ease-in-out;
}

.home_chevron .chevron_st0 {
    fill: var(--white);
}

.home_introduction .mobile_wordmark {
    display: none;
}

@media (max-width: 1250px) {
    .home_introduction {
        margin-bottom: 25px;
    }
}

@media (max-height: 1000px) and (min-width: 850px) {
    .home_content_wrapper {
        height: max-content;
        margin-top: 96px;
    }
}

@media (max-height: 900px) and (min-width: 850px) {
    .wine_bottle_display {
        margin-bottom: -235px;
        width: 92px;
        height: 317px;
    }

    .home_introduction h2 {
        font-size: 46px;
        letter-spacing: 16px;
    }

    .home_introduction h3 {
        font-size: 24px;
        margin-bottom: -5px;
        letter-spacing: 3px;
    }
}

@media (max-width: 850px) {
    .home_introduction h2,
    .home_introduction h3,
    .home_introduction .home_illustration {
        display: none;
    }

    .home_introduction .introduction_content {
        justify-content: center;
    }

    .home_introduction .mobile_wordmark {
        display: block;
        margin: -50px auto 0;
        width: 500px;
        z-index: 10;
    }

    .home_introduction .mobile_wordmark .av_fill,
    .home_introduction .mobile_wordmark .av_fill_2 {
        fill: var(--white);
    }

    .wine_bottle_display {
        display: none;
    }

    .home_content_wrapper {
        flex-direction: column;
        align-items: center;
        margin-top: 0;
    }

    .explore_link {
        bottom: 150px;
    }
}

@media (max-width: 800px) {
    .home_introduction,
    .home_video {
        height: calc(100vh - 172px);
        height: calc((var(--mobile_vh, 1vh) * 100) - 172px);
    }

    .home_introduction {
        margin-bottom: 20px;
    }
}

@media (max-width: 550px) {
    .home_introduction .mobile_wordmark {
        width: calc(80%);
    }
}