.background_pattern {
    position: fixed;
    top: 0;
    left: 0;
    /* width: 100%; */
    min-width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 0;
}

.background_pattern svg {
    min-width: 100%;
    height: 100%;
}

.home_introduction {
    position: relative;
    /* background-color: var(--white); */
    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: 1000px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

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

.home_introduction .top_buttons {
    position: absolute;
    top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 80px);
    margin: 0 auto;
}

.home_introduction .top_buttons .home_social_media_icons {
    display: flex;
    align-items: center;
    font-size: 22px;
}

.home_introduction .top_buttons .home_social_media_icons .square_button {
    margin-right: 15px;
}

.home_introduction .top_buttons .home_social_media_icons .square_button:last-of-type {
    margin-right: 0;
}

.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 {
    color: var(--white);
    margin: -5px 0;
    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;
}

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

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

@media (max-width: 600px) {
    .home_introduction .intro_logo,
    .home_introduction .intro_logo svg {
        width: 130px;
        height: 130px;
    }

    .home_introduction .base_buttons {
        position: absolute;
        bottom: 20px;
        padding-top: 50px;
        left: 20px;
        margin-left: 0;
        width: calc(100% - 40px);
    }

    .home_introduction .top_buttons {
        position: absolute;
        top: 20px;
        display: flex;
        justify-content: space-between;
        width: calc(100% - 40px);
        margin: 0 auto;
    }
}