section.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 1080px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.hero .video-hero #player {
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
}
section.hero .video-hero {
    display: none;
}

section.hero .player-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section.hero .sound-button.muted {
    background: center / contain no-repeat url('../../../assets/images/sound-muted.svg');
}

section.hero .pause-button {
    width: 32px;
    height: 32px;
    background: center / contain no-repeat url('../../../assets/images/pause.svg');
    position: relative;
    z-index: 1;
    cursor: pointer;
    display: block;
    transition: opacity 1s ease-out;
}

section.hero .sound-button {
    width: 32px;
    height: 32px;
    background: center / contain no-repeat url('../../../assets/images/sound.svg');
    position: relative;
    z-index: 1;
    cursor: pointer;
    display: block;
    transition: opacity 1s ease-out;
}

section.hero .video-button-box{
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
}

section.hero .text-light {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    max-width: 780px;
    margin: auto;
}

section.hero .button-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 70px;
}

section.hero .button-wrap .more-button {
    padding: 16px 80px;
    background: #C99FC6;
    border: none;
    box-shadow: 0 20px 40px rgba(30, 30, 30, 0.12);
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

section.hero .button-wrap .more-button span {
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    pointer-events: none;
}

section.hero .button-wrap .play-button {
    display: block;
    background: transparent;
    width: 60px;
    height: 60px;
    border: 2px solid #C99FC6;
    border-radius: 50%;
    margin: 52px auto 20px;
    cursor: pointer;
    position: relative;
    transition: opacity 1s ease-out;
}

section.hero .button-wrap .play-button:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #FFFFFF;
    left: 4px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(90deg);
}

section.hero .h1-front {
    font-family: 'Uni Neue', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 72px;
    line-height: 86px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    section.hero .h1-front {
        font-size: 44px;
        line-height: 58px;
    }

    section.hero .text-light {
        font-size: 18px;
    }

    section.hero {
        max-height: 100vh;
        padding-top: 70px;
    }
}