@import url('../fonts/fonts.css');

body {
    font-family: 'SVN-Toruk',sans-serif;
    background-color: #1f1f1f;
}

body,html{
    overflow-x: hidden;
}

a{
    text-decoration: none;
}

.uk-container,.container {
    max-width: 1154px;
    margin: 0 auto;
}

header#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: url(../images/menu-bg.png) no-repeat center center/cover;
    padding: 7px 0;
}

a.logo {
    display: block;
    padding: 0 23px;
}

nav.main-header ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav.main-header ul li a{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 32px;
    font-size: 16px;
    color: #FFF;
    text-decoration: none;
    position: relative;
}
nav.main-header ul li span {
    margin-left: 6px;
}
/* nav.main-header ul li:not(:last-child) a:before{
    content: '';
    display: inline-block;
    width: 11px;
    height: 11px;
    background: url(../images/menu_dot.png) no-repeat center center/contain;
    position: absolute;
    bottom: 10px;
    right: -5.5px;
} */

.music{
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 67px;
}

.music .off{
    display: none;
}

.music-audio{
    display: none;
}

.music.active .off{
    display: block;
}

.music.active .on{
    display: none;
}

/*.logo{
    position: absolute;
    top: 70px;
    right: 31px;
}*/

#banner {
    position: relative;
    height: 100vh;
    background: url(../images/banner.png) no-repeat center center/cover;
}

.banner-play {
    position: absolute;
    bottom: 32%;
    left: 28%;
    z-index: 222;
    -webkit-animation: zoomIcon2 2s infinite linear;
    animation: zoomIcon2 2s infinite linear;
}

#videoBG {
    position: absolute;
    top: 25px;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.banner-buttons {
    position: absolute;
    top: 58.5%;
    right: 19.7%;
    /* transform: translateY(-50%); */
    display: flex;
    gap: 20px;
    z-index: 10;
}

.banner-button-left {
    display: flex;
    align-items: center;
}

.banner-buttons-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.banner-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.banner-btn img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    transform: translateY(-2px);
}

.banner-btn:hover img {
    filter: brightness(1.1);
}


.banner-event-item{
    position: relative;
    width: 297px;
    height: 170px;
    display: block;
}

.hover-img img{
    position: absolute;
    inset: 0;
    transition: all .3s ease-out;
}

.img-hover{
    opacity: 0;
    visibility: hidden;
}

.hover-img:hover .img-hover,.hover-img.active .img-hover{
    opacity: 1;
    visibility: visible;
    z-index: 222;
}

.banner-events {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 333;
    padding: 5px 0;
    background: rgba(0,0,0,.68);
}

.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 {
    background: url(../images/bg_main.png) no-repeat top center/cover;
    box-sizing: border-box;
    position: relative;
}

#Features{
/*    margin-top: -140px;*/
    padding-top: 90px;
    padding-bottom: 15px;
    background-size: 100% 100%;
    box-sizing: border-box;
}

.Features-nav-item{
    display: block;
    width: 100px;
    height: 140px;
    position: relative;
    margin: 0 10px;
}

.Features-nav-list {
    position: absolute;
    left: 49%;
    top: 120px;
    z-index: 222;
}

.Features-head{
    margin-bottom: 0px;
}

.Features-slider-item{
    text-align: center;
}

.Features-slider-item img{
    margin: auto;
}

section#Events {
    padding: 0 0 42px;
}

.Events-nav-item{
    display: block;
    width: 118px;
    height: 140px;
    position: relative;
}

.Events-inner{
    max-width: 1227px;
    margin: 0 auto;
}

/*.Events-nav-list {
    position: absolute;
    z-index: 22;
    left: 50%;
    transform: translateX(-50%);
    top: 21px;
}*/

.Events-nav-list {
    max-width: 944px;
    position: absolute;
    z-index: 222;
    left: 50%;
    bottom: -70px;
    transform: translateX(-50%);
}

.Options-inner{
    max-width: 1263px;
    margin: auto;
}

.Options-slider button.slick-arrow{
    width: 74px;
    height: 75px;
    position: static;
    transform: none;
    animation: zoomIcon2 1.5s infinite linear;
}

/*.Options-slider{
    display: flex;
    flex-direction: column-reverse;
}*/

.Options-slider ul.slick-dots{
    margin: 0;
}

.custom-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px 0 0;
}

.Options-slider button.slick-prev.slick-arrow{
    background: url(../images/Pre1.png) no-repeat center center / contain;
}

.Options-slider button.slick-next.slick-arrow{
    background: url(../images/Next1.png) no-repeat center center / contain;
}

#News {
    padding: 60px 0;
}

.News-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.News-content {
    background: url('../images/tin-tuc/bg.png') no-repeat center center/cover;
    position: relative;
}

.swiper-news {
    width: 100%;
    height: 100%;
}

.swiper-news .swiper-slide {
    text-align: center;
}

.swiper-news .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.swiper-news .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: .5;
}

.swiper-news .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffef37;
}

.news-list-tab {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.news-list-tab li {
    padding: 0;
}



.news-list-tab-object img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.news-list-tab-object .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 100%;
    height: 100%;
}

.news-list-tab-object:hover .img-hover,
.news-list-tab-object.active .img-hover {
    opacity: 1;
}

.news-list-tab-object {
    display: block;
    position: relative;
    _padding: 10px 20px;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-list-tab-object img {
    width: auto; /* Adjust as needed */
    height: auto; /* Adjust as needed */
    vertical-align: middle;
}

.news-list-tab-object:hover {
    _color: #ffef37;
}

.news-list-tab-object.active {
    _color: #ffef37;
}

.news-list-tab-object.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    _background: #ffef37;
}

.news-list-tab li {
    margin: 0 5px;
    position: relative; /* Required for absolute positioning of the separator */
}

.news-list-tab li:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10.5px; /* Adjust position as needed */
    transform: translateY(-50%);
    width: 1px;
    height: 50%; /* Adjust height as needed */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}

.news-list-tab.home {
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.news_item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    list-style: none;
}

.news-tab-item-data.news-data.active ul {
    max-height: 413px; /* Adjust as needed */
    overflow-y: auto;
}

.news-tab-item-data.news-data.active ul::-webkit-scrollbar {
  width: 8px; /* Adjust width as needed */
  background-color: transparent; /* Remove scrollbar background */
  padding-right: 5px; /* Add spacing between scrollbar and content */
  margin-right: 5px; /* Move scrollbar to the right */
}

.news-tab-item-data.news-data.active ul::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3); /* Style scrollbar thumb */
  border-radius: 4px; /* Rounded corners for the thumb */
}

.news-tab-item-data.news-data.active ul::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.5); /* Darken thumb on hover */
}

.news-tab-item-data.news-data.active ul::-webkit-scrollbar-button {
    display: none; /* Remove scrollbar buttons */
}

.news_item__title span {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.5px;
}

.news_item__title span:before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 5px;
    background: url('../images/tin-tuc/dot.png') no-repeat center center/contain;
}

.news_item__title {
    color: #fff;
    display: block;
    padding: 5px 0;
    transition: all .3s ease;
}

.news_item__title:hover {
    color: #ffef37;
    padding-left: 10px;
}

.news-tab-item-footer {
    text-align: right;
    margin-top: 20px;
}

.news-tab-item-footer a {
    color: #ffef37;
    text-decoration: none;
}

.news-tab-item-footer a:hover {
    color: #fff;
}

.swiper-news {
    margin-bottom: 30px;
}

.swiper-news .swiper-pagination {
    bottom: -25px;
}

.swiper-news .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
}

.swiper-news .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffef37;
}

#Roadmap{
    padding: 91px 0 198px;
}

.Roadmap-inner{
    max-width: 1462px;
    margin: 0 auto;
}

.Roadmap-decor {
    position: absolute;
    top: -59px;
    left: 50%;
    transform: translateX(-50%);
}

.Roadmap-left{
    width: 50%;
}

.Roadmap-right{
    width: 50%;
    box-sizing: border-box;
}

.hv-up {
    animation: ic-arrow 3s 0ms infinite ease-in-out;
}

img.pulldown {
    position: fixed;
    top: 50%;
    right: 25px;
    animation: ic-arrow 5s 0ms infinite ease-in-out;
    z-index: 999;
    transition: all .2s ease-out;
}

@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;
    bottom: -17%;
    left: -60px;
    transform: translateY(-50%);
    width: 82px;
    height: 83px;
    font-size: 0;
    outline: none;
    border: none;
    cursor: pointer;
    z-index: 999;
    background: url(../images/Pre1.png) no-repeat center center/contain;
    padding: 0;
    animation: zoomIcon 2s infinite linear;
}

button.slick-next.slick-arrow{
    left: auto;
    right: -60px;
    background: url(../images/Next1.png) no-repeat center center/contain;
}

ul.slick-dots{
    display: flex;
    align-items: center;
    list-style: none;
    justify-content: center;
    gap: 24px;
}

ul.slick-dots li button {
    font-size: 0px;
    outline: none;
    border: none;
    width: 35px;
    height: 35px;
    background: url(../images/dot.png) no-repeat center center / contain;
    color: #FFF;
    cursor: pointer;
}

ul.slick-dots li.slick-active button{
    background: url(../images/dot_active.png) no-repeat center center / contain;
    width: 45px;
    height: 45px;
}

ul.slick-dots {
    text-align: center;
    padding-left: 0;
    margin: -20px 0px 0px;
    z-index: 99999;
    position: relative;
}

.relative{
    position: relative;
}

#footer{
    padding: 60px 0;
    background: rgba(0,0,0,0.33);
    background-size: 100% 100%;
/*    margin-top: -114px;*/
    position: relative;
    z-index: 2;
}

#footer p{
    color: #FFF;
    font-weight: 500;
    font-size: 19px;
    line-height: 1.63;
    margin: 24px 0 0;
}

#TOP{
    position: fixed;
    right: 38px;
    bottom: 78px;
    z-index: 9999;
}

.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: 0;
    width: 959px;
    background: transparent;
    background-size: 100% 100%;
}

.hf1{
    transition: all .2s ease;
}

.hf1:hover{
    filter: brightness(120%);
}

.hf2{
    transition: all .2s ease;
}

.hf2:hover{
    filter: brightness(150%);
}

@keyframes zoomIcon {
  0% {
      transform: scale(1, 1) translateY(-50%);
  }
  50% {
      transform: scale(1.1, 1.1) translateY(-50%);
  }
  100% {
      transform: scale(1, 1) translateY(-50%);
  }
}

@keyframes zoomIcon2 {
  0% {
      transform: scale(1, 1);
  }
  50% {
      transform: scale(1.1, 1.1);
  }
  100% {
      transform: scale(1, 1);
  }
}

@keyframes zoomIcon3 {
  0% {
      transform: scale(1, 1);
  }
  50% {
      transform: scale(1.2, 1.2);
  }
  100% {
      transform: scale(1, 1);
  }
}

@keyframes bounceX {
    0% {
        transform: translateX(0);
    }
    10% {
        transform: translateX(2px);
    }
    20% {
        transform: translateX(4px);
    }
    30% {
        transform: translateX(6px);
    }
    40% {
        transform: translateX(8px);
    }
    50% {
        transform: translateX(10px);
    }
    60% {
        transform: translateX(12px);
    }
    70% {
        transform: translateX(14px);
    }
    80% {
        transform: translateX(16px);
    }
    90% {
        transform: translateX(18px);
    }
    100% {
        transform: translateX(20px);
    }
}
#banner {
    position: relative;
    height: 100vh;
}
#imagePopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 9999;
}

#imagePopup div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#imagePopup img {
    max-width: 90%;
    max-height: 90%;
}

#imagePopup .close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    cursor: pointer;
}
.arrow-animation{
    animation-name: bounceX;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}
.padding-top-80 {
    padding-top: 80px;
}
.padding-bottom-80 {
    padding-bottom: 80px;
}
.News-content.relative {
    padding: 35px 22px;
}

@media (max-width: 767px) {
  #banner {
    height: 1053px !important;
  }
}
.content-cont {
    color: #fff;
}
.title {
    font-size: 28px;
    text-align: center;
    font-weight: bold;
}
.time {
    font-size: 14px;
    text-align: center;
    margin-bottom: 50px;
}
.breadcrumb {
    background: 0;
    font-size: 14px;
    margin-top: 1%;
}
.section-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80vh;
    font-size: 16px;
    margin-top: 6%;
}
h2, h3 {
    color: #FFF !important;
}
.content  .wp-block-image img {
    display: block;
    margin: 1em auto;
}
.wrapper{
    background: url(../images/bg_main.png) no-repeat top center/cover;
 
}
.content {
    margin-top: 6%;
}
.news_item__title span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 520px; 
}
.news-tab-item-data.news-data {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}


.news-tab-item-data.news-data.active {
    display: block;
    opacity: 1;
}
.news-item-date {
    padding-right: 5px;
}
