* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

main {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.wrapper {
    width: 100%;
    position: absolute;
}

.wrapper > section {
    width: 100%;
    height: 100vh;
    transform: translate3d(0, 50%, 0);
    transition-duration: .55s;
    transition-timing-function: ease-in;
    position: absolute;
    padding: 50px;
    z-index: 0;
}

.section-title {
    width: 100%;
    height: 50%;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.section-title h1 {
    font-size: 8vw;
}

.section-content {
    width: 100%;
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.section-content > * {
    flex: 0 0 50%;
}

.section-content h5 {
    width: 50%;
    font-size: 16px;
}

.section-content h3 {
    font-size: 1.2vw;
    line-height: 35px;
}

.section-content h3 span {
    display: block;
    white-space: nowrap;
    transition-duration: .8s;
    opacity: 1;
}
