/* ===== Fonts & base ===== */
@import url('https://fonts.googleapis.com/css2?family=Biryani:wght@200;300;400;600;700;800;900&display=swap');


:root {
  --ce-red: #BD0F0E;
  --ce-red-dark: #C4121A;
  --ce-black: #000000;
  --ce-gray-light: #EDEDED;
  --ce-gray-mid: #D9D9D9;
  --ce-gray-dark: #000000;
  --ce-white: #FFFFFF;
  --font-heading: "Biryani", sans-serif;
  --font-body: "Biryani", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--ce-black);
  background-color: var(--ce-white);
  font-size: 16px;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--ce-red);
  text-decoration: none;
}

a:hover {
  color: var(--ce-red-dark);
  text-decoration: underline;
}

/* .container-xxl {
  max-width: 1475px;

} */

.mt-30 {
  margin-top: 30px;
}



.container-xxl2 {
  max-width: 1600px;

}












/* ===== Buttons ===== */
.btn-ce-primary {
  background-color: var(--ce-red);
  border: none;
  color: var(--ce-white);
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.06em;
  padding: 0.8rem 1.6rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-ce-primary:hover {
  background-color: var(--ce-red-dark);
  color: var(--ce-white);
  text-decoration: none;
}

.btn-ce-primary::before {
  /* content: "\25B6";
  font-size: 0.6rem; */
}

/* ===== Navbar ===== */
.ce-navbar {
  padding: 0;
  border-bottom: 1px solid var(--ce-gray-mid);
  background-color: var(--ce-white);
}

.ce-navbar .navbar {
  position: relative;
}

.navbar-expand-lg {
  height: 140px;
}

.ce-navbar .nav-link {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px !important;
  color: var(--ce-black);
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
}

.ce-navbar .nav-link:hover {
  color: var(--ce-red);
  text-decoration: none;
}

.ce-logo {
  height: 123px;
}

.ce-logo img {
  height: 123px;
  width: auto;
}

/* Center logo absolutely on desktop */
@media (min-width: 992px) {
  .ce-navbar .ce-brand-mark {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
}

.ce-brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ce-black);
  line-height: 1;
}

.ce-brand-accent {
  color: var(--ce-red);
}

.ce-footer-brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ce-white);
}

.ce-navbar .navbar-toggler {
  border: none;
  padding: 0.25rem;
  padding-right: 40px;
}

.ce-navbar .navbar-toggler:focus {
  box-shadow: none;
}

/* ===== Hero ===== */
.ce-hero {
  background-color: var(--ce-black);
  color: var(--ce-white);
  padding: 30px 0;
  position: relative;
}

.ce-hero-date {
  font-size: 26px;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.ce-hero-time {
  color: var(--ce-gray-mid);
  font-size: 16px;
  font-weight: 400;
}

.ce-hero-title {
  font-size: 40px;
  line-height: 1.1;
  margin: 1rem 0 50px;
  font-weight: 800;
  width: 450px;
}

.sep-5 {
  margin-bottom: 60px;
}

.ce-hero-location {
  color: #ffffff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 26px;
}

.ce-hero-tagline {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.3;
}

/* Hero collage grid */
.ce-collage {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 70px;
  gap: 8px;
  height: 100%;
}

.navbar-brand {
  padding: 0;
}


.ce-collage-item {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ce-gray-dark);
  color: var(--ce-white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.ce-collage-item.red {
  background-color: var(--ce-red);
}

.ce-collage-item.light {
  background-color: var(--ce-gray-light);
  color: var(--ce-gray-dark);
}

.ce-collage-item.img-item {
  padding: 0;
}

.ce-collage-item.img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ce-collage-item.calendar-icon {
  background-color: transparent;
  color: var(--ce-black);
}

.ce-collage-item.light-bg {
  background-color: var(--ce-gray-light);
}

.ce-collage-item.light-bg img {
  object-fit: contain;
  padding: 6px;
}

.ce-collage-item.text-block {
  background-color: transparent;
  color: var(--ce-white);
  text-align: left;
  align-items: flex-end;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
  padding-bottom: 4px;
  text-transform: none;
}

.ce-collage-item.span-h-2 {
  grid-column: span 2;
}

.ce-collage-item.span-2 {
  grid-column: span 2;
}

.ce-collage-item.row-2 {
  grid-row: span 2;
}



.img-01 {
  margin-right: 20px;
  margin-bottom: 20px;
}

.img-02 {
  margin-right: 20px;
  margin-bottom: 26px;
}

.img-03 {
  margin-right: 20px;
  margin-bottom: 20px;
  text-align: end;
  padding-right: 40px;
}

.img-04 {
  margin-right: 16px;
  margin-bottom: 16px;
}

.img-05 {
  margin-right: 16px;
  margin-bottom: 26px;
  text-align: end;
}

.img-06 {
  margin-right: 16px;
  margin-bottom: 16px;
  position: absolute;
  right: -2px;
}

.img-07 {
  margin-right: 16px;
  margin-bottom: 26px;

}

.img-08 {
  margin-right: 16px;
  margin-bottom: 13px;

}

.img-09 {
  position: relative;
  right: 42px;
  margin-bottom: 16px;
}

.img-10 {
  position: relative;
}

.img-10 img {
  position: absolute;
  right: 34px;
  top: -16px;
}


.text-10 {
  font-size: 24px;
  width: 115px;
  position: relative;
  left: -35px;
  font-weight: 700;
  line-height: 41px;
  margin-bottom: 15px;
}

.img-11 {
  margin-bottom: 29px;
}


.mb-33 {
  margin-top: 33px;
}

.img-13 {
  margin-bottom: 22px;
}

.img-14 {
  margin-bottom: 9px;
}


/* ===== Intro + registration ===== */
.ce-intro {
  padding: 54px 0;
}

.ce-section-title {
  font-size: 30px;
  line-height: 1.25;
  margin-bottom: 60px;
  font-weight: 800;
}

.ce-intro-copy {
  color: #000000;
  font-size: 26px;
}

.ce-ballot-card {
  background-color: #E6E6E6;
  padding: 50px;
  border-radius: 20px;
}

.ce-ballot-title {
  color: var(--ce-red);
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.ce-ballot-subtitle {
  font-size: 20px;
  color: var(--ce-gray-dark);
  margin-bottom: 45px;
}

.ce-form-input {
  border: 1px solid var(--ce-gray-mid);
  border-radius: 20px;
  padding: 0.65rem 0.9rem;
  font-size: 14px;
  width: 100%;
  background-color: var(--ce-white);
  height: 50px;
  padding-left: 30px
}


::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgb(0, 0, 0);
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: rgb(0, 0, 0);
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: rgb(0, 0, 0);
}

:-moz-placeholder {
  /* Firefox 18- */
  color: rgb(0, 0, 0);
}







.mt-42 {
  margin-top: 42px;
}


.ce-form-input:focus {
  outline: none;
  border-color: var(--ce-red);
  box-shadow: 0 0 0 2px rgba(228, 20, 29, 0.15);
}

/* ===== Why attend ===== */
.ce-why-attend {
  padding-bottom: 4.5rem;
}

.ce-card-image {
  /* background-color: var(--ce-gray-light); */
  color: var(--ce-gray-dark);
  height: 245px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 30px;
  border-radius: 25px;
  margin-bottom: 36px;
}

.ce-feature-title {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.3;
  font-weight: 800;
}

.ce-feature-copy {
  font-size: 18px;
  color: #000000;
  margin-bottom: 0;
}

/* ===== Prizes banner ===== */
.ce-prizes {
  background-color: var(--ce-black);
  color: var(--ce-white);
  padding: 110px 0;
}

.ce-prizes-image {
  /* background-color: #d9d9d9; */
  color: var(--ce-gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 25px;
  height: 330px;
  font-size: 30px;
}

.ce-prizes-title {
  color: var(--ce-white);
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 800;
}


.win-amazing {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding-top: 30px;
  padding-left: 56px;
}









.ce-prizes-copy {
  color: #E6E6E6;
  font-size: 20px;
  font-weight: 800;
}

/* ===== Mobile experience ===== */
.ce-mobile-experience {
  padding: 5rem 0;
}

.ce-phone-collage {
  position: relative;
  min-height: 460px;
  max-width: 360px;
}

.ce-phone-frame {
  width: 190px;
  height: 390px;
  background-color: var(--ce-black);
  border-radius: 26px;
  padding: 8px;
  position: absolute;
}

.ce-phone-screen {
  width: 100%;
  height: 100%;
  background-color: var(--ce-gray-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ce-gray-dark);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  overflow: hidden;
}

.ce-phone-1 {
  top: 20px;
  left: 10px;
  z-index: 1;
  transform: rotate(-4deg);
}

.ce-phone-2 {
  top: 0;
  left: 130px;
  z-index: 2;
}

.ce-photo-swatch {
  position: absolute;
  border-radius: 4px;
  background-color: var(--ce-gray-dark);
  color: var(--ce-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.ce-photo-1 {
  width: 90px;
  height: 90px;
  top: 0;
  left: 0;
}

.ce-photo-2 {
  width: 90px;
  height: 130px;
  top: 130px;
  left: 0;
  background-color: var(--ce-black);
}

.ce-photo-3 {
  width: 70px;
  height: 70px;
  bottom: 0;
  left: 60px;
  background-color: var(--ce-gray-mid);
  color: var(--ce-gray-dark);
}

.ce-photo-4 {
  width: 60px;
  height: 60px;
  top: 260px;
  right: 20px;
  background-color: var(--ce-red);
}

.ce-photo-5 {
  width: 90px;
  height: 60px;
  bottom: 40px;
  right: 0;
  background-color: var(--ce-gray-mid);
  color: var(--ce-gray-dark);
}

.ce-mobile-copy-title {
  color: var(--ce-red);
  font-size: 30px;
  margin-bottom: 37px;
  font-weight: 800;
}

.ce-steps {
  padding: 0 0 5rem;
}

.ce-step {
  display: flex;
  gap: 1rem;
}

.ce-step-number {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--ce-red);
  color: var(--ce-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
}

.ce-step-title {
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.ce-step-copy {
  font-size: 0.8rem;
  color: var(--ce-gray-dark);
  margin-bottom: 0;
}

/* ===== Brands ===== */




.f20 {
  font-size: 20px;
}







.img-21 {
  position: relative;
  bottom: 235px;
  margin-right: 18px;
  display: flex;
  align-items: flex-end;
}

.img-22 {
  margin-bottom: 15px;
}

.img-23 {
  margin-bottom: 12px;
}


.img-24 {
  position: relative;
  right: 84px;
}


.cart-img25 {
  position: relative;
  right: 78px;
}

.img-25 {
  text-align: center;
}

.img-27 {
  margin-bottom: 25px;
}

.cart-img27 {
  position: absolute;
  top: 59px;
  left: -75px;
}



.ce-prizes-image img {
  height: 330px;
  width: 100%;
  object-fit: contain;
}

.ce-card-image img {
  height: 245px;
  width: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.ce-map-image img {
  height: 312px;
  width: 100%;
  object-fit: contain;
}

.ce-logo-box img {
  height: 140px;
  width: 100%;
  object-fit: contain;
}

.ce-store-box iframe {
  border-radius: 15px;
}


.ce-hero-video,
.ce-prizes-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}







.ce-brands {
  padding-bottom: 5rem;
}

.ce-brands-copy {
  color: var(--ce-gray-dark);
  max-width: 56ch;
  margin-bottom: 2rem;
}

.ce-logo-box {
  /* background-color: var(--ce-gray-light); */
  color: var(--ce-gray-dark);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 30px;
  border-radius: 25px;
  width: 250px;
}

.ce-logo-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ===== FAQ ===== */
.ce-faq {
  background-color: var(--ce-black);
  color: var(--ce-white);
  padding: 4.5rem 0;
}

.ce-faq .ce-section-title {
  color: var(--ce-white);
  margin-bottom: 84px;
}

.ce-faq-accordion .accordion-item {
  background-color: #4F4F4F;
  border: none;
  border-radius: 20px;
  margin-bottom: 0.6rem;
  overflow: hidden;
}

.ce-faq-accordion .accordion-button {
  background-color: #4F4F4F30;
  color: var(--ce-white);
  font-family: var(--font-heading);
  font-weight: 700;
  /* text-transform: uppercase; */
  font-size: 20px;
  letter-spacing: 0.03em;
  padding: 30px;
  box-shadow: none;
  background: #0000008f;
}

.ce-faq-accordion .accordion-button:not(.collapsed) {
  color: var(--ce-white);
  box-shadow: none;
  background-color: #4F4F4F;
}

.ce-faq-accordion .accordion-button::after {
  display: none;

}









.ce-faq-accordion .accordion-button {
  position: relative;
}

/* Red pill */
.ce-faq-accordion .faq-arrow {
  width: 40px;
  height: 30px;
  border-radius: 20px;
  background-color: var(--ce-red);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-left: auto;
  flex: none;
}

/* ONLY arrow */
.ce-faq-accordion .faq-arrow img {
  width: 14px;
  height: 14px;
  display: block;
  transform: rotate(270deg);
  transition: transform 0.2s ease;
}

/* ONLY arrow rotates */
.ce-faq-accordion .accordion-button:not(.collapsed) .faq-arrow img {
  transform: rotate(359deg);
}

















.ce-faq-accordion .accordion-body {
  color: #FFFFFF;
  font-size: 20px;
  padding: 0 30px 30px;
}

.ce-faq-sidebar-item {
  margin-bottom: 35px;
}

.ce-faq-sidebar-title {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 0.35rem;
  font-weight: 800;
}

.ce-faq-sidebar-copy {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 0;
}

/* ===== Map / venue ===== */





.scan-steps {
  /* margin: 0 55px; */
  background-color: #FAF9F8;
  border-radius: 25px;
  padding: 70px 36px;
}


.scan-steps .ce-step-title {
  font-size: 20px;
  margin-bottom: 0.35rem;
  font-weight: 800;
}

.scan-steps .ce-step-copy {
  font-size: 20px;
  color: var(--ce-gray-dark);
  margin-bottom: 0;
}

.ce-step {
  display: flex;
  gap: 36px;
}



.scan-steps .ce-venue {
  padding: 4.5rem 0;
}

.ce-map-image {
  /* background-color: var(--ce-gray-light); */
  color: var(--ce-gray-dark);
  height: 312px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 20px;
  font-size: 30px;
}



.ce-map {
  padding-bottom: 110px;
  padding-top: 110px;
}


.map-monte {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding-top: 30px;
  padding-left: 40px;
}

.height-fill {
  height: -webkit-fill-available;
}

.ce-venue-name {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 800;
  word-break: break-all;
}

.ce-venue-copy {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
}

/* ===== Footer ===== */
.ce-footer {
  background-color: var(--ce-black);
  color: var(--ce-gray-mid);
  padding: 3.5rem 0 0;
}

.ce-footer-logo {
  height: 32px;
  margin-bottom: 1rem;
}

.ce-footer-tag {
  font-size: 11px;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 5px;
  font-weight: 800;
  text-transform: uppercase;
}

.ce-footer-heading {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 5px;
  font-weight: 800;
}

.ce-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ce-footer-list li {
  margin-bottom: 0.6rem;
}

.ce-footer-list a {
  font-size: 12px;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 5px;
  font-weight: 800;
  text-transform: uppercase;
}

.ce-footer-list a:hover {
  color: var(--ce-red-dark);
  text-decoration: none;
}

.ce-store-box {

  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  margin-bottom: 18px;
  border-radius: 15px;
}

.ce-store-box img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 15px;
}



.ce-footer-newsletter {
  display: flex;
  gap: 0.5rem;
  max-width: 360px;
}

.ce-footer-newsletter .ce-form-input {
  background-color: #ffffff;
  border-color: #3a3a3a;
  color: var(--ce-white);
  border-radius: 2px;
}

.ce-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #262626;
  color: var(--ce-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ce-social-icon:hover {
  background-color: var(--ce-red);
  color: var(--ce-white);
}

.ce-footer-bottom {
  margin-top: 30px;
  padding: 1.25rem 0;
  font-size: 10px;
  color: #838383;
  text-transform: uppercase;
  letter-spacing: 4px;
}



.line3 {
  border-bottom: 1px solid #ffffff;
  margin-bottom: 35px;
  margin-top: 42px;
}


.footer-text {
  font-size: 14px;
  color: #ffffff;
  letter-spacing: normal;
  font-weight: 800;
  text-transform: capitalize;
  margin-bottom: 0;
}


.sign-up-55 {}





.banner-img-mobile {
  display: none;
}

.destop-none {
  display: none;
}




.btn-center {
  position: relative;
  top: 3px;
}




.ballout-20 {
  width: 250px;
  height: 88px;
  background-color: #000000;
  color: #ffffff;
  text-align: left;
  display: flex;
  align-items: center;
  border-radius: 20px;
  font-weight: 700;
  padding: 12px;
}



.ce-intro ul li {
  font-size: 26px;
}



.connect9-52 {
  font-size: 24px;
  width: 115px;
  position: relative;
  font-weight: 700;
  line-height: 41px;
  margin-bottom: 15px;
}


.early-lst {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: end;
}



.early-lst img {
  width: fit-content;
}


.Earlyregimg {
  display: none;
}



.early-hero-2 {
  background-color: var(--ce-black);
  color: var(--ce-white);
  padding: 30px 0;
  position: relative;
}





.ce-hero-title2 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
  font-weight: 800;
}




.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}




















/* ===== Responsive ===== */

@media (min-width: 1800px) and (max-width: 2100px) {

  .top-image-none {
    right: -155px;
  }



}










@media (min-width: 1400px) and (max-width: 1600px) {

  .last-img67 {
    display: none !important;
  }


}









@media (min-width: 1025px) and (max-width: 1500px) {

  .last-img67 {
    display: none !important;
  }


}

@media (min-width: 320px) and (max-width: 992px) {
  .ce-hero {

    height: 400px;
  }

}

@media (min-width: 991px) and (max-width: 1366px) {

  .connect098 {
    display: none !important;
  }

  .early-lst img {
    width: 150px;
  }

}

@media (min-width: 991px) and (max-width: 1199px) {
  .destop-none {
    display: block;
  }

  .reg-none {
    display: none !important;
  }


  .last-img67 {
    display: none !important;
  }

  .early-lst {
    display: none;
  }


  /* .banner-img-mobile {
    position: absolute;
    top: 50px;
    right: 0;
    display: block;
  } */
}




@media (max-width: 991.98px) {
  .ce-hero-title {
    font-size: 1.8rem;
  }

  .ce-collage {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 55px;
  }

  .ce-phone-collage {
    min-height: 380px;
  }

  .top-btn1 {
    display: none;
  }


  .ce-hero-date {
    font-size: 15px;
  }

  .sep-5 {
    display: flex;
    justify-content: space-between;
  }

  .ce-hero-title {
    font-size: 15px;
  }



  .ce-hero-location {
    font-size: 10px;
    width: 50%;
  }

  .btn-ce-primary {
    font-size: 10px;
    padding: 0.4rem 1rem;
  }






  h1.ce-hero-title.width50 {
    width: 55%;
    line-height: 28px;
  }

  .sep-5 {
    margin-bottom: 40px;
  }


  .reg-none {
    display: none !important;
  }

  .top-image-none {
    display: none !important;
  }

  .banner-img-mobile {
    position: absolute;
    top: 50px;
    right: 0;
    display: block;
  }

  .banner-img-mobile img {
    width: 50px;
  }

  .color-reveal-wrapper img {
    margin-top: 4px !important;
  }


  .img-51 {
    text-align: end;
    margin-bottom: 5px;
  }

  .img-52 {
    text-align: end;
    margin-bottom: 5px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 5px;
  }


  .img-5455 {
    margin-right: 5px;
  }


  .img-57 {
    display: flex;
    position: absolute;
    bottom: 0;
  }

  .ce-intro-copy {
    font-size: 15px;
  }



  .ce-ballot-title {
    font-size: 20px;
  }


  .ce-section-title {

    margin-bottom: 40px;

  }


  .destop-none {
    display: block;
  }


  .scan-steps {
    margin: 0 0;

  }

  .sign-up-55 {
    margin-bottom: 40px;
  }

  .mobile-ptm {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .ce-card-image {
    margin-bottom: 40px;
  }




  .ce-prizes-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }

  .win-amazing {
    padding-left: 0;
  }

  .ce-logo-box {
    height: 65px;
    font-size: 15px;
    border-radius: 25px;
  }


  .ce-step {
    margin-bottom: 30px;
  }


  .map-monte {

    padding-left: 0px;
  }


  .early-regi img {
    width: 59px;
  }


  .connect9-52 {
    font-size: 15px;
    width: 50px;
    position: relative;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 15px;
  }

  .early-regi {
    display: none;
  }


  .Earlyregimg {
    position: absolute;
    top: 75px;
    right: 15px;
    display: flex;
    justify-content: flex-end;
  }


  .Earlyregimg img {
    width: 58%;
  }



  .than-20b {
    flex-direction: column;
  }

  .ballout-20 {
    width: 100%
  }

  .ce-intro ul li {
    font-size: 15px;
  }

  .ce-hero-title2 {
    font-size: 15px;
    line-height: 1.1;
    margin: 0;
    font-weight: 800;
  }




  .early-hero-2 {
    height: 270px;
  }


  .ce-feature-title {
    font-size: 18px;

  }


  .ce-venue-name {
    font-size: 24px;
  }


  .ce-section-title {
    font-size: 24px;
    margin-top: 0;
    width: 100%;
    /* word-break: break-all; */
  }


  .img-51 {
    display: grid;
  }





















}

@media (max-width: 767.98px) {
  .ce-navbar .navbar-collapse {
    background-color: var(--ce-white);
    padding: 1rem 0;
    z-index: 1;
  }

  .ce-hero {
    padding: 2rem 0;
  }

  .ce-hero-title {
    font-size: 17px;
  }

  .ce-collage {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 55px;
    margin-top: 1.5rem;
  }

  .ce-intro,
  .ce-mobile-experience,
  .ce-venue,
  .ce-faq {
    padding: 50px 0;
  }

  .ce-why-attend {
    padding-bottom: 2.5rem;
  }

  .ce-steps {
    padding-bottom: 2.5rem;
  }

  .ce-brands {
    padding-bottom: 2.5rem;
  }

  .ce-prizes {
    padding: 2.5rem 0;

  }



  .ce-ballot-card {
    padding: 40px 40px;
  }

  .ce-phone-collage {
    min-height: 340px;
    transform: scale(0.85);
    transform-origin: top left;
  }

  .ce-footer {
    padding-top: 2.5rem;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    max-width: 860px;
  }
}

/* ===== Animations & Utilities ===== */
.color-reveal-wrapper {
  background-color: transparent;
  /* position: relative; */
  overflow: hidden;
  display: inline-block;
  border-radius: 12px;
}

.color-reveal-wrapper img {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.05);
  margin-top: 20px;
}








.color-reveal-wrapper.is-visible img {
  opacity: 1;
  transform: scale(1);
}

.animate-fade {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Delays */
.delay-100 img,
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 img,
.delay-200 {
  transition-delay: 200ms;
}

.delay-300 img,
.delay-300 {
  transition-delay: 300ms;
}

.delay-400 img,
.delay-400 {
  transition-delay: 400ms;
}

.delay-500 img,
.delay-500 {
  transition-delay: 500ms;
}

.delay-600 img,
.delay-600 {
  transition-delay: 600ms;
}

.delay-700 img,
.delay-700 {
  transition-delay: 700ms;
}

.delay-800 img,
.delay-800 {
  transition-delay: 800ms;
}

.delay-900 img,
.delay-900 {
  transition-delay: 900ms;
}

.delay-1000 img,
.delay-1000 {
  transition-delay: 1000ms;
}

/* Responsive Adjustments for Collages */
@media (max-width: 991px) {
  .reg-none {
    transform: scale(0.7);
    transform-origin: top center;
  }
}

@media (max-width: 767px) {
  .reg-none {
    transform: scale(0.5);
    transform-origin: top center;
    margin-bottom: -150px;
  }
}

/* ===== Marquee ===== */
.ce-marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 1rem 0;
  position: relative;
}

.ce-marquee-content {
  display: inline-flex;
  gap: 1.5rem;
  animation: marquee-scroll 40s linear infinite;
}

.ce-marquee-content:hover {
  animation-play-state: paused;
}

.ce-marquee .ce-logo-box {
  width: 250px;
  flex-shrink: 0;
}

.swiper-slide {
  flex-shrink: 0;
  width: 250px !important;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

/* ===== Jump to Top ===== */
.jump-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--ce-red);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s, opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.jump-to-top.show {
  opacity: 1;
  visibility: visible;
}

.jump-to-top:hover {
  background-color: var(--ce-red-dark);
}

.jump-to-top img {
  width: 20px;
  transform: rotate(-90deg);
  filter: brightness(0) invert(1);
}

a.jump-to-top img {
  transform: rotate(180deg);
}



@media (min-width: 992px) {
  .jump-to-top {
    display: none;
  }
}