@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Rajdhani:wght@300;400;500;600;700&display=swap");
:root {
  --bgColor: #25211f;
  --textColor: #fee3c8;
  --buttonBG: #25211f;
  --buttonText: #fee3c8;
  --buttonShadow: 0px 10px 30px rgba(180, 159, 138, , 0.5);
  --containerWrapper: 1184px;
  --containerBG: #fee3c8;
  --containerBGInverted: #25211f;
  --navBG: #25211f;
  --invertTextColor: #fee3c8;
  --navTextColor: #fee3c8;
  --lightTextColor: #fee3c8;
  --breakpoint-mobile: 480px;
  --breakpoint-tablet: 768px;
  --breakpoint-desktop: 1024px;
  --orangeColor: #ee801d;
  --introElipseBG: url("../../assets/images/ellipse-2.png");
  --sponsorShipBG01: linear-gradient(
    254.56deg,
    #5c4f45 3.77%,
    #392e24 23.32%,
    #3a3129 41.86%
  );
  --sponsorShipSecondSection: #26201b;
  --sponsorShipThirdSection: #e4d2c2;
  --agendaTileColor: #090908;
}

.light-theme {
  --bgColor: #fee3c8;
  --textColor: #25211f;
  --buttonBG: #25211f;
  --buttonText: #fee3c8;
  --buttonShadow: 0px 10px 30px rgba(37, 33, 31, 0.5);
  --containerBG: #25211f;
  --containerTextColor: #fee3c8;
  --navBG: rgba(37, 33, 31, 0.5);
  --navTextColor: #fee3c8;
  --navBG: rgba(180, 159, 138, 0.7);
  --navTextColor: #25211f;
  --introElipseBG: url("../../assets/images/ellipse-2.png");
  --containerBGInverted: #fee3c8;
  --invertTextColor: #25211f;
  --sponsorShipBG01: linear-gradient(
    254.56deg,
    #ebddd3 3.77%,
    #e3d4c5 23.32%,
    #c7baae 41.86%
  );
  --sponsorShipSecondSection: #efe1d6;
  --sponsorShipThirdSection: #e4d2c2;
  --agendaTileColor: #090908;
}

.dark-theme {
  --bgColor: #25211f;
  --textColor: #fee3c8;
  --buttonBG: #fee3c8;
  --buttonText: #25211f;
  --buttonShadow: 0px 10px 30px rgba(180, 159, 138, 0.5);
  --containerBG: #fee3c8;
  --containerTextColor: #25211f;
  --navBG: rgba(37, 33, 31, 0.7);
  --navTextColor: #fee3c8;
  --introElipseBG: url("../../assets/images/ellipse-2.png");
  --containerBGInverted: #25211f;
  --invertTextColor: #fee3c8;
  --sponsorShipBG01: linear-gradient(
    254.56deg,
    #5c4f45 3.77%,
    #392e24 23.32%,
    #3a3129 41.86%
  );
  --sponsorShipSecondSection: #26201b;
  --sponsorShipThirdSection: #1a1411;
  --agendaTileColor: rgb(255, 241, 225);
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after,
ul,
li {
  margin: 0px;
  padding: 0px;
  font-family: var(--font-primary);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-sizing: border-box;
}

body {
  --font-primary: "Rajdhani", sans-serif;
  background: var(--bgColor);
  color: var(--textColor);
}

.wrapper {
  width: var(--containerWrapper);
  margin: 0px auto 0px auto;
  background: #000;
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  background: var(--containerBG);
  color: var(--containerTextColor);
  padding: 1rem;
}

nav {
  width: 100%;
  margin: 0px auto 0px auto;
  background: #000;
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  background: var(--navBG);
  color: var(--navTextColor);
  position: fixed;
  padding: 1rem;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  z-index: 1000;
}
nav .navLogo {
  width: 0px !important;
  margin: 0px 1rem;
}
nav ul {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
nav ul li {
  list-style: none;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 5px 8px;
  cursor: pointer;
}
nav ul li a {
  text-decoration: none;
  color: var(--navTextColor);
}
nav ul li:hover {
  background: var(--orangeColor);
  color: white;
  padding: 5px 8px;
  border-radius: 3px;
}
nav ul li.closeMobileMenu {
  display: none;
}

.sticky {
  position: fixed;
}

nav.sticky {
  justify-content: space-around;
}

nav.sticky .navLogo {
  display: flex;
  width: 220px !important;
}

#theme-toggle {
  width: 60px;
  height: 60px;
  background: var(--buttonBG);
  color: var(--buttonText);
  border: 0px;
  border-radius: 50%;
  position: fixed;
  bottom: 40px;
  padding: 10px;
  right: 30px;
  box-shadow: var(--buttonShadow);
  cursor: pointer;
  z-index: 1000;
}

.eventBanner {
  display: flex;
  height: 50vh;
  width: 100%;
  background: url("/assets/images/event-bg.jpg") center center;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.eventBanner::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 40%);
}
.eventBanner .eventVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1; /* Ensures the video stays behind the content */
}
.eventBanner h3 {
  z-index: 1;
  color: var(--lightTextColor);
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 10px;
}
.eventBanner h4 {
  color: var(--orangeColor);
  font-weight: 500;
  text-transform: uppercase;
  z-index: 1;
  font-size: 1rem;
}
.eventBanner .eventLogo {
  width: 40%;
  z-index: 100;
  min-width: 240px;
  max-width: 400px;
}

.eventIntro {
  display: flex;
  margin: 1rem auto;
  border-radius: 1rem;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.4);
  padding: 4rem 4rem;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  background-image: var(--introElipseBG);
  min-height: 500px;
  background-size: cover;
  background-position: 0% 0%;
  background-attachment: fixed;
}
.eventIntro p {
  font-weight: 500;
}
.eventIntro h1 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 3rem;
  text-transform: uppercase;
}
.eventIntro ul.eventStates {
  display: flex;
  gap: 4rem;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  background: var(--containerBGInverted);
  padding: 2rem;
  border-radius: 1rem;
}
.eventIntro ul.eventStates li {
  display: flex;
  flex-direction: column;
  list-style: none;
}
.eventIntro ul.eventStates li span:nth-child(1) {
  font-size: 3.5rem;
  line-height: 3.5rem;
  color: var(--invertTextColor);
  font-weight: 600;
}
.eventIntro ul.eventStates li span:nth-child(2) {
  font-size: 1rem;
  color: var(--orangeColor);
  text-transform: uppercase;
  font-weight: 500;
}
.eventIntro ul.meetOurSpeakers {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  gap: 1rem;
  flex-wrap: wrap;
}
.eventIntro ul.meetOurSpeakers li {
  list-style: none;
  width: 250px;
  height: 250px;
  position: relative;
  cursor: pointer;
}
.eventIntro ul.meetOurSpeakers li:hover {
  transform: scale(1.2);
  z-index: 100;
}
.eventIntro ul.meetOurSpeakers li:hover img {
  filter: saturate(1);
  box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.8);
}
.eventIntro ul.meetOurSpeakers li:hover .eventIntro ul.meetOurSpeakers li::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.8) 40%);
}
.eventIntro ul.meetOurSpeakers li img {
  display: flex;
  width: 250px;
  height: 250px;
  border-radius: 1rem;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(0);
}
.eventIntro ul.meetOurSpeakers li::before {
  content: " ";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 80%);
}
.eventIntro ul.meetOurSpeakers li div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 3;
  padding: 1rem;
}
.eventIntro ul.meetOurSpeakers li div span:nth-child(1) {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: white;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.eventIntro ul.meetOurSpeakers li div span:nth-child(2) {
  font-size: 1rem;
  line-height: 1rem;
  text-transform: uppercase;
  color: white;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.eventDiscussion {
  display: flex;
  margin: 1rem auto;
  border-radius: 1rem;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.4);
  padding: 4rem 4rem;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  min-height: 500px;
  background-size: contain;
  background-position: -140% 10%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.eventDiscussion h1 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 3rem;
  text-transform: uppercase;
}

.twoColSection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
}
.twoColSection img {
  width: 45%;
}
.twoColSection ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 55%;
}
.twoColSection ul li {
  list-style: none;
}
.twoColSection ul li:nth-child(1) {
  font-size: 2rem;
  color: var(--orangeColor);
  font-weight: 600;
  text-transform: uppercase;
}

.twoColSection:nth-child(even) {
  flex-direction: row-reverse;
}

.whyToJoin {
  display: flex;
  margin: 1rem auto;
  border-radius: 1rem;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.4);
  padding: 4rem 4rem;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  min-height: 500px;
  background-size: contain;
  background-position: -140% 10%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.whyToJoin h1 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 3rem;
  text-transform: uppercase;
}
.whyToJoin .twoColSection {
  flex-direction: column;
}
.whyToJoin .twoColSection img {
  width: 50%;
}
.whyToJoin .twoColSection ul {
  width: 45% !important;
}
.whyToJoin .iconsContainers {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  box-sizing: border-box;
}
.whyToJoin .whyJoiniconBox {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.3);
  width: 48%;
  padding: 2rem;
  border-radius: 1rem;
  gap: 1rem;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
.whyToJoin .whyJoiniconBox img {
  width: 60px;
}
.whyToJoin .whyJoiniconBox h3 {
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: var(--orangeColor);
  font-weight: 500;
  width: 80%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.sponsorShip {
  border-radius: 1rem;
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
}
.sponsorShip h1 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 3rem;
  text-transform: uppercase;
}

.sponsorShipPlatinum {
  width: 100%;
  border-radius: 1rem;
  background: var(--sponsorShipBG01);
  position: relative;
  min-height: 300px;
  margin-top: 2rem;
}
.sponsorShipPlatinum img.levelPlatinum {
  height: 70px;
  position: absolute;
  top: -1.5rem;
  left: 2rem;
}
.sponsorShipPlatinum ul.firstSection {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 3rem;
  flex-wrap: wrap;
}
.sponsorShipPlatinum ul.firstSection p {
  color: var(--invertTextColor);
}
.sponsorShipPlatinum ul.firstSection li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  width: 28%;
  flex-direction: column;
  color: var(--textColor);
}
.sponsorShipPlatinum ul.firstSection li span:nth-child(1) {
  font-size: 8rem;
  position: absolute;
  opacity: 0.2;
  letter-spacing: -8px;
}
.sponsorShipPlatinum ul.firstSection li span:nth-child(2) {
  font-size: 0.9rem;
  line-height: 1rem;
  margin-top: 8.1rem;
}
.sponsorShipPlatinum ul.secondSection {
  background: var(--sponsorShipSecondSection);
  width: 100%;
  padding: 2rem 4rem;
  margin-top: -1rem;
  gap: 2rem;
  border-radius: 1rem;
}
.sponsorShipPlatinum ul.secondSection h3 {
  color: var(--orangeColor);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.sponsorShipPlatinum ul.secondSection li {
  list-style-image: url(/assets/images/icons/orange-bullet.png);
  list-style-position: initial;
  font-weight: 500;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--invertTextColor);
  margin-left: 1rem;
}
.sponsorShipPlatinum ul.thirdSection {
  background: var(--sponsorShipThirdSection);
  width: 100%;
  padding: 2rem 4rem;
  margin-top: -1rem;
  gap: 3rem;
  display: flex;
  width: 100%;
  border-radius: 1rem;
  flex-wrap: wrap;
}
.sponsorShipPlatinum ul.thirdSection h3 {
  color: var(--textColor);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.sponsorShipPlatinum ul.thirdSection div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 29%;
}
.sponsorShipPlatinum ul.thirdSection div li {
  color: var(--invertTextColor);
  list-style-position: initial;
  list-style-image: url(/assets/images/icons/brown-bullet.png);
  margin-left: 1.3rem;
}

.agenda {
  border-radius: 1rem;
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  margin: 1rem auto;
}
.agenda h1 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 3rem;
  text-transform: uppercase;
}
.agenda ul {
  display: flex;
  list-style: none;
  flex-direction: column;
  gap: 2rem;
  margin: 1rem 0px;
}
.agenda ul li {
  background: var(--agendaTileColor);
  position: relative;
  border-radius: 1rem;
  padding: 2rem 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.agenda ul li span.eventTime {
  background: #ff8200;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  position: absolute;
  left: 5%;
  top: -10px;
  box-shadow: 0px 0px 20px rgba(255, 130, 0, 0.5);
}
.agenda ul li h3 {
  margin: 1rem 0px;
  text-transform: uppercase;
}
.agenda ul li div.speakerS {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.agenda ul li div.speakerS ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column !important;
  gap: 0.3rem;
  margin-right: 1.5rem;
  text-wrap: pretty;
}
.agenda ul li div.speakerS ul li img {
  width: 45px;
  height: 45px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 22px;
  margin-bottom: 0.5rem;
  image-rendering: crisp-edges;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}
.agenda ul li div.speakerS ul li {
  display: flex;
  padding: 0rem;
  flex-direction: column;
  gap: 0rem;
}
.agenda ul li div.speakerS ul li:nth-child(2) {
  font-size: 1.2rem;
  color: var(--orangeColor);
  font-weight: 500;
  text-transform: uppercase;
}
.agenda ul li div.speakerS ul li:nth-child(3) {
  font-size: 0.85rem;
  text-wrap: wrap;
  font-weight: 600;
  text-transform: uppercase;
}
.agenda ul li span.moderatedBy {
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2rem;
}
.agenda ul li span.moderatedBy i {
  text-decoration: none;
  color: var(--orangeColor);
  font-style: normal !important;
  font-weight: 600;
}
.agenda ul li.break {
  background: #e6bd91;
  position: relative;
  border-radius: 1rem;
  padding: 2rem 3rem;
  gap: 1rem;
  flex-wrap: wrap;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.agenda ul li.break img.breakImage1 {
  width: 110px;
}
.agenda ul li.break img.floatingImage {
  position: absolute;
  width: 60px;
  right: 2%;
  top: -12%;
  animation: floatingImageAnimation 8s infinite linear;
}
.agenda ul li.break h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
  opacity: 0.3;
}

@keyframes floatingImageAnimation {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translate(0px);
  }
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
  display: flex; /* This is crucial to make the overlay take up the full screen */
  justify-content: center;
  align-items: center;
  z-index: 1000; /* High z-index to ensure it's above other content */
}

.popup-content {
  background-color: var(--containerBGInverted);
  padding: 20px;
  border-radius: 1rem;
  max-width: 500px;
  text-align: center;
  color: var(--invertTextColor);
  position: relative;
}

.popup-content img {
  max-width: 200px; /* Adjust as needed */
  height: auto; /* Maintain aspect ratio */
  border-radius: 50%; /* Circular image, remove if not needed */
  margin-bottom: 10px; /* Space below the image */
}

.popup-content h2 {
  /* Text color for the name */
  margin-bottom: 5px; /* Space below the name */
}

.popup-content p {
  /* Text color for designation and intro */
  margin-bottom: 10px; /* Space between paragraphs */
}

.popup-content a {
  display: inline-block;
  margin-top: 10px;
  color: #007bff; /* Link color */
  text-decoration: none;
}

.popup-content a:hover {
  text-decoration: underline;
}

.meetOurSpeakersTitle {
  width: 100%;
  margin: 5rem 0px 0.3rem 0px;
}

.close-button {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 50%;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.5);
}

.menu-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-icon span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--invertTextColor);
}

@media screen and (max-width: 600px) {
  nav {
    justify-content: space-between !important;
    z-index: 1000;
  }
  .wrapper {
    display: flex;
    width: 100% !important;
    flex-wrap: wrap;
  }
  nav .navLogo {
    width: 220px !important;
    margin: 0px 1rem;
  }
  .navLinks {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    height: 100vh;
    width: 100vw;
    z-index: 1000;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    font-size: 2rem;
  }
  nav ul li {
    color: #fee3c8 !important;
  }
  nav ul li a {
    color: #fee3c8 !important;
  }
  nav ul li.closeMobileMenu {
    display: flex;
    background: rgba(0, 0, 0, 0.9);
    height: 64px;
    width: 64px;
    font-size: 2rem !important;
    line-height: 2rem !important;
    cursor: pointer;
    font-weight: 400 !important;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    z-index: 1000 !important;
    bottom: 5vh;
    border: 2px solid rgba(255, 255, 255, 0.2);
  }
  nav ul li.closeMobileMenu img {
    filter: invert(1);
    width: 32px;
  }
  .menu-icon {
    display: flex;
  }
  .eventBanner {
    height: 60vh;
    background: url("/assets/images/event-bg.jpg") center center;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  .eventBanner::before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 40%);
  }
  .eventBanner h3 {
    z-index: 1;
    color: var(--lightTextColor);
    font-size: 3rem;
    line-height: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 10px;
    text-align: center;
  }
  .eventBanner h4 {
    color: var(--orangeColor);
    font-weight: 500;
    text-transform: uppercase;
    z-index: 1;
    font-size: 1rem;
    text-align: center;
  }
  .eventBanner .eventLogo {
    display: none !important;
  }
  .eventIntro {
    display: flex;
    margin: 0rem auto;
    border-radius: 0rem;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.4);
    padding: 2rem !important;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    background-image: var(--introElipseBG);
    min-height: 500px;
    background-size: cover;
    background-position: 0% 0%;
    width: 100% !important;
    background-attachment: fixed;
  }
  .eventIntro p {
    font-size: 1rem !important;
    font-weight: 500;
  }
  .eventIntro h1 {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.8rem;
    text-transform: uppercase;
  }
  .eventIntro ul.eventStates {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: var(--containerBGInverted);
    padding: 1rem;
    flex-wrap: wrap;
    border-radius: 1rem;
  }
  .eventIntro ul.eventStates li {
    display: flex;
    flex-direction: column;
    list-style: none;
  }
  .eventIntro ul.eventStates li span:nth-child(1) {
    font-size: 3.5rem;
    line-height: 3.5rem;
    color: var(--invertTextColor);
    font-weight: 600;
  }
  .eventIntro ul.eventStates li span:nth-child(2) {
    font-size: 1rem;
    color: var(--orangeColor);
    text-transform: uppercase;
    font-weight: 500;
  }
  .eventIntro ul.eventStates li:nth-child(even) {
    align-items: flex-end !important;
  }
  .eventIntro ul.meetOurSpeakers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .eventIntro ul.meetOurSpeakers li {
    list-style: none;
    width: 100%;
    height: 250px;
    position: relative;
    cursor: pointer;
  }
  .eventIntro ul.meetOurSpeakers li:hover {
    transform: scale(1);
    z-index: 100;
  }
  .eventIntro ul.meetOurSpeakers li:hover img {
    filter: saturate(1);
    box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.8);
  }
  .eventIntro ul.meetOurSpeakers li:hover .eventIntro ul.meetOurSpeakers li::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.8) 40%);
  }
  .eventIntro ul.meetOurSpeakers li img {
    display: flex;
    width: 100%;
    height: 250px;
    border-radius: 1rem;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
    filter: saturate(0);
  }
  .eventIntro ul.meetOurSpeakers li::before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 250px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 80%);
  }
  .eventIntro ul.meetOurSpeakers li div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 3;
    padding: 1rem;
  }
  .eventIntro ul.meetOurSpeakers li div span:nth-child(1) {
    font-size: 1.5rem;
    text-transform: uppercase;
    color: white;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    font-weight: bold;
  }
  .eventIntro ul.meetOurSpeakers li div span:nth-child(2) {
    font-size: 1rem;
    line-height: 1rem;
    text-transform: uppercase;
    color: white;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .meetOurSpeakersTitle {
    width: 100%;
    margin: 2rem 0px 0.3rem 0px;
  }
  .eventDiscussion {
    display: flex;
    margin: 0rem auto;
    border-radius: 0rem;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.4);
    padding: 2rem 2rem;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    min-height: 500px;
    background-size: contain;
    background-position: -140% 10%;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  .eventDiscussion h1 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 2rem;
    text-transform: uppercase;
  }
  .twoColSection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column !important;
    width: 100%;
    flex-wrap: wrap;
  }
  .twoColSection img {
    width: 100%;
  }
  .twoColSection ul {
    width: 100% !important;
  }
  .whyToJoin {
    display: flex;
    margin: 0rem auto;
    border-radius: 0rem;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.4);
    padding: 2rem 2rem;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    min-height: 500px;
    background-size: contain;
    background-position: -140% 10%;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  .whyToJoin h1 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 2rem;
    text-transform: uppercase;
    text-align: center;
  }
  .whyToJoin .twoColSection {
    flex-direction: column;
  }
  .whyToJoin .twoColSection img {
    width: 50%;
  }
  .whyToJoin .twoColSection ul {
    width: 45% !important;
  }
  .whyToJoin .iconsContainers {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    box-sizing: border-box;
  }
  .whyToJoin .whyJoiniconBox {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.3);
    width: 100%;
    padding: 2rem;
    border-radius: 1rem;
    gap: 1rem;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  }
  .whyToJoin .whyJoiniconBox img {
    width: 60px;
  }
  .whyToJoin .whyJoiniconBox h3 {
    text-transform: uppercase;
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: var(--orangeColor);
    font-weight: 500;
    width: 80%;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .sponsorShip {
    border-radius: 0rem;
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
  }
  .sponsorShip h1 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 3rem;
    text-transform: uppercase;
    text-align: center;
  }
  .sponsorShipPlatinum {
    width: 100%;
    border-radius: 1rem;
    background: var(--sponsorShipBG01);
    position: relative;
    min-height: 300px;
    margin-top: 2rem;
  }
  .sponsorShipPlatinum img.levelPlatinum {
    height: 70px;
    position: absolute;
    top: -1.6rem;
    left: -5%;
    margin: auto !important;
  }
  .sponsorShipPlatinum ul.firstSection {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2rem;
    flex-wrap: wrap;
  }
  .sponsorShipPlatinum ul.firstSection li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    flex-direction: column;
    color: var(--textColor);
  }
  .sponsorShipPlatinum ul.firstSection li span:nth-child(1) {
    font-size: 6rem;
    position: absolute;
    opacity: 0.2;
    letter-spacing: -8px;
  }
  .sponsorShipPlatinum ul.firstSection li span:nth-child(2) {
    font-size: 0.9rem;
    line-height: 1rem;
    margin-top: 6.1rem;
    text-align: center;
  }
  .sponsorShipPlatinum ul.secondSection {
    background: var(--sponsorShipSecondSection);
    width: 100%;
    padding: 2rem 2rem;
    margin-top: -1rem;
    gap: 2rem;
    border-radius: 1rem;
  }
  .sponsorShipPlatinum ul.secondSection h3 {
    color: var(--orangeColor);
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .sponsorShipPlatinum ul.secondSection li {
    list-style-image: url(/assets/images/icons/orange-bullet.png);
    list-style-position: initial;
    font-weight: 500;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--invertTextColor);
    margin-left: 1rem;
  }
  .sponsorShipPlatinum ul.thirdSection {
    background: var(--sponsorShipThirdSection);
    width: 100%;
    padding: 2rem 2rem;
    margin-top: -1rem;
    gap: 2rem;
    display: flex;
    width: 100%;
    border-radius: 1rem;
    flex-wrap: wrap;
  }
  .sponsorShipPlatinum ul.thirdSection h3 {
    color: var(--textColor);
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  .sponsorShipPlatinum ul.thirdSection div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .sponsorShipPlatinum ul.thirdSection div li {
    color: var(--invertTextColor);
    list-style-position: initial;
    list-style-image: url(/assets/images/icons/brown-bullet.png);
    margin-left: 1.3rem;
  }
  .agenda {
    border-radius: 0rem;
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    margin: 0rem auto;
  }
  .agenda h1 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 3rem;
    text-transform: uppercase;
  }
  .agenda ul {
    display: flex;
    list-style: none;
    flex-direction: column;
    gap: 2rem;
    margin: 1rem 0px;
  }
  .agenda ul li {
    background: var(--agendaTileColor);
    position: relative;
    border-radius: 1rem;
    padding: 2rem 2rem;
    gap: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .agenda ul li span.eventTime {
    background: #ff8200;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    position: relative;
    left: 0%;
    top: 0px;
    box-shadow: 0px 0px 20px rgba(255, 130, 0, 0.5);
  }
  .agenda ul li h3 {
    margin: 1rem 0px;
    text-transform: uppercase;
    text-align: center;
  }
  .agenda ul li p {
    text-align: center;
    font-weight: 500;
  }
  .agenda ul li div.speakerS {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .agenda ul li div.speakerS ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column !important;
    gap: 0.3rem;
    margin-right: 1.5rem;
    text-wrap: pretty;
  }
  .agenda ul li div.speakerS ul li img {
    width: 45px;
    height: 45px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 22px;
    margin-bottom: 0.5rem;
    image-rendering: crisp-edges;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  }
  .agenda ul li div.speakerS ul li {
    display: flex;
    padding: 0rem;
    flex-direction: column;
    gap: 0rem;
  }
  .agenda ul li div.speakerS ul li:nth-child(2) {
    font-size: 1.2rem;
    color: var(--orangeColor);
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
  }
  .agenda ul li div.speakerS ul li:nth-child(3) {
    font-size: 0.85rem;
    text-wrap: wrap;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
  }
  .agenda ul li span.moderatedBy {
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 2rem;
    text-align: center;
  }
  .agenda ul li span.moderatedBy i {
    text-decoration: none;
    color: var(--orangeColor);
    font-style: normal !important;
    font-weight: 600;
  }
  .agenda ul li.break {
    background: #e6bd91;
    position: relative;
    border-radius: 1rem;
    padding: 2rem 3rem;
    gap: 1rem;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .agenda ul li.break img.breakImage1 {
    width: 110px;
  }
  .agenda ul li.break img.floatingImage {
    position: absolute;
    width: 60px;
    right: 2%;
    top: -5%;
    animation: floatingImageAnimation 8s infinite linear;
  }
  .agenda ul li.break h3 {
    font-size: 2rem;
    line-height: 2rem;
    text-transform: uppercase;
    opacity: 0.3;
  }
}/*# sourceMappingURL=main.css.map */