@import url(../css/font.css);
:root {
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap)); }

@keyframes jumpUpDown {
  0% {
    transform: translate(-50%, 0); }
  100% {
    transform: translate(-50%, 10px); } }
@keyframes move {
  0% {
    opacity: 0.9; }
  10% {
    transform: translate3d(-0.1rem, 0, 0); }
  70% {
    transform: scale(1);
    box-shadow: #ff8a0060 0 0 0 .5rem; }
  80% {
    transform: translate3d(-0.1rem, 0, 0); }
  100% {
    transform: scale(1);
    box-shadow: #ff880000 0 0 0 .6rem;
    opacity: 1; } }
@keyframes scroll {
  0% {
    transform: translateY(100%); }
  100% {
    transform: translateY(-100%); } }
@keyframes bubbleScroll {
  0% {
    transform: translateY(0);
    opacity: 1; }
  80% {
    opacity: 1; }
  100% {
    transform: translateY(-200%);
    opacity: 0; } }
@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start)); }
  to {
    transform: translateX(var(--scroll-end)); } }
@keyframes scroll-y {
  from {
    transform: translateY(var(--scroll-start)); }
  to {
    transform: translateY(var(--scroll-end)); } }
.primary-btn, .secondary-btn {
  height: 2rem;
  border-radius: 2rem;
  font-size: 1rem;
  margin: 0.5rem 0;
  color: white;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  padding: 1.2rem;
  width: 10rem; }
  .disabled.primary-btn, .disabled.secondary-btn {
    opacity: 0.6;
    cursor: not-allowed; }
  .primary-btn:hover, .secondary-btn:hover {
    background-color: #1D39E0;
    color: white;
    text-decoration: none; }

.primary-btn {
  background-color: #0524DD; }
  .primary-btn:hover {
    background-color: #4A60E6; }

.secondary-btn {
  background-color: white;
  color: #7F7F7F;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 0.5px solid #d6d6d6; }
  .secondary-btn:hover {
    text-decoration: none;
    background-color: #7F7F7F;
    color: white; }
  .secondary-btn:focus {
    border: none; }
  .secondary-btn.active {
    background-color: #000064;
    color: white; }
    .secondary-btn.active:hover {
      text-decoration: none;
      background-color: #7F7F7F;
      color: white; }

.alert-msg {
  font-size: 0.8rem;
  font-family: 'averta-semibold';
  color: #E84730; }

.no-data {
  margin-bottom: 1rem; }

@media screen and (max-width: 767.98px) {
  .primary-btn {
    font-size: 0.8rem;
    padding: 1rem; } }
.icon-star {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("../images/icon/star.svg");
  background-size: contain;
  background-repeat: no-repeat; }

button:focus {
  outline: none !important; }

body {
  margin: 0;
  font-family: 'averta-regular'; }

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "SF-Pro-Display-Regular"; }

body.no-scroll {
  overflow-y: hidden; }

.section {
  margin-bottom: 5rem; }

.title {
  font-family: "SF-Pro-Display-Semibold"; }

.title-regular {
  font-family: "SF-Pro-Display-Regular"; }

.title-light {
  font-family: "SF-Pro-Display-Light"; }

.title-heavy {
  font-family: "SF-Pro-Display-Heavy"; }

.desc {
  font-family: "SF-Pro-Display-Light"; }

.section-banner {
  background-image: url("../images/banner/background.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 4rem;
  margin-bottom: 3rem; }
  .section-banner .banner-container {
    display: grid;
    grid-template-columns: 20rem 1fr;
    padding-top: 2rem; }
    .section-banner .banner-container .banner-left {
      width: 25rem;
      padding-top: 7rem; }
      .section-banner .banner-container .banner-left .banner-text {
        margin-bottom: 3rem; }
      .section-banner .banner-container .banner-left h1 {
        font-family: "SF-Pro-Display-Heavy";
        color: #0524DD;
        font-size: 3rem;
        margin-bottom: 0; }
        .section-banner .banner-container .banner-left h1 span {
          color: #FF8A00; }
      .section-banner .banner-container .banner-left h2 {
        font-family: "SF-Pro-Display-Semibold"; }
    .section-banner .banner-container .banner-right img {
      width: 50rem; }

.banner-usp {
  margin-top: -7rem;
  margin-bottom: 2rem; }
  .banner-usp .banner-usp-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(0deg, #0050F9 0%, #0A6FFF 100%);
    border: 2px solid white;
    border-radius: 1.2rem;
    height: 8rem;
    width: 100%;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box; }
    .banner-usp .banner-usp-wrapper .banner-usp-item {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white; }
      .banner-usp .banner-usp-wrapper .banner-usp-item h1 {
        font-family: "SF-Pro-Display-Heavy";
        margin-bottom: 0; }
      .banner-usp .banner-usp-wrapper .banner-usp-item p {
        font-family: "SF-Pro-Display-Light";
        margin-bottom: 0; }

@media screen and (min-width: 992px) and (max-width: 1279.98px) {
  .section-banner .banner-container .banner-right img {
    width: 100%; } }
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .section-banner .banner-container {
    grid-template-columns: 15rem 1fr; }
    .section-banner .banner-container .banner-left {
      padding-top: 5rem; }
      .section-banner .banner-container .banner-left .banner-text {
        margin-bottom: 1rem; }
    .section-banner .banner-container .banner-right img {
      width: 30rem; }

  .banner-usp .banner-usp-wrapper .banner-usp-item h1 {
    font-size: 2rem; }
  .banner-usp .banner-usp-wrapper .banner-usp-item p {
    font-size: 0.8rem; } }
@media screen and (max-width: 767.98px) {
  .section-banner .banner-container {
    display: block;
    grid-template-columns: initial; }
    .section-banner .banner-container .banner-left {
      padding-top: 2rem; }
      .section-banner .banner-container .banner-left .banner-text {
        margin-bottom: 1rem; }
      .section-banner .banner-container .banner-left h1 {
        font-size: 2rem; }
      .section-banner .banner-container .banner-left h2 {
        font-size: 1.5rem; }
    .section-banner .banner-container .banner-right img {
      width: 100%;
      height: auto; }

  .banner-usp .banner-usp-wrapper {
    grid-template-columns: initial;
    height: initial;
    background: initial;
    gap: 0.2rem; }
    .banner-usp .banner-usp-wrapper .banner-usp-item {
      background: linear-gradient(0deg, #0050F9 0%, #0A6FFF 100%);
      border-radius: 1.2rem;
      padding: 0.5rem 0; }
      .banner-usp .banner-usp-wrapper .banner-usp-item h1 {
        font-size: 2rem; }
      .banner-usp .banner-usp-wrapper .banner-usp-item p {
        font-size: 0.85rem; } }
.section-player {
  margin-top: 5rem; }
  .section-player h2 {
    font-family: "SF-Pro-Display-Semibold"; }
  .section-player .player-container {
    display: flex;
    flex-direction: row; }
    .section-player .player-container .player-left {
      flex: 50%; }
      .section-player .player-container .player-left img {
        width: 100%; }
    .section-player .player-container .player-right {
      flex: 50%;
      display: flex;
      overflow: hidden;
      user-select: none;
      height: 55rem;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), black 20%, black 80%, rgba(0, 0, 0, 0)); }
      .section-player .player-container .player-right .pop-up-container {
        display: flex;
        flex-direction: column;
        user-select: none;
        width: 100%;
        flex-shrink: 0;
        position: relative; }
        .section-player .player-container .player-right .pop-up-container .pop-up-bubble {
          box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
          max-width: 70%;
          width: 100%;
          padding: 1rem;
          border-radius: 1rem;
          margin-bottom: 2rem; }
          .section-player .player-container .player-right .pop-up-container .pop-up-bubble:nth-child(odd) {
            align-self: flex-start; }
          .section-player .player-container .player-right .pop-up-container .pop-up-bubble:nth-child(even) {
            align-self: flex-end; }
          .section-player .player-container .player-right .pop-up-container .pop-up-bubble .bubble-wrapper {
            display: flex;
            flex-direction: column; }
            .section-player .player-container .player-right .pop-up-container .pop-up-bubble .bubble-wrapper .bubble-details {
              display: flex;
              flex-direction: row;
              gap: 0.75rem;
              margin-bottom: 0.75rem; }
              .section-player .player-container .player-right .pop-up-container .pop-up-bubble .bubble-wrapper .bubble-details img {
                width: 3.5rem;
                height: 100%; }
              .section-player .player-container .player-right .pop-up-container .pop-up-bubble .bubble-wrapper .bubble-details h5 {
                font-family: "SF-Pro-Display-Semibold"; }
  @media (prefers-reduced-motion: reduce) {
    .section-player .pop-up-container {
      animation-play-state: paused; } }

.enable-scroll {
  animation: scroll 20s linear infinite; }

@media screen and (max-width: 767.98px) {
  .section-player .player-container {
    margin-top: 2rem; }
    .section-player .player-container .player-left {
      display: none; }
    .section-player .player-container .player-right {
      height: 35rem; }
      .section-player .player-container .player-right .pop-up-container .pop-up-bubble {
        max-width: 100%; }
        .section-player .player-container .player-right .pop-up-container .pop-up-bubble:nth-child(odd), .section-player .player-container .player-right .pop-up-container .pop-up-bubble:nth-child(even) {
          align-self: initial; } }
.section-game .carousel-container .arrow-container {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  margin-bottom: 2rem; }
  .section-game .carousel-container .arrow-container .arrow-btn {
    width: 2rem;
    height: 2rem;
    background-color: grey;
    border-radius: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none; }
.section-game .carousel-container .game-provider .game-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: black; }
  .section-game .carousel-container .game-provider .game-item:hover {
    text-decoration: none; }
.section-game .carousel-container .game-provider img {
  border-radius: 1rem;
  margin-bottom: 0.75rem;
  padding: 1rem;
  max-width: 100%; }
.section-game .carousel-container .game-provider h6 {
  text-align: center; }

@media screen and (max-width: 767.98px) {
  .section-game .title,
  .section-game .desc {
    text-align: center; }
  .section-game .carousel-container .arrow-container {
    display: none; } }
.section-register .register-container {
  position: relative; }
  .section-register .register-container img {
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    border-radius: 1rem; }
  .section-register .register-container .register-text {
    position: absolute;
    top: 6rem;
    left: 10%; }
    .section-register .register-container .register-text h2 {
      margin-bottom: 0.2rem;
      color: white; }
      .section-register .register-container .register-text h2 span {
        font-family: "SF-Pro-Display-Light"; }
    .section-register .register-container .register-text .margin {
      margin-bottom: 2rem; }

@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .section-register .register-container .register-text {
    top: 2rem;
    left: 5%; }
    .section-register .register-container .register-text h2 {
      font-size: 1.8rem; } }
@media screen and (max-width: 767.98px) {
  .section-register .register-container .register-text {
    top: 3.5rem;
    left: 5%; }
    .section-register .register-container .register-text h2 {
      font-size: 1.3rem; }
    .section-register .register-container .register-text .primary-btn {
      display: none; } }
@media screen and (max-width: 538.98px) {
  .section-register .register-container .register-text {
    top: 25%;
    left: 5%; }
    .section-register .register-container .register-text h2 {
      font-size: 1rem; }
    .section-register .register-container .register-text .primary-btn {
      display: none; } }
.section-timer {
  background-color: #EBF4FF;
  padding: 5rem 2rem;
  text-align: center; }
  .section-timer .title {
    margin-bottom: 2rem; }
  .section-timer .timer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 3rem; }
    .section-timer .timer-container .timer-item .timer-clock {
      background-color: white;
      border-radius: 0.75rem;
      font-size: 2.5rem;
      font-family: "SF-Pro-Display-Heavy";
      padding: 1rem;
      margin-bottom: 0.75rem; }
  .section-timer .timer-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }

@media screen and (max-width: 767.98px) {
  .section-timer .title {
    font-size: 2rem; } }
footer {
  background-color: #F5F5F7;
  padding: 3rem 0; }
  footer hr {
    border: 2px solid #E7E7E7;
    margin: 3rem 0; }
  footer p {
    margin-bottom: 2rem; }
  footer .footer-container {
    display: flex;
    justify-content: center;
    align-self: center;
    gap: 2rem; }
    footer .footer-container .footer-left {
      flex: 60%; }
    footer .footer-container .footer-right {
      flex: 40%; }
    footer .footer-container .cert-container {
      display: flex;
      align-items: center;
      gap: 1rem; }
      footer .footer-container .cert-container img {
        width: autos;
        height: 100%; }
    footer .footer-container .license-container, footer .footer-container .wallet-container {
      display: flex;
      gap: 1.5rem; }
      footer .footer-container .license-container .license-logo img, footer .footer-container .wallet-container .license-logo img {
        width: 6rem;
        height: auto; }
      footer .footer-container .license-container .license-text, footer .footer-container .wallet-container .license-text {
        color: #6E6E73; }
    footer .footer-container .wallet-container .divider {
      width: 2px;
      height: auto;
      background-color: #C6C6C6; }
    footer .footer-container .payment-gaming-container {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      gap: 1rem; }
      footer .footer-container .payment-gaming-container .item-container {
        display: flex;
        align-items: center;
        gap: 1rem; }

@media screen and (min-width: 992px) and (max-width: 1279.98px) {
  footer .footer-container .footer-left {
    flex: 50%; }
  footer .footer-container .footer-right {
    flex: 50%; } }
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  footer .footer-container {
    flex-direction: column; }
    footer .footer-container .license-container .license-logo img, footer .footer-container .wallet-container .license-logo img {
      width: 6rem;
      height: auto; } }
@media screen and (max-width: 767.98px) {
  footer .footer-container {
    flex-direction: column; }
    footer .footer-container .license-container .license-logo img, footer .footer-container .wallet-container .license-logo img {
      width: 6rem;
      height: auto; }
    footer .footer-container .license-container, footer .footer-container .wallet-container {
      flex-direction: column; }
    footer .footer-container .cert-container {
      flex-wrap: wrap; }
    footer .footer-container .wallet-container {
      flex-direction: initial;
      gap: 1rem; }
    footer .footer-container .payment-gaming-container {
      flex-wrap: wrap;
      row-gap: 2rem; }
      footer .footer-container .payment-gaming-container .item-container {
        gap: 0.5rem; } }
