@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --bs-primary-rgb: 0, 42, 99;
  /*--bs-success-rgb: 0,141,118;*/
  --bs-dark-rgb: 0, 0, 0;
  --bs-warning-rgb: 232, 205, 25;
}
body {
  font-family: "Poppins", sans-serif;
  background: #cea21a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100%;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  overflow-x: hidden;
}
header {
  background: rgba(0, 0, 0, 0.5);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  top: 0;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  z-index: 100;
  position: fixed;
}
.header-top {
  background: rgb(0 7 44);
  background: linear-gradient(183deg, rgb(0 7 44) 0%, rgb(1 13 73) 100%);
}
.home {
  background: #000;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-2 {
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.game {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /*min-height: 100vh;*/
}
.items {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /*min-height: 100vh;*/
}
.logo {
  width: 50px;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.container {
  z-index: 1;
  position: relative;
}
.skew {
  transform: skew(-5deg, -30deg);
}
.title {
  color: #fff;
  font-size: 5rem;
  font-weight: bold;
}
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  flex-direction: row;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  justify-content: flex-start;
  width: 100%;
  padding: 5px;
}
.navbar-light .navbar-nav .nav-item {
  background-size: 100% 100%;
  padding: 5px;
  /*border: 2px solid #000;*/
}
.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: #fff;
  padding: 5px 10px;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: #ffc53f;
}
@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }
  header .navbar-light:before {
    display: none;
  }
}
.rounded-10 {
  border-radius: 10px;
}
.rotate {
  animation: rotate 1.5s infinite;
  animation-direction: alternate;
}
@keyframes rotate {
  from {
    transform: perspective(600px) translate3d(0px, -20px, 0px);
  }
  to {
    transform: perspective(600px) translate3d(0px, 0px, 0px);
  }
}
.roadmap {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.roadmap li {
  margin-bottom: 10px;
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.roadmap li:last-child {
  border: none;
}
.roadmap li:before {
  content: "";
  background-position: center;
  background-size: 20px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: relative;
  border-radius: 3px;
  border: 1px solid #fff;
  padding: 5px;
  left: 0;
  margin-right: 20px;
}
.roadmap li.active:before {
  border: 1px solid #2196f3;
  background-image: url(../img/check.svg);
  background-color: #2196f3;
}
.roadmap .img img {
  z-index: 1;
}
.roadmap .img:after {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #2196f3;
  display: block;
  position: absolute;
  left: 250px;
  top: 50px;
  z-index: -1;
}
.roadmap:last-child .img:after {
  display: none;
}
.btn-1 {
  background: #a12a02;
  padding: 10px 30px;
  font-weight: bold;
  color: #fff;
  font-size: 20px;
  border: 2px solid #d95a1c;
  border-radius: 0;
}
.bg-1 {
  background-image: linear-gradient(to right, #ff8008 0%, #ffc837 51%, #ff8008 100%);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-3 {
  background: url(../img/data/bg-3.png);
  background-size: 100% 100%;
  background-position: top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.bg-4 {
  background: url(../img/data/bg-4.png);
  background-size: 100% 100%;
  background-position: top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.skew {
  transform: skew(0deg, -7deg);
}

.btn-grad {
  background-image: linear-gradient(to right, #ff8008 0%, #ffc837 51%, #ff8008 100%);
}
.btn-grad {
  margin: 10px;
  padding: 10px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 3px;
  font-weight: bold;
}

.btn-grad:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff !important;
  background-color: #000;
}
.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  opacity: 1;
}
