/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2c1810 0%, #8b4513 50%, #cd853f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

#preloader .preloader-content {
  text-align: center;
  color: white;
}

#preloader .solar-loader {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 2rem;
}

#preloader .sun {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: #e67e22;
  border-radius: 50%;
  box-shadow:
    0 0 30px #e67e22,
    0 0 60px #e67e22,
    0 0 90px #e67e22;
  animation: pulse-sun 2s ease-in-out infinite;
}

#preloader .orbit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(230, 126, 34, 0.3);
  border-radius: 50%;
  animation: rotate-orbit 3s linear infinite;
}

#preloader .planet {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

#preloader .preloader-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  animation: fade-in-out 2s ease-in-out infinite;
}

#preloader .loading-bar {
  width: 250px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

#preloader .loading-progress {
  height: 100%;
  background: linear-gradient(90deg, #e67e22, #f39c12, #e67e22);
  background-size: 200% 100%;
  border-radius: 2px;
  animation: loading-animation 2s ease-in-out infinite;
}

/* Navigation */
#navbar.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

#navbar .nav-container {
  /* margin: 0 auto; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#navbar .nav-logo {
  width: 150px;
}

#navbar .nav-logo img {
  object-fit: contain;
}

#navbar .nav-menu {
  display: flex;
  gap: 2rem;
}

/* #navbar .nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
} */

#navbar .nav-link:hover {
  color: #e67e22;
}

#navbar .nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

#navbar .bar {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  border-radius: 10px;
  transition: 0.3s;
}

#navbar .nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

#navbar .nav-toggle.active .bar:nth-child(1) {
  transform: translateY(11.5px) rotate(45deg);
}

#navbar .nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Navbar scrolled state */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

#aside.aside {
  position: fixed;
  left: -100%;
  top: 0;
  min-height: 100vh;
  flex-direction: column;
  background-color: white;
  width: 300px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  padding: 80px 20px;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}

#aside .aside-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#aside.aside.active {
  left: 0 !important;
}

#aside .aside-logo {
  width: 180px;
}

#aside .aside-logo img {
  object-fit: contain;
}

#aside .aside-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#aside .aside-menu a {
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

#aside .aside-menu a:hover {
  color: var(--primary-color);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  /* background: linear-gradient(135deg, #2c1810 0%, #8b4513 50%, #cd853f 100%); */
  /* background: linear-gradient(135deg, #2c1810 0%, #8b4513 50%, #cd853f 100%),
    url(./assets/background/solar-cell.jpg) center/cover no-repeat; */
  background:
    linear-gradient(#00000080, #00000080),
    url(../assets/background/solar-cell.jpg) center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero .hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
}

#hero .hero-content .date-loc {
  font-size: clamp(16px, 3vw, 19.2px);
  font-weight: 600;
  margin-bottom: 1rem;
  opacity: 0.9;
}

#hero .hero-content h1 {
  font-size: clamp(28px, 7vw, 60px);
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.1;
}

#hero .hero-content .hero-subtitle {
  font-size: clamp(16px, 3vw, 18px);
  margin-bottom: 2rem;
  opacity: 0.9;
}

#hero .hero-content .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating Elements */
#hero .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

#hero .element {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

#hero .element-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

#hero .element-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

#hero .element-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

/* About Section */
/* #about {
  padding: 5rem 0;
  background: white;
} */

#about .about-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: center;
}

#about .about-text h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2c1810;
}

#about .about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.8;
}

#about .about-image {
  height: 100%;
  border-radius: 24px;
  overflow: clip;
}

/* Venue */
#venue {
  .venue {
    background: #f5f5f5;

    .venue-header-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 40px;
      flex-wrap: wrap;
      gap: 20px;

      @media (max-width: 568px) {
        flex-direction: column;
      }

      .venue-title {
        font-size: clamp(1.05rem, 5vw, 2rem);
        font-weight: 700;
        color: #111;
        letter-spacing: 1px;
        position: relative;

        &::after {
          content: "";
          display: block;
          width: 50px;
          height: 8px;
          background: var(--secondary-color);
          border-radius: var(--radius);
          margin-top: 6px;
        }
      }

      .venue-date {
        font-size: clamp(0.9rem, 5vw, 2rem);
        font-weight: 600;
        color: #111;
        margin-top: 0.5rem;
      }
    }

    .venue-cards {
      display: grid;
      gap: 2rem;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;

      .venue-card {
        display: flex;
        flex-direction: column;
        align-items: stretch;

        .top {
          overflow: hidden;
          border-radius: 20px;
          box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.08);

          .venue-img {
            width: 100%;
            height: 300px;
            background-size: cover;
            background-position: center;
          }
          .venue-card-label {
            font-family: "Cambay", sans-serif;
            min-height: 150px;
            font-size: 1.75rem;
            font-weight: 600;
            color: #fff;
            text-align: center;
            padding: 30px;
            letter-spacing: 0.01em;
          }
          .venue-orange {
            background: linear-gradient(0deg, #ff9800 0%, #ffa600 100%);
          }
          .venue-green {
            background: linear-gradient(0deg, #009c3b 0%, #00c853 100%);
          }
          .venue-blue {
            background: linear-gradient(0deg, #005bea 0%, #00c6fb 100%);
          }
        }
        .venue-card-details {
          padding: 30px;
          text-align: center;
          .venue-card-location {
            font-weight: 700;
            color: #222;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
          }
          .venue-card-date {
            color: #444;
            font-size: 1rem;
          }
        }
      }
    }
  }
}

/* Success Countup Section */
#countup.countup {
  padding: 5rem 0;
  background: #2c1810;
  color: white;
}

#countup .countup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

#countup .countup-item {
  text-align: center;
  padding: 2rem;
}

#countup .countup-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

#countup .countup-number {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

#countup .countup-number .plus {
  font-size: 24px;
}

#countup .countup-label {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Key Content Focus Section */
#key-content .key-content {
  padding: 5rem 0;
  background: white;
}

.section-intro {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.focus-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.focus-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.focus-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.focus-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
}

.focus-icon.blue {
  background: #3498db;
}
.focus-icon.purple {
  background: #9b59b6;
}
.focus-icon.red {
  background: #e74c3c;
}
.focus-icon.green {
  background: #27ae60;
}

.focus-item p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
}

.thematic-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.theme-tag {
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.theme-tag.orange {
  background: #e67e22;
}
.theme-tag.green {
  background: #27ae60;
}
.theme-tag.purple {
  background: #9b59b6;
}
.theme-tag.blue {
  background: #3498db;
}
.theme-tag.pink {
  background: #e91e63;
}

/* Attendees Section */
.attendees {
  padding: 5rem 0;
  background: #f8f9fa;
}

.attendees-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.attendees-intro p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.attendees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.attendee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.attendee-item:hover {
  transform: translateY(-5px);
}

.attendee-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
  font-size: 2rem;
}

.attendee-icon.real-estate {
  background: #34495e;
}
.attendee-icon.manufacturing {
  background: #3498db;
}
.attendee-icon.telecom {
  background: #8b4513;
}
.attendee-icon.agribusiness {
  background: #e91e63;
}
.attendee-icon.hospitality {
  background: #27ae60;
}
.attendee-icon.education {
  background: #e91e63;
}
.attendee-icon.construction {
  background: #e74c3c;
}
.attendee-icon.government {
  background: #e67e22;
}
.attendee-icon.solar {
  background: #f39c12;
}
.attendee-icon.storage {
  background: #e91e63;
}
.attendee-icon.finance {
  background: #9b59b6;
}
.attendee-icon.mobility {
  background: #1abc9c;
}

.attendee-item span {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

/* Expectations Section */
.expectations {
  padding: 5rem 0;
  background: white;
}

.expectations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.expectation-item {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.expectation-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expectation-icon {
  font-size: 3rem;
  color: #e67e22;
  margin-bottom: 1rem;
}

.expectation-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c1810;
  margin-bottom: 1rem;
}

.expectation-item p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Speakers Section */
.speakers {
  padding: 5rem 0;
  background: white;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.speaker-item {
  text-align: center;
  background: #f8f9fa;
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.speaker-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.speaker-image {
  width: 100%;
  /* height: 350px; */
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #e0e0e0;
}

.speaker-image img {
  /* transition: transform 0.3s ease; */
  object-position: top;
}

/* .speaker-item:hover .speaker-image img {
  transform: scale(1.1);
} */

.speaker-info {
  padding: 2rem 1.5rem;
}

.speaker-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c1810;
  margin-bottom: 0.5rem;
}

.speaker-designation {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.speaker-company {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

/* Sponsors Section */
.sponsors {
  padding: 5rem 0;
  background: #f8f9fa;
}

.sponsors-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.sponsor-tier {
  text-align: center;
}

.sponsor-tier-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.sponsor-tier-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 2px;
}

.sponsor-tier-title.gold {
  color: #d4af37;
}

.sponsor-tier-title.gold::after {
  background: #d4af37;
}

.sponsor-tier-title.associate {
  color: #2c1810;
}

.sponsor-tier-title.associate::after {
  background: var(--primary-color);
}

.sponsor-tier-title.exhibitor {
  color: #2c1810;
}

.sponsor-tier-title.media-partner {
  color: #2c1810;
}

.sponsor-tier-title.media-partner::after {
  background: var(--primary-color);
}

.sponsor-tier-title.exhibitor::after {
  background: var(--primary-color);
}

.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.sponsor-logo-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  width: 250px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.sponsor-logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sponsor-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Partnership Section */
.partnership {
  padding: 5rem 0;
  background: #2c1810;
  color: white;
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.partnership-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.partnership-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.partnership-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

.partnership-icon.exhibition {
  background: #e67e22;
}
.partnership-icon.awareness {
  background: #27ae60;
}
.partnership-icon.media {
  background: #9b59b6;
}
.partnership-icon.leadership {
  background: #3498db;
}
.partnership-icon.leads {
  background: #f39c12;
}
.partnership-icon.industry {
  background: #e91e63;
}

.partnership-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.partnership-item p {
  color: #ccc;
  line-height: 1.6;
}

.partnership-buttons {
  text-align: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Who attends */
#who-attends .who-attends-container {
  background: var(--quaternary-color) !important;
}

#who-attends .who-attends-subwrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  margin-top: 50px;
}

#who-attends .who-attends-subwrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    #00006014,
    #050b8608,
    #07059803,
    transparent,
    transparent,
    transparent,
    transparent
  );
}

#who-attends .who-attends-subwrapper .slick-track {
  display: flex;
  align-items: center;
}

#who-attends .who-attends-subwrapper .slick-track img {
  margin: 0 10px;
  padding: 10px;
  height: 80px;
  border-radius: 10px;
  object-fit: contain;
  vertical-align: middle;
  background: var(--white);
}

/* Highlight */
#highlight .highlight-container {
  background: var(--white);
}
#highlight .highlight-container .slide-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#highlight .highlight-container .slide-container .slider {
  cursor: grab;
}

#highlight .highlight-container .slide-container .slider img {
  margin: 10px;
  border-radius: 5px;
  box-shadow:
    1px 1px 10px #3e3c3c5d,
    inset -1px -1px 10px #31333653;
  object-position: top;
}

#highlight .highlight-container .slide-container .highlight-slider-1 img {
  height: 220px;
}
#highlight .highlight-container .slide-container .highlight-slider-2 img {
  height: 180px;
}
#highlight .highlight-container .slide-container .highlight-slider-3 img {
  height: 270px;
}

/* Contact */
#contact {
  background: linear-gradient(#00000080, #00000080), var(--quaternary-color);
  color: var(--white);
}

#contact .contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
  gap: 50px;
}

#contact .contact-wrapper h2 {
  font-size: clamp(24px, 3vw, 48px);
}

#contact .contact-box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

#contact .contact-box-container .contact-box {
  border-radius: 10px;
  background: #ffffff16;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  width: 300px;
}

#contact .contact-box-container .contact-box h4 {
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--primary-light-color);
}

#contact .contact-box-container .contact-box a {
  transition: all 0.3s ease;
}

#contact .contact-box-container .contact-box a:hover {
  color: var(--primary-light-color);
}

#contact .become {
  text-align: center;
}

/* More About Eventhive  */
#more-about .more-container {
  background:
    linear-gradient(#00000080, #00000080),
    var(--primary-color) url(../assets/background/solar-cell.jpg) no-repeat
      center/cover fixed;
  color: var(--white);
  overflow-x: hidden;
}

#more-about {
  font-size: 16px;
}

#more-about .more-logo {
  margin-bottom: 30px;
}
#more-about .more-logo .logos {
  display: flex;
  align-items: center;
  gap: 30px;
}

#more-about .more-logo .logo-separator {
  width: 2px;
  height: 50px;
  background: var(--white);
}

#more-about .more-logo .logo {
  width: 100px;
}

#more-about .more-logo .logo img {
  object-fit: contain;
}

#more-about p {
  margin-bottom: 10px;
}

#more-about .indus-cities h4 {
  margin-bottom: 5px;
}

#more-about .indus-cities {
  margin-bottom: 20px;
}

#more-about .indus-cities {
  word-wrap: break-word;
  /* word-break: break-all; */
}

#more-about .indus-cities span {
  display: inline-block;
  margin-right: 10px;
  /* word-wrap: break-word; */
  white-space: normal;
}

/* Footer */
#footer .footer-container {
  background-color: var(--quaternary-color);
  color: white;
  border-top: 1px solid #ffffff10;
  padding-block: 100px;
}

#footer .footer-wrapper .top {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}

#footer .footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#footer .footer-wrapper .top .logo {
  flex: 1;
  height: 100%;
}

#footer .footer-wrapper .top .logo .logo-icon {
  max-width: 350px;
}

#footer .footer-wrapper .top .logo .logo-icon img {
  opacity: 0.7;
}

#footer .footer-wrapper .top :is(.quick-links, .socials) {
  flex: 1;
}

#footer .footer-wrapper .top .quick-links {
  display: flex;
  justify-content: center;
}

#footer .footer-wrapper .top .quick-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer .footer-wrapper .top .quick-links ul li a {
  transition: all 0.3s ease-in-out;
}

#footer .footer-wrapper .top .quick-links ul li a:hover {
  color: var(--primary-light-color);
}

#footer .footer-wrapper .top .socials ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

#footer .footer-wrapper .top .socials ul li a {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #776f6f26;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

#footer .footer-wrapper .top .socials ul li a:hover {
  background: var(--primary-light-color);
}

/* #footer .footer-wrapper .center .timer {
  font-size: clamp(40px, 3vw, 60px);
  font-weight: 900;
  text-align: center;
  opacity: 0.3;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
} */

#footer .footer-wrapper .divider {
  height: 1px;
  width: 100%;
  background: #ffffff35;
}

#footer .footer-wrapper .bottom {
  text-align: center;
}
