@font-face {
  font-family: "regular";
  src: url("../webfonts/LamaSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "bold";
  src: url("../webfonts/Rajdhani-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "fontTimer";
  src: url("../webfonts/E1234.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
header {
  height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center -110px;
  background-repeat: no-repeat;
  background-image: url(../imgs/heroBg.png);
}
header .upper_bar {
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  position: relative;
  align-items: center;
  padding: 0.75rem 5rem;
  background-size: cover;
  justify-content: space-between;
  z-index: 2;
}
header .upper_bar ul {
  gap: 20px;
  display: flex;
  margin-bottom: 0;
}
header .upper_bar ul li a {
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
}
header .upper_bar ul li a img {
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .upper_bar ul.links {
  gap: 20px;
}
header .upper_bar ul.links li a {
  gap: 10px;
  display: flex;
  align-items: center;
}
header .upper_bar ul.links li a img {
  width: 20px;
  height: 20px;
}
header nav {
  position: relative;
  background-size: cover;
  padding: 1rem 5rem;
  z-index: 2;
  background: rgba(0, 0, 0, 0.8);
}
header nav:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(201, 120, 196, 0), rgb(153, 67, 146), rgba(153, 67, 146, 0));
}
header nav:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(201, 120, 196, 0), rgb(153, 67, 146), rgba(153, 67, 146, 0));
}
header nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav .inner ul {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}
header nav .inner ul li {
  padding: 1rem 0;
  position: relative;
}
header nav .inner ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
header nav .inner ul li.dorpdown_li:before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  border: 10px solid rgb(153, 67, 146);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-45deg);
}
header nav .inner ul li.dorpdown_li .dropdown_menu {
  position: absolute;
  top: 102.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-in-out;
}
header nav .inner ul li.dorpdown_li .dropdown_menu li {
  padding: 0;
  display: block;
  margin-bottom: 0.1rem;
}
header nav .inner ul li.dorpdown_li .dropdown_menu li a {
  padding: 1rem;
  display: block;
  border-radius: 8px;
  font-weight: normal;
  text-align: center;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.22) 0%, #000 52.54%, rgba(0, 0, 0, 0.46) 100%);
  transition: all 0.25s ease-in-out;
}
header nav .inner ul li.dorpdown_li .dropdown_menu li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(201, 120, 196, 0), rgb(153, 67, 146), rgba(153, 67, 146, 0));
}
header nav .inner ul li.dorpdown_li .dropdown_menu li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(201, 120, 196, 0), rgb(153, 67, 146), rgba(153, 67, 146, 0));
}
header nav .inner ul li.dorpdown_li .dropdown_menu li a:hover {
  background: #733e91;
}
header nav .inner ul li.dorpdown_li:hover .dropdown_menu {
  opacity: 1;
  visibility: visible;
}
header nav .inner ul li.dorpdown_li:hover::before {
  content: "";
}
header nav .inner .logo img {
  height: 57px;
}
header nav .inner .register_btn {
  width: 185px;
  height: 60px;
  min-width: 165px;
}
header nav .inner .close_menu {
  margin-right: 1rem;
}
header nav .inner .close_menu i {
  color: #fff;
  font-size: 24px;
}
header nav .inner .open_menu,
header nav .inner .close_menu {
  cursor: pointer;
  display: none;
}
header nav.sticky {
  position: fixed !important;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999 !important;
}
header .content {
  position: absolute;
  left: 0;
  bottom: 5rem;
  width: 100%;
  padding: 0 6rem;
  color: #fff;
}
header .content h1 {
  width: 60%;
  font-size: 45px;
  margin-bottom: 2rem;
  font-family: "bold";
  text-transform: uppercase;
}
header .content h1 span {
  display: block;
}
header .content .details {
  gap: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .content .details .inner {
  gap: 30px;
  display: flex;
  align-items: center;
}
header .content .details .inner .box {
  gap: 10px;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
}
header .content .details .inner .box img {
  margin: -2rem -1rem;
}
header .content .details .customBtn {
  margin-right: 10rem;
}
header .content .details .customBtn a {
  width: 180px;
  height: 60px;
  color: #fff;
  background-color: #CC00CB;
}
header .mobile_menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0.5rem 2rem 1.5rem;
  background-color: #040720;
  z-index: 999;
  display: none;
}
header .mobile_menu ul.links li a {
  color: #fff;
  display: block;
  padding: 0.85rem 0;
  position: relative;
}
header .mobile_menu ul.links li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(90deg, rgb(153, 67, 146), rgba(153, 67, 146, 0));
}
header .mobile_menu .customBtn .register_btn {
  width: 185px;
  min-width: 165px;
  height: 60px;
  margin: 2rem auto;
}
header .mobile_menu ul.social {
  gap: 15px;
  display: flex;
  margin-bottom: 0;
  justify-content: center;
}
header .mobile_menu ul.social li {
  margin: 0 3px 0 3px;
}
header .mobile_menu ul.social li a img {
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .badge_wrap {
  position: relative;
  width: 300px;
  height: 60px;
  margin-bottom: 2rem;
}
header .badge_wrap img {
  position: relative;
  width: 100%;
  z-index: 2;
}
header .badge_wrap .text_content {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: 3;
  font-size: 25px;
  text-align: center;
  font-family: "bold";
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
}
header.game_edu {
  background-position: center 0px;
  background-image: url(../imgs/game_bg.png);
}
header.game_edu .upper_bar {
  background: rgba(0, 0, 0, 0.46);
}
header.game_edu .nav {
  background: rgba(0, 0, 0, 0.46);
}
header.header-join-the-def-experience, header.header-cookie-policy, header.header-privacy-policy, header.header-terms-and-conditions {
  height: auto;
  background-image: unset;
}
header.game_summit {
  background-position: center;
  background-image: url(../imgs/game-summit/game_summit_bg.png);
}
header.faqs {
  background-position: center 0px;
  background-image: url(../imgs/faq_bg.png);
}
header.about {
  background-position: center 0px;
  background-image: url(../imgs/about/about_bg.png);
}
header.game_expo {
  background-position: center 0px;
  background-image: url(../imgs/game-expo/expo_bg.png);
}
header.contact {
  background-position: center 0px;
  background-image: url(../imgs/contact_bg.png);
}
header.contact h1 {
  margin-bottom: 1rem;
}
header.contact p {
  font-size: 18px;
  margin-bottom: 2rem;
}
header.contact .box a {
  color: #fff;
}
header.play_beyond {
  background-position: center 0px;
  background-image: url(../imgs/play-beyond/play_bg.png);
}
header.news {
  background-position: center 0px;
  background-image: url(../imgs/news_bg.png);
}
header.new_details {
  background-position: center 0px;
  background-image: url(../imgs/new_details.png);
}
header .custom_img {
  position: absolute;
  right: 6rem;
  top: -30%;
}
header .custom_img img {
  width: 400px;
}
header.main {
  overflow: hidden;
  position: relative;
  background-image: unset;
}
header.main .main_slider_parent {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
header.main .main_slider_parent .swiperOne {
  height: 100vh;
  background-size: cover;
  background-position: center -110px;
  background-repeat: no-repeat;
  background-image: url(../imgs/heroBg.png);
}
header.main .main_slider_parent .video_container {
  position: relative;
}
header.main .main_slider_parent .video_container iframe,
header.main .main_slider_parent .video_container video {
  -o-object-fit: cover;
     object-fit: cover;
}
header.main .main_slider_parent .arrows {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 2;
  gap: 15px;
  display: flex;
  margin-bottom: 0;
  justify-content: flex-end;
}
header.main .main_slider_parent .arrows li {
  width: 55px;
  height: 55px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
}
header.main .main_slider_parent .swiper-button-next,
header.main .main_slider_parent .swiper-button-prev {
  position: unset;
}
header.main .main_slider_parent .swiper-slide .video_container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  width: 300%; /* enlarge beyond browser width */
  left: -100%; /* center */
}
header.main .main_slider_parent .swiper-slide .video_container iframe {
  position: absolute;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
header.main .main_slider_parent .one-section .video_container {
  height: 100vh;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  width: 300%; /* enlarge beyond browser width */
  left: -100%; /* center */
}
header.main .main_slider_parent .one-section .video_container iframe {
  position: absolute;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
header.main .main_slider_parent .swiperThree .video_container {
  height: 100vh;
}
@keyframes pippo {
  0% {
    top: -10px;
  }
  100% {
    top: 20px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "regular";
  background: #040720;
}

ul {
  list-style-type: none;
}

p,
ul {
  margin-bottom: 0;
}

a {
  text-decoration: none !important;
}

input[type=submit] {
  color: inherit;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #333;
}

::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.txtWhite {
  color: #fff !important;
}

.txtBlack {
  color: #040720 !important;
}

.arrows .swiper-button-next:after,
.arrows .swiper-button-prev:after {
  content: unset;
}

.content_wrap.home {
  overflow: hidden;
}
.content_wrap.home .timer_section {
  padding: 2rem 6rem 1rem;
  display: flex;
  align-items: center;
  gap: 50px;
}
.content_wrap.home .timer_section .timer {
  position: relative;
}
.content_wrap.home .timer_section .timer img {
  width: 350px;
}
.content_wrap.home .timer_section .timer .inner {
  gap: 10px;
  display: flex;
  position: absolute;
  top: 35%;
  left: 0;
  width: 100%;
  justify-content: center;
}
.content_wrap.home .timer_section .timer .inner h3 {
  font-size: 30px;
  color: #E7C589;
  text-align: center;
}
.content_wrap.home .timer_section .timer .inner h3 .time_label {
  font-size: 30px;
  color: #E7C589;
  font-family: "fontTimer";
}
.content_wrap.home .timer_section .timer .inner h3 span {
  font-size: 8px;
  display: block;
  color: #994392;
  font-family: "Regular";
  text-transform: uppercase;
}
.content_wrap.home .timer_section h1 {
  color: #fff;
  font-size: 31px;
  font-family: "bold";
  text-transform: uppercase;
}
.content_wrap.home .live_streaming {
  margin-top: 3rem;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-image: url(../imgs/streaming_bg.png);
}
.content_wrap.home .live_streaming:before {
  background-image: linear-gradient(90deg, rgba(201, 120, 196, 0), #CC00CB, rgba(153, 67, 146, 0));
}
.content_wrap.home .live_streaming .main_title {
  margin-bottom: 2rem;
}
.content_wrap.home .live_streaming .main_title img {
  width: 100px;
  margin-right: 1rem;
}
.content_wrap.home .live_streaming .inner_box .frame_box {
  position: relative;
  margin: 0 -2rem;
}
.content_wrap.home .live_streaming .inner_box .frame_box > img {
  width: 100%;
  z-index: 2;
  position: relative;
}
.content_wrap.home .live_streaming .inner_box .frame_box .btns {
  position: absolute;
  bottom: 4rem;
  right: 50%;
  z-index: 3;
  gap: 15px;
  display: flex;
  align-items: center;
  width: 65%;
  transform: translateX(50%);
  justify-content: flex-end;
}
.content_wrap.home .live_streaming .inner_box .frame_box .btns i {
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
.content_wrap.home .live_streaming .inner_box .frame_box .btns .voice_button i.fa-volume-up {
  display: none;
}
.content_wrap.home .live_streaming .inner_box .frame_box .btns .fullscreen_button i {
  font-size: 25px;
}
.content_wrap.home .live_streaming .inner_box .frame_box .img_box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  z-index: 1;
  transform: translate(-50%, -50%);
  -webkit-clip-path: polygon(11% 0%, 85% 0%, 100% 15%, 100% 85%, 90% 100%, 13% 100%, 0% 85%, 0% 18%);
          clip-path: polygon(11% 0%, 85% 0%, 100% 15%, 100% 85%, 90% 100%, 13% 100%, 0% 85%, 0% 18%);
}
.content_wrap.home .live_streaming .inner_box .frame_box .img_box iframe {
  width: 100%;
  height: 100%;
}
.content_wrap.home .live_streaming .inner_box .frame_box .img_box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: none;
}
.content_wrap.home .live_streaming .inner_box .frame_box .img_box .overlay .btns {
  right: 2rem;
  bottom: 1rem;
  width: 100%;
  transform: unset;
}
.content_wrap.home .live_streaming .inner_box .frame_box.fullscreen .img_box {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 15%, 100% 100%, 100% 100%, 13% 100%, 0% 100%, 0% 18%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 15%, 100% 100%, 100% 100%, 13% 100%, 0% 100%, 0% 18%);
}
.content_wrap.home .live_streaming .inner_box .frame_box.fullscreen .img_box .overlay {
  display: block;
}
.content_wrap.home .tickets_section {
  margin-top: 3rem;
  position: relative;
  padding: 7rem 5rem 12rem;
  background-size: cover;
  background-image: url(../imgs/tickets_bg.png);
}
.content_wrap.home .tickets_section:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 200px;
  background-image: linear-gradient(90deg, rgba(201, 120, 196, 0), #E7C589, rgba(153, 67, 146, 0));
  -webkit-clip-path: polygon(100% 0%, 61% 0, 59% 20%, 0 20%, 0 22%, 59% 22%, 61% 2%, 100% 2%);
          clip-path: polygon(100% 0%, 61% 0, 59% 20%, 0 20%, 0 22%, 59% 22%, 61% 2%, 100% 2%);
  /* Set the size of the gradient background to be larger than the element to allow movement */
  background-size: 200% 200%;
  /* Apply the animation */
  animation: gradientAnimation 3s ease infinite;
}
.content_wrap.home .tickets_section:after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: 0;
  width: 100%;
  height: 200px;
  background-image: linear-gradient(90deg, rgba(201, 120, 196, 0), #994392, rgba(153, 67, 146, 0));
  -webkit-clip-path: polygon(100% 0%, 61% 0, 59% 20%, 0 20%, 0 22%, 59% 22%, 61% 2%, 100% 2%);
          clip-path: polygon(100% 0%, 61% 0, 59% 20%, 0 20%, 0 22%, 59% 22%, 61% 2%, 100% 2%);
  /* Set the size of the gradient background to be larger than the element to allow movement */
  background-size: 200% 200%;
  /* Apply the animation */
  animation: gradientAnimation 3s ease infinite;
}
.content_wrap.home .tickets_section .title {
  gap: 10px;
  display: flex;
  color: #fff;
  padding: 0 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 6rem;
  justify-content: space-between;
}
.content_wrap.home .tickets_section .title h1 {
  font-size: 41px;
  margin-bottom: 0;
  font-family: "bold";
  text-transform: uppercase;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
.content_wrap.home .tickets_section .title h2 {
  gap: 15px;
  display: flex;
  font-size: 12px;
  align-items: center;
  text-transform: uppercase;
}
.content_wrap.home .tickets_section .wraper {
  position: relative;
}
.content_wrap.home .tickets_section .wraper .ticketSwiper {
  width: 90%;
  margin: 0 auto;
}
.content_wrap.home .tickets_section .wraper .ticketSwiper .ticket_box .head {
  color: #fff;
  position: relative;
  z-index: 2;
}
.content_wrap.home .tickets_section .wraper .ticketSwiper .ticket_box .head img {
  width: 100%;
}
.content_wrap.home .tickets_section .wraper .ticketSwiper .ticket_box .head h3 {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 20px;
  font-size: 30px;
  font-family: "bold";
  margin-bottom: 0;
  text-transform: uppercase;
}
.content_wrap.home .tickets_section .wraper .ticketSwiper .ticket_box .head h4 {
  position: absolute;
  bottom: 10px;
  right: 18%;
  margin-bottom: 0;
  color: #040720;
  font-size: 22px;
  font-family: "bold";
  text-transform: uppercase;
}
.content_wrap.home .tickets_section .wraper .ticketSwiper .ticket_box .body {
  width: 75%;
  padding: 2rem;
  margin: 0 auto;
  height: 365px;
  margin-top: -2rem;
  position: relative;
  background-color: #000;
  -webkit-clip-path: polygon(99.816% 0.174%, 100% 91.636%, 90.513% 100%, 10.815% 100%, 0.328% 91.636%, 0.144% 0.174%, 99.816% 0.174%);
          clip-path: polygon(99.816% 0.174%, 100% 91.636%, 90.513% 100%, 10.815% 100%, 0.328% 91.636%, 0.144% 0.174%, 99.816% 0.174%);
}
.content_wrap.home .tickets_section .wraper .ticketSwiper .ticket_box .body ul li {
  gap: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.9rem 0;
  font-size: 0.9rem;
}
.content_wrap.home .tickets_section .wraper .ticketSwiper .ticket_box .body ul li:after {
  content: "";
  width: 100%;
  height: 2px;
  background-image: url(../imgs/line.png);
  position: absolute;
  bottom: 0px;
  background-repeat: no-repeat;
}
.content_wrap.home .tickets_section .wraper .ticketSwiper .ticket_box .body ul li:last-of-type:after {
  content: unset;
}
.content_wrap.home .tickets_section .wraper .ticketSwiper .ticket_box .body .badge {
  height: 24px;
  width: 130px;
  bottom: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  background-color: #cc00cb;
  color: #fff;
  display: flex;
  font-size: 12px;
  align-items: center;
  font-family: "bold";
  justify-content: center;
  text-transform: uppercase;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  -webkit-clip-path: polygon(0 0, 100% 0, 86% 49%, 100% 100%, 0 100%, 12% 51%);
          clip-path: polygon(0 0, 100% 0, 86% 49%, 100% 100%, 0 100%, 12% 51%);
}
.content_wrap.home .tickets_section .wraper .ticketSwiper .ticket_box a {
  height: 64px;
  width: 185px;
  min-width: 185px;
  padding: 0 1.5rem;
  margin: 1.25rem auto 0;
}
.content_wrap.home .tickets_section .wraper .ticketSwiper .ticket_box a span {
  display: block;
}
.content_wrap.home .tickets_section .wraper .arrows {
  display: none;
}
.content_wrap.home .pc_section {
  z-index: 1;
  position: relative;
  margin-top: -3.2rem;
  padding: 5rem 10rem;
  background-size: cover;
  background-position: center center;
  background-image: url(../imgs/pc_bg.png);
}
.content_wrap.home .pc_section img {
  width: 95%;
  -o-object-fit: contain;
     object-fit: contain;
}
.content_wrap.home .pc_section .content_box {
  color: #fff;
  padding: 0 4rem;
}
.content_wrap.home .pc_section .content_box h1 {
  font-size: 41px;
  font-family: "bold";
  text-transform: uppercase;
}
.content_wrap.home .pc_section .content_box h1 span {
  display: block;
}
.content_wrap.home .pc_section .content_box h2 {
  margin: 2.25rem 0;
  font-size: 16px;
  font-weight: bold;
  text-transform: capitalize;
}
.content_wrap.home .pc_section .content_box p {
  font-size: 14px;
  margin-bottom: 1rem;
}
.content_wrap.home .pc_section .content_box a {
  color: #fff;
  width: 260px;
  height: 60px;
  margin-top: 2rem;
  display: none;
  background-color: #CC00CB;
}
.content_wrap.home .taste_section {
  margin-top: -5rem;
  padding: 10rem 6rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center -200px;
  background-image: url(../imgs/tasteBg.png);
}
.content_wrap.home .taste_section .boxes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.content_wrap.home .taste_section .boxes .box {
  position: relative;
}
.content_wrap.home .taste_section .boxes .box > img {
  width: 100%;
}
.content_wrap.home .taste_section .boxes .box .content {
  height: 140px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translate(-50%, -50%);
}
.content_wrap.home .taste_section .boxes .box .content h3 {
  font-size: 37px;
  font-weight: bold;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
.content_wrap.home .taste_section .boxes .box .content p {
  font-size: 16px;
  font-weight: bold;
}
.content_wrap.home .taste_section h1 {
  color: #fff;
  margin: 6rem 0 4rem;
  font-size: 40px;
  text-align: center;
  font-family: "bold";
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.content_wrap.home .taste_section .main_boxes .inner_box .frame_box {
  position: relative;
  z-index: 2;
}
.content_wrap.home .taste_section .main_boxes .inner_box .frame_box > img {
  position: relative;
  z-index: 2;
  width: 100%;
}
.content_wrap.home .taste_section .main_boxes .inner_box .frame_box .img_box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  z-index: 1;
  transform: translate(-50%, -50%);
  -webkit-clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
          clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
}
.content_wrap.home .taste_section .main_boxes .inner_box .frame_box .img_box img {
  width: 100%;
}
.content_wrap.home .taste_section .main_boxes .inner_box .content_box {
  width: 80%;
  color: #fff;
  padding: 2rem 2rem 1.5rem;
  margin: -3rem auto 0;
  background-color: #733e91;
  -webkit-clip-path: polygon(99.816% 0.174%, 100% 90.636%, 93.513% 100%, 6.815% 100%, 0.328% 90.636%, 0.144% 0.174%, 99.816% 0.174%);
          clip-path: polygon(99.816% 0.174%, 100% 90.636%, 93.513% 100%, 6.815% 100%, 0.328% 90.636%, 0.144% 0.174%, 99.816% 0.174%);
}
.content_wrap.home .taste_section .main_boxes .inner_box .content_box h4 {
  font-size: 22px;
  margin-top: 2rem;
  font-family: "bold";
  text-transform: uppercase;
}
.content_wrap.home .taste_section .main_boxes .inner_box .content_box p {
  margin: 1rem 0 1.5rem;
  font-size: 16px;
  font-weight: bold;
}
.content_wrap.home .taste_section .main_boxes .inner_box .content_box a {
  width: 185px;
  height: 60px;
}
.content_wrap.home .whats_new {
  padding: 12rem 6rem;
  background-position: center;
  background-size: cover;
  background-image: url(../imgs/whats_new.gif);
}
.content_wrap.home .whats_new h1 {
  color: #fff;
  font-size: 40px;
  font-family: "bold";
  margin: 1rem 0 4rem;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.content_wrap.home .whats_new .wraper {
  width: 55%;
  padding: 3rem;
  margin-left: 7rem;
  position: relative;
  border-radius: 20px;
  background-color: #cc00cb;
}
.content_wrap.home .whats_new .wraper .newSwiper {
  margin-left: -10rem;
}
.content_wrap.home .whats_new .wraper .inner_box {
  gap: 35px;
  display: flex;
  align-items: center;
}
.content_wrap.home .whats_new .wraper .inner_box .img_box {
  width: 280px;
  min-width: 280px;
  height: 310px;
  border-radius: 8px;
  overflow: hidden;
  padding: 0.5rem;
  background-image: linear-gradient(90deg, #994392, #E7C589);
}
.content_wrap.home .whats_new .wraper .inner_box .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.content_wrap.home .whats_new .wraper .inner_box .content_box {
  color: #fff;
}
.content_wrap.home .whats_new .wraper .inner_box .content_box h2 {
  font-size: 22px;
  font-family: "bold";
  text-transform: uppercase;
}
.content_wrap.home .whats_new .wraper .inner_box .content_box p {
  margin: 1.5rem 0;
  font-size: 16px;
  line-height: 1.75;
}
.content_wrap.home .whats_new .wraper .inner_box .content_box p a {
  color: #fff;
  font-weight: bold;
}
.content_wrap.home .whats_new .wraper .inner_box .content_box > .customBtn a {
  width: 140px;
  height: 50px;
}
.content_wrap.home .whats_new .wraper .arrows {
  gap: 10px;
  display: flex;
  right: 3rem;
  bottom: 3rem;
  align-items: center;
  position: absolute;
}
.content_wrap.home .whats_new .wraper .arrows .swiper-button-next,
.content_wrap.home .whats_new .wraper .arrows .swiper-button-prev,
.content_wrap.home .whats_new .wraper .arrows .swiper-pagination {
  position: unset;
}
.content_wrap.home .whats_new .wraper .arrows .swiper-button-next,
.content_wrap.home .whats_new .wraper .arrows .swiper-button-prev {
  color: #fff;
  font-size: 24px;
  height: auto;
  margin-top: 0;
}
.content_wrap.home .whats_new .wraper .arrows .swiper-pagination {
  gap: 10px;
  display: flex;
}
.content_wrap.home .whats_new .wraper .arrows .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 12px;
  height: 12px;
  border: none;
  background: #fff;
}
.content_wrap.home .whats_new .wraper .arrows .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #00ffff;
}

/* The flip card  */
.flip-card {
  height: 333px;
  perspective: 1000px;
}

.flip-card-inner {
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%; /* Safari */
  backface-visibility: hidden;
}

.flip-card-back {
  transform: rotateY(180deg);
}

.content_wrap.game_edu {
  overflow: hidden;
}
.content_wrap.game_edu .main_game_edu_tabs {
  position: relative;
  background-size: cover;
  background-image: url(../imgs/game_tabs_bg.png);
}
.content_wrap.game_edu .main_game_edu_tabs .wraper .tabs {
  width: 90%;
  margin: 0 auto;
  display: flex;
}
.content_wrap.game_edu .main_game_edu_tabs .wraper .tabs li {
  width: 50%;
  height: 56px;
  display: flex;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.content_wrap.game_edu .main_game_edu_tabs .wraper .tabs li:nth-child(1) {
  background-color: #723472;
}
.content_wrap.game_edu .main_game_edu_tabs .wraper .tabs li:nth-child(2) {
  background-color: #733e91;
}
.content_wrap.game_edu .main_game_edu_tabs .wraper .tabs li:nth-child(3) {
  background-color: #994392;
}
.content_wrap.game_edu .main_game_edu_tabs .wraper .tabs li:nth-child(4) {
  background-color: #e7c589;
}
.content_wrap.game_edu .main_game_edu_tabs .wraper .tabs li.active {
  color: #fff !important;
  background-color: #000;
}
.content_wrap.game_edu .main_game_edu_tabs .wraper .tab_details {
  padding: 3rem 5rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.15) 53.37%, #000 100%);
  display: none;
}
.content_wrap.game_edu .main_game_edu_tabs .wraper .tab_details.active {
  display: block;
}
.content_wrap.game_edu .main_game_edu_tabs .wraper .tab_details h2 {
  margin-bottom: 2rem;
}
.content_wrap.game_edu .main_game_edu_tabs .wraper .tab_details h2 span {
  display: block;
}
.content_wrap.game_edu .main_game_edu_tabs .wraper .tab_details p {
  width: 90%;
  color: #fff;
  font-size: 16px;
  margin-bottom: 1rem;
}
.content_wrap.game_edu .main_game_edu_tabs .wraper .tab_details a {
  margin-top: 2rem;
  width: 140px;
  height: 50px;
  color: #fff;
  background-color: #cc00cb;
}
.content_wrap.game_edu .main_game_edu_tabs .wraper .tab_details .img_box {
  height: 425px;
  padding: 0.5rem;
  border-radius: 8px;
  background-image: linear-gradient(90deg, #994392, #E7C589);
}
.content_wrap.game_edu .main_game_edu_tabs .wraper .tab_details .img_box img {
  width: 100%;
  height: 100%;
  display: block;
  margin-left: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.content_wrap.game_edu .main_game_edu_tabs .wraper .arrows img {
  width: 100px;
}
.content_wrap.game_edu .main_game_edu_tabs .wraper .arrows .swiper-button-next {
  right: 70px;
}
.content_wrap.game_edu .main_game_edu_tabs .wraper .arrows .swiper-button-prev {
  left: 70px;
}
.content_wrap.game_edu .def_career {
  color: #fff;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../imgs/def_career_bg.png);
}
.content_wrap.game_edu .def_career:before {
  background-image: linear-gradient(90deg, rgba(201, 120, 196, 0), #CC00CB, rgba(153, 67, 146, 0));
  transform: scale(-1, 1);
}
.content_wrap.game_edu .def_career h1 {
  margin-bottom: 2rem;
}
.content_wrap.game_edu .def_career p {
  font-size: 16px;
  margin-bottom: 1.5rem;
}
.content_wrap.game_edu .def_career a {
  width: 160px;
  height: 60px;
  color: #fff;
  background-color: #cc00cb;
}
.content_wrap.game_edu .def_career .frame_box {
  position: relative;
}
.content_wrap.game_edu .def_career .frame_box > img {
  width: 100%;
  z-index: 1;
  position: relative;
}
.content_wrap.game_edu .def_career .frame_box .img_box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  z-index: 0;
  transform: translate(-50%, -50%);
  -webkit-clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
          clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
}
.content_wrap.game_edu .def_career .frame_box .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content_wrap.game_edu .def_student {
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../imgs/def_student_bg.png);
}
.content_wrap.game_edu .def_student h1 {
  margin-bottom: 2rem;
}
.content_wrap.game_edu .def_student p {
  font-size: 16px;
  margin-bottom: 1.5rem;
}
.content_wrap.game_edu .def_student a {
  width: 160px;
  height: 60px;
  color: #fff;
  background-color: #cc00cb;
}
.content_wrap.game_edu .def_student .frame_box {
  position: relative;
}
.content_wrap.game_edu .def_student .frame_box > img {
  width: 100%;
  z-index: 1;
  position: relative;
}
.content_wrap.game_edu .def_student .frame_box .img_box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  z-index: 0;
  transform: translate(-50%, -50%);
  -webkit-clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
          clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
}
.content_wrap.game_edu .def_student .frame_box .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content_wrap.game_edu .official_sponsors {
  position: relative;
  z-index: 2;
  background-position: center 100px;
}

.content_wrap.game_summit {
  overflow: hidden;
}
.content_wrap.game_summit .game_summit_videos {
  z-index: 999;
  position: relative;
  padding: 10rem 6rem 5rem;
  background-position: right;
  background-repeat: no-repeat;
  background-image: url(../imgs/game-summit/video_bg.png);
}
.content_wrap.game_summit .game_summit_videos .wraper {
  position: relative;
}
.content_wrap.game_summit .game_summit_videos .wraper .gameSummitVideos {
  width: 80%;
  margin: 0 auto;
}
.content_wrap.game_summit .game_summit_videos .inner_box .frame_box {
  position: relative;
  z-index: 2;
}
.content_wrap.game_summit .game_summit_videos .inner_box .frame_box > img {
  position: relative;
  z-index: 2;
  width: 100%;
}
.content_wrap.game_summit .game_summit_videos .inner_box .frame_box .img_box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  z-index: 1;
  transform: translate(-50%, -50%);
  -webkit-clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
          clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
}
.content_wrap.game_summit .game_summit_videos .inner_box .frame_box .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content_wrap.game_summit .game_summit_videos .inner_box .frame_box .play_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 99;
  transform: translate(-50%, -50%);
}
.content_wrap.game_summit .game_summit_videos .inner_box .frame_box .play_btn img {
  width: 55px;
  -o-object-fit: contain;
     object-fit: contain;
}
.content_wrap.game_summit .game_summit_videos .inner_box .content_box {
  margin-top: 2rem;
  text-align: center;
}
.content_wrap.game_summit .game_summit_videos .inner_box .content_box h3 {
  color: #fff;
  font-size: 22px;
  font-family: "bold";
}
.content_wrap.game_summit .game_summit_videos .popup_video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.75);
}
.content_wrap.game_summit .game_summit_videos .popup_video .inner_popup {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 600px;
  transform: translate(-50%, -50%);
}
.content_wrap.game_summit .game_summit_videos .popup_video .inner_popup iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.content_wrap.game_summit .game_summit_videos .popup_video .close_popup {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 30px;
}
.content_wrap.game_summit .game_summit_videos .popup_video .close_popup:focus {
  outline: none;
}
.content_wrap.game_summit .game_summit_events {
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-image: url(../imgs/game-summit/b2b_event_bg.png);
}
.content_wrap.game_summit .game_summit_events .section_wraper {
  padding-bottom: 8rem;
  z-index: 11;
}
.content_wrap.game_summit .game_summit_events .section_wraper h1 {
  margin-bottom: 2rem;
  text-align: center;
}
.content_wrap.game_summit .game_summit_events .section_wraper p {
  width: 70%;
  font-size: 16px;
  margin: 0 auto 2rem;
}
.content_wrap.game_summit .game_summit_events .section_wraper .wraper {
  position: relative;
}
.content_wrap.game_summit .game_summit_events .section_wraper .wraper .gameSummitEvent {
  width: 80%;
  margin: 0 auto;
}
.content_wrap.game_summit .game_summit_events .section_wraper .wraper .gameSummitEvent .inner_box .img_box {
  height: 200px;
  overflow: hidden;
}
.content_wrap.game_summit .game_summit_events .section_wraper .wraper .gameSummitEvent .inner_box .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.content_wrap.game_summit .game_summit_events .section_wraper .wraper .gameSummitEvent .inner_box h3 {
  font-size: 16px;
  margin-top: 1rem;
  font-family: "bold";
}
.content_wrap.game_summit .bigger_event {
  color: #fff;
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-image: url(../imgs/game-summit/bigger_bg.png);
}
.content_wrap.game_summit .bigger_event:before {
  top: -50px;
  background-image: linear-gradient(90deg, rgba(201, 120, 196, 0), #CC00CB, rgba(153, 67, 146, 0));
  transform: scale(-1, 1);
}
.content_wrap.game_summit .bigger_event .section_wraper .content_box h1 {
  margin-bottom: 2rem;
}
.content_wrap.game_summit .bigger_event .section_wraper .content_box p {
  font-size: 16px;
  margin-bottom: 1.5rem;
}
.content_wrap.game_summit .bigger_event .section_wraper .content_box a {
  width: 160px;
  height: 60px;
  color: #fff;
  background-color: #cc00cb;
}
.content_wrap.game_summit .bigger_event .section_wraper .frame_box {
  position: relative;
}
.content_wrap.game_summit .bigger_event .section_wraper .frame_box > img {
  width: 100%;
  z-index: 1;
  position: relative;
}
.content_wrap.game_summit .bigger_event .section_wraper .frame_box .img_box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  z-index: 0;
  transform: translate(-50%, -50%);
  -webkit-clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
          clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
}
.content_wrap.game_summit .bigger_event .section_wraper .frame_box .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content_wrap.game_summit .def_24 {
  background-size: cover;
  background-image: url(../imgs/game-summit/new_def_bg.png);
}
.content_wrap.game_summit .def_24 .section_wraper {
  padding: 8rem 6rem;
}
.content_wrap.game_summit .def_24 .main_title {
  margin-bottom: 2rem;
}
.content_wrap.game_summit .def_24 .sub_txt {
  width: 70%;
  color: #fff;
  margin: 0 auto;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 3rem;
}
.content_wrap.game_summit .def_24 .wraper {
  position: relative;
}
.content_wrap.game_summit .def_24 .wraper .tab_details {
  padding: 3rem 5rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.15) 53.37%, #000 100%);
}
.content_wrap.game_summit .def_24 .wraper .tab_details h2 {
  color: #fff;
  font-size: 40px;
  font-family: "bold";
  margin-bottom: 2rem;
}
.content_wrap.game_summit .def_24 .wraper .tab_details h2 span {
  display: block;
}
.content_wrap.game_summit .def_24 .wraper .tab_details p {
  width: 90%;
  color: #fff;
  font-size: 16px;
  margin-bottom: 1rem;
}
.content_wrap.game_summit .def_24 .wraper .tab_details a {
  width: 140px;
  height: 50px;
  font-size: 12px;
  margin-top: 2rem;
  background-color: #E7C589;
}
.content_wrap.game_summit .def_24 .wraper .tab_details .img_box {
  height: 315px;
  padding: 0.5rem;
  border-radius: 8px;
}
.content_wrap.game_summit .def_24 .wraper .tab_details .img_box img {
  width: 100%;
  height: 100%;
  display: block;
  margin-left: auto;
  border-radius: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}
.content_wrap.game_summit .def_24 .wraper .arrows img {
  width: 100px;
}
.content_wrap.game_summit .def_24 .wraper .arrows .swiper-button-next {
  right: 0;
}
.content_wrap.game_summit .def_24 .wraper .arrows .swiper-button-prev {
  left: 0;
}
.content_wrap.game_summit .investor_connector {
  background-size: cover;
  background-position: center;
  background-image: url(../imgs/game-summit/investor_bg.png);
}
.content_wrap.game_summit .investor_connector .section_wraper {
  padding: 0rem 6rem;
}
.content_wrap.game_summit .investor_connector:before {
  top: -25px;
  background-image: linear-gradient(90deg, rgba(201, 120, 196, 0), #CC00CB, rgba(153, 67, 146, 0));
  transform: scale(-1, 1);
}
.content_wrap.game_summit .investor_connector .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.content_wrap.game_summit .investor_connector .content_box p {
  color: #fff;
  font-size: 16px;
  margin-top: 2rem;
}
.content_wrap.game_summit .investor_connector .content_box a {
  width: 175px;
  height: 60px;
  color: #fff;
  font-size: 12px;
  margin-top: 3rem;
  background-color: #CC00CB;
}
.content_wrap.game_summit .join_us {
  padding: 3rem 6rem;
  -webkit-clip-path: polygon(59.3% 8%, 62% 0%, 100% 0%, 100% 92%, 40.7% 92%, 38% 100%, 0% 100%, 0% 48%, 0% 8%);
          clip-path: polygon(59.3% 8%, 62% 0%, 100% 0%, 100% 92%, 40.7% 92%, 38% 100%, 0% 100%, 0% 48%, 0% 8%);
  background-image: linear-gradient(90deg, rgba(232, 0, 231, 0.65) 0%, #da00d9 81.56%, rgba(204, 0, 203, 0.52) 100%);
}
.content_wrap.game_summit .join_us p {
  margin: 2rem 0;
  color: #fff;
  font-size: 22px;
}
.content_wrap.game_summit .join_us a {
  height: 60px;
  width: 200px;
}
.content_wrap.game_summit .join_us img {
  width: 100%;
  margin-top: -2rem;
}

.content_wrap.faqs {
  padding: 7rem 0 6rem;
  background-size: cover;
  background-position: center;
  background-image: url(../imgs/faq_body.png);
}
.content_wrap.faqs .faqs_desc {
  color: #fff;
  margin-top: 1rem;
  font-size: 16px;
}
.content_wrap.faqs .accordion .card {
  border: none;
  margin-bottom: 2rem;
  background: transparent;
}
.content_wrap.faqs .accordion .card .card-header {
  padding: 0;
  border-bottom: none;
}
.content_wrap.faqs .accordion .card .card-header button {
  padding: 0;
  position: relative;
}
.content_wrap.faqs .accordion .card .card-header button:hover {
  text-decoration: none;
}
.content_wrap.faqs .accordion .card .card-header button img {
  width: 100%;
  position: relative;
  z-index: 2;
}
.content_wrap.faqs .accordion .card .card-header button .txt_content {
  z-index: 1;
  position: absolute;
  border-radius: 25px;
  top: 5px;
  left: 4px;
  height: 47px;
  width: 99.5%;
  font-family: "bold";
  padding: 0.5rem 2rem;
  background-color: #E7C589;
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content_wrap.faqs .accordion .card .card-header button .txt_content h3 {
  color: #000;
  margin-bottom: 0;
  font-size: 22px;
}
.content_wrap.faqs .accordion .card .card-header button .txt_content img {
  width: 24px;
}
.content_wrap.faqs .accordion .card .card-header button.collapsed .txt_content {
  background-image: linear-gradient(180deg, #cc00cb, #994392);
}
.content_wrap.faqs .accordion .card .card-header button.collapsed .txt_content h3 {
  color: #fff;
}
.content_wrap.faqs .accordion .card .card-body {
  width: 98%;
  color: #fff;
  background: #000;
  border-radius: 30px;
  margin: -1rem auto 0;
  padding: 2.5rem 3rem 2rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.privacy-policy {
  color: #fff;
  padding: 3rem 0;
}
.privacy-policy .h2 {
  font-size: 40px;
  font-family: "bold";
  text-transform: uppercase;
}
.privacy-policy .h4 {
  margin-top: 2rem;
  font-family: "bold";
  font-size: 1.375rem;
  text-transform: uppercase;
}
.privacy-policy p {
  line-height: 2;
  margin-bottom: 1rem;
}
.privacy-policy a {
  color: #fff;
  text-decoration: underline !important;
}
.privacy-policy a:hover {
  color: #994392;
}
.privacy-policy .table {
  border: 1px solid #fff;
  width: 100%;
  min-width: 600px;
}
.privacy-policy .table th {
  background: #cc00cc;
  font-size: 1.125rem;
  font-weight: normal;
  font-weight: 700;
}
.privacy-policy .table th,
.privacy-policy .table td {
  padding: 10px;
  font-size: 1.125rem;
  border: 1px solid #fff;
}
.privacy-policy ul {
  list-style-type: disc;
}
.privacy-policy #ot-sdk-cookie-policy-v2 section {
  margin-bottom: 2rem;
}
.privacy-policy #ot-sdk-cookie-policy-v2 section a {
  color: #fff;
  background: transparent;
}
.privacy-policy #ot-sdk-cookie-policy-v2 section .ot-sdk-cookie-policy-group {
  font-size: 2em !important;
  margin-bottom: 15px !important;
  font-weight: 400;
  margin-top: 15px !important;
  line-height: 2em !important;
  color: #fff !important;
}
.privacy-policy #ot-sdk-cookie-policy-v2 section .ot-sdk-cookie-policy-group-desc {
  color: #fff;
}
.privacy-policy #ot-sdk-cookie-policy-v2 section span {
  color: #fff;
}
.privacy-policy #ot-sdk-cookie-policy-v2 section table {
  border-collapse: inherit;
  margin: auto;
  border: 1px solid #d7d7d7;
  border-radius: 5px;
  border-spacing: initial;
  width: 100%;
  overflow: hidden;
}
.privacy-policy #ot-sdk-cookie-policy-v2 section table thead {
  background-color: #f6f6f4;
  font-weight: bold;
}
.privacy-policy #ot-sdk-cookie-policy-v2 section table th {
  background: #cc00cc;
}
.privacy-policy #ot-sdk-cookie-policy-v2 section table td,
.privacy-policy #ot-sdk-cookie-policy-v2 section table th {
  color: #fff;
  padding: 10px;
  font-size: 0.875rem;
  border: 1px solid #fff;
}
.privacy-policy #ot-sdk-cookie-policy-v2 section table caption {
  display: none;
}

#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description {
  color: #fff !important;
}

@media (min-width: 550px) {
  #onetrust-banner-sdk .ot-sdk-container,
  #onetrust-pc-sdk .ot-sdk-container,
  #ot-sdk-cookie-policy .ot-sdk-container {
    width: 99% !important;
  }
}
@media only screen and (max-width: 530px) {
  #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy tr {
    margin: 0 0 0em 0;
  }
}
.table-responsive::-webkit-scrollbar {
  height: 4px !important;
}

.register-form {
  padding-top: 100px;
  background-image: url(../imgs/whats_happening.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.register-form .email-text a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}
.register-form .email-text a:hover {
  color: #994392;
}
.register-form__bg-wrap {
  padding: 80px;
  background: rgba(0, 0, 0, 0.5);
  position: relative;
}
.register-form__bg-wrap:before {
  height: 30px;
  width: 30%;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: -30px;
}
.register-form__bg-wrap:after {
  content: "";
  position: absolute;
  left: 30%;
  top: -30px;
  width: 0;
  height: 0;
  border-width: 30px 0 0 30px;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.5);
  border-style: solid;
}
.register-form__form-wrap .form-group {
  gap: 13px;
  display: flex;
  margin-bottom: 16px;
}
.register-form__form-wrap .form-group.two-col {
  display: grid;
  grid-template-rows: 1fr;
}
.register-form__form-wrap .form-group .iti__flag.iti__ae {
  margin: 0px;
}
.register-form__form-wrap .form-group select {
  background-image: url("../imgs/icons/arrow.svg");
  background-position: right 24px center;
  background-repeat: no-repeat;
  -webkit-appearance: none;
}
.register-form__form-wrap .form-group .iti__arrow {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.62109 1.18359L5.46484 5.09375C5.32813 5.23047 5.16406 5.3125 5 5.3125C4.86328 5.3125 4.69922 5.23047 4.5625 5.12109L0.406251 1.21094C0.132813 0.964843 0.132813 0.554686 0.378907 0.281249C0.625001 0.00781142 1.03516 0.00781145 1.30859 0.253905L5.02734 3.75391L8.71875 0.253906C8.99219 0.00781215 9.40234 0.00781219 9.64844 0.28125C9.89453 0.527343 9.89453 0.9375 9.62109 1.18359Z' fill='%23EAEAEA'/%3E%3C/svg%3E%0A");
  width: 10px;
  height: 6px;
}
.register-form__form-wrap .form-group #apportunity {
  height: auto;
}
.register-form__form-wrap .form-group .form-control {
  background-color: #07010a;
  padding: 24px;
  color: #eaeaea;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  height: 65px;
  border: none;
  border-radius: 0;
  text-transform: uppercase;
}
.register-form__form-wrap .form-group .form-control::-webkit-input-placeholder {
  /* Edge */
  color: #eaeaea;
}
.register-form__form-wrap .form-group .form-control#selectSelector {
  color: #ffd792;
}
.register-form__form-wrap .form-group .form-control#selectSelector option {
  color: #eaeaea;
}
.register-form__form-wrap .form-group .form-control::-moz-placeholder {
  color: #eaeaea;
}
.register-form__form-wrap .form-group .form-control::placeholder {
  color: #eaeaea;
}
.register-form__form-wrap .form-group .register-form__fieldset {
  margin-bottom: 8px;
}
.register-form__form-wrap .form-group .register-form__fieldset .fieldset__check-box,
.register-form__form-wrap .form-group .register-form__fieldset .fieldset__radio {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.register-form__form-wrap .form-group .register-form__fieldset .fieldset__check-box input,
.register-form__form-wrap .form-group .register-form__fieldset .fieldset__radio input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  width: 0;
  height: 0;
}
.register-form__form-wrap .form-group .register-form__fieldset .fieldset__check-box.checked label:not([class])::after,
.register-form__form-wrap .form-group .register-form__fieldset .fieldset__radio.checked label:not([class])::after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #9900cb;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.register-form__form-wrap .form-group .register-form__fieldset label {
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: #eaeaea;
  display: flex;
  cursor: pointer;
}
.register-form__form-wrap .form-group .register-form__fieldset label:before {
  content: "";
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  width: 25px;
  height: 25px;
  margin: 3px 15px 0 0;
  background-color: #fff;
}
.register-form__form-wrap .form-group .iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 0;
  color: #eaeaea;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
}
.register-form__form-wrap .form-group .iti__selected-flag {
  border-right: 0;
  display: flex;
  align-items: center;
  padding-top: 0;
  gap: 4px;
  height: 65px;
}
.register-form__form-wrap .form-group .custom-select:after {
  display: none !important;
}
.register-form__fieldset {
  margin-bottom: 8px;
}
.register-form__fieldset .label-text {
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: #eaeaea;
}
.register-form__fieldset .label-text a {
  color: #eaeaea !important;
}
.register-form__fieldset label:not([class]) {
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: #eaeaea;
}
.register-form__submit {
  height: 60px;
  width: 160px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.25;
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  text-transform: uppercase;
  color: #994392;
  background-color: #E7C589;
  -webkit-clip-path: polygon(2.073% 31.541%, 13.565% 0%, 24.273% 0%, 27.146% 8.602%, 95.054% 8.602%, 97.927% 16.488%, 97.666% 55.914%, 85.913% 88.889%, 7.819% 88.889%, 2.073% 74.552%, 2.073% 31.541%);
          clip-path: polygon(2.073% 31.541%, 13.565% 0%, 24.273% 0%, 27.146% 8.602%, 95.054% 8.602%, 97.927% 16.488%, 97.666% 55.914%, 85.913% 88.889%, 7.819% 88.889%, 2.073% 74.552%, 2.073% 31.541%);
}
.register-form__submit:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='136' height='47' viewBox='0 0 136 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 16.6774L16.3052 0H31.4986L35.5749 4.54839H131.924L136 8.71774L135.629 29.5645L118.954 47H8.15259L0 39.4194V16.6774Z' fill='black'/%3E%3C/svg%3E%0A");
}
.register-form .h1 {
  color: #fff;
  font-size: px(64);
  font-weight: 700;
  line-height: 110%;
  font-family: "bold";
}
.register-form p {
  color: #fff;
  font-style: normal;
  font-size: 16px;
  font-weight: 300;
  line-height: 120%;
  margin-bottom: 1rem;
}
.register-form .custom-select-simple.custom-select {
  position: relative;
  height: auto !important;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}
.register-form .custom-select-simple.custom-select select {
  background-color: #07010a;
  padding: 24px;
  color: #eaeaea;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  height: 65px;
  border-radius: 0;
}
.register-form input[type=submit],
.register-form input[type=button] {
  height: 60px;
  width: 160px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.25;
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  text-transform: uppercase;
  color: #fff;
  background-color: #CC00CB;
  -webkit-clip-path: polygon(2.073% 31.541%, 13.565% 0%, 24.273% 0%, 27.146% 8.602%, 95.054% 8.602%, 97.927% 16.488%, 97.666% 55.914%, 85.913% 88.889%, 7.819% 88.889%, 2.073% 74.552%, 2.073% 31.541%);
          clip-path: polygon(2.073% 31.541%, 13.565% 0%, 24.273% 0%, 27.146% 8.602%, 95.054% 8.602%, 97.927% 16.488%, 97.666% 55.914%, 85.913% 88.889%, 7.819% 88.889%, 2.073% 74.552%, 2.073% 31.541%);
  cursor: pointer;
}
.register-form .conditional-content {
  display: none;
}
.register-form__top-icon {
  margin-bottom: 50px;
  text-align: right;
}
.register-form__top-icon .spotlight-new__down-icon {
  margin: 140px 0px 0px 0px;
}
.register-form__top-icon svg {
  margin-right: 135px;
}

.myForm .error {
  color: white;
  margin-top: 5px;
  font-size: 14px;
  position: relative;
  padding-left: 25px;
}
.myForm .error::after {
  content: "";
  background-image: url(../imgs/icons/error.svg);
  background-repeat: no-repeat;
  height: 20px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 2px;
}

.myForm .field-error .form-control,
.myForm .field-error .custom-select,
.myForm .field-error input,
.myForm .field-error select {
  border: 1px solid #cc0000 !important;
}

.fieldset__check-box .error,
.fieldset__radio .error {
  order: 1;
  pointer-events: none;
}
.fieldset__check-box .error:before,
.fieldset__radio .error:before {
  content: unset !important;
}

.content_wrap.about {
  overflow: hidden;
}
.content_wrap.about .def_career {
  color: #fff;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../imgs/about/esports_bg.png);
}
.content_wrap.about .def_career:before {
  background-image: linear-gradient(90deg, rgba(201, 120, 196, 0), #CC00CB, rgba(153, 67, 146, 0));
  transform: scale(-1, 1);
}
.content_wrap.about .def_career h1 {
  margin-bottom: 2rem;
}
.content_wrap.about .def_career p {
  font-size: 14px;
  margin-bottom: 1.5rem;
}
.content_wrap.about .def_career a {
  width: 160px;
  height: 60px;
  color: #fff;
  background-color: #cc00cb;
}
.content_wrap.about .def_career .frame_box {
  position: relative;
}
.content_wrap.about .def_career .frame_box > img {
  width: 100%;
  z-index: 1;
  position: relative;
}
.content_wrap.about .def_career .frame_box .img_box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  z-index: 0;
  transform: translate(-50%, -50%);
  -webkit-clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
          clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
}
.content_wrap.about .def_career .frame_box .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content_wrap.about .official_sponsors {
  position: relative;
  z-index: 2;
  background-position: center 100px;
}
.content_wrap.about .whats_happening {
  padding: 0;
  margin-top: 0;
  background-image: url(../imgs/about/whats_happening_bg.png);
  /*
  ul {
    li:nth-child(5) {
      color: #fff !important;
      background-color: #cc00cb;
    }
  }
  */
}
.content_wrap.about .our_locations {
  color: #fff;
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  background-image: url(../imgs/about/locations.png);
}
.content_wrap.about .our_locations .main_title {
  text-align: center;
  margin-bottom: 4rem;
}
.content_wrap.about .our_locations h2 {
  font-size: 26px;
  font-family: "bold";
  height: 63px;
  margin-bottom: 2rem;
}
.content_wrap.about .our_locations p {
  width: 70%;
  font-size: 16px;
  margin: 1rem 0 2rem;
}
.content_wrap.about .our_locations .inner_box {
  gap: 10px 30px;
  display: flex;
}
.content_wrap.about .our_locations .inner_box .box {
  gap: 10px;
  display: flex;
  font-weight: bold;
  align-items: center;
  font-size: 18px;
  margin-bottom: 1.5rem;
}
.content_wrap.about .our_locations .inner_box .box img {
  margin: -2rem -1rem;
}
.content_wrap.about .our_locations .inner_box h3 {
  color: #e7c589;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 1rem;
}
.content_wrap.about .our_locations .inner_box ul li {
  font-size: 14px;
  width: -moz-max-content;
  width: max-content;
}
.content_wrap.about .our_locations .inner_box ul li span {
  font-weight: bold;
}
.content_wrap.about .map {
  position: relative;
  margin-top: -2rem;
  z-index: 2;
}
.content_wrap.about .map iframe {
  width: 100%;
  filter: invert(90%);
}
.content_wrap.about .our_story {
  background-size: cover;
  background-position: center;
  background-image: url(../imgs/about/def_story_bg.jpg);
}
.content_wrap.about .our_story:before {
  background-image: linear-gradient(90deg, rgba(201, 120, 196, 0), #CC00CB, rgba(153, 67, 146, 0));
  transform: scale(-1, 1);
}
.content_wrap.about .our_story .main_title {
  margin-bottom: 2rem;
}
.content_wrap.about .our_story .main_img {
  width: 70%;
  margin: 0 auto;
  display: block;
}
.content_wrap.about .our_story .inner_box {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}
.content_wrap.about .our_story .inner_box .img_box {
  width: 190px;
  min-width: 190px;
  border-radius: 10px;
  overflow: hidden;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.content_wrap.about .our_story .inner_box .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content_wrap.about .our_story .inner_box .content_box {
  color: #fff;
  display: flex;
  padding: 1rem;
  align-items: center;
  border-radius: 20px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background: linear-gradient(90deg, #000 30.6%, rgba(0, 0, 0, 0.29) 98.56%);
}
.content_wrap.about .our_story .inner_box .content_box p {
  font-size: 14px;
}
.content_wrap.about .whats_happening.three_tabs {
  background-image: url(../imgs/about/new_year.png);
}
.content_wrap.about .whats_happening.three_tabs:before {
  background-image: linear-gradient(90deg, rgba(201, 120, 196, 0), #CC00CB, rgba(153, 67, 146, 0));
  transform: scale(-1, 1);
}

.content_wrap.game_expo {
  overflow: hidden;
}
.content_wrap.game_expo .game_summit_videos {
  z-index: 999;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../imgs/game-expo/what_is_gameexpo.png);
}
.content_wrap.game_expo .game_summit_videos .section_wraper {
  padding: 10rem 6rem;
  z-index: 11;
}
.content_wrap.game_expo .game_summit_videos .content_box h1 {
  margin-bottom: 2rem;
}
.content_wrap.game_expo .game_summit_videos .content_box p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 2rem;
}
.content_wrap.game_expo .game_summit_videos .content_box a {
  height: 55px;
  color: #fff;
  width: 165px;
  background-color: #cc00cb;
}
.content_wrap.game_expo .game_summit_videos .inner_box .frame_box {
  position: relative;
  z-index: 2;
}
.content_wrap.game_expo .game_summit_videos .inner_box .frame_box > img {
  position: relative;
  z-index: 2;
  width: 100%;
}
.content_wrap.game_expo .game_summit_videos .inner_box .frame_box .img_box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  z-index: 1;
  transform: translate(-50%, -50%);
  -webkit-clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
          clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
}
.content_wrap.game_expo .game_summit_videos .inner_box .frame_box .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content_wrap.game_expo .game_summit_videos .inner_box .frame_box .play_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 99;
  transform: translate(-50%, -50%);
}
.content_wrap.game_expo .game_summit_videos .inner_box .frame_box .play_btn img {
  width: 55px;
  -o-object-fit: contain;
     object-fit: contain;
}
.content_wrap.game_expo .game_summit_videos .popup_video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.75);
}
.content_wrap.game_expo .game_summit_videos .popup_video .inner_popup {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 600px;
  transform: translate(-50%, -50%);
}
.content_wrap.game_expo .game_summit_videos .popup_video .inner_popup iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.content_wrap.game_expo .game_summit_videos .popup_video .close_popup {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 30px;
}
.content_wrap.game_expo .game_summit_videos .popup_video .close_popup:focus {
  outline: none;
}
.content_wrap.game_expo .cosplay_section {
  color: #fff;
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-image: url(../imgs/game-expo/cosplay_bg.png);
}
.content_wrap.game_expo .cosplay_section:before {
  top: -50px;
  background-image: linear-gradient(90deg, rgba(201, 120, 196, 0), #CC00CB, rgba(153, 67, 146, 0));
  transform: scale(-1, 1);
}
.content_wrap.game_expo .cosplay_section .section_wraper .content_box h1 {
  margin-bottom: 2rem;
}
.content_wrap.game_expo .cosplay_section .section_wraper .content_box p {
  font-size: 16px;
  margin-bottom: 1.5rem;
}
.content_wrap.game_expo .cosplay_section .section_wraper .content_box a {
  width: 160px;
  height: 60px;
  color: #fff;
  background-color: #cc00cb;
}
.content_wrap.game_expo .cosplay_section .section_wraper .frame_box {
  position: relative;
}
.content_wrap.game_expo .cosplay_section .section_wraper .frame_box > img {
  width: 100%;
  z-index: 1;
  position: relative;
}
.content_wrap.game_expo .cosplay_section .section_wraper .frame_box .img_box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  z-index: 0;
  transform: translate(-50%, -50%);
  -webkit-clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
          clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
}
.content_wrap.game_expo .cosplay_section .section_wraper .frame_box .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content_wrap.game_expo .cosplay_section .custom-buttons .customBtn {
  float: left;
  margin-top: 15px;
  margin-right: 15px;
}
.content_wrap.game_expo .cosplay_section .custom-buttons .customBtn a {
  width: 170px;
}
.content_wrap.game_expo .cosplay_section .custom-buttons .customBtn:nth-child(1) a {
  color: #040720;
  background-color: #E7C589;
}
.content_wrap.game_expo .game_zones {
  background-size: cover;
  background-image: url(../imgs/game-expo/zones_bg.png);
}
.content_wrap.game_expo .game_zones .section_wraper {
  padding: 8rem 6rem;
}
.content_wrap.game_expo .game_zones .main_title {
  margin-bottom: 2rem;
}
.content_wrap.game_expo .game_zones .sub_txt {
  width: 70%;
  color: #fff;
  margin: 0 auto;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 3rem;
}
.content_wrap.game_expo .game_zones .wraper {
  position: relative;
}
.content_wrap.game_expo .game_zones .wraper .tab_details {
  padding: 3rem 5rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.15) 53.37%, #000 100%);
}
.content_wrap.game_expo .game_zones .wraper .tab_details h2 {
  color: #fff;
  font-size: 40px;
  font-family: "bold";
  margin-bottom: 2rem;
}
.content_wrap.game_expo .game_zones .wraper .tab_details h2 span {
  display: block;
}
.content_wrap.game_expo .game_zones .wraper .tab_details p {
  width: 90%;
  color: #fff;
  font-size: 16px;
  margin-bottom: 1rem;
}
.content_wrap.game_expo .game_zones .wraper .tab_details a {
  width: 140px;
  height: 50px;
  font-size: 12px;
  margin-top: 2rem;
  background-color: #E7C589;
}
.content_wrap.game_expo .game_zones .wraper .tab_details .img_box {
  height: 315px;
  padding: 0.5rem;
  border-radius: 8px;
}
.content_wrap.game_expo .game_zones .wraper .tab_details .img_box img {
  width: 100%;
  height: 100%;
  display: block;
  margin-left: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.content_wrap.game_expo .game_zones .wraper .arrows img {
  width: 100px;
}
.content_wrap.game_expo .game_zones .wraper .arrows .swiper-button-next {
  right: 0;
}
.content_wrap.game_expo .game_zones .wraper .arrows .swiper-button-prev {
  left: 0;
}
.content_wrap.game_expo .expo_calender {
  color: #fff;
  background-size: cover;
  background-image: url(../imgs/game-expo/calendar_bg.png);
}
.content_wrap.game_expo .expo_calender:before {
  top: -50px;
  background-image: linear-gradient(90deg, rgba(201, 120, 196, 0), #CC00CB, rgba(153, 67, 146, 0));
  transform: scale(-1, 1);
}
.content_wrap.game_expo .expo_calender h1 {
  margin-bottom: 1rem;
}
.content_wrap.game_expo .expo_calender p {
  width: 80%;
  margin: 0 auto 3rem;
}
.content_wrap.game_expo .expo_calender .dates .date_box {
  border-top: 5px solid #E7C589;
  border-radius: 0 0 27px 27px;
  background-color: rgba(0, 0, 0, 0.85);
}
.content_wrap.game_expo .expo_calender .dates .date_box svg {
  width: 100%;
  height: 2px;
}
.content_wrap.game_expo .expo_calender .dates .date_box .head {
  padding: 1.5rem;
  margin-bottom: -1rem;
}
.content_wrap.game_expo .expo_calender .dates .date_box .head h2 {
  font-size: 16px;
  text-transform: uppercase;
}
.content_wrap.game_expo .expo_calender .dates .date_box .head h3 {
  font-size: 36px;
  font-family: "bold";
  text-transform: uppercase;
  margin-bottom: 0;
}
.content_wrap.game_expo .expo_calender .dates .date_box .body {
  padding: 1rem 1.5rem;
}
.content_wrap.game_expo .expo_calender .dates .date_box .body .box {
  margin-bottom: 0rem;
}
.content_wrap.game_expo .expo_calender .dates .date_box .body .box h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.content_wrap.game_expo .expo_calender .dates .date_box .body .box p {
  width: 100%;
  font-size: 16px;
  margin-bottom: 1.5rem;
}
.content_wrap.game_expo .getting_expo {
  background-size: cover;
  background-image: url(../imgs/game-expo/getting_bg.png);
}
.content_wrap.game_expo .getting_expo .inner_box {
  gap: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
.content_wrap.game_expo .getting_expo .inner_box .frame_box {
  position: relative;
  width: 220px;
  min-width: 220px;
}
.content_wrap.game_expo .getting_expo .inner_box .frame_box > img {
  width: 100%;
  z-index: 1;
  position: relative;
}
.content_wrap.game_expo .getting_expo .inner_box .frame_box .img_box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  z-index: 0;
  transform: translate(-50%, -50%);
  -webkit-clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
          clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
}
.content_wrap.game_expo .getting_expo .inner_box .frame_box .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content_wrap.game_expo .getting_expo .inner_box .content_box h2 {
  font-size: 22px;
  font-family: "bold";
  text-transform: uppercase;
}
.content_wrap.game_expo .getting_expo .inner_box .content_box p {
  font-size: 14px;
}
.content_wrap.game_expo .getting_expo .inner_box:last-of-type {
  margin-bottom: 0;
}
.content_wrap.game_expo .getting_expo h1 {
  margin-bottom: 2rem;
}
.content_wrap.game_expo .getting_expo .customBtn a {
  height: 60px;
  color: #fff;
  width: 200px;
  background-color: #cc00cb;
}
.content_wrap.game_expo .map {
  position: relative;
  margin-top: 0;
  z-index: 2;
}
.content_wrap.game_expo .map iframe {
  width: 100%;
  filter: invert(90%);
}
.content_wrap.game_expo .join_us {
  margin-top: -0.5rem;
  padding: 3rem 6rem;
  -webkit-clip-path: polygon(0% 0%, 62% 0%, 100% 0%, 100% 92%, 40.7% 92%, 38% 100%, 0% 100%, 0% 48%, 0% 8%);
          clip-path: polygon(0% 0%, 62% 0%, 100% 0%, 100% 92%, 40.7% 92%, 38% 100%, 0% 100%, 0% 48%, 0% 8%);
  background-image: linear-gradient(90deg, rgba(232, 0, 231, 0.65) 0%, #da00d9 81.56%, rgba(204, 0, 203, 0.52) 100%);
}
.content_wrap.game_expo .join_us p {
  margin: 2rem 0;
  color: #fff;
  font-size: 20px;
}
.content_wrap.game_expo .join_us a {
  height: 60px;
  width: 200px;
}
.content_wrap.game_expo .join_us img {
  width: 70%;
  display: block;
  margin: 0 auto;
}

.content_wrap.play_beyond {
  overflow: hidden;
}
.content_wrap.play_beyond .what_is_play,
.content_wrap.play_beyond .epic_show {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-image: url(../imgs/play-beyond/what_is_play.png);
}
.content_wrap.play_beyond .what_is_play h1,
.content_wrap.play_beyond .epic_show h1 {
  margin-bottom: 2rem;
}
.content_wrap.play_beyond .what_is_play p,
.content_wrap.play_beyond .epic_show p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 1.5rem;
}
.content_wrap.play_beyond .what_is_play .frame_box,
.content_wrap.play_beyond .epic_show .frame_box {
  position: relative;
}
.content_wrap.play_beyond .what_is_play .frame_box > img,
.content_wrap.play_beyond .epic_show .frame_box > img {
  width: 100%;
  z-index: 1;
  position: relative;
}
.content_wrap.play_beyond .what_is_play .frame_box .img_box,
.content_wrap.play_beyond .epic_show .frame_box .img_box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  z-index: 0;
  transform: translate(-50%, -50%);
  -webkit-clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
          clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
}
.content_wrap.play_beyond .what_is_play .frame_box .img_box img,
.content_wrap.play_beyond .epic_show .frame_box .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content_wrap.play_beyond .play_beyond_section {
  background-image: url(../imgs/play-beyond/play_section_bg.png);
}
.content_wrap.play_beyond .epic_show {
  background-image: url(../imgs/play-beyond/epic_bg.png);
}
.content_wrap.play_beyond .epic_show:before {
  top: -50px;
  background-image: linear-gradient(90deg, rgba(201, 120, 196, 0), #CC00CB, rgba(153, 67, 146, 0));
  transform: scale(-1, 1);
}
.content_wrap.play_beyond .epic_show h1 span {
  display: block;
}
.content_wrap.play_beyond .epic_show ul li {
  gap: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.content_wrap.play_beyond .epic_show ul li p {
  margin-bottom: 0;
}
.content_wrap.play_beyond .epic_show ul li p span {
  font-weight: bold;
}
.content_wrap.play_beyond .main_boxes_section {
  padding-top: 4rem;
}
.content_wrap.play_beyond .main_boxes_section .inner_box .frame_box {
  position: relative;
  z-index: 2;
}
.content_wrap.play_beyond .main_boxes_section .inner_box .frame_box > img {
  position: relative;
  z-index: 2;
  width: 100%;
}
.content_wrap.play_beyond .main_boxes_section .inner_box .frame_box .img_box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  z-index: 1;
  transform: translate(-50%, -50%);
  -webkit-clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
          clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
}
.content_wrap.play_beyond .main_boxes_section .inner_box .frame_box .img_box img {
  width: 100%;
}
.content_wrap.play_beyond .main_boxes_section .inner_box .content_box {
  width: 80%;
  color: #fff;
  padding: 2rem 2rem 1.5rem;
  margin: -3rem auto 0;
  background-color: #733e91;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.content_wrap.play_beyond .main_boxes_section .inner_box .content_box h4 {
  font-size: 40px;
  margin-top: 2rem;
  font-family: "bold";
  text-transform: uppercase;
}
.content_wrap.play_beyond .main_boxes_section .inner_box .content_box p {
  margin: 1rem 0 1.5rem;
  font-size: 16px;
  font-weight: bold;
}
.content_wrap.play_beyond .main_boxes_section .inner_box .content_box a {
  width: 185px;
  height: 60px;
}

.content_wrap.news {
  overflow: hidden;
}
.content_wrap.news .main_articale {
  padding-top: 2rem;
}
.content_wrap.news .main_articale .section_wraper {
  padding-bottom: 0;
}
.content_wrap.news .main_articale .section_wraper ul {
  list-style-type: disc;
  color: white;
}
.content_wrap.news .main_articale:before {
  background-image: linear-gradient(90deg, rgba(201, 120, 196, 0), #CC00CB, rgba(153, 67, 146, 0));
  transform: scale(-1, 1);
}
.content_wrap.news .main_articale p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 2rem;
  line-height: 2;
}
.content_wrap.news .main_boxes_section {
  padding-top: 2rem;
}
.content_wrap.news .main_boxes_section:before {
  background-image: linear-gradient(90deg, rgba(201, 120, 196, 0), #CC00CB, rgba(153, 67, 146, 0));
  transform: scale(-1, 1);
}
.content_wrap.news .main_boxes_section .inner_box {
  margin-bottom: 3rem;
}
.content_wrap.news .main_boxes_section .inner_box .frame_box {
  position: relative;
  z-index: 2;
}
.content_wrap.news .main_boxes_section .inner_box .frame_box > img {
  position: relative;
  z-index: 2;
  width: 100%;
}
.content_wrap.news .main_boxes_section .inner_box .frame_box .img_box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  z-index: 1;
  transform: translate(-50%, -50%);
  -webkit-clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
          clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100.1% 82%, 86% 100.3%, 13% 100.3%, 0.2% 82%, 0% 18%);
}
.content_wrap.news .main_boxes_section .inner_box .frame_box .img_box img {
  width: 100%;
}
.content_wrap.news .main_boxes_section .inner_box .frame_box .img_box .date {
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  display: flex;
  padding: 1rem 0 0rem;
  align-items: center;
  justify-content: center;
  border-bottom-right-radius: 20px;
  background-color: rgb(204, 0, 203);
}
.content_wrap.news .main_boxes_section .inner_box .frame_box .img_box .date h3 {
  font-size: 22px;
  color: #fff;
  font-family: "bold";
  text-transform: uppercase;
}
.content_wrap.news .main_boxes_section .inner_box .frame_box .img_box .date h3 span {
  display: block;
  margin-top: -0.5rem;
}
.content_wrap.news .main_boxes_section .inner_box .content_box {
  width: 80%;
  color: #fff;
  padding: 2rem 2rem 1.5rem;
  margin: -2rem auto 0;
  background-color: #733e91;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.content_wrap.news .main_boxes_section .inner_box .content_box p {
  margin: 1rem 0 1.5rem;
  font-size: 16px;
  font-weight: bold;
}
.content_wrap.news .main_boxes_section .inner_box .content_box a {
  width: 185px;
  height: 60px;
}
.content_wrap.news .main_boxes_section .load_more {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin: 2rem auto 0;
}
.content_wrap.news .main_boxes_section .load_more a {
  color: #fff;
  height: 60px;
  width: 180px;
  min-width: 180px;
  background-color: rgb(204, 0, 203);
}

.play_beyond_section {
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-image: url(../imgs/game-expo/play_bg.png);
}
.play_beyond_section .section_wraper h1 {
  margin-bottom: 2rem;
  text-align: center;
}
.play_beyond_section .section_wraper p {
  width: 80%;
  font-size: 16px;
  margin: 0 auto 2rem;
}
.play_beyond_section .section_wraper .wraper {
  padding: 3rem 5rem;
  margin-bottom: 2rem;
  border-radius: 15px;
  position: relative;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.15) 53.37%, #000 100%);
}
.play_beyond_section .section_wraper .wraper .inner_box {
  overflow: hidden;
  border-radius: 10px 10px 27px 27px;
  background-color: rgba(153, 67, 146, 0.85);
}
.play_beyond_section .section_wraper .wraper .inner_box .img_box {
  padding: 10px;
  overflow: hidden;
  border-radius: 10px;
  background-image: linear-gradient(90deg, #994392, #e7c589);
}
.play_beyond_section .section_wraper .wraper .inner_box .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.play_beyond_section .section_wraper .wraper .inner_box .content_box {
  font-family: "bold";
  padding: 1rem 0.5rem;
  text-transform: uppercase;
}
.play_beyond_section .section_wraper .wraper .inner_box .content_box h2 {
  font-size: 22px;
  margin-bottom: 0;
}
.play_beyond_section .section_wraper .wraper .arrows img {
  width: 100px;
}
.play_beyond_section .section_wraper .wraper .arrows .swiper-button-next {
  right: 0;
}
.play_beyond_section .section_wraper .wraper .arrows .swiper-button-prev {
  left: 0;
}
.play_beyond_section .section_wraper .customBtn {
  margin: 0 auto;
}
.play_beyond_section .section_wraper .customBtn a {
  height: 55px;
  color: #fff;
  width: 175px;
  font-size: 14px;
  background-color: #cc00cb;
}

.official_sponsors {
  padding: 4rem 6rem;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center -200px;
  background-image: url(../imgs/sponsor_bg.png);
}
.official_sponsors h1 {
  color: #fff;
  font-size: 40px;
  font-family: "bold";
  margin-bottom: 4rem;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.official_sponsors .wraper {
  width: 90%;
  margin: 0 auto;
  position: relative;
}
.official_sponsors .wraper .inner_box .frame {
  position: relative;
}
.official_sponsors .wraper .inner_box .frame img {
  width: 100%;
}
.official_sponsors .wraper .inner_box .frame .sponsor_img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  padding: 1.5rem;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.official_sponsors .wraper .inner_box .frame .sponsor_img img {
  width: 100%;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.official_sponsors .wraper .arrows .swiper-button-next {
  right: -110px;
}
.official_sponsors .wraper .arrows .swiper-button-prev {
  left: -110px;
}
.official_sponsors .title {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0 2rem;
  justify-content: space-between;
}
.official_sponsors .title h1 {
  margin-bottom: 0;
}
.official_sponsors .title a {
  width: 140px;
  height: 50px;
  color: #fff;
  background-color: #cc00cb;
}
.official_sponsors .social_img {
  width: 100%;
}
.official_sponsors .social_wraper {
  z-index: -1;
  position: absolute;
  width: 100%;
  top: 20%;
  left: 0;
  height: 600px;
  background-size: cover;
}

.iti {
  position: relative;
  display: inline-block;
  width: 100%;
}

.iti.iti--allow-dropdown {
  height: 60px;
}

.iti * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti input,
.iti input[type=text],
.iti input[type=tel] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
  width: 110px;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 24px 5px 0 20px;
  /* margin-top : 16px; */
  border-right: 1px solid rgb(192, 192, 192);
}

.iti__arrow {
  margin-left: 6px;
  background: url("../imgs/dd-arrow.svg") center center no-repeat;
  width: 14px;
  height: 10px;
  background-size: 14px;
  float: right;
  margin-right: 15px;
}

.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  border: 1px solid #ccc;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px;
}

@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal;
  }
}
.iti__flag-box {
  display: inline-block;
  width: 20px;
}

.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
}

.iti__country {
  padding: 5px 10px;
  outline: none;
  direction: ltr;
}

.iti__dial-code {
  color: #999;
}

.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti__flag-box,
.iti__country-name,
.iti__dial-code {
  color: #000;
  vertical-align: middle;
}

.iti__country-name {
  margin-left: 20px;
}

.iti__flag-box,
.iti__country-name {
  margin-right: 6px;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
  padding-right: 8px;
  padding-left: 135px;
  width: 100%;
  height: 100%;
  margin-left: 0;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}

.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
  cursor: default;
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
}

.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

.iti--container:hover {
  cursor: pointer;
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
}

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  width: 20px;
}

.iti__flag.iti__be {
  width: 18px;
}

.iti__flag.iti__ch {
  width: 15px;
}

.iti__flag.iti__mc {
  width: 19px;
}

.iti__flag.iti__ne {
  width: 18px;
}

.iti__flag.iti__np {
  width: 13px;
}

.iti__flag.iti__va {
  width: 15px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-size: 5652px 15px;
  }
}
.iti__flag.iti__ac {
  height: 10px;
  background-position: 0px 0px;
}

.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0px;
}

.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0px;
}

.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0px;
}

.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0px;
}

.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0px;
}

.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0px;
}

.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0px;
}

.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0px;
}

.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0px;
}

.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0px;
}

.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0px;
}

.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0px;
}

.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0px;
}

.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0px;
}

.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0px;
}

.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0px;
}

.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0px;
}

.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0px;
}

.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0px;
}

.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0px;
}

.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0px;
}

.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0px;
}

.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0px;
}

.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0px;
}

.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0px;
}

.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0px;
}

.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0px;
}

.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0px;
}

.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0px;
}

.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0px;
}

.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0px;
}

.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0px;
}

.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0px;
}

.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0px;
}

.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0px;
}

.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0px;
}

.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px 0px;
}

.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0px;
}

.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0px;
}

.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0px;
}

.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0px;
}

.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0px;
}

.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0px;
}

.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0px;
}

.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0px;
}

.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0px;
}

.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0px;
}

.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0px;
}

.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0px;
}

.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0px;
}

.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px 0px;
}

.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px 0px;
}

.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px 0px;
}

.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px 0px;
}

.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px 0px;
}

.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px 0px;
}

.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px 0px;
}

.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px 0px;
}

.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px 0px;
}

.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px 0px;
}

.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px 0px;
}

.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px 0px;
}

.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px 0px;
}

.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px 0px;
}

.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px 0px;
}

.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px 0px;
}

.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px 0px;
}

.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px 0px;
}

.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px 0px;
}

.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px 0px;
}

.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px 0px;
}

.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px 0px;
}

.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px 0px;
}

.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px 0px;
}

.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px 0px;
}

.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px 0px;
}

.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px 0px;
}

.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px 0px;
}

.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px 0px;
}

.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px 0px;
}

.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px 0px;
}

.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px 0px;
}

.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px 0px;
}

.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px 0px;
}

.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px 0px;
}

.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px 0px;
}

.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px 0px;
}

.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px 0px;
}

.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px 0px;
}

.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px 0px;
}

.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px 0px;
}

.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px 0px;
}

.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px 0px;
}

.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px 0px;
}

.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px 0px;
}

.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px 0px;
}

.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px 0px;
}

.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px 0px;
}

.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px 0px;
}

.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px 0px;
}

.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px 0px;
}

.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px 0px;
}

.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px 0px;
}

.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px 0px;
}

.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px 0px;
}

.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px 0px;
}

.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px 0px;
}

.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px 0px;
}

.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px 0px;
}

.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px 0px;
}

.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px 0px;
}

.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px 0px;
}

.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px 0px;
}

.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px 0px;
}

.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px 0px;
}

.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px 0px;
}

.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px 0px;
}

.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px 0px;
}

.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px 0px;
}

.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px 0px;
}

.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px 0px;
}

.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px 0px;
}

.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px 0px;
}

.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px 0px;
}

.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px 0px;
}

.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px 0px;
}

.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px 0px;
}

.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px 0px;
}

.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px 0px;
}

.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px 0px;
}

.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px 0px;
}

.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px 0px;
}

.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px 0px;
}

.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px 0px;
}

.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px 0px;
}

.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px 0px;
}

.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px 0px;
}

.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px 0px;
}

.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px 0px;
}

.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px 0px;
}

.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px 0px;
}

.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px 0px;
}

.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px 0px;
}

.iti__flag.iti__md {
  height: 10px;
  background-position: -3160px 0px;
}

.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px 0px;
}

.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px 0px;
}

.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px 0px;
}

.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px 0px;
}

.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px 0px;
}

.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px 0px;
}

.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px 0px;
}

.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px 0px;
}

.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px 0px;
}

.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px 0px;
}

.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px 0px;
}

.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px 0px;
}

.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px 0px;
}

.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px 0px;
}

.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px 0px;
}

.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px 0px;
}

.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px 0px;
}

.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px 0px;
}

.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px 0px;
}

.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px 0px;
}

.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px 0px;
}

.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px 0px;
}

.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px 0px;
}

.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px 0px;
}

.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px 0px;
}

.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px 0px;
}

.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px 0px;
}

.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px 0px;
}

.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px 0px;
}

.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px 0px;
}

.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px 0px;
}

.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px 0px;
}

.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px 0px;
}

.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px 0px;
}

.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px 0px;
}

.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px 0px;
}

.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px 0px;
}

.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px 0px;
}

.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px 0px;
}

.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px 0px;
}

.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px 0px;
}

.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px 0px;
}

.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px 0px;
}

.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px 0px;
}

.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px 0px;
}

.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px 0px;
}

.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px 0px;
}

.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px 0px;
}

.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px 0px;
}

.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px 0px;
}

.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px 0px;
}

.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px 0px;
}

.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px 0px;
}

.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px 0px;
}

.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px 0px;
}

.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px 0px;
}

.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px 0px;
}

.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px 0px;
}

.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px 0px;
}

.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px 0px;
}

.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px 0px;
}

.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px 0px;
}

.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px 0px;
}

.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px 0px;
}

.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px 0px;
}

.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px 0px;
}

.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px 0px;
}

.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px 0px;
}

.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px 0px;
}

.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px 0px;
}

.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px 0px;
}

.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px 0px;
}

.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px 0px;
}

.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px 0px;
}

.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px 0px;
}

.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px 0px;
}

.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px 0px;
}

.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px 0px;
}

.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px 0px;
}

.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px 0px;
}

.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px 0px;
}

.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px 0px;
}

.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px 0px;
}

.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px 0px;
}

.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px 0px;
}

.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px 0px;
}

.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px 0px;
}

.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px 0px;
}

.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px 0px;
}

.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px 0px;
}

.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px 0px;
}

.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px 0px;
}

.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px 0px;
}

.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px 0px;
}

.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px 0px;
}

.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px 0px;
}

.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px 0px;
}

.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px 0px;
}

.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px 0px;
}

.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px 0px;
}

.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px 0px;
}

.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px 0px;
}

.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px 0px;
}

.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px 0px;
}

.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px 0px;
}

.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px 0px;
}

.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px 0px;
}

.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px 0px;
}

.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px 0px;
}

.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px 0px;
}

.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px 0px;
}

.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px 0px;
}

.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px 0px;
}

.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("../imgs/flags.webp");
  background-repeat: no-repeat;
  background-color: #dbdbdb;
  background-position: 20px 0;
  float: left;
  margin-left: 15px;
}

.iti__flag.iti__np {
  background-color: transparent;
}

.ar .iti__country-list {
  left: 0;
  text-align: right;
}

.ar .iti__flag {
  margin-right: 15px;
  margin-left: 0;
}

.ar .iti__country-name {
  margin-right: 20px;
  margin-left: 6px;
}

.main_title {
  color: #fff;
  font-size: 40px;
  font-family: "bold";
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.customBtn {
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
.customBtn a {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.25;
  gap: 10px;
  display: flex;
  padding: 0 1rem;
  color: #040720;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  background-color: #E7C589;
  -webkit-clip-path: polygon(2.073% 31.541%, 13.565% 0%, 24.273% 0%, 27.146% 8.602%, 95.054% 8.602%, 97.927% 16.488%, 97.666% 55.914%, 85.913% 88.889%, 7.819% 88.889%, 2.073% 74.552%, 2.073% 31.541%);
          clip-path: polygon(2.073% 31.541%, 13.565% 0%, 24.273% 0%, 27.146% 8.602%, 95.054% 8.602%, 97.927% 16.488%, 97.666% 55.914%, 85.913% 88.889%, 7.819% 88.889%, 2.073% 74.552%, 2.073% 31.541%);
}
.customBtn:before {
  top: 0;
  left: 4px;
  width: 15px;
  height: 15px;
  position: absolute;
  border: 1px solid #cc00cb;
  border-right: 0;
  border-bottom: 0;
}
.customBtn:after {
  bottom: 7px;
  right: 4px;
  width: 15px;
  height: 15px;
  position: absolute;
  border: 1px solid #cc00cb;
  border-left: 0;
  border-top: 0;
}
.customBtn:hover:before, .customBtn:hover:after {
  content: "";
}

.section_wraper {
  position: relative;
  padding: 6rem;
  z-index: 2;
}
.section_wraper::before, .section_wraper:after {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  z-index: -1;
}
.section_wraper:before {
  top: 0;
  height: 250px;
  background-image: linear-gradient(180deg, #040720 0%, rgba(4, 7, 32, 0) 100%);
}
.section_wraper:after {
  bottom: 0;
  height: 205px;
  background-image: linear-gradient(0deg, #040720 0%, rgba(4, 7, 32, 0) 100%);
}

.top_shape {
  position: relative;
}
.top_shape:before {
  z-index: 10;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 200px;
  background-image: linear-gradient(90deg, rgba(201, 120, 196, 0), #E7C589, rgba(153, 67, 146, 0));
  -webkit-clip-path: polygon(100% 0%, 61% 0, 59% 20%, 0 20%, 0 22%, 59% 22%, 61% 2%, 100% 2%);
          clip-path: polygon(100% 0%, 61% 0, 59% 20%, 0 20%, 0 22%, 59% 22%, 61% 2%, 100% 2%);
  background-size: 200% 200%;
  animation: gradientAnimation 3s ease infinite;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.whats_happening {
  margin-top: -4rem;
  position: relative;
  background-size: cover;
  padding: 10rem 6rem 5rem;
  background-position: center;
  background-image: url(../imgs/whats_happening.png);
}
.whats_happening:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 200px;
  background-image: linear-gradient(90deg, rgba(201, 120, 196, 0), #E7C589, rgba(153, 67, 146, 0));
  -webkit-clip-path: polygon(100% 0%, 61% 0, 59% 20%, 0 20%, 0 22%, 59% 22%, 61% 2%, 100% 2%);
          clip-path: polygon(100% 0%, 61% 0, 59% 20%, 0 20%, 0 22%, 59% 22%, 61% 2%, 100% 2%);
  /* Set the size of the gradient background to be larger than the element to allow movement */
  background-size: 200% 200%;
  /* Apply the animation */
  animation: gradientAnimation 3s ease infinite;
}
.whats_happening h1 {
  color: #fff;
  font-size: 40px;
  text-align: center;
  font-family: "bold";
  margin-bottom: 4rem;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.whats_happening .wraper .tabs {
  width: 90%;
  margin: 0 auto;
  display: flex;
}
.whats_happening .wraper .tabs li {
  width: 25%;
  height: 56px;
  display: flex;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.whats_happening .wraper .tabs li:nth-child(1) {
  background-color: #723472;
}
.whats_happening .wraper .tabs li:nth-child(2) {
  background-color: #733e91;
}
.whats_happening .wraper .tabs li:nth-child(3) {
  background-color: #994392;
}
.whats_happening .wraper .tabs li:nth-child(4) {
  background-color: #e7c589;
}
.whats_happening .wraper .tabs li:nth-child(5) {
  background-color: #cc00cb;
}
.whats_happening .wraper .tabs li.active {
  color: #fff !important;
  background-color: #000;
}
.whats_happening .wraper .tab_details {
  padding: 3rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.15) 53.37%, #000 100%);
  display: none;
}
.whats_happening .wraper .tab_details.active {
  display: block;
}
.whats_happening .wraper .tab_details h2 {
  font-size: 31px;
  color: #e7c589;
  font-weight: bold;
  margin-bottom: 2rem;
}
.whats_happening .wraper .tab_details h2 span {
  display: block;
}
.whats_happening .wraper .tab_details p {
  width: 90%;
  color: #fff;
  font-size: 16px;
  margin-bottom: 1rem;
}
.whats_happening .wraper .tab_details a {
  margin-top: 2rem;
  /*width: 142px;*/
  width: 320px;
  height: 50px;
  color: #fff;
  background-color: #cc00cb;
}
.whats_happening .wraper .tab_details .img_box {
  height: 425px;
}
.whats_happening .wraper .tab_details .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-left: auto;
}
.whats_happening.three_tabs .wraper .tabs li {
  width: 33.3%;
}

footer {
  overflow: hidden;
  position: relative;
  margin: 3rem 6rem 0;
  background-color: #000;
}
footer:before {
  content: "";
  top: 0;
  left: 0px;
  width: 21px;
  height: 21px;
  position: absolute;
  border: 1px solid #CC00CB;
  border-right: 0;
  border-bottom: 0;
}
footer:after {
  content: "";
  top: 0;
  right: 0px;
  width: 21px;
  height: 21px;
  position: absolute;
  border: 1px solid #CC00CB;
  border-left: 0;
  border-bottom: 0;
}
footer .inner {
  padding: 3rem 3rem 0;
}
footer .inner .top-footer h3 {
  font-size: 15px;
  color: #994392;
  font-weight: bold;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
footer .inner .top-footer p {
  width: 80%;
  color: #fff;
  font-size: 12px;
  margin: 3rem 0;
}
footer .inner .top-footer .social {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
}
footer .inner .top-footer .social img {
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .inner .top-footer .links a {
  color: #fff;
  font-size: 12px;
  display: block;
  margin-bottom: 1rem;
}
footer .inner .top-footer .register_img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: -5rem 0 -7rem;
}
footer .inner .top-footer .register_now {
  padding: 1.5rem;
  width: 80%;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #733E91;
}
footer .inner .top-footer .register_now a {
  height: 45px;
  display: flex;
  font-weight: bold;
  color: #040720;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  background-color: #E7C589;
}
footer .inner .top-footer .logo img {
  height: 57px;
}
footer .copyright {
  display: flex;
  padding: 3rem 0;
  align-items: center;
  justify-content: space-between;
}
footer .copyright p {
  color: #fff;
  margin-bottom: 0;
  font-size: 11px;
}
footer .copyright ul {
  gap: 30px;
  display: flex;
  justify-content: flex-end;
}
footer .copyright ul li a {
  color: #fff;
  font-size: 11px;
}

.privacy_prompt.explicit_consent {
  display: none;
}/*# sourceMappingURL=main.css.map */