.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: 250px;
    height: 250px;
    border-radius: 125px;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    text-transform: uppercase;
    font-weight: 200;
    font-style: normal;
}

.home_introduction .intro_logo svg {
    width: 250px;
    height: 250px;
    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 {
    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;
    letter-spacing: 3px;
}

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

@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: 200px;
        height: 200px;
    }
}

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

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