.main-wrapper {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
}

.sub-wrapper {
    width: 60vw;
    margin: 0 auto;
}

.content {
    padding-top: 0;
    row-gap: 0;
}

.sticky + .content {
    padding-top: 6rem;
}

.series-welcome, .series-welcome-background {
    height: calc(9 / 16 * 100vw);
}

.series-welcome {
    background-color: black;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.series-welcome-background {
    width: 100%;
    background-size: cover;
    background-position: center;
    opacity: 45%;
}

.background-east {
    background-image: url(../images/20171225_143446.jpg);
}

.background-west {
    background-image: url(../images/20171215_205032.jpg);
}

.background-finals {
    background-image: url(../images/20220616_222130.jpg);
}

.series-welcome-text {
    position: absolute;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.series-welcome-text h1 {
    color: white;
    text-align: center;
}

.series {
    height: calc(100vh - 6rem);
    padding: 5vh 0;
    display: flex;
    flex-direction: column;
    row-gap: 5rem;
    justify-content: space-evenly;
}

.series-conference {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
}

.series h2 {
    text-align: center;
}

.series-conference-details {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 40px;
}

.series-conference-details p {
    font-size: 5rem;
    font-weight: bold;
    line-height: 5rem;
    text-align: center;
}

.details {
    max-height: 45vh;
    max-width: 100%;
}

/* <992*/

@media only screen and (max-width: 992px) {

    .sticky + .content {
        padding-top: 0;
    }

    .series {
        height: 100%;
        padding: 4rem 0;
        row-gap: 5rem;
    }
    
    .series-welcome, .series-welcome-background {
        height: calc(5/4 * 100vw);
    }

    .series-welcome-text {
        width: 80%;
    }

    .series-welcome-text h1 {
        font-size: 3rem;
    }
    .background-east {
        background-image: url(../images/20171225_120644.jpg);
    }
    
    .background-west {
        background-image: url(../images/20171215_181839.jpg);
    }
    
    .background-finals {
        background-image: url(../images/20220610_212059.jpg);
    }

    .series-conference-details p {
        font-size: 3rem;
        line-height: 3rem;
    }

}