.video-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
}

body {
    overflow: hidden;
}

@-webkit-keyframes enableScroll {
    to {
        overflow: auto;
    }
}

@keyframes enableScroll {
    to {
        overflow: auto;
    }
}

.preload-video {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 9;
}

.preload-video video {
    max-width: 100%;
    width: 100%;
    scale: 1.4;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.section-banner {
    position: relative;
    height: auto;
    background-color: #000;
    background-image: var(--background-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

.section-banner:before {
    content: '';
    position: absolute;
    background: #000;
    width: 100%;
    height: 100%;
    opacity: .3;
}

.section-banner:after {
    content: '';
    position: absolute;
    background: -webkit-gradient(linear, left bottom, left top, from(#000000), color-stop(30%, rgba(0, 0, 0, 0))), -webkit-gradient(
linear, left top, left bottom, from(#000000), color-stop(30%, rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0) 30%), -o-linear-gradient(
top, #000000 0%, rgba(0, 0, 0, 0) 30%);
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 30%), linear-gradient(
180deg, #000000 0%, rgba(0, 0, 0, 0) 30%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* opacity: var(--overlay-opacity, 0); */
    -webkit-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.banner-video-loaded {
    background: #000;
    position: relative;
}
.banner-video-loaded:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9;
}

.video-wrapper {
    height: 100%;
}

.content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
    width: 100%;
    z-index: 9;
}

.section-banner p {
    margin: 0;
}

.content-container .title p {
    text-align: left;
}

.content-container .title p:last-child {
    text-align: right;
    margin-top: -17px;
}

html[lang="zh-HK"] .content-container .title p:last-child {
    margin-top: -17px;
}

html[lang="zh-HK"] .content-container {
    max-width: 681px;
    margin: 0 auto;
}

.sub-title {
    font-family: 'Nunito', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-align: right;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.scroll-down {
    position: absolute;
    bottom: 10.5%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 9;
    font-family: 'Nunito', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0;
}

.scroll-down:before {
    content: '';
    position: absolute;
    background-image: url('../images/scroll.svg');
    width: 26px;
    height: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -35px;
    background-repeat: no-repeat;
    background-size: contain;
}

.text-load-banner {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 10%;
    font-family: 'Nunito', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    color: #FFFFFF;
    z-index: 9;
    opacity: 1;
    text-align: center;
    padding: 0 20px;
    width: 100%;
    /* mix-blend-mode: difference; */
}

.text-load-banner {
    display: none;
}

.banner-video-loaded .text-load-banner {
    display: block;
}

@-webkit-keyframes hideTextLoadBanner {
    0% {
        opacity: 1;
        color: #FFFFFF;
    }
    50% {
        opacity: 1;
        color: #FFFFFF;
    }
    60% {
        opacity: 1;
        color: #000000;
    }
    100% {
        opacity: 1;
        color: #000000;
        display: none;
    }
}

@keyframes hideTextLoadBanner {
    0% {
        opacity: 1;
        color: #FFFFFF;
    }
    50% {
        opacity: 1;
        color: #FFFFFF;
    }
    60% {
        opacity: 1;
        color: #000000;
    }
    100% {
        opacity: 1;
        color: #000000;
        display: none;
    }
}

@-webkit-keyframes hideTextLoadBannerMB {
    0% {
        opacity: 1;
        color: #FFFFFF;
    }
    40% {
        opacity: 1;
        color: #FFFFFF;
    }
    45% {
        opacity: 1;
        color: #000000;
    }
    100% {
        opacity: 1;
        color: #000000;
        display: none;
    }
}

@keyframes hideTextLoadBannerMB {
    0% {
        opacity: 1;
        color: #FFFFFF;
    }
    40% {
        opacity: 1;
        color: #FFFFFF;
    }
    45% {
        opacity: 1;
        color: #000000;
    }
    100% {
        opacity: 1;
        color: #000000;
        display: none;
    }
}


@-webkit-keyframes videoSequence {
    0% {
        scale: 1.4;
        opacity: 1;
    }
    70% {
        scale: 2;
        opacity: 1;
        
    }
    100% {
        scale: 2;
        opacity: 0;
        display: none;
    }
}

@keyframes videoSequence {
    0% {
        scale: 1.4;
        opacity: 1;
    }
    70% {
        scale: 2;
        opacity: 1;
        
    }
    100% {
        scale: 2;
        opacity: 0;
        display: none;
    }
}

@-webkit-keyframes videoSequenceMB {
    0% {
        scale: 1.4;
        opacity: 1;
    }
    70% {
        scale: 10;
        opacity: 1;
        
    }
    100% {
        scale: 10;
        opacity: 0;
        display: none;
    }
}

@keyframes videoSequenceMB {
    0% {
        scale: 1.4;
        opacity: 1;
    }
    70% {
        scale: 10;
        opacity: 1;
        
    }
    100% {
        scale: 10;
        opacity: 0;
        display: none;
    }
}

@-webkit-keyframes fadeInContent {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInContent {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes showBackground {
    from {
        background-color: #000 !important;
        /* background-image: none !important; */
    }
    to {
        position: relative;
        background-color: transparent !important;
        /* background-image: var(--background-image) !important; */
    }
}

@keyframes showBackground {
    from {
        background-color: #000 !important;
        /* background-image: none !important; */
    }
    to {
        position: relative;
        background-color: transparent !important;
        /* background-image: var(--background-image) !important; */
    }
}

@-webkit-keyframes showOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes showOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    .page-title {
        font-size: 68px;
        line-height: 80px;
    }

    html[lang="zh-HK"] .content-container {
        max-width: 500px;
    }

    html[lang="zh-HK"] .content-container .title p:last-child {
        margin-top: -17px;
    }

    .content-container .title p:last-child {
        margin-top: -17px;
    }
}

@media (max-width: 767.96px) {
    html[lang="zh-HK"] .content-container {
        max-width: 100%;
    }

    html[lang="zh-HK"] .content-container .title p:last-child {
        margin-top: 0;
    }
    
   .page-title {
        font-size: 50px;
        line-height: 50px;
    }

    .content-container .title p:last-child {
        text-align: left;
        margin-top: 0;
    }

    .sub-title {
        text-align: left;
        padding-top: 34px;
    }

    .scroll-down {
        bottom: 15%;
    }

    .text-load-banner {
        /* bottom: 30%; */
        bottom: var(--bt, -100%);
        position: fixed;
    }

    .section-banner {
        height: 701px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1680px;
    }

    .page-title {
        font-size: 120px;
        line-height: 161.61px;
    }

    .sub-title {
        font-size: 19.4236px;
        line-height: 26px;
    }

    .content-container .title p:last-child {
        margin-right: 20px;
    }
}

@media (max-width: 767.96px) and (max-height: 701px) {
    .section-banner {
        height: 100vh;
    }
}