@import url(./preset.css);
*:hover,
*:focus {
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  font-family: var(--primary-font-400);
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  background: var(--background-color);
}

a {
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
}

.common-section {
  padding: 60px 0;
}

section {
  overflow: hidden;
}

.curved-box {
  padding: 20px;
  margin: 15px 0;
  background: var(--color-white);
  border: 1px solid #B9B9BB;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.primary-color {
  color: var(--primary-color) !important;
}

.disabled-btn {
  background: #C7C7C7;
}

button:focus {
  outline: none;
}

.btn {
  padding: 5px 30px;
  font-size: 18px;
  font-weight: 700;
  min-height: auto;
  border: none;
  text-align: center;
  white-space: nowrap;
  color: var(--secondary-color);
  background: var(--primary-color);
  font-family: var(--secondary-font-600);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.btn:hover {
  color: var(--color-white);
}

.btn.focus,
.btn:focus {
  box-shadow: none;
}

.btn-primary:hover, .btn-primary:visited, .btn-primary:focus, .btn-primary:active {
  background: #e3d10b;
}

.btn-secondary:hover, .btn-secondary:visited, .btn-secondary:focus, .btn-secondary:active {
  background: #e3d10b;
}

.polygon_btn {
  padding-left: 20px;
  padding-right: 20px;
  clip-path: polygon(0% 0%, 96% 0%, 100% 25%, 100% 100%, 25% 169%, 0% 87%);
}

.angled_btn {
  position: relative;
  color: #fff;
  clip-path: polygon(4% 0%, 96% 0%, 100% 20%, 100% 86%, 96% 100%, 4% 100%, 0% 80%, 0% 20%);
  background: var(--primary-color);
  padding: 7px;
}
.angled_btn .btn_inner {
  display: inline-block;
  clip-path: polygon(4% 0%, 96% 0%, 100% 20%, 100% 86%, 96% 100%, 4% 100%, 0% 80%, 0% 20%);
  background: #F3333C;
  padding: 6px 25px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 25px;
}

.lite-btn {
  background: #FBF8F3;
  color: #E89F72;
}
.lite-btn img {
  margin: 0 10px 0 0;
}

.white-btn {
  background: var(--color-white);
  color: var(--primary-color);
}

.primary-btn {
  color: var(--color-white);
  background: var(--primary-color);
}
.primary-btn:hover, .primary-btn:focus {
  color: var(--color-white);
}

.bordered-btn {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
  background: none;
}
.bordered-btn:hover, .bordered-btn:focus {
  color: var(--primary-color);
}

.disabled-btn {
  background: #C7C7C7;
  box-shadow: none;
  pointer-events: none;
}

.grey-btn {
  background: #E9E9E9;
  color: #959595;
  box-shadow: none;
}
.grey-btn:hover, .grey-btn:focus {
  color: #959595;
}

a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

header {
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 10;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav_left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo a img {
  width: 165px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.menu li {
  list-style: none;
}
.menu li a {
  text-transform: uppercase;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  line-height: normal;
  padding-top: 4px;
  border-top: 1px solid transparent;
}
.menu li .active {
  border-color: var(--primary-color);
}

.nav_right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.link {
  text-transform: uppercase;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  line-height: normal;
}

.lan_drop_main .lan_drop_btn {
  padding: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lan_drop_main .lan_drop_btn img {
  width: 29px;
}
.lan_drop_main .lan_drop_list {
  background: #000;
  border-radius: 0;
}
.lan_drop_main .lan_drop_list .dropdown-item {
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.lan_drop_main .lan_drop_list .dropdown-item img {
  width: 30px;
}
.lan_drop_main .lan_drop_list .dropdown-item:hover {
  color: var(--primary-color);
  background: none;
}

.nav_responsive,
.menu_toggle {
  display: none;
}

.banner_main {
  background: #000 url(../img/banner_bg.avif) center -130px no-repeat;
  background-size: 115%;
  overflow: hidden;
  padding: 130px 0 0;
  position: relative;
  z-index: 6;
  border-bottom: 10px solid var(--primary-color);
}
.banner_main::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 450px;
  background: radial-gradient(66.32% 112.11% at 50.16% 106.13%, #F3333C 27.05%, rgba(243, 51, 60, 0) 100%);
  z-index: 5;
}
.banner_main .banner_bg_vector {
  display: flex;
  align-items: center;
  width: 100%;
  position: absolute;
  top: 23rem;
  justify-content: center;
  gap: 5%;
}
.banner_main .banner_bg_vector .banner_bg_vector_img {
  width: 38%;
}
.banner_main .banner_bg_vector .banner_bg_vector_img img {
  width: 100%;
  animation: fadeInOut 2s ease-in-out infinite;
  -webkit-animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.banner_title_main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.banner_title_main .banner_title {
  margin: 0;
  color: #FCEA1F;
  font-family: var(--secondary-font-600);
  font-size: 37px;
  font-style: normal;
  line-height: normal;
}
.banner_title_main img {
  max-width: 260px;
  width: 100%;
  margin: 0 0 0 20px;
}

.banner_vector_main {
  display: flex;
  margin: -50px 0 0;
  align-items: center;
  justify-content: center;
}
.banner_vector_main .banner_vector {
  position: relative;
  max-width: 578px;
  width: 100%;
}
.banner_vector_main .banner_vector .alian_img {
  position: relative;
  z-index: 3;
  width: 100%;
}
.banner_vector_main .banner_vector .rount_single {
  position: absolute;
  z-index: 2;
}
.banner_vector_main .banner_vector .rount_single img {
  width: 100%;
}
.banner_vector_main .banner_vector .rount_01 {
  animation: jump 1.5s ease-in-out infinite;
  -webkit-animation: jump 1.5s ease-in-out infinite;
  width: 140px;
  top: 120px;
  right: 40px;
}
.banner_vector_main .banner_vector .rount_02 {
  animation: jump 1.7s ease-in-out infinite;
  -webkit-animation: jump 1.7s ease-in-out infinite;
  width: 130px;
  top: 350px;
  right: -50px;
}
.banner_vector_main .banner_vector .rount_03 {
  width: 210px;
  top: 380px;
  left: -100px;
  animation: jump 1.4s ease-in-out infinite;
  -webkit-animation: jump 1.4s ease-in-out infinite;
}
.banner_vector_main .banner_vector .rount_04 {
  width: 100px;
  top: 136px;
  left: 60px;
  animation: jump 1.7s ease-in-out infinite;
  -webkit-animation: jump 1.7s ease-in-out infinite;
}

@keyframes jump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
  }
}
.banner_bottom_mian {
  position: absolute;
  z-index: 6;
  text-align: center;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 0 1.5rem;
}
.banner_bottom_mian .banner_bottom_title {
  color: #fff;
  font-family: var(--secondary-font-600);
  font-size: 1.6rem;
  margin: 0;
}
.banner_bottom_mian .banner_bottom_para {
  margin: 0 0 2rem;
  font-size: 18px;
  color: #fff;
}

.more_btn_main {
  position: relative;
  z-index: 7;
  text-align: center;
  margin: -36px 0 0;
}

.about_area {
  margin: -28px 0 0;
  overflow: visible;
  background: url(../img/about_area_bg.jpg) center center no-repeat;
  background-size: cover;
  border-bottom: 10px solid var(--primary-color);
  position: relative;
}
.about_area::after {
  position: absolute;
  content: "";
  width: 770px;
  height: 45px;
  background: var(--primary-color);
  left: calc(50% - 385px);
  bottom: -45px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 25%, 93% 100%, 7% 100%, 0% 25%);
}

.about_content_box_main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 0;
  flex-direction: column;
  gap: 30px;
}
.about_content_box_main .triangle_box_vector {
  position: relative;
  width: 100%;
  max-width: 800px;
}
.about_content_box_main .triangle_box_vector::before, .about_content_box_main .triangle_box_vector::after {
  position: absolute;
  content: "";
  border: 11px solid transparent;
  pointer-events: none;
}
.about_content_box_main .triangle_box_vector::before {
  border-left-color: #f00;
  border-top-color: #f00;
  top: 0;
  left: 0;
}
.about_content_box_main .triangle_box_vector::after {
  border-width: 18px;
  border-right-color: #f00;
  border-bottom-color: #f00;
  right: 6px;
  bottom: 6px;
}
.about_content_box_main .about_content_box {
  background: linear-gradient(0deg, rgba(255, 163, 0, 0.31) 0.55%, rgba(254, 149, 7, 0.31) 18.38%, rgba(250, 113, 27, 0.31) 51.9%, rgba(243, 55, 58, 0.31) 97.24%, rgba(243, 51, 60, 0.31) 100%);
  border: 2px solid var(--primary-color);
  clip-path: polygon(28px 0%, 100% 0%, 100% 75%, calc(100% - 40px) 100%, 0% 100%, 0% 28px);
  padding: 30px;
  text-align: center;
  width: 100%;
  max-width: 800px;
}
.about_content_box_main .about_content_box p {
  color: #000;
  font-family: var(--primary-font-400);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.join_card_wrapper {
  margin: 0 0 -38px;
  max-width: 800px;
  width: 100%;
}

.join_card_main {
  width: 100%;
  max-width: 100%;
  padding: 30px 30px 40px;
  text-align: center;
  background: linear-gradient(180deg, rgba(243, 51, 60, 0) 0.66%, #ff1d28 60%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 95% 100%, 5% 100%, 0% 85%);
  margin: 0;
  position: relative;
  z-index: 3;
}
.join_card_main .head_area h3 {
  font-size: 34px;
  line-height: 34px;
  font-family: var(--secondary-font-600);
}
.join_card_main .head_area p {
  font-size: 17px;
  margin: 0;
}

.join_btn_main {
  position: absolute;
  bottom: -77px;
  width: 100%;
  text-align: center;
  z-index: 8;
}

.top_spacing {
  bottom: 0;
  position: relative;
  margin: -37px 0 0;
}

.world_idea_main {
  position: relative;
}
.world_idea_main::before, .world_idea_main::after {
  position: absolute;
  content: "";
  width: 500px;
  height: 520px;
  z-index: 0;
}
.world_idea_main::before {
  background: url(../img/world_idea_left_vector.avif) center bottom;
  top: 0;
  left: 0;
}
.world_idea_main::after {
  background: url(../img/world_idea_right_vector.avif) center bottom;
  top: 0;
  right: 0;
}

.nova-section {
  color: #fff;
  padding: 90px 0 30px;
}

.nova-block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  flex-wrap: wrap;
  gap: 40px;
  padding-right: 110px;
}
.nova-block:nth-child(2) {
  padding: 0;
}

.nova-block.reverse {
  flex-direction: row-reverse;
}

.nova-image {
  max-width: 500px;
  width: 100%;
}

.idea_img {
  min-width: 350px;
}

.nova-text {
  max-width: 500px;
  text-align: left;
}

.nova-text h2 {
  font-family: var(--secondary-font-600);
  font-size: 34px;
  margin-bottom: 10px;
  color: #fff;
}

.nova-text p {
  font-size: 17px;
  line-height: 1.3;
  color: #ccc;
  max-width: 375px;
}

.reverse_content {
  margin-top: -50px;
}

.reverse_content .nova-text {
  text-align: right;
}

.world_idea_content {
  position: relative;
  z-index: 2;
}

.play_share_win_sec {
  background: url(../img/play_share_win_bg.avif) center center no-repeat;
  background-size: cover;
  position: relative;
}
.play_share_win_sec .play_share_win_area {
  position: relative;
  z-index: 2;
}
.play_share_win_sec .play_share_win_area::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 70%;
  background: radial-gradient(52.86% 89.37% at 50.15% 106.13%, #F3333C 22.35%, rgba(243, 51, 60, 0.1) 99%, rgba(243, 51, 60, 0) 100%);
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
}
.play_share_win_sec .play_share_win_area .play_share_win_img_main {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}
.play_share_win_sec .play_share_win_area .play_share_win_img_main .play_share_win_img {
  width: 100%;
}
.play_share_win_sec .play_share_win_area .play_share_win_img_main .diamond_icons {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.play_share_win_sec .play_share_win_area .play_share_win_img_main .diamond_icons .diamond_icon {
  position: absolute;
  z-index: 3;
}
.play_share_win_sec .play_share_win_area .play_share_win_img_main .diamond_icons .diamond_icon_1 {
  bottom: 110px;
  width: 154px;
  animation: jump 1.7s ease-in-out infinite;
  -webkit-animation: jump 1.7s ease-in-out infinite;
}
.play_share_win_sec .play_share_win_area .play_share_win_img_main .diamond_icons .diamond_icon_2 {
  top: 135px;
  left: 160px;
  width: 85px;
  animation: jump 1.4s ease-in-out infinite;
  -webkit-animation: jump 1.4s ease-in-out infinite;
}
.play_share_win_sec .play_share_win_area .play_share_win_img_main .diamond_icons .diamond_icon_3 {
  right: 150px;
  top: 60px;
  width: 138px;
  animation: jump 1.4s ease-in-out infinite;
  -webkit-animation: jump 1.4s ease-in-out infinite;
}
.play_share_win_sec .play_share_win_area .play_share_win_img_main .diamond_icons .diamond_icon_4 {
  right: -70px;
  bottom: 80px;
  width: 243px;
  animation: jump 1.7s ease-in-out infinite;
  -webkit-animation: jump 1.7s ease-in-out infinite;
}
.play_share_win_sec .play_share_win_area .title_area {
  position: absolute;
  bottom: 0;
  z-index: 4;
  max-width: 700px;
  left: calc(50% - 350px);
  text-align: center;
  padding-bottom: 1rem;
}
.play_share_win_sec .play_share_win_area .title_area .titl {
  color: #FFF;
  font-family: var(--secondary-font-600);
  font-size: 31.742px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.play_share_win_sec .play_share_win_area .title_area p {
  color: #FFF;
  font-family: var(--primary-font-400);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.our-games {
  padding: 60px 0px;
  color: #FFF;
  font-family: var(--secondary-font-600);
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 4;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.game-card {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin: 0 auto 60px;
}

.game-image {
  width: 420px;
  min-width: 420px;
}

.game-image img {
  max-width: 420px;
  width: 100%;
}

.game-text {
  max-width: 340px;
}

.game-text h3 {
  font-size: 30px;
  margin: 0 0 20px;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.game-text h3 span {
  font-weight: 900;
  margin-right: 10px;
  display: inline-block;
  -webkit-text-stroke-width: 0.99px;
  -webkit-text-stroke-color: #FFF;
  font-family: var(--secondary-font-600);
  font-size: 5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 64px;
  color: black; /* Fill color */
  -webkit-text-stroke: 0.55px white;
  font-style: italic;
}

.game-text p {
  line-height: 22px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  font-family: var(--primary-font-400);
}

.our_games_sec {
  position: relative;
  overflow: hidden;
  border-bottom: 10px solid var(--primary-color);
}
.our_games_sec::before, .our_games_sec::after {
  position: absolute;
  content: "";
  width: 400px;
  height: 800px;
}
.our_games_sec::before {
  background: url(../img/game_vector_1.png) center center no-repeat;
  background-size: cover;
  right: 100px;
  top: -350px;
  width: 600px;
  height: 1000px;
}
.our_games_sec::after {
  background: url(../img/game_vector_2.png) center center no-repeat;
  background-size: cover;
  top: 180px;
  left: 200px;
}

.adventure_bg_main {
  background: url(../img/adventure_bg.jpg) center center no-repeat;
  background-size: cover;
  margin: -27px 0 0;
  padding: 2.5rem 0 0;
}
.adventure_bg_main .adventure_content_main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.adventure_bg_main .adventure_content_main .adventure_img {
  position: relative;
  width: 498px;
}
.adventure_bg_main .adventure_content_main .adventure_img .adventure_img_style {
  width: 100%;
}
.adventure_bg_main .adventure_content_main .adventure_img .adventure_gems {
  position: absolute;
}
.adventure_bg_main .adventure_content_main .adventure_img .adventure_gems-1 {
  top: 225px;
  left: -20px;
  width: 90px;
  animation: jump 1.4s ease-in-out infinite;
  -webkit-animation: jump 1.4s ease-in-out infinite;
}
.adventure_bg_main .adventure_content_main .adventure_img .adventure_gems-2 {
  top: 375px;
  left: -10px;
  width: 50px;
  animation: jump 1.6s ease-in-out infinite;
  -webkit-animation: jump 1.6s ease-in-out infinite;
}
.adventure_bg_main .adventure_content_main .adventure_img .adventure_gems-3 {
  top: 275px;
  left: 90px;
  width: 150px;
  animation: jump 1.4s ease-in-out infinite;
  -webkit-animation: jump 1.4s ease-in-out infinite;
}
.adventure_bg_main .adventure_content_main .adventure_img .adventure_gems-4 {
  top: 225px;
  right: 40px;
  width: 150px;
  animation: jump 1.6s ease-in-out infinite;
  -webkit-animation: jump 1.6s ease-in-out infinite;
}
.adventure_bg_main .adventure_content_main .adventure_img .adventure_gems-5 {
  right: 80px;
  top: 140px;
  width: 80px;
  animation: jump 1.3s ease-in-out infinite;
  -webkit-animation: jump 1.3s ease-in-out infinite;
}
.adventure_bg_main .adventure_content_main .adventure_content .title {
  color: #000;
  font-family: var(--secondary-font-600);
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  max-width: 450px;
  margin: 0 0 1rem;
}
.adventure_bg_main .adventure_content_main .adventure_content .subtitle {
  color: #000;
  font-family: var(--secondary-font-600);
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.adventure_bg_main .adventure_content_main .adventure_content p {
  color: #000;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 430px;
}

.rewards_section {
  background: url(../img/rewards_bg.avif) center center no-repeat;
  background-size: cover;
  overflow: visible;
}
.rewards_section .rewards_section_vector {
  padding: 4rem 0;
  position: relative;
}
.rewards_section .rewards_section_vector::before, .rewards_section .rewards_section_vector::after {
  z-index: 0;
  position: absolute;
  content: "";
  width: 450px;
  height: 450px;
}
.rewards_section .rewards_section_vector::before {
  background: url(../img/reward_vector_1.png) center center no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
}
.rewards_section .rewards_section_vector::after {
  background: url(../img/reward_vector_2.png) center center no-repeat;
  background-size: cover;
  bottom: 0;
  right: 0;
}

.rewards_content_main {
  display: flex;
  gap: 35px;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 1rem 0 4rem 0;
}
.rewards_content_main article {
  max-width: 500px;
  padding: 0;
}
.rewards_content_main article h4 {
  color: #000;
  font-family: var(--secondary-font-600);
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.5px;
}
.rewards_content_main article h2 {
  color: #000;
  font-family: var(--secondary-font-600);
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.5px;
}
.rewards_content_main article p {
  font-size: 18px;
  line-height: 22px;
}
.rewards_content_main figure {
  margin: -60px 0 0;
}
.rewards_content_main figure img {
  width: 230px;
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
}

.unlock_rewards_sec {
  background: #000;
  position: relative;
  padding-top: 1rem;
}
.unlock_rewards_sec .unlock_rewards_content_mian {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  gap: 35px;
  position: relative;
}
.unlock_rewards_sec .unlock_rewards_content_mian::before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/lock_bg.avif) 190px 30px no-repeat;
  transform: scale(1.5);
  z-index: 0;
}
.unlock_rewards_sec .unlock_rewards_content_mian figure {
  width: 350px;
  position: relative;
  z-index: 1;
}
.unlock_rewards_sec .unlock_rewards_content_mian figure img {
  width: 100%;
}
.unlock_rewards_sec .unlock_rewards_content_mian .unlock_rewards_content {
  max-width: 500px;
}
.unlock_rewards_sec .unlock_rewards_content_mian .unlock_rewards_content h2 {
  -webkit-text-stroke-width: 0.99px;
  -webkit-text-stroke-color: #FFF;
  font-family: var(--secondary-font-600);
  font-size: 70px;
  font-style: italic;
  font-weight: 600;
  line-height: 70px;
  margin: 0 0 1rem;
  letter-spacing: 4px;
}
.unlock_rewards_sec .unlock_rewards_content_mian .unlock_rewards_content h4 {
  color: #FFF;
  font-family: var(--secondary-font-600);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 1rem;
}
.unlock_rewards_sec .unlock_rewards_content_mian .unlock_rewards_content p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.news_update_main {
  margin: 2rem 0 0;
  padding: 5rem 0;
}
.news_update_main .section_head {
  color: #FFF;
  font-family: var(--secondary-font-600);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  margin: 0 0 2rem;
}

.news_update_cards_main {
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.news_update_cards_main .news_update_cards figure {
  margin: 0;
}
.news_update_cards_main .news_update_cards figure img {
  width: 100%;
}
.news_update_cards_main .news_update_cards article {
  margin: 0;
  background: #5E5E5E;
  padding: 20px;
}
.news_update_cards_main .news_update_cards article p {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.read_more {
  color: #FCEA1F;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  display: inline-block;
  padding-right: 10px;
  position: relative;
}
.read_more::after {
  position: absolute;
  content: "";
  right: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border: 1px solid transparent;
  border-right: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.read_more img {
  width: 9px;
}

.faq_sec {
  background: var(--primary-color);
  padding: 50px 0;
  position: relative;
}
.faq_sec::before {
  position: absolute;
  content: "";
  background: url(../img/faq/bg.png) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}
.faq_sec .faq_area {
  position: relative;
  z-index: 2;
}
.faq_sec .faq_area figure {
  width: 450px;
}
.faq_sec .faq_area figure img {
  width: 100%;
}
.faq_sec .faq_area article {
  max-width: 500px;
  min-width: 500px;
}
.faq_sec .faq_area article .faq_head {
  font-style: italic;
  color: transparent; /* Fill color */
  -webkit-text-stroke-width: 0.99px;
  -webkit-text-stroke-color: #000;
  font-family: var(--secondary-font-600);
  font-size: 60px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 2rem;
}

.faq_area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.faq_accordion .card {
  border: none;
  margin: 0 0 1rem;
  background: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  border-bottom: 1px solid #C1B11B;
}
.faq_accordion .card .card-header {
  border: none;
  background: none;
  padding: 0 0 5px;
  margin: 1rem 0 0;
}
.faq_accordion .card:nth-child(1) .card-header {
  margin: 0;
}
.faq_accordion .accordion_btn {
  background: none;
  border: none;
  color: #000;
  font-family: var(--secondary-font-600);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 0 20px 0 0px;
  position: relative;
  width: 100%;
  text-align: left;
}
.faq_accordion .accordion_btn::before {
  position: absolute;
  content: "";
  background: url(../img/faq/acco_close.svg) center center no-repeat;
  background-size: cover;
  width: 14px;
  height: 14px;
  top: 0px;
  right: 0;
}
.faq_accordion .card-body {
  padding: 0;
}

.nova-footer {
  background: black;
  color: white;
  text-align: center;
  font-family: "Orbitron", sans-serif;
  padding: 40px 20px;
}

.logo-section img {
  max-width: 140px;
  margin-bottom: 30px;
  width: 100%;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-family: var(--experts-sans);
  text-transform: uppercase;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: yellow;
}

.footer-actions {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-actions a {
  color: white;
  text-decoration: underline;
  font-family: var(--primary-font-400);
  text-transform: uppercase;
  font-size: 16px;
}

.footer-bottom {
  font-size: 16px;
  color: white;
  margin: 4rem 0 0;
}
.footer-bottom p {
  font-size: 16px;
  margin: 0 0 10px;
  font-family: var(--lato-700);
}

.footer-bottom a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
  margin: 0 5px;
  font-family: var(--lato-700);
  text-transform: uppercase;
}

.connect_with_us_main {
  background: radial-gradient(147.06% 129.73% at 50.14% 106.12%, #FCEA1F 0%, #F3333C 80.45%);
  position: relative;
}
.connect_with_us_main::before, .connect_with_us_main::after {
  width: 80%;
  height: 100%;
  position: absolute;
  content: "";
}
.connect_with_us_main::before {
  left: -120px;
  top: 0;
  bottom: 0;
  background: url(../img/connect_with_us/left_vector.png) 0px top no-repeat;
  background-size: contain;
}
.connect_with_us_main::after {
  right: -120px;
  top: 0;
  bottom: 0;
  background: url(../img/connect_with_us/right_vector.png) right top no-repeat;
  background-size: contain;
}

.connect_with_us_content {
  position: relative;
  padding: 70px 0 0;
  z-index: 1;
}
.connect_with_us_content .title_area {
  text-align: center;
}
.connect_with_us_content .title_area h3 {
  color: #000;
  font-family: var(--secondary-font-600);
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.connect_with_us_content .title_area p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.connect_with_us_content .contet_main {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
}
.connect_with_us_content .contet_main article {
  margin: 0 0 4rem;
  max-width: 380px;
  padding: 6rem 0 0;
}
.connect_with_us_content .contet_main figure {
  margin: 0;
  display: flex;
  align-items: flex-end;
}
.connect_with_us_content .contet_main figure img {
  width: 600px;
  margin-right: -200px;
}

.inner_page {
  padding: 8rem 0 2rem;
}
.inner_page .inner_page_header {
  margin: 0 0 2rem;
}
.inner_page .inner_page_header .page_heading {
  color: #fff;
  font-size: 46px;
  line-height: 46px;
  text-transform: uppercase;
  font-family: var(--secondary-font-600);
}
.inner_page .inner_page_header .date {
  color: #fff;
  font-size: 12px;
  margin: 0 0 1rem;
}
.inner_page .inner_page_header p {
  color: #fff;
  font-size: 14px;
  margin: 0 0 1rem;
}
.inner_page .page_tab_section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.inner_page .page_tab_section .list {
  position: sticky;
  min-width: 300px;
  top: 120px;
}
.inner_page .page_tab_section .list ul {
  margin: 0;
  padding: 0 0 0 1rem;
}
.inner_page .page_tab_section .list ul li {
  color: #fff;
  margin: 0 0 0.7rem;
  list-style-type: decimal;
}
.inner_page .page_tab_section .list ul li a {
  color: #fff;
  font-size: 16px;
}
.inner_page .page_tab_section .content .content_single {
  margin: 0 0 2rem;
  scroll-margin-top: 120px;
}
.inner_page .page_tab_section .content .content_single .content_title {
  color: #fff;
  font-size: 16px;
}
.inner_page .page_tab_section .content .content_single p {
  color: #fff;
  font-size: 14px;
}
.inner_page .page_tab_section .content .content_single .content_sub_title {
  color: #fff;
  font-size: 15px;
  margin: 1rem 0 0.2rem;
}
.inner_page .page_tab_section .content .content_single .sublist_content {
  color: #fff;
  font-size: 14px;
  margin: 0 0 0.3rem;
}
.inner_page .page_tab_section .content .content_single .sublist_content strong {
  font-weight: 700;
}
.inner_page .page_tab_section .content a {
  color: var(--primary-color);
}

/*# sourceMappingURL=layout.css.map */
