:root {
  --accent: #84bd00;
  --accent-dark: #4e7a00;
  --grad-btn: linear-gradient(180deg, #9fd60c -40.24%, #4e7a00 99.3%, #84bd00 130.49%);
  --radius-media: 20px;
  --container-max: 1440px;
  --ff-head: Orbitron, Inter, sans-serif;
  --ff-body: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
}

[data-theme=dark] {
  --bg: #0a1400;
  --bg-grad-top: #0f1c02;
  --surface: rgba(30, 52, 6, 0.42);
  --surface-border: rgba(160, 205, 70, 0.18);
  --text: #ffffff;
  --text-muted: #d2e6a8;
  --text-soft: rgba(255, 255, 255, 0.82);
  --rule: rgba(165, 210, 75, 0.45);
  --rule-soft: rgba(165, 210, 75, 0.22);
  --nav-bg: rgba(15, 28, 3, 0.44);
  --nav-border: rgba(165, 205, 85, 0.2);
  --redis-filter: none;
  --partner-filter: brightness(0) invert(1);
  --totop-bg: #84bd00;
  --totop-fg: #0a1400;
}

[data-theme=light] {
  --bg: #f2f7e6;
  --bg-grad-top: #ffffff;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-border: rgba(40, 70, 0, 0.12);
  --text: #182600;
  --text-muted: #4d5f24;
  --text-soft: rgba(24, 38, 0, 0.78);
  --rule: rgba(40, 70, 0, 0.3);
  --rule-soft: rgba(40, 70, 0, 0.18);
  --nav-bg: rgba(255, 255, 255, 0.72);
  --nav-border: rgba(40, 70, 0, 0.12);
  --redis-filter: brightness(0);
  --partner-filter: none;
  --totop-bg: #4e7a00;
  --totop-fg: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.35s ease, color 0.35s ease;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: var(--container-max);
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.themed-logo {
  transition: filter 0.35s ease;
}

.section-title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}

.rule {
  display: block;
  height: 1px;
  background: var(--rule);
  border: 0;
}
.rule--center {
  width: min(466px, 70%);
  margin: clamp(18px, 2.4vw, 30px) auto;
}
.rule--full {
  width: 100%;
  margin: 0;
}

.btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 26px;
  border-radius: 999px;
  border: 0;
  background: var(--grad-btn);
  color: #0a1400;
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(132, 189, 0, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.btn-register:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 10px 26px rgba(132, 189, 0, 0.38);
  color: #0a1400;
}
.btn-register:active {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 14px 0;
}

.nav-pill {
  padding: 0;
}
.nav-pill__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px 10px 22px;
  border-radius: 999px;
  background: var(--nav-bg);
  border: 1px solid var(--nav-border);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}
.nav-pill__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 32px);
  margin: 0 auto;
}
.nav-pill__links .nav-link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 2px;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-pill__links .nav-link:hover {
  color: var(--accent);
}
.nav-pill__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-cluster {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
}
.brand-cluster__redis {
  height: 26px;
  width: auto;
  filter: var(--redis-filter);
}
.brand-cluster__partner {
  height: 24px;
  width: auto;
  filter: var(--partner-filter);
}
.brand-cluster__divider {
  width: 1px;
  height: 38px;
  background: var(--rule);
  flex: 0 0 auto;
}

.navbar-toggler {
  border-color: var(--nav-border);
}

[data-theme=dark] .navbar-toggler-icon {
  filter: invert(1) grayscale(1) brightness(1.6);
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--nav-border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.theme-toggle:hover {
  color: var(--accent);
  transform: rotate(-12deg);
}
.theme-toggle__sun {
  display: none;
}

[data-theme=light] .theme-toggle__moon {
  display: none;
}
[data-theme=light] .theme-toggle__sun {
  display: block;
}

@media (max-width: 991.98px) {
  .nav-pill__inner {
    flex-wrap: wrap;
    border-radius: 26px;
  }
  .nav-pill__collapse {
    width: 100%;
  }
  .nav-pill__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin: 14px 0 6px;
  }
  .nav-pill__links .nav-link {
    padding: 8px 2px;
  }
  .nav-pill__actions {
    width: 100%;
    justify-content: space-between;
    padding-top: 6px;
    border-top: 1px solid var(--nav-border);
  }
}
.hero {
  position: relative;
  min-height: clamp(620px, 80vh, 900px);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(10, 20, 0, 0) 52%, var(--bg-grad-top) 100%), radial-gradient(120% 95% at 50% 40%, rgba(10, 20, 0, 0) 28%, rgba(10, 20, 0, 0.58) 100%), linear-gradient(180deg, rgba(78, 122, 0, 0.3) 0%, rgba(10, 20, 0, 0.48) 100%), url("../assets/img/hero-clouds.jpg") center/cover no-repeat;
  background-blend-mode: normal, normal, multiply, normal;
}
.hero__container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.hero__card {
  width: min(1127px, 100%);
  background: linear-gradient(180deg, rgba(24, 44, 4, 0.55) 0%, rgba(10, 20, 0, 0.55) 100%);
  border: 1px solid rgba(160, 205, 70, 0.2);
  border-radius: 14px;
  padding: clamp(32px, 5vw, 64px) clamp(24px, 6vw, 100px);
  text-align: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 30px 80px rgba(2, 6, 30, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hero__logo {
  height: clamp(40px, 5vw, 60px);
  width: auto;
  margin: 0 auto clamp(14px, 2vw, 24px);
  filter: brightness(0) invert(1);
}
.hero__title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(2rem, 5.2vw, 45px);
  line-height: 1.02;
  margin: 0;
  color: #fff;
}
.hero__subtitle {
  max-width: 632px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.7vw, 21px);
  font-weight: 400;
  line-height: 1.35;
  color: #fff;
}
.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 41px);
  margin-bottom: clamp(24px, 3vw, 34px);
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 150px;
}
.hero__meta-label {
  font-size: clamp(1rem, 1.5vw, 22px);
  font-weight: 800;
  color: #fff;
}
.hero__meta-value {
  font-size: clamp(1rem, 1.6vw, 24px);
  font-weight: 400;
  color: #fff;
}
.hero__meta-divider {
  width: 1px;
  height: 96px;
  background: var(--rule);
  flex: 0 0 auto;
}

/* [data-theme="light"] .hero__card { background: rgba(255, 255, 255, 0.32); } */
.location {
  padding: clamp(56px, 7vw, 96px) 0;
}
.location__detail {
  margin: clamp(28px, 4vw, 56px) 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.location__date {
  font-size: clamp(1.05rem, 1.4vw, 20px);
  font-weight: 600;
}
.location__venue {
  font-size: clamp(1.7rem, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.04;
}

.media-frame {
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-frame--bleed { /* hook for full-bleed variants */ }

.about {
  background: var(--about-grad);
  padding: clamp(64px, 8vw, 110px) 0;
}
.about__head {
  margin-bottom: clamp(28px, 4vw, 48px);
}
.about__lead {
  font-size: clamp(1.05rem, 1.5vw, 20px);
  line-height: 1.4;
  margin: 0;
  color: var(--text);
}
.about__media {
  aspect-ratio: 1360/580;
}
.about__body {
  margin-top: clamp(28px, 4vw, 48px);
}
.about__body p {
  font-size: clamp(1rem, 1.15vw, 17px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-soft);
  margin: 0;
}

#discussiontopics ul li {
  font-size: clamp(1.05rem, 1.5vw, 20px);
  line-height: 1.4;
  margin: 0;
  color: var(--text);
  margin-bottom: 14px;
}

.agenda {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(56px, 7vw, 90px);
  overflow: hidden;
}
.agenda__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(10, 20, 0, 0.8) 0%, rgba(10, 20, 0, 0.92) 100%), url("../assets/img/abstract-bg.webp") center/cover no-repeat;
}
.agenda > .container, .agenda__timeline {
  position: relative;
  z-index: 1;
}
.agenda__title {
  margin-bottom: clamp(20px, 3vw, 30px);
}
.agenda__timeline {
  position: relative;
}
.agenda__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(20px, 3vw, 34px);
  width: fit-content;
}
.agenda__nav {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--rule-soft);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.agenda__nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.agenda__nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
.agenda__pagination {
  position: static;
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto;
}
.agenda__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: var(--text-muted);
  opacity: 0.4;
  transition: all 0.2s ease;
}
.agenda__pagination .swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
  width: 26px;
  border-radius: 6px;
}

[data-theme=light] .agenda__bg {
  background: linear-gradient(180deg, rgba(242, 247, 230, 0.88) 0%, rgba(242, 247, 230, 0.95) 100%), url("../assets/img/abstract-bg.webp") center/cover no-repeat;
}

.agenda-swiper {
  position: relative;
  padding: 10px 0;
  overflow: hidden;
}

.agenda-slide {
  height: 800px;
  position: relative;
  padding: 0 12px;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
}
.agenda-slide::before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: 50%;
  height: 2px;
  background: var(--rule-soft);
  z-index: 0;
}
.agenda-slide:nth-child(odd) .agenda-card {
  grid-row: 1;
  align-self: end;
  margin-bottom: 64px;
}
.agenda-slide:nth-child(odd) .agenda-card::after {
  top: 100%;
}
.agenda-slide:nth-child(odd) .agenda-card__dot {
  top: 100%;
}
.agenda-slide:nth-child(even) .agenda-card {
  grid-row: 3;
  align-self: start;
  margin-top: 64px;
}
.agenda-slide:nth-child(even) .agenda-card::after {
  bottom: 100%;
}
.agenda-slide:nth-child(even) .agenda-card__dot {
  top: 5%;
}

.agenda-card {
  position: static;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.agenda-card::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 64px;
  background: var(--rule-soft);
  z-index: 0;
}
.agenda-card__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  z-index: 2;
}
.agenda-card__dot::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}
.agenda-card__time {
  display: block;
  font-size: clamp(1.7rem, 3vw, 36px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--accent);
}
.agenda-card__time-sub {
  font-size: 0.46em;
  font-weight: 600;
}
.agenda-card__desc {
  margin: 12px 0 0;
  font-size: clamp(1rem, 1.2vw, 20px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
}
.agenda-card__list {
  margin: 12px 0 0;
  padding-left: 18px;
  text-align: left;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.35;
}
.agenda-card__list li {
  margin-bottom: 6px;
}

[data-theme=light] .agenda-card__dot {
  background: rgba(132, 189, 0, 0.22);
}
[data-theme=light] .agenda-card__dot::after {
  background: var(--accent);
}

.attend {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0;
  overflow: hidden;
}
.attend__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--attend-glow);
}
.attend .container {
  position: relative;
  z-index: 1;
}
.attend .media-frame {
  aspect-ratio: 980/747;
  border-radius: 0px !important;
}
.attend__roles {
  margin: clamp(20px, 3vw, 32px) 0 0;
  font-size: clamp(1.1rem, 1.7vw, 26px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
}

[data-theme=dark] .attend {
  --attend-glow: radial-gradient(1071px 833px at 50% 50%, rgba(132,189,0,.18) 0%, rgba(0,15,0,0) 100%);
}

[data-theme=light] .attend {
  --attend-glow: radial-gradient(1071px 833px at 50% 50%, rgba(132,189,0,.16) 0%, rgba(255,255,255,0) 100%);
}

.site-footer {
  padding: clamp(48px, 6vw, 80px) 0 28px;
}
.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-footer .footer__brand {
  gap: 26px;
  margin-bottom: 30px;
}
.site-footer .brand-cluster--lg .footer__redis {
  height: clamp(54px, 6vw, 90px);
  width: auto;
  filter: var(--redis-filter);
}
.site-footer .brand-cluster--lg .footer__partner {
  height: clamp(42px, 5vw, 65px);
  width: auto;
  filter: var(--partner-filter);
}
.site-footer .brand-cluster--lg .brand-cluster__divider {
  height: clamp(70px, 8vw, 116px);
}
.site-footer .footer__social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}
.site-footer .footer__social-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}
.site-footer .footer__icons {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer__icons a {
  color: var(--text);
  display: inline-flex;
  transition: color 0.2s ease, transform 0.2s ease;
}
.site-footer .footer__icons a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}
.site-footer .footer__copy {
  margin: 22px 0 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}

.to-top {
  position: fixed;
  right: clamp(16px, 3vw, 40px);
  bottom: clamp(16px, 3vw, 40px);
  width: 44px;
  height: 44px;
  z-index: 1040;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: var(--totop-bg);
  color: var(--totop-fg);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}
.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .hero {
    text-align: center;
  }
  .hero__meta {
    flex-direction: column;
  }
  .hero__meta-divider {
    width: 96px;
    height: 1px;
  }
  .agenda-slide {
    height: auto;
    display: block;
    padding: 0 8px;
  }
  .agenda-slide .agenda-card {
    margin: 0 !important;
  }
  .agenda-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .agenda-card::after, .agenda-card__dot {
    display: none;
  }
  .agenda-slide::before {
    display: none;
  }
  .agenda-swiper {
    padding: 4px 0;
  }
}
@media (max-width: 575.98px) {
  .brand-cluster__partner {
    height: 20px;
  }
  .brand-cluster__redis {
    height: 22px;
  }
  .footer__icons {
    gap: 16px;
  }
  .hero__card {
    padding: 28px 18px;
  }
}
/*  */
#registerPopup {
  max-width: 1000px;
  width: 100%;
  background: #0a1400;
  padding: 40px;
  border-radius: 12px;
}

.fancybox__content {
  padding: 0 !important;
  background: transparent !important;
}

/* =========================
BOOTSTRAP 2 COLUMN FORM
========================= */
.popup-form {
  background: linear-gradient(180deg, #14260a 0%, #0a1400 100%);
  border: 1px solid rgba(160, 205, 70, 0.18);
  padding: 60px;
  font-family: "Poppins", sans-serif;
}

.popup-form h2 {
  font-size: 56px;
  color: #a6dc3a;
  font-weight: 600;
  margin-bottom: 10px;
}

.popup-form p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  margin-bottom: 45px;
}

/* LABEL */
#contactForm label {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

#contactForm label span {
  color: #a6dc3a;
}

/* INPUT */
#contactForm input,
#contactForm select {
  width: 100%;
  height: 58px;
  border: none;
  outline: none;
  background: #ececec;
  padding: 0 22px;
  font-size: 20px;
  color: #111;
  border-radius: 2px;
}

#contactForm input::placeholder {
  color: #999;
}

/* PHONE FIELD */
.phone-field {
  display: flex;
  align-items: center;
  background: #ececec;
  border-radius: 2px;
  overflow: hidden;
  height: 58px;
}

.phone-field span {
  padding: 0 20px;
  font-size: 20px;
  color: #111;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.phone-field input {
  border: none;
  background: transparent;
  height: 100%;
}

/* SELECT */
.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

#contactForm select {
  appearance: none;
  cursor: pointer;
}

/* BUTTON */
.submit-btn {
  width: 170px;
  height: 60px;
  border-radius: 60px;
  border: none;
  background: linear-gradient(180deg, #9fd60c 0%, #4e7a00 100%);
  color: #0a1400;
  font-size: 24px;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(132, 189, 0, 0.35);
  transition: 0.3s ease;
}

.submit-btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 12px 30px rgba(132, 189, 0, 0.5);
  color: #fff;
}

/* CHECKBOX */
.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 15px;
}

.checkbox-wrap input {
  width: 28px !important;
  height: 28px !important;
  margin-top: 2px;
}

.checkbox-wrap span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.7;
}

/* ERROR */
.error {
  color: #ff5a5a;
  font-size: 13px;
  margin-top: 6px;
}

/* MOBILE */
@media (max-width: 768px) {
  .popup-form {
    padding: 35px 25px;
  }
  .popup-form h2 {
    font-size: 42px;
  }
  .popup-form p {
    font-size: 16px;
  }
  #contactForm input,
  #contactForm select,
  .phone-field {
    height: 54px;
  }
  .submit-btn {
    width: 150px;
    height: 55px;
    font-size: 20px;
  }
  .logo-white--snyk {
    width: 230px;
  }
  .theme-toggle {
    width: 31px;
    height: 31px;
  }
  .nav-pill__inner {
    padding: 0px 0px 14px 0px;
    gap: 6px;
    width: 95%;
  }
}
.fancybox-slide--html .fancybox-close-small {
  background: #fff !important;
}

.fancybox-slide--html .fancybox-close-small {
  color: rgb(0, 0, 0) !important;
}

/*  */
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .agenda-swiper {
    margin-top: -200px;
  }
  .agenda-slide {
    height: 870px;
  }
  .btn-register {
    padding: 11px 11px;
    font-size: 12px;
  }
  .nav-pill__links {
    gap: 0px;
  }
  .nav-pill__links .nav-link {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero__title {
    font-size: clamp(2rem, 5.2vw, 50px);
  }
  .hero__subtitle {
    font-size: clamp(1rem, 1.7vw, 18px);
  }
  .hero {
    padding: 0px 0 80px;
  }
  .section-title {
    font-size: clamp(2.1rem, 4.6vw, 36px);
  }
  .location__venue {
    font-size: clamp(1.7rem, 3.2vw, 30px);
  }
  .about__lead {
    font-size: clamp(1.05rem, 1.5vw, 18px);
  }
  .agenda-slide {
    height: 900px;
  }
  .agenda-swiper {
    margin-top: -220px;
  }
  .site-footer .brand-cluster--lg .footer__redis {
    height: clamp(54px, 3vw, 90px);
  }
  .site-footer .brand-cluster--lg .footer__partner {
    height: clamp(42px, 3vw, 72px);
  }
  .btn-register {
    padding: 11px 11px;
    font-size: 12px;
  }
  .nav-pill__links {
    gap: 0px;
  }
  .nav-pill__links .nav-link {
    font-size: 12px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .site-footer .brand-cluster--lg .footer__redis {
    height: clamp(14px, 6vw, 90px);
  }
  .site-footer .brand-cluster--lg .footer__partner {
    height: clamp(26px, 5vw, 72px);
  }
  .location {
    overflow: hidden;
  }
  .about, .agenda {
    padding-top: 0px;
  }
  .attend__content {
    padding: 20px;
  }
}
