/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Allison&display=swap');





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  --bg-purple: rgb(151, 66, 255);
  --bg-golden: #ffa346;
  --bg-purple-alpha-30: rgba(151, 66, 255, 0.3);
  --bg-dark-purple: rgb(26, 13, 33);
  --bg-oxford-blue: rgb(12, 12, 54);
  --bg-oxford-blue-alpha-95: rgba(12, 12, 54, 0.95);
  --bg-oxford-blue-alpha-90: rgba(12, 12, 54, 0.9);
  --bg-oxford-blue-alpha-80: rgba(12, 12, 54, 0.8);


  --gradient-1: linear-gradient(to right bottom, hsl(299, 100%, 52%), hsl(291, 100%, 58%), hsl(283, 100%, 60%), hsl(273, 100%, 62%), hsl(262, 100%, 63%), hsl(242, 100%, 69%), hsl(223, 100%, 62%), hsl(210, 100%, 50%), hsl(203, 100%, 50%), hsl(198, 100%, 50%), hsl(192, 100%, 48%), hsl(185, 90%, 48%));
  --gradient-2: linear-gradient(90deg, transparent 0%, #9841ff 50%, transparent 100%);
  --gradient-3: linear-gradient(90deg, transparent 0%, #ffa346 50%, transparent 100%);

  --gradient-demo: linear-gradient(90deg, rgba(2, 0, 36, 1) 7%, rgba(2, 0, 36, 1) 12%, rgba(12, 7, 37, 1) 29%, rgba(255, 163, 70, 1) 100%);
  --gradient-demo-2: linear-gradient(90deg, rgba(10, 10, 10, 1) 7%, rgba(6, 6, 6, 1) 12%, rgba(0, 0, 0, 1) 29%, rgba(255, 163, 70, 1) 100%);

  --text-white: hsla(0, 0%, 100%, 1);
  --text-gainsboro: hsla(0, 0%, 87%, 1);
  --text-champagne-pink: hsla(23, 61%, 86%, 1);
  --text-purple: hsla(267, 100%, 63%, 1);
  --text-orange: hsl(30, 87%, 64%);

  --border-space-cadet: hsl(240, 45%, 17%);
  --border-purple-alpha-30: hsla(267, 100%, 63%, 0.3);


  --fontFamily-oxanium: 'Oxanium', cursive;
  --fontFamily-work-sans: 'Work Sans', sans-serif;

  --fontSize-1: 3.6rem;
  --fontSize-2: 2.4rem;
  --fontSize-3: 2rem;
  --fontSize-4: 1.7rem;
  --fontSize-5: 1.6rem;
  --fontSize-6: 1.5rem;
  --fontSize-7: 1.4rem;
  --fontSize-8: 1.2rem;

  --weight-regular: 400;
  --weight-semiBold: 600;
  --weight-bold: 700;

  --section-spacing: 60px;

  --shadow: 0px 2px 5px 0px hsla(0, 0%, 0%, 0.2);

  --radius-circle: 50%;
  --radius-5: 5px;
  --radius-3: 3px;

  --clip-path-1: polygon(0 0, 100% 0, 100% 0, 0 0);
  --clip-path-2: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  --clip-path-3: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
  --clip-path-4: polygon(90% 0, 100% 40%, 100% 100%, 0 100%, 0 0);
  --clip-path-5: polygon(100% 0, 100% 100%, 10% 100%, 0 60%, 0 0);
  --clip-path-6: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 40%);
  --clip-path-7: polygon(100% 0, 100% 60%, 90% 100%, 0 100%, 0 0);
  --clip-path-8: polygon(0% 0%, 70% 0, 100% 30%, 100% 100%, 0 100%);
  --clip-path-9: polygon(0 0, 90% 0, 100% 100%, 0% 100%);

  --transition-1: 250ms ease;
  --transition-2: 500ms ease;
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}




/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a,
img,
time,
span,
input,
button,
textarea,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
textarea {
  width: 100%;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: black;
  color: var(--text-gainsboro);
  font-family: var(--fontFamily-oxanium);
  font-size: var(--fontSize-4);
  font-weight: var(--weight-regular);
  line-height: 1.6;
  overflow-x: hidden;
}

#main_page {
  background-color: black;
  background-image: url(/assets/images/w4.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.home_entry {
  background-color: black;
  background-image: url(/assets/images/banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}


::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: var(--bg-dark-purple);
}

::-webkit-scrollbar-thumb {
  background-color: var(--bg-purple);
}



/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.short_info {
  font-weight: 1000;
  font-size: 13px;
  color: #2196F3;
}

.short_date {
  font-size: 9px;
  color: var(--text-white);
}

.upcoming {
  background: black;
  background-image: url(/assets/images/video-bg-7.png);
  background-size: contain;
}

.news {
  background: black;
  background-image: url(/assets/images/news.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.logo img {
  width: 60px;
}

.logo_footer {
  flex-direction: column;
  align-items: baseline;
}

.short_info_footer {
  position: relative;
  top: -10px;
  color: var(--bg-golden);
  font-weight: 500;
}

.short_date_footer {
  font-size: 10px;
  color: var(--text-white);
}

.container {
  padding-inline: 12px;
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.title {
  color: var(--text-white);
}

.h1,
.h3 {
  line-height: 1.3;
}

.h1 {
  font-size: var(--fontSize-1);
  font-weight: var(--weight-semiBold);
}

.h2 {
  font-size: var(--fontSize-2);
  line-height: 1.4;
}

.h3 {
  font-size: var(--fontSize-3);
}

.section-title,
.section-subtitle,
.section-text {
  text-align: center;
}

.section-subtitle {
  color: #efdd16;
  font-size: clamp(4.1rem, 2.375rem + 0.625vw, 4.125rem);
  font-family: 'Allison', cursive;
  background: #000000ba;
}

.btn {
  position: relative;
  background-image: var(--gradient-demo-2);
  color: var(--text-white);
  font-size: var(--fontSize-6);
  font-weight: var(--weight-semiBold);
  max-width: max-content;
  min-width: 100px;
  height: 45px;
  display: grid;
  place-items: center;
  padding-inline: 20px;
  clip-path: var(--clip-path-3);
  overflow: hidden;
}

.btn_side .right {
  clip-path: var(--clip-path-6);
}

.btn_side {
  display: flex;
}

.location {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  gap: 5px;
}

.location_icon {
  font-size: 20px;
  position: relative;
  top: -2px;
}

.location_name {
  font-size: 16px;
}

.btn::before {
  content: "";
  position: absolute;
  top: var(--top, 50%);
  left: var(--left, 50%);
  width: 250%;
  padding-block-end: 250%;
  background-color: var(--bg-golden);
  transform: translate(-50%, -50%) scale(0);
  border-radius: var(--radius-circle);
  z-index: -1;
  transition: transform var(--transition-2);
}

.btn:is(:hover, :focus-visible)::before {
  transform: translate(-50%, -50%) scale(1);
}

.w-100 {
  width: 100%;
}

.section {
  padding-block: var(--section-spacing);
}

.section-title {
  margin-block: 10px;
  text-transform: uppercase;
  color: var(--text-white);
}

.section-title .span {
  display: inline;
  color: var(--bg-golden);
}

.section-text {
  margin-block-end: 40px;
  max-width: 400px;
  margin-inline: auto;
  font-size: 16px;
}

.social-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.img-holder {
  background-color: var(--bg-purple);
  aspect-ratio: var(--width) / var(--height);
  overflow: hidden;
}

.stall_card {
  clip-path: var(--clip-path-7);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-reveal] {
  opacity: 0;
  transition: var(--transition-2);
}

[data-reveal="left"] {
  transform: translateX(-20px);
}

[data-reveal="right"] {
  transform: translateX(20px);
}

[data-reveal="bottom"] {
  transform: translateY(20px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0);
}



/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
  height: 30px;
  padding-inline: 0px;
  padding: 2px 0px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: black;
  padding: 10px 12px;
  z-index: 4;
}

.header.active {
  position: fixed;
  animation: slideUp 1s ease forwards;
}

@keyframes slideUp {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-toggle-btn .line {
  height: 3px;
  width: 10px;
  margin-block: 4px;
  background-color: var(--text-gainsboro);
  border-radius: 8px;
  transition: var(--transition-1);
}

.nav-toggle-btn .line-2 {
  width: 20px;
}

.nav-toggle-btn .line-3 {
  margin-inline-start: auto;
}

.nav-toggle-btn.active .line-2 {
  transform: rotate(-45deg);
}

.nav-toggle-btn.active .line-1 {
  transform: rotate(45deg) translate(4px, 1.5px);
}

.nav-toggle-btn.active .line-3 {
  transform: rotate(45deg) translate(-3px, -1px);
}

.navbar {
  position: absolute;
  top: calc(100% - 1px);
  right: 12px;
  /* left: 12px; */
  background-color: var(--bg-golden);
  padding: 0 15px;
  clip-path: var(--clip-path-1);
  visibility: hidden;
  transition: clip-path 500ms var(--cubic-out);
}

.nav_phone {
  background: red;
  border: 2px solid black;
}

.navbar.active {
  clip-path: var(--clip-path-2);
  visibility: visible;
}

.navbar-link {
  padding: 12px 25px;
  text-transform: uppercase;
  font-size: var(--fontSize-7);
  font-weight: var(--weight-semiBold);
  color: var(--text-white);
}

.navbar-item {
  border-block-start: 1px solid var(--border-space-cadet);
}

.navbar-item:first-child {
  border-block-start: none;
}

.navbar-item:last-child {
  border-block-end: 1px solid var(--border-space-cadet);
}



/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  padding-block-start: 100px;
  text-align: center;
}

.hero .section-subtitle {
  position: relative;
  top: 22px;
}

#text_added {
  position: relative;
  top: 22px;
  top: 0px;
  margin-bottom: 10px;
  font-size: 38px;
}

.hero-title {
  margin-block: 20px 25px;
  background: #000000b8;
}

.hero .btn {
  margin-inline: auto;
}

.hero::before {
  background-image: var(--gradient-3);
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 1;
}

.hero-banner {
  position: relative;
}

.hero-banner-bg {
  display: none;
}


.slider-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  padding: 1rem;
}

.speaker-card {
  background-color: #283593;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.image-container {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}

.hexagon-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: linear-gradient(45deg, #ff5722, #2196F3, #4caf50);
  padding: 5px;
}

.speaker-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  object-fit: cover;
  filter: grayscale(100%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.speaker-image:hover {
  filter: grayscale(0);
}

.speaker-info {
  padding: 1.5rem;
}

.speaker-name {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.speaker-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.speaker-company {
  color: #efdd16;
  font-size: 1.5rem;
  font-weight: bold;
}

.all-speakers-btn {
  display: block;
  width: 200px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #ff5722;
  box-shadow: 5.55px 7.92px 0px 0px #1719b0;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
}

.all-speakers-btn:hover {
  background-color: #f4511e;
}



/*-----------------------------------*\
  #UPCOMING
\*-----------------------------------*/

.upcoming-item:not(:last-child) {
  margin-block-end: 90px;
}

.upcoming-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.upcoming-card::before {
  top: 50%;
  background-image: var(--gradient-1);
  transform: translateY(-50%);
  width: 90%;
  height: 80px;
  z-index: -1;
  opacity: 0.3;
  border-radius: var(--radius-5);
}

.upcoming-card.left::before {
  right: 0;
  clip-path: var(--clip-path-4);
}

.upcoming-card.right::before {
  left: 0;
  clip-path: var(--clip-path-6);
}

.upcoming-card .card-title {
  text-transform: uppercase;
}

.upcoming-card.left .card-title {
  margin-inline-end: 50px;
  text-align: center;
}

.upcoming-card.right .card-title {
  margin-inline-start: 18px;
  text-align: left;
}

.upcoming-card .card-meta {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-image: var(--gradient-1);
  width: max-content;
  padding: 6px 20px;
  font-size: var(--fontSize-7);
  font-weight: var(--weight-semiBold);
  text-transform: uppercase;
  border-radius: var(--radius-3);
}

.upcoming-card.left .card-meta {
  clip-path: var(--clip-path-5);
}

.upcoming-card.right .card-meta {
  clip-path: var(--clip-path-7);
}

.upcoming-card .card-banner {
  width: 25%;
}

.upcoming-card.right .card-banner {
  order: 1;
}

.upcoming-time {
  margin-block: 50px 30px;
}

.upcoming-time :is(.time, .date) {
  text-align: center;
}

.upcoming-time .time {
  color: var(--text-white);
  font-size: var(--fontSize-1);
  font-weight: var(--weight-bold);
  line-height: 1;
}

.upcoming-time .date {
  font-size: var(--fontSize-7);
  font-weight: var(--weight-semiBold);
  margin-block: 5px;
}

.upcoming-item .social-wrapper {
  justify-content: center;
}

.upcoming-item .social-link {
  color: var(--text-white);
  font-size: 2.5rem;
  transition: var(--transition-1);
}

.upcoming-item .social-link:is(:hover, :focus-visible) {
  color: var(--text-purple);
}

/*-----------------------------------*\
  #NEWS
\*-----------------------------------*/

.news-list,
.news-list-plan {
  display: grid;
  gap: 30px;
}

.news-card {
  background-color: var(--bg-oxford-blue-alpha-90);
  box-shadow: var(--shadow);
}

.news-card .card-content {
  position: relative;
  padding: 30px;
}

.card-tag {
  position: absolute;
  bottom: 100%;
  left: 0;
  background-image: var(--gradient-demo-2);
  color: var(--text-white);
  font-size: var(--fontSize-8);
  font-weight: var(--weight-semiBold);
  text-transform: uppercase;
  height: 30px;
  line-height: 32px;
  padding-inline: 20px;
  clip-path: var(--clip-path-3);
}

.news-card :is(.card-meta-list, .card-meta-item) {
  display: flex;
  align-items: center;
}

.news-card .card-meta-list {
  flex-wrap: wrap;
  gap: 5px 10px;
}

.news-card .card-meta-item {
  gap: 5px;
}

.news-card .card-meta-item ion-icon {
  color: var(--text-purple);
}

.news-card .card-meta-text,
.news-card .link {
  color: var(--text-champagne-pink);
  font-size: var(--fontSize-7);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
}

.news-card h3 {
  margin-block: 15px 10px;
}

.news-card .card-title {
  display: inline;
  background-image: linear-gradient(to left, #FF9800, #FF9800);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 4px;
  transition: var(--transition-2);
}

.news-card .card-title:is(:hover, :focus-visible) {
  background-size: 100% 4px;
}

.news-card .link {
  max-width: max-content;
  margin-block-start: 15px;
  padding-inline-start: 30px;
  transition: var(--transition-1);
}

.news-card .link::before {
  top: 50%;
  left: 0;
  transform: translateY(-100%);
  width: 20px;
  height: 4px;
  background-color: var(--bg-purple);
}

.news-card .link:is(:hover, :focus-visible) {
  color: var(--text-purple);
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer-top .container {
  display: grid;
  gap: 25px;
}

.footer-top {
  padding-block: 40px;
}

.footer {
  background-color: #0c0c0c;
}

.footer-text {
  margin-block: 20px 25px;
}

.social-list {
  display: flex;
  gap: 10px;
}

.footer .social-link {
  width: 40px;
  height: 40px;
  background-color: var(--text-orange);
  display: grid;
  place-items: center;
  clip-path: var(--clip-path-8);
  transition: var(--transition-1);
}

.footer .social-link:is(:hover, :focus-visible) {
  background-color: var(--bg-golden);
  transform: translateY(-2px);
}

.footer-list-title {
  font-size: var(--fontSize-3);
  font-weight: var(--weight-semiBold);
  line-height: 1;
  position: relative;
  padding-block-end: 10px;
  margin-block-end: 20px;
  max-width: max-content;
}

.footer-list-title::after {
  bottom: 0;
  left: 0;
  width: 50%;
  height: 4px;
  background-color: var(--bg-golden);
}

.footer-link {
  padding-block: 5px;
  color: var(--text-white);
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus-visible) {
  color: var(--text-orange);
}

.contact-item .span {
  color: var(--bg-golden);
  font-size: var(--fontSize-7);
  text-transform: uppercase;
  font-weight: var(--weight-semiBold);
}

.contact-item:not(:last-child) {
  margin-block-end: 15px;
}

.input-field {
  background-color: #e39342b8;
  color: var(--text-white);
  font-size: var(--fontSize-5);
  padding: 10px 12px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border-purple-alpha-30);
  margin-block-end: 15px;
  outline: none;
}

.input-field::placeholder {
  color: var(--text-white);
}

.footer-bottom {
  clip-path: var(--clip-path-2);
  background-color: #000000;
}

.copyright {
  padding: 15px 20px;
  font-size: 14px;
}



/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-image: var(--gradient-demo-2);
  display: grid;
  place-items: center;
  font-size: 2.1rem;
  clip-path: var(--clip-path-8);
  opacity: 0;
  transition: var(--transition-1);
  z-index: 4;
}

.back-top-btn.active {
  opacity: 1;
  transform: translateY(-20px);
}

.back-top-btn:hover {
  transform: translateY(-25px);
}

.btn_side .left {
  margin-bottom: 10px;
}

.sponsor {
  margin-top: 30px;
}

.sponsor_title {
  font-size: 14px;
  margin-top: 1.5rem;
}

#agenda {
  position: relative;
  top: -5px;
}

.sponsor_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  border-radius: 8px;
}

.sponsor_logo_inner:hover {
  animation-play-state: paused;
}

.sponsor_logo a {
  display: inline-block;
  flex-shrink: 0;
  margin: 0 15px;
}

.sponsor_logo img {
  max-height: 50px;
  max-width: 100%;
  transition: transform 0.3s ease-in-out;
}

.sponsor_logo img:hover {
  transform: scale(1.1);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-230%);
  }
}

.sponsor_logo_inner {
  display: flex;
  animation: marquee 5s linear infinite;
  width: max-content;
}

.organised {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.event_organiser {
  color: var(--bg-golden);
  font-size: 18px;
}

.small_info {
  color: var(--text-white);
  font-size: 8px;
}

.select_cities {
  border: none;
  background-color: var(--bg-golden);
  width: 100%;
}

.tournamentBtn {
  display: block;
  width: 200px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #efd308;
  box-shadow: 5.55px 7.92px 0px 0px #1719b0;
  color: #000;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
}

.tournamentBtn:hover {
  background-color: #91831f;
}

.privacy-box,
.terms-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh;
  position: relative;
}

.privacy-box {
  background-image: url(../images/Privacy\ Policy\ Banner.png);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.terms-box {
  background-image: url(../images/Terms\ n\ Condition\ Banner.png);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.tournamentPage {
  background-image: url(../images/luxa.org-opacity-changed-moba2\ \(1\).jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.tournamentTitle,
.privacyTitle,
.termTitle {
  font-weight: 900;
}

.privacy-text {
  text-align: center;
}

.privacy-text h2 {
  text-transform: uppercase;
  font-size: 2em;
}

.privacy-text ::selection {
  background-color: yellow;
}

.terms-text {
  text-align: center;
}

.terms-text h2 {
  text-transform: uppercase;
  font-size: 2.9em;
  transition: 2s;
  animation: 2s text ease;
}

@keyframes text {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

.terms-container {
  background-color: #fff;
  color: #000;
  padding-block-start: 50px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  padding-inline-start: 20px;
  padding-bottom: 20px;
}

.terms-container .text-head {
  padding-block-end: 20px;
}


.terms-container .para {
  padding-block-start: 30px;
}

.terms-container .para li {
  padding: 5px 10px;
  padding-inline-start: 20px;
}

.wish-heading {
  text-align: center;
  background: #b3ae1c;
  color: #000;
  padding: 10px 20px;
}

.contact_person {
  display: inline;
  font-weight: bold;
}

/*-----------------------------------*\
  #Ticket
\*-----------------------------------*/

.content-box,
.ticket-card {
  width: 100%;
}

.ticket {
  background-image: url(/assets/images/ticket-background.png);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.booking {
  background-color: black;
  color: white;
  min-height: 100vh;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.ticket_container {
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}

.ticket_container .special-title {
  color: #e91e63;
  font-size: 37px;
  font-family: 'Allison', cursive;
}

.ticket_container .main-title {
  font-size: 30px;
}

.ticket_container .description {
  font-size: 16px;
  color: #d3d3d3;
}

.ticket-card {
  border: 2px solid orange;
  border-radius: 10px;
  padding: 20px;
  background-color: black;
  margin-top: 20px;
}

.ticket-card .card-meta {
  position: absolute;
  padding: 3px 20px;
  left: 62%;
  background-image: var(--gradient-demo-2);
  border-radius: 5px;
  margin-bottom: 5px;
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.icon {
  font-size: 30px;
  color: white;
}

.ticket-title {
  font-size: 24px;
}

.ticket-price {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

/* VIP Card */
.vip {
  background-color: #f5a623;
}

/* List Features */
.features {
  list-style: none;
  margin-top: 10px;
  columns: 2;
  -webkit-columns: 2;
}

.features li {
  margin-bottom: 10px;
  font-size: 16px;
}



/*-----------------------------------*\
  #CUSTOM CURSOR
\*-----------------------------------*/

.cursor {
  display: none;
}


#message {
  display: none;
}

.company_organiser {
  margin-block-start: 20px;
}

.organisers_title {
  margin-block-end: 20px;
  font-size: 30px;
  font-family: 'Allison', cursive;
  color: #E91E63;
}

.organisers_logo {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;

}

.city_dropdown .city_table {
  position: absolute;
  display: none;
  background-color: #000000;
}

.city_dropdown:hover>.city_table {
  display: block;
}

.city_list {
  color: var(--text-white);
  padding: 5px 5px;
}

.city_link {
  font-size: 14px;
}

.city_list:hover {
  background-color: #E91E63;
}

.cities {
  cursor: pointer;
  font-size: 12px;
  padding: 0;
}

.city_list:last-child {
  border: none;
}

.drop_icon {
  display: inline-block;
  position: absolute;
  margin-left: 5px;
  font-size: 15px;
}


/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/


@media (min-width: 575px) {

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  .header .logo img {
    width: 70px;
  }

  .upcoming-card.left .card-meta {
    left: auto;
    right: -15%;
  }

  .upcoming-card.right .card-meta {
    left: 25%;
  }

  .footer-top .container {
    grid-template-columns: 1fr 1fr;
  }

  .btn_side {
    display: flex;
    position: relative;
    margin-bottom: 20px;
  }

  .privacy-text h2 {
    text-transform: uppercase;
    font-size: 3em;
  }

  .lap_disable {
    display: none;
  }

  .btn_side .left {
    left: 190px;
  }

  .btn_side .right {
    right: 185px;
  }

  .short_info_footer {
    top: -28px;
  }

  .logo_footer {
    align-items: center;
  }

  .sponsor_logo img {
    max-height: 60px;
  }

  .sponsor_logo_inner {
    animation: marquee 15s linear infinite;
  }

  @keyframes marquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-0%);
    }
  }

  .small_info {
    font-size: 15px;
  }

  .event_organiser {
    font-size: 26px;
    padding-right: 20px;
  }

  #message {
    display: none;
  }

  .organisers_title {
    margin-top: 60px;
    text-align: center;
    color: #E91E63;
    font-family: 'Allison', cursive;
    font-size: 44px;
  }

  .organisers_logo {
    display: flex;
    margin-top: 15px;
    gap: 30px;
    justify-content: center;
    align-items: center;
  }

  .cities {
    position: relative;
  }

  .city_dropdown>.city_table {
    position: absolute;
    top: 65px;
    left: 400px;
    background: black;
    display: none;
  }

  .city_dropdown:hover .city_table {
    display: block;
  }


  .navbar-item .city_table {
    position: absolute;
    background: black;
    display: none;
  }

  .navbar-item:hover>.city_table {
    display: block;
  }

  .city_list {
    padding: 10px 25px;
    color: var(--text-white);
    text-transform: uppercase;
  }

  .city_link {
    font-size: 15px;
    font-weight: 900;
  }

  .cities {
    padding: 12px 25px;
    font-size: 13px;
  }

  .city_list:hover {
    background-color: #E91E63;
  }

  .drop_icon {
    position: absolute;
    display: inline-block;
    font-size: 20px;
    top: 10px;
    margin-left: 15px;
  }

  /*-----------------------------------*\
  #Ticket
\*-----------------------------------*/
  .booking {
    background-color: black;
    color: white;
    min-height: 100vh;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Container */
  .ticket_container {
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
  }

  /* Content Box */
  .ticket_container .content-box {
    width: 48%;
  }

  .ticket_container .special-title {
    color: #e91e63;
    font-size: 40px;
    margin-bottom: 10px;
    font-family: 'Allison', cursive;
  }

  .ticket_container .main-title {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .ticket_container .description {
    font-size: 16px;
    color: #d3d3d3;
  }

  /* Ticket Cards */
  .ticket-card {
    width: 48%;
    border: 2px solid orange;
    border-radius: 10px;
    padding: 20px;
    background-color: black;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
    transform: translateX(100px);
  }

  .ticket-card .card-meta {
    position: absolute;
    padding: 6px 20px;
    left: 70%;
    bottom: 0px;
    background-image: var(--gradient-demo-2);
    border-radius: 5px;
    margin-bottom: 5px;
  }

  .ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }

  .icon {
    font-size: 30px;
    color: white;
  }

  .ticket-title {
    font-size: 24px;
  }

  .ticket-price {
    font-size: 24px;
    font-weight: bold;
    color: white;
  }

  /* VIP Card */
  .vip {
    background-color: #f5a623;
  }

  /* List Features */
  .features {
    list-style: none;
    margin-top: 10px;
  }

  .features li {
    margin-bottom: 10px;
    font-size: 16px;
  }

  /* Animations */
  .animate-left {
    transform: translateX(-100px);
  }

  .animate-right {
    transform: translateX(100px);
  }

  /* Visible state for animations */
  .visible {
    opacity: 1;
    transform: translateX(0);
  }

  @keyframes scroll {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-100%);
    }
  }

  .slider {
    flex-wrap: nowrap;
    animation: scroll 10s linear infinite;
  }

  .slide {
    min-width: calc(33.333% - 2rem);
    margin: 0 1rem;
  }

  .speaker-card {
    max-width: none;
  }

  .slider-controls {
    display: flex;
    justify-content: end;
    margin-top: 2rem;
  }

  .slider-btn {
    background-color: #ff5722;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    cursor: pointer;
    border-radius: 5px;
  }

}


@media (min-width: 768px) {

  :root {
    --fontSize-1: 6.5rem;
    --fontSize-2: 3.2rem;
  }

  .container {
    max-width: 720px;
  }

  h1 {
    line-height: 1;
  }

  .hero .section-subtitle {
    letter-spacing: 0px;
    position: relative;
    top: 20px;
  }

  .hero-banner-bg {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(1.3);
    transform-origin: bottom;
    z-index: -1;
  }

  .upcoming-card::before {
    height: 110px;
  }

  .upcoming-card .card-meta {
    padding-block: 12px;
    bottom: 20px;
  }

  .upcoming-card .card-title {
    --fontSize-3: 2.8rem;
  }

  .upcoming-card.left .card-meta {
    right: -10%;
  }

  .upcoming-card.right .card-meta {
    left: 20%;
  }

  .upcoming-time .time {
    --fontSize-1: 5rem;
  }

  .news-list {
    grid-template-columns: 1fr 1fr;
  }

  .cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: #e91e63;
    border-radius: var(--radius-circle);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: 6;
    transition: var(--transition-1);
    transition-property: opacity, transform;
  }

  body:hover .cursor {
    opacity: 0.5;
  }

  body .cursor.hovered {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.75;
  }

}


@media (min-width: 991px) {

  :root {
    --fontSize-2: 4.5rem;

    --section-spacing: 100px;
  }


  .container {
    max-width: 960px;
  }

  h2 {
    line-height: 1.1;
  }

  .nav-toggle-btn {
    display: none;
  }

  .navbar,
  .navbar.active {
    all: unset;
    display: block;
  }

  .navbar-item,
  .navbar-item:last-child {
    border: none;
  }

  .navbar-list {
    display: flex;
  }

  .header .btn {
    display: grid;
    text-align: center;
    height: 45px;
    padding-inline: 20px;
  }

  .hero-banner-bg {
    transform: scale(1.2);
  }

  .upcoming-item {
    display: grid;
    grid-template-columns: 1fr 0.5fr 1fr;
    align-items: center;
  }

  .upcoming-time {
    margin-block: 0;
  }

  .upcoming-card .card-meta {
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
  }

  .upcoming-card.right .card-meta {
    left: 50%;
  }

  .news-list-plan {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top .container {
    grid-template-columns: repeat(4, 1fr);
  }

}

@media (min-width: 1200px) {

  .container {
    max-width: 1140px;
  }

  .section-text {
    margin-block-end: 60px;
  }

  .hero {
    padding-block-start: 100px;
  }

  .hero-banner-bg {
    transform: scale(1.2);
  }

  .hero-banner .w-100 {
    max-width: max-content;
    margin-inline: auto;
  }

  .upcoming-card .card-banner {
    max-height: 180px;
    width: auto;
  }

  .upcoming-card .card-meta {
    bottom: 0;
  }

  .upcoming-card.right .card-meta {
    left: 35%;
  }

  .upcoming-time .time {
    --fontSize-1: 6.2rem;
  }

  .footer-top .container {
    grid-template-columns: 1fr 0.5fr 0.5fr 1fr;
  }

  .footer .logo img {
    width: 205px;
  }

}