@font-face {
  font-family: Burbank;
  src: url("../fonts/Burbank-Big-Condensed-Bold-Font.otf");
  font-weight: 700;
}
@font-face {
  font-family: Nunito;
  src: url("../fonts/Nunito-VariableFont_wght.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(to left, #024492, #0854a2);
}
body.loaderActive {
  overflow: hidden;
}

.social-media {
  display: flex;
  align-items: center;
  gap: 0.778vw;
}
.social-media a {
  display: flex;
  transition: scale 0.4s ease;
}
.social-media a img {
  height: 1.972vw;
}
.social-media a:hover {
  scale: 1.1;
}
@media screen and (max-width: 768px) {
  .social-media {
    display: flex;
    align-items: center;
    gap: 3vw;
  }
  .social-media a {
    display: flex;
    transition: scale 0.4s ease;
  }
  .social-media a img {
    height: 7vw;
  }
  .social-media a:hover {
    scale: 1.1;
  }
}

.buttons {
  display: flex;
  gap: 3.125vw;
  margin-bottom: 4vw;
}
.buttons a {
  display: flex;
  align-items: center;
  color: #FFF;
  font-family: Burbank;
  text-decoration: none;
  font-size: 1.333vw;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07vw;
  border-radius: 1.267vw;
  border: 0.4vw solid #2e68ac;
  outline: 0.5vw solid #2b76cc;
  background: linear-gradient(#5aa4fa 50%, #4b90e1 50%);
  overflow: hidden;
  padding: 0.45vw 0;
}
.buttons a span {
  padding: 0.4vw 1.319vw;
  background-color: #5aa4fa;
  border-bottom-left-radius: 1.333vw 0.667vw;
  border-bottom-right-radius: 1.333vw 0.667vw;
}
.buttons a:hover {
  scale: 1.05;
}
.buttons a.gold {
  border: 0.4vw solid #f9ae36;
  outline: 0.5vw solid #ffdc72;
  background: linear-gradient(#f7a32a 50%, #eb9e2a 50%);
}
.buttons a.gold span {
  background: #f7a32a;
}
@media screen and (max-width: 768px) {
  .buttons {
    display: flex;
    gap: 5vw;
    margin-top: 2vw;
    margin-bottom: 4vw;
  }
  .buttons a {
    display: flex;
    align-items: center;
    color: #FFF;
    font-family: Burbank;
    text-decoration: none;
    font-size: 6vw;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07vw;
    border-radius: 1.267vw;
    border: 0.4vw solid #2e68ac;
    outline: 0.5vw solid #2b76cc;
    background: linear-gradient(#5aa4fa 50%, #4b90e1 50%);
    overflow: hidden;
    padding: 1vw 0;
  }
  .buttons a span {
    padding: 0.4vw 3vw;
    background-color: #5aa4fa;
    border-bottom-left-radius: 1.333vw 0.667vw;
    border-bottom-right-radius: 1.333vw 0.667vw;
  }
  .buttons a:hover {
    scale: 1.05;
  }
  .buttons a.gold {
    border: 0.4vw solid #f9ae36;
    outline: 0.5vw solid #ffdc72;
    background: linear-gradient(#f7a32a 50%, #eb9e2a 50%);
  }
  .buttons a.gold span {
    background: #f7a32a;
  }
}

header {
  height: 4.583vw;
  background-color: #000000;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 3.47vw;
}
header nav {
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 10;
}
header nav ul {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 3.056vw;
  list-style: none;
}
header nav ul a {
  font-family: Burbank;
  font-size: 1.25vw;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1vw;
}
header nav ul a:hover {
  color: #5aa4fa;
}
header nav ul button {
  display: none;
  border: none;
  font-size: 1.4rem;
  color: white;
  background-color: transparent;
}
header .menu_btn {
  display: none;
  border: 0;
  background-color: transparent;
  color: white;
  cursor: pointer;
}
header .menu_btn svg {
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 768px) {
  header {
    height: 12vw;
    padding: 0 0.5rem;
    position: relative;
  }
  header nav {
    width: 100%;
    height: 0;
    top: 0;
  }
  header nav ul {
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0b5697;
    right: 0;
    top: 0;
    height: 100vh;
    width: 60%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    z-index: 10;
    gap: 1rem;
  }
  header nav ul li a {
    font-size: 6vw;
  }
  header nav ul button {
    display: flex;
    cursor: pointer;
  }
  header .menu_btn {
    display: flex;
    cursor: pointer;
  }
  header .header-buttons {
    gap: 0.5rem;
  }
  header .header-buttons a {
    text-decoration: none;
    font-size: 2vw;
    padding: 0.2rem 0.5rem;
  }
}

.hero {
  height: calc(100vh - 4.583vw);
  /* background: url('../img/hero.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero .logo {
  width: 33vw;
}
.hero .title {
  color: #FFF;
  font-family: Burbank;
  font-size: 2.667vw;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 0 15px black, 0 0 15px black, 0 0 15px black;
}
.hero p {
  color: white;
  font-weight: 400;
  font-size: 1.389vw;
  font-family: Nunito;
  text-transform: uppercase;
  padding: 2vw 0;
}
.hero video, .hero #fallback-image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: -2;
  filter: brightness(0.3);
}
.hero #fallback-image {
  display: none;
  filter: brightness(0.8);
}
.hero .filter-background {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  background: linear-gradient(to bottom, #000000 0%, transparent 10%, transparent 90%, #08090b 100%);
}
@media screen and (max-width: 768px) {
  .hero {
    height: 95vh;
    /* background: url('../img/hero.jpg');
           background-position: center;
           background-repeat: no-repeat;
           background-size: cover;
    */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero .logo {
    width: 70vw;
  }
  .hero .title {
    color: #FFF;
    font-family: Burbank;
    font-size: 8vw;
    text-align: center;
    text-wrap: balance;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 15px black, 0 0 15px black, 0 0 15px black;
  }
  .hero p {
    color: white;
    font-weight: 400;
    font-size: 3.5vw;
    font-family: Nunito;
    text-transform: uppercase;
    padding: 2vw 0;
  }
}

.betingame {
  display: flex;
  justify-content: space-between;
  padding-top: 11vw;
  padding-bottom: 9.271vw;
  padding-left: 6.528vw;
  padding-right: 6.09vw;
  gap: 6.493vw;
  height: 48.9814vw;
  background: url("../img/bg-1.jpg");
  background-position: top center, center;
  background-size: cover;
}
.betingame .carrousel-container {
  width: 46.167vw;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
.betingame .carrousel-container button {
  position: absolute;
  top: 50%;
  background: none;
  border: none;
  width: 2.854vw;
  cursor: pointer;
}
.betingame .carrousel-container #prevBtn {
  left: 0;
  translate: -150% -50%;
}
.betingame .carrousel-container #nextBtn {
  right: 0;
  translate: 150% -50%;
}
.betingame .text {
  width: 34.722vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.betingame .text .title {
  color: white;
  padding: 1.111vw 2.153vw;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1.4vw;
  text-align: center;
}
.betingame .text .title h1 {
  font-family: Burbank;
  font-size: 3.056vw;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.betingame .text .title span {
  font-family: Burbank;
  font-size: 1.956vw;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.betingame .text .paragraph {
  margin-top: 1.319vw;
  margin-bottom: 1.4vw;
  padding: 2.292vw 1.25vw;
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1.4vw;
  display: flex;
  flex-direction: column;
  gap: 1.389vw;
}
.betingame .text .paragraph p {
  color: white;
  font-weight: 600;
  font-size: 1.111vw;
  font-family: Nunito;
}
@media screen and (max-width: 768px) {
  .betingame {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    padding: 10vw 1.5rem;
    gap: 6.493vw;
    height: auto;
    background: url("../img/bg-1.jpg");
    background-position: top center, center;
    background-size: cover;
  }
  .betingame .carrousel-container {
    width: 90%;
    position: relative;
  }
  .betingame .carrousel-container img {
    width: 100%;
  }
  .betingame .carrousel-container button {
    position: absolute;
    top: 50%;
    background: none;
    border: none;
    width: 5vw;
    cursor: pointer;
  }
  .betingame .carrousel-container #left {
    left: 0;
    translate: -150% -50%;
  }
  .betingame .carrousel-container #right {
    right: 0;
    translate: 150% -50%;
  }
  .betingame .text {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .betingame .text .title {
    color: white;
    padding: 2vw 4vw;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1.4vw;
    text-align: center;
    margin-bottom: 2vw;
  }
  .betingame .text .title h1 {
    font-family: Burbank;
    font-size: 8vw;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
  }
  .betingame .text .title span {
    font-family: Burbank;
    font-size: 3vw;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
  }
  .betingame .text .paragraph {
    margin-top: 1.319vw;
    margin-bottom: 5vw;
    padding: 4vw 2vw;
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1.4vw;
    display: flex;
    flex-direction: column;
    gap: 1.389vw;
  }
  .betingame .text .paragraph p {
    color: white;
    font-weight: 600;
    font-size: 3vw;
    font-family: Nunito;
  }
}

.social-media-section {
  display: flex;
  justify-content: center;
  padding: 0.486vw 0;
}
.social-media-section .social-media {
  opacity: 0.4;
  gap: 4.861vw;
}
.social-media-section .social-media img {
  height: 3.472vw;
}
.social-media-section .social-media img.twitter {
  height: 3.3vw;
}
.social-media-section .social-media img.gitbook {
  height: 3vw;
}
@media screen and (max-width: 768px) {
  .social-media-section {
    display: flex;
    justify-content: center;
    padding: 2vw 0;
  }
  .social-media-section .social-media {
    opacity: 0.4;
    gap: 6vw;
  }
  .social-media-section .social-media img {
    height: 7vw;
  }
  .social-media-section .social-media img.twitter {
    height: 6.5vw;
  }
  .social-media-section .social-media img.gitbook {
    height: 6vw;
  }
}

.roadmap {
  height: 50vw;
  background: url("../img/bg-2.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4.861vw 1rem;
  gap: 2.222vw;
}
.roadmap h1 {
  font-family: Burbank;
  font-size: 6.111vw;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
}
.roadmap .phases {
  display: flex;
  gap: 5.069vw;
}
.roadmap .phases .phase {
  width: 19.861vw;
  padding: 1vw 0;
  padding-top: 2.222vw;
  border: 0.4vw solid #2e68ac;
  outline: 0.5vw solid #2b76cc;
  background: linear-gradient(#5aa4fa 50%, #4b90e1 50%);
  overflow: hidden;
  border-radius: 1.5vw;
}
.roadmap .phases .phase h3 {
  text-align: center;
  font-family: Burbank;
  font-size: 2.444vw;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
}
.roadmap .phases .phase ul {
  margin-top: 0.5vw;
  list-style: none;
  padding: 1.222vw 1.875vw;
  background-color: #5aa4fa;
  border-bottom-left-radius: 1.333vw 0.667vw;
  border-bottom-right-radius: 1.333vw 0.667vw;
}
.roadmap .phases .phase ul li {
  color: white;
  font-weight: 700;
  font-size: 1.181vw;
  font-family: Nunito;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .roadmap {
    height: auto;
    background: url("../img/bg-2-mobile.jpg");
    background-position: bottom;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4.861vw 1rem;
    gap: 2.222vw;
  }
  .roadmap h1 {
    font-family: Burbank;
    font-size: 8vw;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
  }
  .roadmap .phases {
    margin-top: 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5.069vw;
    width: 100%;
  }
  .roadmap .phases .phase {
    width: auto;
    padding: 1vw 0;
    padding-top: 2.222vw;
    border: 0.4vw solid #2e68ac;
    outline: 0.5vw solid #2b76cc;
    background: linear-gradient(#5aa4fa 50%, #4b90e1 50%);
    overflow: hidden;
    border-radius: 1.5vw;
  }
  .roadmap .phases .phase h3 {
    text-align: center;
    font-family: Burbank;
    font-size: 5vw;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
  }
  .roadmap .phases .phase ul {
    margin-top: 0.5vw;
    list-style: none;
    padding: 1.222vw 1.875vw;
    background-color: #5aa4fa;
    border-bottom-left-radius: 1.333vw 0.667vw;
    border-bottom-right-radius: 1.333vw 0.667vw;
  }
  .roadmap .phases .phase ul li {
    color: white;
    font-weight: 700;
    font-size: 3vw;
    font-family: Nunito;
    line-height: 1.3;
  }
}

.beta {
  padding: 1.389vw 0;
  display: flex;
  justify-content: center;
  gap: 6.944vw;
}
.beta span {
  text-align: center;
  font-family: Burbank;
  font-size: 2.667vw;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 0.3vw 0.4vw black, 0 0.3vw 0.4vw black;
}
@media screen and (max-width: 768px) {
  .beta {
    padding: 3vw 0;
    display: flex;
    justify-content: center;
    gap: 6.944vw;
  }
  .beta span {
    text-align: center;
    font-family: Burbank;
    font-size: 4vw;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 0.3vw 0.4vw black, 0 0.3vw 0.4vw black;
  }
}

.footer {
  background: #083e7b url("../img/bg-3.png");
  height: 54vw;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 9vw;
}
.footer .logo {
  width: 25.347vw;
}
.footer h1 {
  margin-top: 3.472vw;
  text-align: center;
  font-family: Burbank;
  font-size: 4.444vw;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
}
.footer .social-media {
  margin-top: 0.625vw;
  gap: 1.736vw;
  opacity: 0.7;
}
.footer .social-media img {
  height: 4.389vw;
}
.footer footer {
  display: flex;
  margin-top: 2vw;
}
.footer footer a {
  color: rgba(255, 255, 255, 0.481);
  text-decoration: none;
  font-weight: 400;
  font-size: 1.181vw;
  font-family: Nunito;
  line-height: 1.8;
  padding: 0 1.181vw;
}
.footer footer a:first-child {
  border-right: 1px solid #027fec;
}
@media screen and (max-width: 768px) {
  .footer {
    background: #083e7b url("../img/bg-3.png");
    height: auto;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 5vw;
  }
  .footer .logo {
    width: 30vw;
  }
  .footer h1 {
    margin-top: 3.472vw;
    text-align: center;
    font-family: Burbank;
    font-size: 10vw;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    margin-bottom: 3vw;
  }
  .footer .social-media {
    margin-top: 0.625vw;
    gap: 4vw;
    opacity: 0.7;
  }
  .footer .social-media img {
    height: 6vw;
  }
  .footer footer {
    display: flex;
    margin-top: 2vw;
  }
  .footer footer a {
    color: rgba(255, 255, 255, 0.481);
    text-decoration: none;
    font-weight: 400;
    font-size: 2vw;
    font-family: Nunito;
    line-height: 1.8;
    padding: 0 1.181vw;
  }
  .footer footer a:first-child {
    border-right: 1px solid #027fec;
  }
}

#slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: auto;
  border: 4px solid #f2bd1d;
  border-radius: 2.083vw;
  overflow: hidden;
}
#slider-container #slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
#slider-container .slide {
  min-width: 100%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
}
#slider-container .slide img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #slider-container {
    border: 2px solid #f2bd1d;
    border-radius: 1rem;
    overflow: hidden;
  }
}

/* loader */
.main-fader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(0, 0, 0);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-fader .loader svg {
  height: 300px;
  display: block;
  margin: 0 auto;
}
.main-fader .loader svg path {
  animation-duration: 1s;
  animation-name: pulse;
  animation-iteration-count: infinite;
  color: #26a380;
}
.main-fader .loader svg path.path-7 {
  animation-delay: -1s;
}
.main-fader .loader svg path.path-6 {
  animation-delay: -0.875s;
}
.main-fader .loader svg path.path-5 {
  animation-delay: -0.75s;
}
.main-fader .loader svg path.path-4 {
  animation-delay: -0.625s;
}
.main-fader .loader svg path.path-3 {
  animation-delay: -0.5s;
}
.main-fader .loader svg path.path-2 {
  animation-delay: -0.375s;
}
.main-fader .loader svg path.path-1 {
  animation-delay: -0.25s;
}
.main-fader .loader svg path.path-0 {
  animation-delay: -0.125s;
}

@keyframes pulse {
  0% {
    opacity: 0.1;
  }
  30% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.1;
  }
}/*# sourceMappingURL=index.css.map */