:root {
  --orange: #e87006;
  --pink: #e12a62;

  --text-color: #ffffff;
  --menu-color: #da0063;
  --title-color: #d8e9fe;

  --text-dark: #373737;

  --menu-size: 0.8rem;

  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
}

/* Custom Font */
@font-face {
  font-family: "Gotham Medium";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/gotham-medium.OTF") format("truetype");
}

@font-face {
  font-family: "Gotham Ultra";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/gotham-ultra.OTF") format("truetype");
}

@font-face {
  font-family: "Gotham Bold";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/gotham-bold.OTF") format("truetype");
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;

  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: var(--text-color);

  counter-reset: roadmapcounter;
}

::selection {
  background: var(--pink);
  color: #282828;
}

/* ::-webkit-scrollbar {
  width: 0;
  height: 0;
} */

*,
:after,
:before {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: opacity 0.15s ease-in-out;
}

a:hover {
  opacity: 0.8;
}

.hero__header {
  z-index: 100;
  /* background: linear-gradient(180deg, #181b3a, transparent); */
}

.text-dark {
  color: var(--text-dark);
}

@media (min-width: 768px) {
  section#home {
    padding-top: 6.5rem;
  }
}

@media (min-width: 1536px) {
  /* section#home {
    padding-top: 5rem;
  } */
}

/* Carousel */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.img-slider {
  position: relative;
  width: 100vw;
  /* max-width: 1000px; */
  height: 400px;
}
.img-slider .slider-container {
  position: absolute;
  width: 300%;
  top: 0;
  left: 0;
  overflow: hidden;
  animation: slider 26s infinite;
}
.img-slider .slider-container .slide {
  position: relative;
  width: 33.33333333%;
  height: 100%;
  float: left;
  overflow: hidden;
}
.img-slider .slider-container .slide img {
  display: block;
  width: 100%;
  height: 100%;
}
@keyframes slider {
  0%,
  25%,
  100% {
    left: 0;
  }

  30%,
  55% {
    left: -100%;
  }

  60%,
  85% {
    left: -200%;
  }
}

/* end test slider */

.hero__header__brand a {
  display: inline-block;
}

.hero__header__brand a img {
  width: 145px;
  height: auto;
}

.hero__nav ul li {
  margin: auto 0.5rem;
  margin-left: 0;
  position: relative;

  display: inline-flex;
  align-items: center;
}

.hero__nav ul li:after {
  content: "";
  background: var(--menu-color);
  height: 18px;
  width: 2px;
  position: relative;
  display: inline-block;
  margin-left: 0.8rem;
}

.hero__nav ul li:last-child:after {
  display: none;
}

.hero__nav ul li a {
  display: inline-block;
}

.hero__nav ul li a span {
  color: var(--menu-color);
  font-weight: var(--font-bold);
  transition: color 0.3s ease;
}

.hero__nav ul li a:hover span,
.hero__nav ul li a.active span {
  color: #fff;
}

/* media query for device smaller than 1566 width */
@media screen and (max-width: 1566px) {
  /* TODO: Custom styles */
}

/* media query for device smaller than 1000 width */
@media screen and (max-width: 1000px) {
}

/* media query for device smaller than 769 width */
@media screen and (max-width: 769px) {
}

.mobile-menu-button {
  position: absolute;
  right: 1rem;
  top: 0;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background-color: var(--pink);
}

.mobile-menu-button span {
  background-color: #000;
  height: 2px;
  width: 50%;
  display: block;
  transition: transform 0.2s ease-in-out;
}

body.menu--open .mobile-menu-button span:nth-child(1) {
  transform: rotateZ(45deg);
}

.mobile-menu-button span:nth-child(2) {
  margin-top: 3px;
  margin-bottom: 3px;
}

body.menu--open .mobile-menu-button span:nth-child(2) {
  display: none;
}

body.menu--open .mobile-menu-button span:nth-child(3) {
  transform: rotateZ(-45deg);
}

.grid__card {
  cursor: pointer;
}

.grid__card .card__logo-wrapper {
  opacity: 0;
  pointer-events: none;
  background-color: #d4285c;
  transition: opacity 0.2s ease;
}

.grid__card:hover .card__logo-wrapper {
  opacity: 1;
  pointer-events: all;
}

.grid__card .card__logo-wrapper a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid__card .card__logo-wrapper a img {
  width: auto;
}

.slanted-img-wrapper.__top {
  vertical-align: top;
  top: -2px;
  position: relative;
  display: inline-block;
  width: 100%;
}

footer .slanted-img-wrapper {
  vertical-align: bottom;
  bottom: -1px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  background: transparent;

  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #444;
}

.swiper-slide img {
  display: block;
  width: auto;
  /* height: 65px; */
  object-fit: cover;
}

.games-swiper .__bg {
  background-color: #444;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.games-swiper .__content {
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.games-swiper .__navi-btn-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.game-banner .swiper-button-next img,
.game-banner .swiper-button-prev img {
  width: 15px;
}

.game-banner .swiper-button-next:after {
  display: none;
}

.game-banner .swiper-button-prev:after {
  display: none;
}

.swiper-pagination-bullet {
  opacity: 1;
  background-color: white;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #c23e57;
}

.hero .left-textbox {
  top: 60%;
  left: 0;
  position: absolute;
  transform-origin: center;
  transform: translate(0%, 60%);
}

.hero .left-textbox ol li {
  margin-bottom: 0.5rem;
  display: flex;
  position: relative;
  align-items: center;
}

.hero .left-textbox ol li:before {
  content: "";
  width: 7px;
  height: 7px;
  background: #fff;
  display: inline-block;
  border-radius: 100%;
  margin-right: 0.3rem;
}

.hero .left-textbox ol li span {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.hero .right-textbox {
  position: absolute;
  top: 70%;
  right: 0;
  transform: translate(0, -80%);
  transform-origin: center;
  display: flex;
  justify-content: flex-end;
  z-index: 1;
}

.hero .right-textbox h1 {
  line-height: 1.2;
  font-weight: 600;
  font-size: 2.5rem;
  text-transform: uppercase;
  display: inline-block;
  width: 450px;
  max-width: 100%;
  text-align: right;
}

.hero .right-textbox h1 span {
  color: #e12a62;
}

.__home-twitter-content {
  width: 100%;
  max-width: 336px;
}

.home-content {
  /* column-count: 2;
  column-gap: 4rem; */
}

.__twitter-widget-wrapper {
  border-top: 6px solid #e12a62;
  border-left: 6px solid #e12a62;
  padding-top: 1.5rem;
  padding-top: 2rem;
  padding-left: 2rem;
  border-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  height: 500px;
  overflow-y: auto;
}

.__twitter-widget-wrapper::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.africa-symbol {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  transform: translateY(50%);
}

.text-pink-light {
  color: #c17e93;
}

.footer-links {
  display: none;
}

.grid__card:hover .card__logo-wrapper a {
  will-change: auto;
}

.grid__card:hover .card__logo-wrapper a,
.grid__card:hover .card__logo-wrapper a:hover {
  opacity: 1;
}

.contact-section-min-h {
  min-height: 300px;
}

.slider-mini-banner {
  position: relative;
}

.bg-black.w-full.relative.slider-mini-banner:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0px 0px 16px 8px rgba(0, 0, 0, 0.63);
}

.slider-mini-banner .tile-start {
  width: 40%;
  padding-left: 4rem;
  padding-right: 2rem;
  background-color: #181818;
}

.slider-mini-banner .tile-start {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 4px solid #e02a61;
}

.slider-mini-banner .tile-end {
  flex: 1;
}

.slider-mini-banner .tile-end img {
  height: 100%;
  width: auto;
}

/* responsive (phone + tablet )*/
@media (max-width: 1530px) {
  .home-map {
    width: 84%;
    margin: 0 auto;
  }

  .hero .left-textbox ol li span {
    font-size: 1.5rem;
    line-height: 1rem;
  }

  .hero .right-textbox {
    transform: translate(0, -60%);
  }

  .hero .left-textbox {
    left: 1rem;
  }

  .hero .right-textbox {
    right: 1rem;
  }

  .hero .right-textbox h1 {
    width: 340px;
    font-size: 2.2rem;
  }
}

/* responsive (phone + tablet )*/
@media (max-width: 1095px) {
  .slider-mini-banner .tile-start {
    width: auto;
  }

  .home-content-container {
    display: block;
  }

  .__home-twitter-content {
    width: 100%;
    max-width: 100%;
  }

  .hero .left-textbox ol li {
    margin-bottom: 0.1rem;
    line-height: 1;
  }

  .hero .left-textbox ol li:before {
    width: 4px;
    height: 4px;
  }

  .hero .left-textbox ol li span {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .hero .right-textbox h1 {
    width: 300px;
    font-size: 1.7rem;
  }

  .hero__nav ul li {
    margin-left: auto;
    display: inline-block;
  }

  .slanted-img-wrapper {
    display: none;
  }

  .hero__nav ul li:after {
    display: none;
  }

  .mobile-menu-button {
    display: flex;
  }

  .hero__header {
    position: relative;
  }

  section#home {
    padding-top: 0;
  }

  .games-swiper .__content {
    min-height: 450px;
    align-items: flex-end;
  }

  .hero__nav {
    width: 100%;
    min-height: 100vh;

    top: 0;
    left: 0;
    position: fixed;
    background: rgb(15, 18, 37, 0.79);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
  }

  .hero__nav ul {
    flex-direction: column;
    justify-content: center;
  }

  .hero__nav ul li {
    margin: 0.5rem auto;
  }

  .hero__nav ul li a span {
    font-size: 1.2rem;
  }

  body.menu--open .hero__nav {
    opacity: 1;
    pointer-events: all;
  }

  .home-content {
    /* column-count: 2;
    column-gap: 1rem; */
  }
}

.hide-on-lg {
  display: none;
}
/* Some comment */
.hide-on-sm {
  display: block;
}

@media (max-width: 960px) {
  header .container {
    justify-content: start;
    padding-left: 1rem;
  }

  .hide-on-lg {
    display: block;
  }

  .hide-on-sm {
    display: none;
  }

  .hero .right-textbox {
    position: static;
    transform: none;
    width: 100%;
    text-align: left;
    justify-content: center;

    padding: 0;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }
  .hero .right-textbox h1 {
    width: 100%;
    text-align: center;
  }

  .home-map {
    width: 100%;
  }

  .hero .left-textbox {
    position: static;
    text-align: center;
    transform: none;
    width: 100%;
    padding-left: 0;
    margin-top: 1rem;
  }

  .hero .left-textbox ol li {
    margin-bottom: 0;
    line-height: 1;
    margin-bottom: 1rem;
    text-align: center;
    justify-content: center;
  }

  .hero .left-textbox ol li:before {
    width: 2px;
    height: 2px;
    display: none;
  }

  .hero .left-textbox ol li span {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }

  .home-content {
    /* column-count: 1; */
  }

  .__home-twitter-content {
    width: 100%;
    max-width: 100%;
  }

  .__twitter-widget-wrapper {
    border-top-width: 2px;
    border-left-width: 2px;
    padding-top: 1rem;
    padding-left: 1rem;
  }
}

/* very small devices; unrealistics */
@media (max-width: 450px) {
  .tile-end {
    display: none;
  }
  .hero .right-textbox h1 {
    font-size: 1.7rem;
  }
}

.swiper-slide {
  flex-direction: column;
}

.swiper-slide span {
  color: #72778e;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
  text-align: center;
}

@media (min-width: 1096px) {
  .hero__nav.md\:block {
    display: block;
  }
  .player-benefit {
    min-height: 150vh;
  }
}

/* Overrides */

.games-page header.hero__header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.651), transparent);
}

.games-page header.hero__header {
}

.hero__nav ul li.hidden {
  display: none;
}

.font-g-medium {
  font-family: "Gotham Medium";
}

.font-g-ultra {
  font-family: "Gotham Ultra";
}
