@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;
  --wrapper: 1200px;
}

.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: rgb(32, 26, 20);
  --navTextColor: #fee3c8;
  --introElipseBG: url("../../assets/images/ellipse-2.png");
  --containerBGInverted: #fee3c8;
  --invertTextColor: #25211f;
  --logoDisplayLight: none;
  --logoDisplayDark: flex;
  --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: #fee3c8d9;
  --navTextColor: #352c24;
  --logoDisplayDark: none;
  --logoDisplayLight: flex;
  --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;
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  background: var(--bgColor);
  color: var(--navTextColor);
  position: fixed;
  padding: 1rem;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  z-index: 1000;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(238, 128, 29, 0.5);
}
nav .navLogoDarkTheme {
  width: 0px !important;
  margin: 0px 1rem;
  display: flex;
}
nav .navLogoLightTheme {
  width: 0px !important;
  margin: 0px 1rem;
  display: flex;
}
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);
  border-radius: 4px;
}
nav ul li a:hover {
  background: var(--orangeColor);
  color: white;
  padding: 5px 8px;
  border-radius: 4px;
}
nav ul li a#registerForEvent {
  background: var(--orangeColor);
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  box-shadow: 0px 5px 10px rgba(255, 89, 0, 0.3);
}
nav ul li a#registerForEvent:hover {
  background: orange !important;
  padding: 0.5rem 1rem !important;
  border-radius: 4px;
  box-shadow: 0px 12px 15px rgba(255, 89, 0, 0.6);
}
nav ul li.closeMobileMenu {
  display: none;
}

.sticky {
  position: fixed;
}

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

nav.sticky .navLogoDarkTheme {
  width: 220px !important;
  display: var(--logoDisplayLight);
}

nav.sticky .navLogoLightTheme {
  width: 220px !important;
  display: var(--logoDisplayLight);
}

#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(224, 219, 196, 0.6);
  z-index: 0;
  background: linear-gradient(180deg, rgba(224, 219, 196, 0) 0%, rgba(16, 16, 15, 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: 0.5rem;
  flex-wrap: wrap;
}
.eventIntro ul.meetOurSpeakers li {
  list-style: none;
  width: 250px;
  display: flex;
  flex-direction: column;
  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: 0px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.eventIntro ul.meetOurSpeakers li::before {
  content: " ";
  position: absolute;
  width: 250px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  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: flex-start;
  align-items: flex-start;
  background: var(--bgColor);
  bottom: 0px;
  left: 0px;
  z-index: 3;
  padding: 1rem;
  height: 128px;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.eventIntro ul.meetOurSpeakers li div span:nth-child(1) {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--orangeColor);
  -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;
  gap: 1rem;
}
.sponsorShip h1 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 3rem;
  text-transform: uppercase;
}
.sponsorShip h2 {
  color: var(--orangeColor);
  text-transform: uppercase;
}
.sponsorShip p {
  text-align: center;
}
.sponsorShip .wantToPartner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sponsorShip .wantToPartner h1 {
  font-weight: 800;
  font-size: 4rem;
  letter-spacing: -3px;
}
.sponsorShip .wantToPartner h1 span {
  color: var(--orangeColor);
}

.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: stretch;
  flex-wrap: wrap;
}
.agenda ul li div.speakerS ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column !important;
  gap: 0rem;
  margin-right: 1.5rem;
}
.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;
  word-wrap: break-word;
}
.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.65rem;
  text-wrap: wrap;
  font-weight: 600;
  text-transform: uppercase;
}
.agenda ul li div.speakerS ul.startUpBrand {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  background: #ffffff;
  border-radius: 0.7rem;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  gap: 0.4rem;
  width: 240px;
  align-items: center;
  justify-content: center;
}
.agenda ul li div.speakerS ul.startUpBrand li {
  background: transparent;
  max-width: 240px;
}
.agenda ul li div.speakerS ul.startUpBrand li img {
  width: 150px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px !important;
  margin-bottom: 0.5rem !important;
  image-rendering: crisp-edges;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}
.agenda ul li div.speakerS ul.startUpBrand p {
  font-size: 14px;
  line-height: 14px;
  max-width: 240px;
}
.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;
}

.footer {
  border-radius: 1rem;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  padding: 4rem 4rem;
  display: flex;
  flex-direction: flex;
  margin: 1rem auto;
  margin-bottom: 0px;
  background: var(--bgColor);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.5);
}
.footer .inforContainer {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
  width: 90%;
  justify-content: center;
  margin: 1rem 0px;
  border-bottom: 1px dashed var(--textColor);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.footer span {
  color: var(--invertTextColor);
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
  margin-bottom: 1.5rem;
}
.footer ul.footerInfoGroup {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0px;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.3rem;
}
.footer ul.footerInfoGroup li:nth-child(1) {
  background: var(--orangeColor);
  display: flex;
  border-radius: 0.12rem;
  width: auto;
  font-size: 12px;
  color: white;
  font-weight: bold;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 5px 9px;
  text-transform: uppercase;
}
.footer ul.footerInfoGroup li:nth-child(2) {
  font-size: 20px;
  color: var(--textColor);
  font-weight: bold;
  align-items: center;
  justify-content: center;
}
.footer ul.footerInfoGroup li:nth-child(3) {
  color: var(--textColor);
}
.footer img.navLogoDarkTheme {
  width: 30%;
  display: var(--logoDisplayLight);
}
.footer img.navLogoLightTheme {
  width: 30%;
  display: var(--logoDisplayDark);
}
.footer .socialMedia {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 2rem;
  margin-top: 1rem;
}
.footer .socialMedia li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.footer .socialMedia li a {
  color: var(--invertTextColor);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer .socialMedia li img {
  width: 36px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}
.footer .socialMedia li:hover {
  transform: scale(1.2);
}

@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);
}

.registerForEvent {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 10000;
  background: var(--bgColor);
  padding: 2rem 5rem;
  flex-direction: column;
  overflow-y: auto;
}
.registerForEvent h3 {
  font-size: 3rem;
  font-weight: lighter;
  color: var(--textColor);
}
.registerForEvent ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.registerForEvent ul li {
  display: flex;
  width: 100%;
  gap: 1rem;
}
.registerForEvent form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.registerForEvent form input[type=text],
.registerForEvent form input[type=email],
.registerForEvent form input[type=tel] {
  height: 45px;
  text-indent: 1rem;
  border-radius: 0.3rem;
  border: 0px solid var(--textColor);
  width: 100%;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  font-weight: 600;
}
.registerForEvent form input[type=text]:hover,
.registerForEvent form input[type=email]:hover,
.registerForEvent form input[type=tel]:hover {
  border: 2px solid var(--textColor);
  box-shadow: 0px 10px 30px rgba(250, 199, 151, 0.5);
}
.registerForEvent form textarea {
  height: 150px;
  border-radius: 0.8rem;
  text-indent: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem 0px;
}
.registerForEvent form textarea:hover {
  border: 2px solid var(--textColor);
  box-shadow: 0px 10px 30px rgba(250, 199, 151, 0.5);
}
.registerForEvent form .checkBoxContainer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.registerForEvent form .checkBoxContainer input[type=checkbox] {
  width: 20px;
  height: 20px;
  background: var(--textColor);
}
.registerForEvent form input[type=submit] {
  height: 52px;
  width: 100%;
  background: var(--textColor);
  border: 0px;
  border-radius: 0.3rem;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
}
.registerForEvent form input[type=submit]:hover {
  border: 1px solid var(--textColor);
  box-shadow: 0px 20px 30px rgba(250, 199, 151, 0.3);
}
.registerForEvent .closeRegisterPopup {
  width: 45px;
  height: 45px;
  position: absolute;
  right: 3rem;
  top: 2rem;
  background: var(--textColor);
  border: 0px;
  border-radius: 22px;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
}
.registerForEvent .closeRegisterPopup:hover {
  border: 2px solid var(--textColor);
  box-shadow: 0px 10px 30px rgba(250, 199, 151, 0.5);
}
.registerForEvent .thanksForSubmitting {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.2);
  margin: 1rem 0px;
  border-radius: 1.5rem;
  box-shadow: 0px 10px 20px rgba(255, 136, 0, 0.3);
}
.registerForEvent .thanksForSubmitting .thanksContainer {
  display: flex;
  width: 100%;
  gap: 1rem;
  justify-content: space-between;
  align-items: ce;
}
.registerForEvent .thanksForSubmitting .thanksContainer h3 {
  font-size: 2.2rem;
  line-height: 2.8rem;
  width: 70%;
}
.registerForEvent .thanksForSubmitting .thanksContainer span {
  color: var(--orangeColor) !important;
  font-weight: 600;
}
.registerForEvent .thanksForSubmitting button {
  height: 52px;
  width: 100%;
  background: var(--textColor);
  border: 0px;
  border-radius: 0.3rem;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1rem 0px;
  cursor: pointer;
}
.registerForEvent .thanksForSubmitting button:hover {
  border: 1px solid var(--textColor);
  box-shadow: 0px 20px 30px rgba(250, 199, 151, 0.3);
}

ul.chargesForSeats {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  flex-direction: row;
  margin: 1rem 0px;
  width: 75% !important;
  gap: 0.2rem;
  height: 64px;
}
ul.chargesForSeats::before {
  content: "Deligate Fee";
  height: 100%;
  display: flex;
  gap: 0.2rem;
  font-size: 1.5rem;
  padding: 0rem 1rem;
  background: var(--textColor);
  color: var(--bgColor);
  justify-content: center;
  align-items: center;
  border-radius: 0.2rem;
  font-weight: bold;
}
ul.chargesForSeats li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.2rem;
  flex-direction: column;
  width: auto !important;
  height: 100%;
}
ul.chargesForSeats li span:nth-child(1) {
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 1rem;
  color: var(--bgColor);
  width: 100%;
  font-weight: 600;
  border-radius: 0.2rem;
  background: var(--textColor);
}
ul.chargesForSeats li span:nth-child(2) {
  font-size: 1.3rem;
  background: var(--orangeColor);
  padding: 0.2rem 1rem;
  border-radius: 0.2rem;
  font-weight: 600;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.text-danger {
  color: #F64E60 !important;
}

.thank-you-page {
  background: var(--containerBGInverted);
}
.thank-you-page .navLogoDarkTheme {
  width: 150px;
}
.thank-you-page .wrapper {
  width: var(--wrapper);
  background: var(--bgColor);
  color: var(--cardText);
  position: relative;
}
.thank-you-page .h100 {
  display: flex;
  height: 150px;
}
.thank-you-page .right-img {
  width: 100%;
  text-align: center;
}
.thank-you-page .navLogoDarkTheme {
  width: 150px;
}
.thank-you-page .button-group {
  display: flex;
  gap: 2rem;
  margin: 0 auto;
}
.thank-you-page .continueButton {
  height: 52px;
  width: 100%;
  background: var(--orangeColor);
  border: 0px;
  border-radius: 0.3rem;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
}
.thank-you-page .continueButton:hover {
  border: 1px solid var(--orangeColor);
  box-shadow: 0px 20px 30px rgba(250, 199, 151, 0.3);
}
.thank-you-page .continueButton.continueButton-form-link {
  width: 200px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
}
.thank-you-page .continueButton.continueButton-social-media-post {
  width: 250px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
}
.thank-you-page .question-sec {
  display: flex;
  margin: 0rem auto;
  margin-bottom: 50px;
  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: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  min-height: 500px;
  background-size: cover;
  background-position: 0% 0%;
  background-attachment: fixed;
  border: 1px solid rgba(238, 128, 29, 0.5);
}
.thank-you-page .question-sec .orangeText {
  color: var(--orangeColor) !important;
}
.thank-you-page .question-sec h1 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 3rem;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
.thank-you-page .question-sec h1.confirm-text {
  font-size: 2rem !important;
  line-height: 2.2rem !important;
}
.thank-you-page .question-sec h2 {
  color: var(--orangeColor);
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5rem;
  text-transform: uppercase;
}
.thank-you-page .question-sec.failed-page {
  align-items: center;
  justify-content: center;
}
.thank-you-page .question-sec.failed-page .unsucess-msg {
  font-size: 1.4rem;
  line-height: 1.6rem;
  text-align: center;
}

#lds-roller {
  background: rgba(0, 0, 0, 0.3803921569);
  position: fixed;
  z-index: 9999999;
  height: 100%;
  width: 100%;
  cursor: progress;
  top: 0;
  left: 0;
  display: none;
}
#lds-roller .lds-roller {
  position: absolute;
  width: 64px;
  height: 64px;
  top: 50%;
  left: 50%;
}
#lds-roller .lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 32px 32px;
}
#lds-roller .lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orangeColor);
  margin: -3px 0 0 -3px;
}
#lds-roller .lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
#lds-roller .lds-roller div:nth-child(1):after {
  top: 50px;
  left: 50px;
}
#lds-roller .lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
#lds-roller .lds-roller div:nth-child(2):after {
  top: 54px;
  left: 45px;
}
#lds-roller .lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
#lds-roller .lds-roller div:nth-child(3):after {
  top: 57px;
  left: 39px;
}
#lds-roller .lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
#lds-roller .lds-roller div:nth-child(4):after {
  top: 58px;
  left: 32px;
}
#lds-roller .lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
#lds-roller .lds-roller div:nth-child(5):after {
  top: 57px;
  left: 25px;
}
#lds-roller .lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
#lds-roller .lds-roller div:nth-child(6):after {
  top: 54px;
  left: 19px;
}
#lds-roller .lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
#lds-roller .lds-roller div:nth-child(7):after {
  top: 50px;
  left: 14px;
}
#lds-roller .lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
#lds-roller .lds-roller div:nth-child(8):after {
  top: 45px;
  left: 10px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 1024px) {
  nav {
    justify-content: space-between !important;
    z-index: 1000;
  }
  .wrapper {
    display: flex;
    width: 100% !important;
    flex-wrap: wrap;
  }
  nav .navLogoDarkTheme {
    width: 220px !important;
    margin: 0px 1rem;
    display: var(--logoDisplayLight);
  }
  nav .navLogoLightTheme {
    width: 220px !important;
    margin: 0px 1rem;
    display: var(--logoDisplayDark);
  }
  .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: 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;
  }
  .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;
    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: var(--orangeColor);
    -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;
    width: 100%;
  }
  .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;
    width: 100%;
  }
  .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;
  }
  .footer {
    border-radius: 1rem;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    padding: 1rem 1rem;
    display: flex;
    flex-direction: flex;
    margin: 1rem auto;
    margin-bottom: 0px;
    background: black;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }
  .footer .inforContainer {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    justify-content: center;
    margin: 1rem 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    flex-direction: column;
  }
  .footer span {
    color: var(--invertTextColor);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .footer ul.footerInfoGroup {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0px;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
  }
  .footer ul.footerInfoGroup li:nth-child(1) {
    background: var(--orangeColor);
    display: flex;
    border-radius: 0.12rem;
    width: auto;
    font-size: 12px;
    color: white;
    font-weight: bold;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5px 9px;
    text-transform: uppercase;
  }
  .footer ul.footerInfoGroup li:nth-child(2) {
    font-size: 20px;
    color: white;
    font-weight: bold;
    align-items: center;
    justify-content: center;
  }
  .footer ul.footerInfoGroup li:nth-child(3) {
    color: white;
  }
  .footer img {
    width: 100%;
    max-width: 50vw;
  }
  .footer .socialMedia {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 2rem;
    margin-top: 1rem;
  }
  .footer .socialMedia li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  .footer .socialMedia li a {
    color: var(--invertTextColor);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .footer .socialMedia li img {
    width: 36px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
  }
  .footer .socialMedia li:hover {
    transform: scale(1.2);
  }
  .registerForEvent {
    display: flex;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 10000;
    background: var(--bgColor);
    padding: 2rem;
    flex-direction: column;
    overflow-y: auto;
  }
  .registerForEvent ul.chargesForSeats {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .registerForEvent h3 {
    font-size: 2rem;
    font-weight: lighter;
    color: var(--textColor);
    margin: 1rem 0px;
  }
  .registerForEvent ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .registerForEvent ul li {
    display: flex;
    width: 100%;
    gap: 1rem;
  }
  .registerForEvent form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .registerForEvent form input[type=text],
  .registerForEvent form input[type=email],
  .registerForEvent form input[type=tel] {
    height: 40px;
    text-indent: 1rem;
    border-radius: 0.3rem;
    border: 0px solid var(--textColor);
    width: 100%;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    font-weight: 600;
  }
  .registerForEvent form input[type=text]:hover,
  .registerForEvent form input[type=email]:hover,
  .registerForEvent form input[type=tel]:hover {
    border: 2px solid var(--textColor);
    box-shadow: 0px 10px 30px rgba(250, 199, 151, 0.5);
  }
  .registerForEvent form textarea {
    height: 150px;
    border-radius: 0.8rem;
    text-indent: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 0px;
  }
  .registerForEvent form textarea:hover {
    border: 2px solid var(--textColor);
    box-shadow: 0px 10px 30px rgba(250, 199, 151, 0.5);
  }
  .registerForEvent form .checkBoxContainer {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .registerForEvent form .checkBoxContainer input[type=checkbox] {
    width: 30px !important;
    height: 30px !important;
    background: var(--textColor);
  }
  .registerForEvent form input[type=submit] {
    height: 52px;
    width: 100%;
    background: var(--textColor);
    border: 0px;
    border-radius: 0.3rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
  }
  .registerForEvent form input[type=submit]:hover {
    border: 1px solid var(--textColor);
    box-shadow: 0px 20px 30px rgba(250, 199, 151, 0.3);
  }
  .registerForEvent .closeRegisterPopup {
    width: 45px;
    height: 45px;
    position: absolute;
    right: 3rem;
    top: 2rem;
    background: var(--textColor);
    border: 0px;
    border-radius: 22px;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
  }
  .registerForEvent .closeRegisterPopup:hover {
    border: 2px solid var(--textColor);
    box-shadow: 0px 10px 30px rgba(250, 199, 151, 0.5);
  }
  .registerForEvent .thanksForSubmitting {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    margin: 1rem 0px;
    border-radius: 1.5rem;
    box-shadow: 0px 10px 20px rgba(255, 136, 0, 0.3);
  }
  .registerForEvent .thanksForSubmitting .thanksContainer {
    display: flex;
    width: 100%;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  }
  .registerForEvent .thanksForSubmitting .thanksContainer h3 {
    font-size: 2rem;
    line-height: 2rem;
    width: 90%;
  }
  .registerForEvent .thanksForSubmitting .thanksContainer span {
    color: var(--orangeColor) !important;
    font-weight: 600;
  }
  .registerForEvent .thanksForSubmitting button {
    height: 52px;
    width: 80%;
    background: var(--textColor);
    border: 0px;
    border-radius: 0.3rem;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1rem 0px;
    cursor: pointer;
  }
  .registerForEvent .thanksForSubmitting button:hover {
    border: 1px solid var(--textColor);
    box-shadow: 0px 20px 30px rgba(250, 199, 151, 0.3);
  }
}
.registrationFormContainer {
  width: 100%;
  height: 100vh;
  padding: 2rem 5rem;
  overflow-y: auto;
  background: var(--containerBGInverted);
}
.registrationFormContainer .reg-logo {
  text-align: center;
  margin: 0 0 1.5rem;
}
.registrationFormContainer .registrationHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto 1rem;
  text-align: center;
}
.registrationFormContainer .registrationHeader h3 {
  font-size: 3rem;
  font-weight: lighter;
  color: var(--textColor);
}
.registrationFormContainer .registrationHeader p {
  margin: 15px 0;
  font-size: 1.4rem;
  line-height: 1.4rem;
  color: var(--textColor);
}
.registrationFormContainer form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 0 110px;
  max-width: 800px;
  margin: 0 auto;
}
.registrationFormContainer form .row-main {
  display: flex;
  gap: 20px;
}
.registrationFormContainer form .row-main.mt-15 {
  margin-top: 0;
}
.registrationFormContainer form .row-main .column-2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.registrationFormContainer form .row-main .column-1 {
  width: 100%;
  display: flex;
  gap: 0.4rem;
  flex-direction: column;
}
.registrationFormContainer form .row-main .column-1 label {
  display: flex;
  width: 100%;
  font-weight: 400;
}
.registrationFormContainer form input[type=text],
.registrationFormContainer form input[type=email],
.registrationFormContainer form input[type=tel] {
  height: 40px;
  text-indent: 1rem;
  border-radius: 0.3rem;
  border: 0px solid transparent;
  width: 100%;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  font-weight: 600;
  background: var(--textColor);
  color: var(--agendaTileColor);
}
.registrationFormContainer form input[type=text]:hover,
.registrationFormContainer form input[type=email]:hover,
.registrationFormContainer form input[type=tel]:hover {
  border: 2px solid var(--text-color-1);
  box-shadow: 0px 10px 30px rgba(250, 199, 151, 0.5);
}
.registrationFormContainer form .radio-group.reg-radio-btn {
  flex-direction: row;
}
.registrationFormContainer form .radio-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.registrationFormContainer form .radio-group.reg-radio-btn .radio-group-col {
  margin: 0 20px 0 0;
}
.registrationFormContainer form .radio-group .radio-group-col {
  margin: 0 0 15px;
  display: flex;
  flex-direction: column;
}
.registrationFormContainer form .radio-group .radio-group-col input[type=radio] {
  display: none;
}
.registrationFormContainer form .registrationFormContainer form .row-main .column-1 label {
  display: flex;
  width: 75%;
  font-weight: 400;
}
.registrationFormContainer form .radio-group .radio-group-col label {
  position: relative;
  padding-left: 30px;
  color: var(--textColor);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
}
.registrationFormContainer form .radio-group .radio-group-col label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #fff;
  transition: background-color 0.3s;
}
.registrationFormContainer form .radio-group.reg-radio-btn .radio-group-col input[type=radio]:checked + label:before {
  background-color: var(--orangeColor);
  box-shadow: inset 0 0 0 2px var(--containerBGInverted);
}
.registrationFormContainer form input[type=submit] {
  height: 52px;
  width: 100%;
  border: 0px;
  border-radius: 0.3rem;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  background: rgb(238, 95, 29);
  color: white;
  border: 0px;
  padding: 5px 12px;
  font-weight: 500;
  font-size: 1.3rem;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 10px 20px rgba(238, 95, 29, 0.6);
  cursor: pointer;
  border-radius: 8px;
  color: #f5dbc1;
}
.registrationFormContainer form input[type=submit]:hover {
  border: 0;
  box-shadow: 0px 10px 20px rgba(238, 95, 29, 0.6);
}/*# sourceMappingURL=main.css.map */