@-webkit-keyframes flash {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition-timing-function: cubic-bezier(0.2, 0.7, 0.6, 1);
    transition-timing-function: cubic-bezier(0.2, 0.7, 0.6, 1);
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes flash {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition-timing-function: cubic-bezier(0.2, 0.7, 0.6, 1);
    transition-timing-function: cubic-bezier(0.2, 0.7, 0.6, 1);
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
    -webkit-transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
    transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
    -webkit-transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
    transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
    -webkit-transition-timing-function: cubic-bezier(0.2, 0.7, 0.6, 1);
    transition-timing-function: cubic-bezier(0.2, 0.7, 0.6, 1);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
    -webkit-transition-timing-function: cubic-bezier(0.2, 0.7, 0.6, 1);
    transition-timing-function: cubic-bezier(0.2, 0.7, 0.6, 1);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.home-promotion-section {
  height: 780px;
  position: relative;
  overflow: hidden;
  background: #000;
  margin-top: -80px;
}

@media (max-width: 575px) {
  .home-promotion-section {
    height: 355px;
    margin-top: 0px;
  }
}

.home-promotion-section .pagingInfo {
  display: none;
  position: absolute;
  bottom: 10px;
  right: 50%;
  font-size: 15px;
  color: #fff;
  -webkit-transform: translate(700px, 0);
  transform: translate(700px, 0);
  z-index: 1;
}

.home-promotion-section .pagingInfo .active {
  opacity: 1;
}

.home-promotion-section .pagingInfo .total {
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .home-promotion-section .pagingInfo {
    right: 10px;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.home-promotion-section .promotion-list {
  position: relative;
}

.home-promotion-section .promotion-list .promotion-box {
  height: 780px;
}

@media (max-width: 575px) {
  .home-promotion-section .promotion-list .promotion-box {
    height: 414px;
  }
}

.home-promotion-section .promotion-list .promotion-box .promotion-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  opacity: 0;
}

.home-promotion-section .promotion-list .promotion-box.slick-current {
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
}

.home-promotion-section .promotion-list .promotion-box.slick-current .promotion-bg {
  opacity: 1;
}

/* dot 樣式 */
.promotion-item {
  text-align: center;
  cursor: pointer;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(0, 0, 0);
  margin: 0 auto;
  transition: all 0.25s ease-in-out;
}

/* active dot */
.promotion-thumb .slick-slide.slick-current .promotion-item {
  background: #fff;
}

.promotion-item:hover {
  background: rgba(255, 255, 255, 0.8);
}

.promotion-thumb {
  position: absolute;
  width: 100%;
  height: 40px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 1260px;
  z-index: 910;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promotion-thumb .slick-track {
  display: flex;
  align-items: center;
  justify-content: center;
}

.promotion-thumb .slick-slide {
  margin: 0 5px;
}

@media (max-width: 1024px) {
  .promotion-thumb {
    display: none;
  }
}

.game-guide-section .slider-guide {
  margin: 0 auto;
  max-width: 1000px;
}

@media only screen and (max-width: 1024px) {
  .game-guide-section .slider-guide {
    max-width: 100%;
  }
}

.game-guide-section .slider-guide .slick-slide {
  display: block;
  opacity: 1;
}

.game-guide-section .slider-guide .slick-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.game-guide-section .slider-guide .slick-list {
  overflow: hidden;
}

.game-guide-section .slider-guide .slick-next,
.game-guide-section .slider-guide .slick-prev {
  width: 107px;
  height: 97px;
  left: -10%;
  transition: 0.3s all ease;
  z-index: 5
}

.game-guide-section .slider-guide .slick-next {
  right: -13%;
  left: inherit;
}

.game-guide-section .slider-guide .slick-prev::before {
  content: '';
  position: absolute;
  background: url('https://landing.mangot5.com/template/fs1/web/images/leftArrow.png') center center no-repeat;
  background-size: contain;
  width: 66px;
  height: 98px;
  left: 0;
  top: 0;
  opacity: 1;
}

.game-guide-section .slider-guide .slick-next::before {
  content: '';
  position: absolute;
  background: url('https://landing.mangot5.com/template/fs1/web/images/rightArrow.png') center center no-repeat;
  background-size: contain;
  width: 67px;
  height: 98px;
  left: 0;
  top: 0;
  opacity: 1;
}

.game-guide-section .slider-guide .slick-prev:hover::before,
.game-guide-section .slider-guide .slick-next:hover::before {
  filter: brightness(1.2);
}

@media (max-width:1024px) {
  .game-guide-section .slider-guide .slick-next {
    right: 0;
  }

  .game-guide-section .slider-guide .slick-prev {
    left: 0;
  }
}

.slick-dots {
  bottom: 10px;
  z-index: 99;
}

.slick-dots li {
  margin: 0;
}

.slick-dots li.slick-active button {
  background-color: #fff;
  opacity: 1;
}

.slick-dots li.slick-active button::before {
  color: #fff;
  opacity: 1;
}

.slick-dots li button {
  width: 9px;
  height: 9px;
  text-indent: 0;
  margin: 5px;
  opacity: 1;
  overflow: hidden;
  font-size: unset;
  background-color: #333333;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  border-radius: 50px;
}

.slick-dots li button.active,
.slick-dots li button:hover {
  background-color: #fff;
}

.slick-dots li button::before {
  content: none;
}

/* .swiper-pagination-bullet {
  background: url(../images/video-switch.png) no-repeat center center;
  width: 42px;
  height: 39px;
  margin: 0 8px;
  opacity: .5;
}

.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
  opacity: 1;
  background: url(../images/video-switch-active.png) no-repeat center center;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next,
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background: transparent url(../images/video-arrow.png) no-repeat center center;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: -98px;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  right: -98px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 98px;
  height: 91px;
  z-index: 1000;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

.swiper-pagination {
  bottom: -80px;
  left: 0;
  right: 0;
} */

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.newsinfo-section .custom-container .row>.col-lg-8 {
  max-width: calc(100% - 435px);
  padding-right: 30px;
}

.newsinfo-section .thum {
  width: 435px;
  max-width: 100%;
  padding: 0;
}

@media (max-width: 991px) {
  .newsinfo-section .container.custom-container .row {
    justify-content: center;
  }

  .newsinfo-section .thum {
    max-width: 90%;
  }

  .newsinfo-section .custom-container .row>.col-lg-8 {
    max-width: 100%;
    padding-right: 15px;
  }
}

.newsinfo-section .slide-thum:not(.slick-initialized) {
  visibility: hidden;
}


.newsinfo-section .slide-thum {
  width: 435px;
  max-width: 100%;
  margin: 0px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 3px 13px 1px rgba(0, 0, 0, 0.77);
}


@media (max-width: 1024px) {
  .newsinfo-section .slide-thum {
    margin: 30px 0 0;
  }
}

/* .newsinfo-section .slide-thum .slide-thum-box {
  width: 100%;
  height: 435px;
  overflow: hidden;
} */

/* .newsinfo-section .slide-thum .slide-thum-box img {
  width: 100%;
  height: 435px;
  object-fit: cover;
} */

.newsinfo-section .pagingInfo-news {
  display: none;
  position: absolute;
  bottom: 5px;
  right: 35px;
  font-size: 15px;
  color: #fff;
  z-index: 1;
}

.newsinfo-section .slick-dots {
  width: 100%;
  position: absolute;
  bottom: 3px;
  left: 3px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .newsinfo-section .slick-dots {
    background: transparent;
  }
}