.home_introduction {
    position: relative;
    background-color: var(--pink);
    width: 100%;
    height: 100vh;
    height: calc((var(--mobile_vh, 1vh) * 100));
    display: flex;
    flex-direction: column;
    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_introduction .intro_logo {
    width: 336px;
    height: 233px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 700 !important;
}

.home_introduction .intro_logo svg {
    width: 336px;
    height: 233px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home_introduction .base_buttons {
    position: absolute;
    bottom: 0;
    padding: 80px 40px 40px 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    box-sizing: border-box;
}

.home_introduction .base_buttons .home_social_media_icons {
    display: flex;
    align-items: center;
}

.home_introduction .base_buttons .home_social_media_icons .square_button:first-of-type {
    margin-right: 20px;
}

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

.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: 960px) {
    .home_introduction .base_buttons {
        padding: 80px 25px 25px 25px;
    }
}

@media (max-width: 800px) {
    .home_introduction .base_buttons {
        padding: 180px 20px 20px 20px;
    }
}

@media (max-width: 750px) {
    .home_introduction .intro_logo,
    .home_introduction .intro_logo svg {
        width: 208px;
        height: 144px;
    }
}