/*======================
   01. Google fonts
========================*/
@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");
@font-face {
  font-family: "Wargate";
  src: url("/webfonts/landingpages/3/WargateNormal-Regular.eot");
  src: url("/webfonts/landingpages/3/WargateNormal-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("/webfonts/landingpages/3/WargateNormal-Regular.woff2") format("woff2"),
    url("/webfonts/landingpages/3/WargateNormal-Regular.woff") format("woff"),
    url("/webfonts/landingpages/3/WargateNormal-Regular.ttf") format("truetype"),
    url("/webfonts/landingpages/3/WargateNormal-Regular.svg#WargateNormal-Regular")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.map_iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-bottom: 3px solid #000;
}

.map_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

:root {
  --black: #000200;
  --yellow: #fde23c;
}
/*======================
    Basic css
========================*/
html {
  font-size: 62.5%;
}
a,
button,
img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.3;
  font-family: "Poppins", sans-serif;
  background-color: #060808;
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
}

ol,
ul {
  list-style: none;
}

a:hover {
  text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

/* page loader  */
#preloader {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.loader3 {
  width: 6rem;
  height: 6rem;
  display: inline-block;
  padding: 0rem;
  text-align: left;
}

.loader3 span {
  position: absolute;
  display: inline-block;
  width: 6rem;
  height: 6rem;
  border-radius: 100%;
  background: var(--yellow);
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
  cursor: pointer;
  display: none;
  z-index: 999;
  width: 5rem;
  margin-left: auto;
}
.hamburger-menu span {
  background: #fff;
  width: 100%;
  height: 0.3rem;
  display: block;
  margin: 1.5rem 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
}
.hamburger-menu .line-bottom {
  width: 50%;
  margin-left: auto;
}
.hamburger-menu .line-top.current {
  -webkit-transform: translateY(0.82rem) rotate(135deg);
  -ms-transform: translateY(0.82rem) rotate(135deg);
  transform: translateY(0.82rem) rotate(135deg);
}
.hamburger-menu .line-bottom.current {
  -webkit-transform: translateY(-0.92rem) rotate(-135deg);
  -ms-transform: translateY(-0.92rem) rotate(-135deg);
  transform: translateY(-0.92rem) rotate(-135deg);
  width: 100%;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1024;
  width: 100%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 2rem 0;
  background-color: rgba(0, 0, 0, 0.5);
}
header.sticky {
  padding: 1rem 0;
  background-color: #000;
}
header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.logo {
  display: block;
  width: 28rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10rem;
  margin-bottom: 8.5rem;
}

.menu_wrap {
  position: fixed;
  top: 10rem;
  left: 4rem;
  z-index: 1000;
  color: #FFF;
}
#menu li a {
  color: rgba(255, 255, 255, 0.25);
  font-size: 1.8rem;
  text-transform: uppercase;
  position: relative;
  padding-left: 4rem;
  font-weight: 700;
  margin-top: 2.2rem;
  display: inline-block;
}
#menu li a::before {
  position: absolute;
  content: "";
  left: 0.6rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  outline: 0.1rem solid #FFF;
  outline-offset: 0.5rem;
}
#menu li a.active::before {
  background-color: #FFF;
}
#menu li a.active,
#menu li a:hover {
  color: rgba(255, 255, 255, 1);
}
.social_icon {
  display: inline-flex;
  align-items: center;
  column-gap: 2.5rem;
}
.social_icon a {
  color: var(--black);
  font-size: 2.8rem;
}
.social_icon a:hover {
  color: var(--yellow);
}
.menu_wrap.sticky .social_icon a {
  color: #fff;
}
.menu_wrap.sticky #menu li a::before {
  outline: 0.1rem solid #fff;
}
.menu_wrap.sticky #menu li a.active::before {
  background-color: #fff;
}
.menu_wrap.sticky #menu li a {
  color: rgba(255, 255, 255, 0.25);
}
.menu_wrap.sticky #menu li a.active,
.menu_wrap.sticky #menu li a:hover {
  color: rgba(255, 255, 255, 1);
}
.left_gap {
  padding-left: 35rem;
}
.home_area {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-bottom: 87rem;
}
.home_area .container {
  position: relative;
  z-index: 2;
}
.top_box {
  display: inline-block;
  color: #fff;
  animation: pulse 1s linear infinite;
}
.top_box_inner {
  text-transform: uppercase;
  padding: 2rem 12rem 1rem;
  background: linear-gradient(
    90deg,
    rgba(17, 17, 17, 1) 0%,
    rgba(43, 43, 43, 1) 75%,
    rgba(43, 43, 43, 1) 100%
  );
  clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
  display: inline-block;
}
.top_box_inner h5 {
  font-size: 4.1rem;
  font-family: "Wargate";
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
}
.top_box_inner p {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.top_box:hover {
  color: #fde23c;
}
@keyframes pulse {
  0%,
  100% {
    filter: drop-shadow(0 0rem 2rem rgba(253, 226, 60, 0.25));
  }
  50% {
    filter: drop-shadow(0 1.5rem 2rem rgba(253, 226, 60, 1));
  }
}
.home_area h1 {
  font-family: "Wargate";
  font-weight: 400;
  text-transform: uppercase;
  font-size: 7.5rem;
  margin-bottom: 2rem;
  line-height: 1.1;
  text-shadow: 2px 3px black;
}
.home_area .container > p {
  max-width: 55rem;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 15px black;
}
.register_btn {
  display: inline-block;
  font-family: "Wargate";
  font-weight: 400;
  text-transform: uppercase;
  font-size: 4.5rem;
  color: #fff;
  padding-bottom: 4.2rem;
  position: relative;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px black;
}
.register_btn::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: 6rem;
  width: 60rem;
  background-image: url(/assets/landingpages/3/line1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.register_btn:hover {
  color: var(--yellow);
}
.register_btn:hover::before {
  background-image: url(/assets/landingpages/3/line2.png);
}
.link {
  display: inline-flex;
  column-gap: 0.4rem;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--yellow) !important;
  position: relative;
}
.link::before,
.link::after {
  content: "";
  width: 14rem;
  height: 2.8rem;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
}
.link::before {
  background-image: url(/assets/landingpages/3/link_left.svg);
}
.link::after {
  background-image: url(/assets/landingpages/3/link_right.svg);
}
.link:hover::before,
.link:hover::after {
  animation: link_pulse 1s linear infinite;
}
@keyframes link_pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.15;
  }
}

/*feature area*/
.game_feature {
  margin-top: -37rem;
  position: relative;
  z-index: 2;
  padding-bottom: 10rem;
}
.feature_content {
  max-width: 76rem;
  font-size: 2.5rem;
}
.feature_content h2 {
  font-size: 6rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 2.5rem;
}
.feature_content p {
  margin-top: 2.5rem;
}
.map {
  width: 100%;
  margin-top: 25rem;
}
.text_img {
  position: absolute;
  right: -5rem;
  top: 7rem;
  z-index: -1;
  width: 104rem;
}
.slider {
  padding-left: 6rem;
  padding-right: 6rem;
  margin-top: 30rem;
}
.slider .owl-nav button {
  background-color: transparent;
  border: none;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.slider .owl-nav button img {
  width: 3.1rem;
}
.slider .owl-nav button.owl-prev {
  left: 0;
}
.slider .owl-nav button.owl-next {
  right: 0;
}
.slider .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.slider .owl-stage {
  display: flex;
  align-items: center;
}
.slider .owl-dots button {
  height: 1.4rem;
  width: 1.4rem;
  border-radius: 50%;
  outline: 0.1rem solid #fff !important;
  outline-offset: 0.4rem;
  padding: 0.1rem;
  background-color: transparent;
  border: none;
}
.slider .owl-dots button.active {
  background-color: #fff;
}
.slider .center img {
  border-radius: 3rem;
  object-fit: cover;
}
.slider .owl-item:not(.center) img {
  height: 47rem;
}
.slider_text h2 {
  font-size: 14.5rem;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
  font-family: "Wargate";
  opacity: 0.25;
  margin-top: 2rem;
}
.slider_text h4 {
  font-size: 3.1rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4.4rem;
  max-width: 87rem;
  margin-top: -3rem;
}
.slider_text h3 {
  font-size: 3.1rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 5.7rem;
}
.slider_text p {
  font-size: 2.2rem;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
  max-width: 92rem;
}

/*game statistics */
.game_statistics {
  padding: 10rem 0;
}
.place_box h4 {
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
}
.place_box h5 {
  font-size: 1.9rem;
  font-weight: 300;
  text-transform: uppercase;
}
.place_box h6 {
  font-size: 1.6rem;
  font-weight: 300;
  text-transform: uppercase;
}
.place_box p {
  font-size: 1.2rem;
  margin-top: 1rem;
  font-weight: 300;
}
.place_box.first_place {
  margin-top: 46rem;
}
.place_box.first_place h4 {
  font-size: 5.6rem;
  font-weight: 700;
  text-transform: uppercase;
}
.place_box.first_place h5 {
  font-size: 4.4rem;
  font-weight: 300;
  text-transform: uppercase;
}
.place_box.first_place h6 {
  font-size: 2.6rem;
  font-weight: 300;
  text-transform: uppercase;
}

.game_statistics .nav {
  justify-content: space-around;
  position: relative;
  z-index: 2;
}
.game_statistics .nav li .nav-link {
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  border: none;
  border-radius: 0 !important;
  padding: 0;
  padding-bottom: 1.3rem;
  position: relative;
  z-index: 1;
}
.game_statistics .nav li .nav-link.active::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 37rem;
  height: 4.8rem;
  background-image: url(/assets/landingpages/3/tab.png);
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
.nav-pills .nav-link.active {
  background-color: transparent;
}
.statistics_wrap {
  position: relative;
  z-index: 1;
  padding-top: 0.1rem;
}

/*contact area*/
.contact_area {
  padding-bottom: 5rem;
  padding-top: 17rem;
}
.contact_area h2 {
  font-size: 4.9rem;
  text-transform: uppercase;
  font-family: "Wargate";
  max-width: 116rem;
  margin-left: auto;
  margin-right: auto;
}
.footer_logo {
  display: inline-block;
  width: 15rem;
  margin-top: 4rem;
}
.subs_wrap {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 9rem;
}
.subs_wrap p {
  font-size: 2.4rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.line {
  display: inline-block;
  margin-top: 3rem;
  width: 7rem;
  margin-bottom: 10rem;
}
.subscribe_newsletter_form {
  position: relative;
  z-index: 1;
}
.subscribe_newsletter_form input {
  width: 100%;
  border-radius: 2rem;
  background-color: rgba(255, 255, 255, 0.25);
  height: 6.5rem;
  font-size: 2.4rem;
  text-align: center;
  color: #fff;
  font-weight: 300;
  border: none;
}
.subscribe_newsletter_form input::placeholder {
  color: var(--black);
  opacity: 1;
}
.subscribe_newsletter_form button {
  background-color: transparent;
  border: none;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
}
.subscribe_newsletter_form button img {
  width: 1.1rem;
}
.bg_img {
  position: absolute;
  top: 54%;
  z-index: -1;
  height: 100%;
  width: 80%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.45;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bg_img::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: 105%;
    height: 104%;
    background: radial-gradient(
    circle,
    rgba(43, 43, 43, 0.1) 0%,
    #060808 50%
  );
    z-index: -1;
    transform: translate(-50%, -50%);
}

.bob_box h3 {
  font-size: 2.3rem;
  font-weight: 700;
}
.bob_box h4 {
  font-size: 2.3rem;
  font-weight: 400;
}
.bob_box h5 {
  font-size: 1.7rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 1.7rem;
}
.bob_box p {
  font-size: 1.5rem;
  text-transform: uppercase;
  opacity: 0.55;
}
.bob_img {
  display: inline-block;
  position: relative;
}
.bob_img::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 130%;
  height: 98%;
  z-index: -1;
  transform: translate(-50%, -50%);
  background-image: url(/assets/landingpages/3/shape1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.bob_img > img {
  height: 8rem;
  width: 8rem;
  border-radius: 50%;
  object-fit: cover;
}

.first_place.bob_box h3 {
  font-size: 14.4rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 0.8;
}
.first_place.bob_box h4 {
  font-size: 4rem;
  font-weight: 700;
}
.first_place.bob_box h5 {
  font-size: 2.4rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-top: 1.7rem;
}
.first_place.bob_box {
  margin-top: 12rem;
}
.first_place.bob_box p {
  font-size: 1.7rem;
  text-transform: uppercase;
  opacity: 0.55;
}
.first_place .bob_img > img {
  height: 10.9rem;
  width: 10.9rem;
}
.tips {
  margin-top: 9.8rem;
}
.tips h6 {
  font-size: 1.6rem;
  font-weight: 400;
}
.tips p {
  font-size: 1.3rem;
}
.bg_img.v2 {
  opacity: 0.65;
}

.statistics_wrap.v2 .bob_img::before {
  width: 13.4rem;
  height: 8.2rem;
  z-index: 1;
  background-image: url(/assets/landingpages/3/shape3.png);
}
.statistics_wrap.v2 .first_place .bob_img::before {
  width: 28.8rem;
  height: 15.2rem;
  z-index: 1;
  background-image: url(/assets/landingpages/3/shape2.png);
}

/* ====================== Modal styled ======================= */

.modal {
    overflow: auto;
}
.modal_btn {
  background: transparent;
  border: 0;
  outline: none;
}
.star_light {
  display: none;
}
.filled_star {
  display: none;
}

.form_logo img {
  width: 22rem;
  margin-top: 0;
  margin-bottom: 0;
}

.modal-content {
  background: #141414;
  padding: 6.5rem 25.6rem;
  border-radius: 5rem;
}

.modal-dialog {
  max-width: 133rem;
}

.input_field {
  width: 100%;
  background: transparent;
  color: #616161;
  font-size: 2.6rem;
  font-weight: 600;
  border: 0;
  border-bottom: 0.1rem solid var(--yellow);
  padding: 0 2rem 1.5rem 2rem;
}

.promotional_input {
  border: 0.1rem solid var(--yellow);
  border-radius: 10em;
  padding: 1.5rem 2rem;
}

.form_bottom button {
  color: var(--yellow);
  background: transparent;
  border: navajowhite;
  font-size: 7.6rem;
  font-weight: 900;
  line-height: 1;
  padding-bottom: 2rem;
}

.form_bottom .link::before,
.form_bottom .link::after {
  width: 18rem;
  height: 3.5rem;
}

.form_bottom p {
  color: #ed696b;
  font-weight: 400;
  font-size: 1.748rem;
}

.form_text_white {
  font-size: 2.6rem;
  color: #fff;
  font-weight: 600;
  padding-top: 2rem;
  display: block;
}

.btn-close {
  border: none;
  background: no-repeat;
  padding: 0;
  position: absolute;
  right: 5.5rem;
  top: 5.5rem;
}

.modal_close {
  width: 3.7rem;
}

.modal-header {
  border: none;
  padding: 0;
}

.login_line {
  width: 18.5rem;
  margin-top: 2rem;
}

.form_group {
  position: relative;
}

.stars {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stars img:not(.star_light) {
  filter: brightness(0) saturate(100%) invert(83%) sepia(85%) saturate(1876%)
    hue-rotate(325deg) brightness(107%) contrast(98%);
}

.stars img {
  width: 3.5rem;
}

.form_group {
  margin-top: 2.8rem;
}

.nav_link {
  font-size: 4rem;
  font-weight: 900;
  width: fit-content;
  color: var(--yellow);
}

.nav_bg {
  position: absolute;
  width: 70rem;
  top: -1.5rem;
  opacity: 0;
  transition: 0.25s ease;
}

.nav_link {
  position: relative;
}

.nav_tabs {
  justify-content: space-between !important;
  padding: 0 0 0 2rem;
  margin-bottom: 5rem;
}

.nav_link p {
  position: relative;
  z-index: 1;
}

.nav_bg1 {
  left: -21rem;
}

.nav_bg2 {
  right: -16.5rem;
}

.form_group:hover .star_light {
  opacity: 1;
  display: block;
}

.stars img {
  position: absolute;
}
.promotional_form.active .filled_star {
  display: block;
  opacity: 1;
}
.promotional_form.active .unfilled_star,
.promotional_form.active .star_light {
  display: none;
  opacity: 0;
}

.form_groups {
  padding-top: 1rem;
}
.f_400 {
  font-weight: 400 !important;
}

.nav_link.active img {
  opacity: 1;
}

.nav-tabs {
	border: none;
}
.newsletter_feedback_area .error_message {
  color: #F00;
  width: 100%;
  background-color: rgb(255,230,230);
  border-radius: 3px;
  border: 1px solid #F00;
  padding: 3px 5px;
  text-align: left;
}

.newsletter_feedback_area .success_message {
  color: #070;
  width: 100%;
  background-color: rgb(230,255,230);
  border-radius: 3px;
  border: 1px solid #070;
  padding: 3px 5px;
  text-align: left;
}