/* Welcome Section */

.main-wrapper {
    min-height: 0;
}

.content {
    padding-top: 0;
    padding-bottom: 0;
}

.sticky + .content {
    padding-top: 6rem;
}

.index-welcome, .index-welcome-background {
    height: calc(9 / 16 * 100vw);
}

.index-welcome {
    background-color: black;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.index-welcome-background-large {
    width: 100%;
}

.index-welcome-background-small {
    width: 100%;
    display: none;
}

.index-welcome-text {
    position: absolute;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.index-welcome-text h1 {
    color: white;
    text-align: center;
    font-size: 9rem;
}

/* Welcome Section <992*/

@media only screen and (max-width: 992px) {

    .sticky + .content {
        padding-top: 0;
    }

    .index-welcome, .index-welcome-background {
        height: 100%;
    }

    .index-welcome-background-large {
        display: none;
    }
    
    .index-welcome-background-small {
        display: block;
    }

    .index-welcome-text {
        width: 80%;
    }

    .index-welcome-text h1 {
        font-size: 3rem;
    }

}