@import url('fonts/fonts.css');
body {
    font-family: 'Philosopher';
    font-size: 20px;
    background: #041334;
}
body,html{
    overflow-x: hidden;
}
.uk-container {
    max-width: 1600px;
}
header#header {
    /*position: absolute;*/
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}
#headerPC {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 222;
    width: 100%;
    padding: 13px 0;
}

.logo {
    position: absolute;
    top: 0;
    left: -145px;
}

#headerPC .uk-container{
    position: relative;
}

a.social-icon {
    display: inline-block;
    width: 49px;
    height: 50px;
    position: relative;
}

a.social-icon img {
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s ease-out;
}

img.social-icon_hover{
    opacity: 0;
    visibility: hidden;
}
a.social-icon:hover img.social-icon_hover{
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.social-icon_dot{
    margin: 0 3.5px;
    position: relative;
    top: -3px;
}

nav.main-header {
    /*position: fixed;*/
    /*top: 0;
    left: 0;
    width: 100%;
    background: url(images/bg_header.png) no-repeat center center/cover;*/
}
nav.main-header ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-header-left-menu a{
    text-transform: uppercase;
    font-family: 'Philosopher';
    font-weight: bold;
    color: #134453;
    font-size: 16px;
    letter-spacing: -0.025em;
    display: inline-block;
    width: 140px;
    text-align: center;
    position: relative;
}
.main-header-left-menu a:after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 8px;
    background: url(images/menu_dot.png) no-repeat center center / contain;
    position: absolute;
    top: 49%;
    transform: translateY(-50%);
    right: -12px;
}
.main-header-left-menu li:first-child a:before{
    content: '';
    display: inline-block;
    width: 7px;
    height: 8px;
    background: url(images/menu_dot.png) no-repeat center center / contain;
    position: absolute;
    top: 49%;
    transform: translateY(-50%);
    left: -12px;
}
.main-header-left-menu li:last-child a:after{
    right: 0px;
}
.main-header-left-menu li.active a,.main-header-left-menu li:hover a{
    background: url(images/menu_item_bg.png) no-repeat center center;
    background-size: 100% 100%;
    text-decoration: none;
}

nav.main-header ul li a span{
    position: relative;
    z-index: 2;
}



#banner {
    position: relative;
    /*height: 100vh;*/
    background: url(images/section1-bg.jpg) no-repeat center center/cover;
    padding-top: 184px;
}

#videoBG {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.banner-content{
    position: relative;
    z-index: 2;
}
.banner-group-cta {
    max-width: 705px;
    margin: auto;
    padding: 11px 21px 15px;
    box-sizing: border-box;
    background: url(images/cta_bg.png) no-repeat center center;
    margin-top: 115px;
    background-size: 100% 100%;
}
a.account-center {
    position: absolute;
    bottom: 0%;
    left: calc(100% + 15px);
    /*transform: translateY(-50%);*/
    width: max-content;
}
.banner-group-cta-left{
    gap: 10px;
}
.banner-group-cta-giftcode{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 113px;
    height: 113px;
    background: url(images/btn_giftcode.png) no-repeat center center/contain;
}
.btn-sweep{
    position: relative;
    display: inline-block;
}
.btn-sweep:before {
    top: 0;
    bottom: 0;
    left: 0;
    background: #1110 -webkit-linear-gradient(left, #1110, #ffffff52) no-repeat 0 0 / 30px;
    background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, .3);
    animation: sweep 2.5s ease infinite;
    content: "";
    position: absolute;
    right: 0;
}
@-webkit-keyframes sweep {
    0% {
        background-position: 0 0;
    }
  
    100% {
        background-position: 100% 100%;
    }
}
@keyframes sweep {
    0% {
        background-position: 0 0;
    }
  
    100% {
        background-position: 100% 100%;
    }
}
.gift_icon{
    -webkit-animation-name: tada;
    animation-name: tada;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
a.banner-group-cta-download-ios {
    margin-bottom: 3px;
}
.banner-user-registed{
    background: url(images/bg_banner_registed.png) no-repeat center center;
}
.banner-user-registed h2{
    font-family: 'MStiffHei HK';
    font-size: 24.32px;
    line-height: 41.45px;
    color: #ffffd5;
}
#section2 {
    margin-top: -296px;
    padding-top: 296px;
    background: url(images/bg_sec2.png) no-repeat top center;
    background-size: 100% 100%;
/*    height: 3568px;*/
    box-sizing: border-box;
    position: relative;
    
}

.hv-up {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.hv-up:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

@keyframes ic-arrow {
    50% {
        transform: translateY(10px)
    }
}
@keyframes tranUpDown {
  0%,100% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(5px);
  }
}
.tranUpDown{
    -webkit-animation: tranUpDown 4s infinite;
    animation: tranUpDown 4s infinite;
}


.slick-arrow {
    position: absolute;
    top: 50%;
    left: -70px;
    transform: translateY(-50%);
    width: 63px;
    height: 101px;
    font-size: 0;
    outline: none;
    border: none;
    cursor: pointer;
    z-index: 98;
    background: url(images/Pre.png) no-repeat center center/contain;
}
.slick-next.slick-arrow,.sec2-slider-next.slick-arrow{
    left: auto;
    right: -70px;
    background: url(images/Next.png) no-repeat center center/contain;
}

ul.slick-dots li {
    display: inline-block;
    margin: 0 15px;
    width: 38px;
    height: 42px;
    background: url(images/slider_dot.png) no-repeat center center/contain;
    cursor: pointer;
}
ul.slick-dots li button{
    font-size: 0;
    outline: none;
    
    border: none;
    display: none;
}
ul.slick-dots li.slick-active{
    background: url(images/slider_dot_active.png) no-repeat center center/contain;
}
ul.slick-dots {
    text-align: center;
    padding-left: 0;
    margin: 39px 0px 0px;
    z-index: 99;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

ul.slick-dots:before {
    content: '';
    display: inline-block;
    width: 86px;
    height: 12px;
    background: url(images/dot_before.png) no-repeat center center/contain;
    margin-right: 12px;
}
ul.slick-dots:after {
    content: '';
    display: inline-block;
    width: 86px;
    height: 12px;
    background: url(images/dot_after.png) no-repeat center center/contain;
    margin-left: 12px;
}

.s1-slider .slick-arrow{
    width: 72px;
    height: 72px;
    background: url(images/Prev_style2.png) no-repeat center center/contain;
    left: 15px;
}
.s1-slider .slick-arrow.slick-next{
    background: url(images/Next_style2.png) no-repeat center center/contain;
    left: auto;
    right: 15px;
}

.modal-control {
    text-align: center;
    margin-bottom: 36px;
}
.modal-control label {
    display: block;
    color: #ffef37;
    font-family: 'MStiffHei HK';
    font-weight: bold;
    text-transform: uppercase;
    font-size: 27px;
    line-height: 30.08px;
    letter-spacing: -0.025em;
    margin-bottom: 15px;
}
.modal-control input {
    width: 100%;
    max-width: 440px;
    height: 77px;
    border: none;
    border-radius: 0;
    outline: none;
    background: #FFF;
    padding: 0 20px;
    font-family: 'UTM Facebook';
    font-size: 20px;
}
.modal-control2{
    margin-bottom: 21px;
}
.modal-submit {
    text-align: center;
}
.modal-submit button{
    outline: none;
    border: none;
    width: 273px;
    height: 81px;
    font-size: 0;
    background: url(images/btn_baodanh.png) no-repeat center center/contain;
    cursor: pointer;
    transition: all .3s ease;
}
.modal-submit button:hover{
    filter: brightness(120%);
}
.uk-modal-body {
    padding: 15px;
    width: 900px;
    background: transparent;
    background-size: 100% 100%;
}
.modal-content {
    background: url(images/popup/bg_content.png) no-repeat center center/100% 100%;
    padding: 36px 34px;
    max-width: 768px;
    margin: -88px auto 0;
    position: relative;
}
.modal-content p{
    color: #FFF;
    font-family: 'Philosopher';
    font-size: 20px;
    line-height: 1.3;
    font-style: italic;
    max-width: 680px;
    margin: auto;
}

.modal-content-top {
    position: relative;
}

.modal-content-top-buttons {
    position: absolute;
    top: 246px;
    right: 68px;
}

a.modal-content-button {
    display: inline-block;
    width: 219px;
    height: 81px;
    position: relative;
}

a.modal-content-button img {
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s ease-out;
}

a.modal-content-button:hover img.hover {
    opacity: 1;
    visibility: visible;
}

a.modal-content-button img.hover {
    opacity: 0;
    visibility: hidden;
}
/*.modal-content p:last-child{
    margin: 0;
}*/
a.audio-icon {
    position: absolute;
    top: 122px;
    right: 35px;
}
.hf1{
    transition: all .2s ease;
}
.hf1:hover{
    filter: brightness(120%);
}
.hf2{
    transition: all .2s ease;
}
.hf2:hover{
    filter: brightness(150%);
}
.show-mb{
    display: none !important;
}

.show-mb-inline{
    display: none !important;
}

.relative{
    position: relative;
}

section#Sec3 {
    padding-top: 128px;
}

.Sec3-content {
    max-width: 1461px;
    margin: auto;
    margin-top: -64px;
}

.Sec2-content-inner {
    margin-right: calc(calc(100vw - 1600px) / 2);
    smargin-right: 13.4vw;
}
.Sec2-slider-item{
    /*height: 1138px;*/
    text-align: center;
    position: relative;
}
.Sec2-slider-item img{
    display: inline-block;
}

section#Sec2 {
    position: relative;
}

.sec2-slider-char{
    gap: 60px;
}

a.sec2-slider-char-item.active:before {
    content: '';
    display: inline-block;
    width: 180px;
    height: 172px;
    background: url(images/s2/hv.png) no-repeat center center/contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

a.sec2-slider-char-item.active {
    position: relative;
}

a.sec2-slider-char-item.active img {
    position: relative;
    z-index: 222;
}

img.sec2-char {
    position: absolute;
    z-index: 97;
    top: -158px;
    left: -258px;
    
}
img.sec2-char.active{
    -webkit-animation: zoomLittle .5s 0ms 1 ease-in-out;
    animation: zoomLittle .5s 0ms 1 ease-in-out;
}
img.sec2-char[src="images/s2/DW_char.png"] {
    top: -211px;
    left: -160px;
    /*-webkit-animation: zoomLittle .5s 0ms 1 ease-in-out;
    animation: zoomLittle .5s 0ms 1 ease-in-out;*/
}
img.sec2-char[src="images/s2/FE_char.png"] {
    top: -211px;
    left: -160px;
}
img.sec2-char[src="images/s2/DL_char.png"] {
    top: -77px;
    left: -179px;
}
img.sec2-char[src="images/s2/MG_char.png"] {
    top: -108px;
    left: -161px;
}

img.Sec2-slider-item-title {
    position: absolute;
    bottom: 118px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 333;
}
.sec2-slider-char {
    position: relative;
    z-index: 333;
    margin-top: -68px;
}
.s1-slider ul.slick-dots{
    position: absolute;
    bottom: -411px;
    left: 50%;
    transform: translateX(-50%);
}

@-webkit-keyframes zoomLittle{
    0%{
        -webkit-transform: scale(0.3);
                transform: scale(0.3);
    }
    100%{
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}
@keyframes zoomLittle{
    0%{
        -webkit-transform: scale(0.3);
                transform: scale(0.3);
    }
    100%{
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

.s1-slider-item{
    text-align: center;
}
.s1-slider-item img{
    display: inline-block;
    /*margin-right: -65px;*/
}
section#S1 {
    position: relative;
    min-height: 986px;
}
section#S1 .uk-container{
    max-width: 1461px;
    position: absolute;
    top: 94px;
    left: 50%;
    transform: translateX(-50%);
}
.s1-video {
    margin-top: -53px;
    margin-left: -100px;
}
img.s1_bg {
    margin-left: -77px;
}

section#Sec4 {
    padding: 70px 0 108px;
}

section#Sec4 p{
    color: #FFF;
    margin: 0;
}
section#Sec4 p b{
    font-size: 25px;
}

section#Sec4 p a{
    color: #FFF;
    font-weight: bold;
}

div#navRight {
    width: 216px;
    position: fixed;
    top: 20%;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-out;
}
div#navRight.active{
    opacity: 1;
    visibility: visible;
}

.navRight-menu{
    background: url(images/nav/bg_nav_menu.png) no-repeat center center;
    background-size: 100% 100%;
    width: 216px;
    min-height: 458px;
    padding-top: 50px;
    box-sizing: border-box;
}
.navRight-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a.nav-menu-item {
    display: inline-block;
    width: 201px;
    height: 53px;
    position: relative;
}

a.nav-menu-item img {
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s ease-out;
}

a.nav-menu-item img.hover {
    opacity: 0;
    visibility: hidden;
}
a.nav-menu-item:hover img.hover{
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
a.nav-menu-item.nav-menu-item-code {
    height: 114px;
}

img.decor {
    position: absolute;
    right: -64px;
    top: -111px;
}
@media (min-width: 640px) {
    .uk-modal {
        padding: 0px 20px;
    }
}

@media (max-width: 2000px) and (min-width: 1101px){
    .logo img{
        max-width: 19.75vw;
    }

}
@media (max-width: 2000px) and (min-width: 769px){
    .s1-slider-item-img{
        max-width: var(--mw);
    }
    .s1-video img{
        max-width: 35.3vw;
        max-height: 22.25vw;
    }
    .s1-goto img{
        max-width: 15.45vw;
        max-height: 5.7vw;
    }
    .s1-slider ul.slick-dots{
        bottom: -20.55vw;
    }
    section#S1{
        min-height: 49.05vw;
    }
    
}

@media (max-width: 1600px) and (min-width: 769px){
    img.sec2-char{
        max-width: 58.55vw;
    }
    img.sec2-char[src="images/s2/DK_char.png"]{
        top: -7.9vw;
        left: -12.9vw;
    }
}

@media (max-width: 1950px){
    .logo{
        left: 0;
    }
}

@media (max-width: 1600px){
    .Sec2-content-inner{
        margin-right: 16.75vw;
    }
    .Sec2-slider-item{
        height: auto;
    }
    section#S1 .uk-container{
        max-width: 73.05vw;
    }
    .logo{
        top: 42px;
    }
    .main-header-left-menu a{
        width: 120px;
    }
    .uk-container {
        padding-left: 15px;
        padding-right: 15px;
    }

}

@media (max-width: 1200px){
    html,body{
        overflow-x: hidden;
    }
    .slick-arrow{
        left: 0;
    }
    button.slick-next.slick-arrow{
        right: 0;
    }
    #navRight{
        display: none !important;
    }
}
@media (max-width: 1100px){
    main#site-main {
        padding-top: 97px;
    }
    #header{
        position: static !important;
    }
    #headerPC{
        display: none;
    }
    .main-header-mobile {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 99;
        padding: 16px 33px 8px 18px;
        box-sizing: border-box;
        background: #000;
        height: 95px;
        /*border-bottom: 1px solid #5ea3f8;*/
    }
    .main-header-mobile-right .uk-flex{
        gap: 16px;
    }
    a.ic_home {
        position: absolute;
        top: 15px;
    }
    .menu-humburgur-icon{
        margin-left: 10px;
    }
    .menu-humburgur-icon-active {
        display: none;
    }
    /*span.menu-humburgur-icon.open .menu-humburgur-icon-active {
        display: inline-block;
    }
    span.menu-humburgur-icon.open .menu-humburgur-icon-n {
        display: none;
    }*/
    .menu-main {
        position: fixed;
        top: 95px;
        width: 100%;
        background: rgb(0 0 0 / 73%);
        text-align: center;
        padding: 65px 0;
        z-index: 999999;
    }
    .menu-main-content {
        display: flex;
        flex-wrap: wrap;
    }

    .menu-main-content-left {
        width: 55.2%;
        padding: 0 50px;
        box-sizing: border-box;
        position: relative;
    }
    .menu-main-content-left:after{
        content: '';
        display: inline-block;
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 7px;
        background: url(images/menu_mb_line.png) no-repeat center center/100% 100%;
    }

    .menu-main-content-right {
        width: 44.8%;
        padding: 0 50px;
        box-sizing: border-box;
    }

    .menu-main-content-right ul {
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 15px;
    }

    .menu-main-content-right ul li {
        text-align: left;
    }
    ul#menu-main-mobile {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }
    li.menu-item {
        font-family: 'Philosopher';
        font-weight: bold;
        /* padding: 10px 0; */
        font-size: 25px;
        line-height: 40px;
        text-transform: uppercase;
        letter-spacing: 0.025em;
        text-align: right;
    }
    ul#menu-main-mobile li:not(:last-child){
        margin-bottom: 5px;
    }
    .btn_menu_mb{
        position: relative;
        display: inline-block;
        width: 201px;
        height: 54px;
    }
    .btn_menu_mb img{
        position: absolute;
        top: 0;
        left: 0;
        transition: all .3s ease-out;
    }
    .btn_menu_mb img.hover{
        opacity: 0;
        visibility: hidden;
        z-index: 2;
    }
    .btn_menu_mb:hover img.hover{
        opacity: 1;
        visibility: visible;
    }
    li.menu-item a {
        color: #FFF;
    }
    li.menu-item.active a {
        color: #ffe997;
    }
    a.account-center{
        display: none;
    }
    #videoBG{
        display: none;
    }
    #banner{
        background-image: url(images/section1-bg_mb.jpg);
        height: 960px;
    }
    .banner-content{
        bottom: 95px;
        width: 100%;
    }
    .banner-content .uk-container {
        padding: 0;
        max-width: 768px;
    }
    .banner-group-cta{
        margin-top: 22px;
    }
    
    a.social-icon{
        width: 58px;
        height: 60px;
    }
    #banner{
        padding-top: 234px;
    }
    .banner_content_code_mb {
        display: block !important;
    }
    /*.banner-group-cta{
        display: none !important;
    }*/

    
}
@media(max-width: 768px){
    main#site-main {
        padding-top: 12.630vw;
    }
    .hide-mb{
        display: none !important;
    }
    .show-mb{
        display: block !important;
    }

    .show-mb-inline{
        display: inline-block !important;
    }
    .main-header-mobile{
        padding: 2.083vw 4.297vw 1.042vw 2.344vw;
        height: 12.37vw;
    }
    .menu-main{
        top: 12.37vw;
        padding: 8.464vw 0;
    }
    li.menu-item{
        font-size: 3.255vw;
        line-height: 5.208vw;
    }
    #banner {
        height: 138.932vw;
        padding-top: 33.839vw;
        min-height: auto !important;
        box-sizing: border-box;
    }
    .banner-content{
        bottom: 12.370vw;
        width: 100%;
    }

    a.ic_home {
        top: 1.953vw;
    }
    a.ic_home img{
        max-width: 18.75vw;
    }
    .logo_mb img{
        max-width: 33.333vw;
    }
    .menu-humburgur-icon img{
        max-width: 9.375vw;
    }
    .menu-main-content-left,.menu-main-content-right{
        padding: 0 6.51vw;
    }
    .menu-main-content-right ul{
        gap:1.953vw;
    }
    a.social-icon {
        width: 7.552vw;
        height: 7.813vw;
    }
    .btn_menu_mb{
        width: 26.172vw;
        height: 7.031vw;
    }
    .main-header-mobile-right .uk-flex {
        gap: 2.083vw;
    }
    .menu-humburgur-icon {
        margin-left: 1.302vw;
    }
    .banner-content {
        bottom: 9.505vw;
    }
    .banner-group-cta{
        max-width: 77.734vw;
        padding: 0.651vw 1.953vw;
        margin-top: 5.859vw;
    }
    .banner-group-cta-center img{
        max-width: 35.417vw;
    }
    .banner-group-cta-left {
        gap: 1.302vw;
    }
    .app-icon{
        max-width: 14.844vw;
    }
    .banner-group-cta_md {
        margin-top: 2.865vw;
    }
    .banner-group-cta-inner {
        gap: 3.255vw;
    }
    .banner-group-cta-center{
        gap: 1.172vw;
    }
    .banner-group-cta-giftcode{
        width: 18.62vw;
        height: 24.219vw;
    }
    #section2{
        padding-top: 59.375vw;
        margin-top: -55.469vw;
        background: url(images/bg_sec2_mb.png) no-repeat top center/100%;
    }

    .slick-arrow {
        width: 7.682vw;
        height: 13.151vw;
        padding: 0;
    }
    /*button.slick-next.slick-arrow{
        top: auto;
        bottom: 0;
        left: 2.604vw;
    }*/
    
    ul.slick-dots{
        margin: 5.208vw 0px 0px;
    }
    ul.slick-dots li{
        margin: 0 2.083vw;
        width: 4.948vw;
        height: 5.469vw;
    }
    
    .uk-modal-body {
        padding: 0;
        width: auto;
    }
    .modal-control label{
        font-size: 3.516vw;
        line-height: 30.08px;
        margin-bottom: 3.917vw;
    }
    .modal-control input{
        max-width: 57.292vw;
        height: 10.026vw;
        padding: 0 2.604vw;
        font-size: 2.604vw;
    }
    .modal-control {
        text-align: center;
        margin-bottom: 4.688vw;
    }
    .modal-control2 {
        margin-bottom: 2.734vw;
    }
    .modal-submit button{
        width: 35.547vw;
        height: 10.547vw;
    }
    .banner-user-registed h2{
        font-size: 3.167vw;
        line-height: 5.397vw;
    }
    .banner-user-registed{
        max-width: 73.177vw;
        margin: auto;
        background-size: 100% 100%;
    }
    a.audio-icon {
        top: 12.760vw;
        right: 1.302vw;;
        z-index: 333;
    }
    a.audio-icon img{
        max-width: 6.51vw;
    }
    .gift_icon{
        max-width: 49.349vw;
    }
    img.s1_bg {
        margin-left: 0px;
        /*margin-top: -30.859vw;*/
    }
    
    section#S1{
        min-height: auto;
        padding-bottom: 10.547vw;
    }
    .s1-video {
        margin-top: 0;
        margin-left: 0;
        text-align: center !important;
    }
    .s1-slider-mb .slick-dots {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -67.55vw;
        margin: 0;
    }
    section#S1 .uk-container{
        position: static;
        transform: none;
        max-width: 100%;
        padding: 0;
    }
    .s1-goto-mb img {
        max-width: 48.307vw;
    }
    .s1-slider-mb .slick-arrow {
        width: 9.375vw;
        height: 9.375vw;
        background: url(images/Prev_style2.png) no-repeat center center / contain;
        left: 0;
        bottom: 15%;
        top: auto;
        transform: none;
    }
    .s1-slider-mb .slick-arrow.slick-next {
        background: url(images/Next_style2.png) no-repeat center center / contain;
        left: auto;
        right: 0;
    }
    ul.slick-dots:before{
        width: 11.198vw;
        height: 1.563vw;
        margin-right: 1.563vw;
    }
    ul.slick-dots:after{
        width: 11.198vw;
        height: 1.563vw;
        margin-left: 1.563vw;
    }
    #Sec2 .uk-container{
        padding: 0;
    }
    .sec2-slider-char {
        gap: 2.995vw;
    }
    a.sec2-slider-char-item img {
        max-width: 14.844vw;
    }
    a.sec2-slider-char-item.active:before{
        width: 23.438vw;
        height: 22.396vw;
    }
    .Sec2-head {
        margin-bottom: -23.307vw;
    }
    .Sec2-slider-item {
        height: 164.193vw;
        padding-top: 23.307vw;
        position: relative;
    }
    .Sec2-slider-item img{
        top: var(--top-mb);
        position: absolute;
        left: 0;
    }
    .sec2-slider-char{
        margin-top: -37.76vw;
    }
    .Sec2-slider-item.slick-active img {
        -webkit-animation: fadeInUp .3s 0ms 1 ease-in-out;
        animation: fadeInUp .3s 0ms 1 ease-in-out;
    }
    section#Sec3 {
        padding-top: 11.849vw;
    }
    .sec2-slider .slick-arrow{
        display: none !important;
    }
    .uk-container{
        padding: 0;
    }
    .sec3-slider {
        padding: 0 3.125vw;
    }
    .Sec3-content{
        margin-top: -3.776vw;
    }
    section#Sec4 p b{
        font-size: 4.557vw;
        display: block;
    }
    section#Sec4 p {
        font-size: 3.255vw;
    }
    section#Sec4 {
        padding: 18.359vw 0 5.859vw;
        /*background: url(images/bg_footer_mb.png) no-repeat bottom center/cover;*/
    }
    div#modal-baodanh {
        padding: 0;
    }
    .modal-content p{
        font-size: 14px;
    }
    .modal-content{
        padding: 4.688vw 4.427vw;
        margin: -11.458vw auto 0;
    }
    .modal-content-top-buttons {
        top: 32.031vw;
        right: 8.854vw;
    }
    a.modal-content-button {
        width: 28.516vw;
        height: 10.547vw;
    }
}