:root {
  --primary-color: #f0e000;
  --primary-color-rgb: 240, 224, 0;
  --secondary-color: #c01010;
  --secondary-color-rgb: 192, 16, 16;
  --aas-blue: #1060b0;
  --aas-black: #000000;
  --aas-panel: #0a0a0b;
  --aas-panel-2: #141416;
  --aas-white: #f5f5f5;
  --bg-dark-1: #000000;
  --bg-dark-2: #0a0a0b;
  --bg-dark-3: #141416;
  --bg-dark-1-rgb: 0, 0, 0;
  --bg-gradient-1: 0deg, rgba(0, 0, 0, .94) 0%, rgba(10, 10, 11, .98) 58%, rgba(192, 16, 16, .16) 100%;
  --rounded-1: 8px;
  --logo-width: 88px;
  --logo-footer-width: 110px;
  --h1-letter-spacing: 0;
  --h2-letter-spacing: 0;
  --btn-rounded: 6px;
}

html, body {
  letter-spacing: 0;
}

body.dark-scheme {
  background: var(--aas-black);
}

.bg-dark,
.bg-dark-1 {
  background-color: #000 !important;
}

.bg-dark-2 {
  background-color: var(--aas-panel) !important;
}

.bg-dark-3 {
  background-color: var(--aas-panel-2) !important;
}

.bg-gradient-1 {
  background: linear-gradient(var(--bg-gradient-1)) !important;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0 !important;
}

.logo-main,
.logo-scroll,
.logo-mobile {
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .35));
}

header.smaller {
  background: rgba(0, 0, 0, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

#mainmenu a.active,
#mainmenu a:hover {
  color: var(--primary-color);
}

.apply-nav {
  background: var(--secondary-color);
  color: #fff !important;
  box-shadow: 0 0 28px rgba(192, 16, 16, .22), inset 0 0 0 1px rgba(255, 255, 255, .16);
}

a.btn-main,
.btn-main,
input[type=button].btn-main {
  background: var(--primary-color);
  color: #050505 !important;
}

a.btn-main:before,
.btn-main:before {
  background: var(--secondary-color);
}

a.btn-main.btn-line,
.btn-main.btn-line {
  color: #fff !important;
  border-color: var(--aas-blue);
  background: var(--aas-blue);
}

a.btn-main.btn-line:before,
.btn-main.btn-line:before {
  background: var(--secondary-color);
}

.hero-actions .btn-main:nth-child(1) {
  background: var(--primary-color);
  color: #050505 !important;
}

.hero-actions .btn-main:nth-child(2) {
  background: var(--secondary-color);
  color: #fff !important;
}

.hero-actions .btn-main:nth-child(3) {
  background: var(--aas-blue);
  color: #fff !important;
}

.hero-actions .btn-main:nth-child(4) {
  background: #fff;
  color: #050505 !important;
}

.hero-actions .btn-main:nth-child(1):before {
  background: var(--secondary-color);
}

.hero-actions .btn-main:nth-child(2):before {
  background: var(--aas-blue);
}

.hero-actions .btn-main:nth-child(3):before {
  background: var(--secondary-color);
}

.hero-actions .btn-main:nth-child(4):before {
  background: var(--primary-color);
}

.subtitle,
.id-color {
  color: var(--primary-color);
}

.social-icons a:hover,
.document-link i,
.aas-card i {
  color: var(--aas-blue) !important;
}

.hero-title {
  font-size: 72px;
  line-height: 1.02;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.hero-copy {
  max-width: 920px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .86);
}

.hero-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(0, 0, 0, .38);
  color: #fff;
}

.theme-stripe {
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color) 0 25%, var(--secondary-color) 25% 50%, var(--aas-blue) 50% 75%, #fff 75% 100%);
}

.aas-card {
  height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
    radial-gradient(circle at top right, rgba(16, 96, 176, .14), transparent 38%),
    #080808;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 30px;
}

.aas-card-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.aas-card-link:hover,
.aas-card-link:focus {
  color: inherit;
  border-color: rgba(255, 210, 31, .45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .32);
  transform: translateY(-3px);
}

.aas-card-link p {
  margin-bottom: 18px;
}

.aas-card-link span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 900;
}

.metric-card {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.metric-card:last-child {
  border-right: 0;
}

.metric-card strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: var(--primary-color);
}

.zone-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--aas-panel);
}

.zone-card img,
.gallery-tile img,
.media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zone-card .zone-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 28px;
}

.zone-card:after,
.gallery-tile:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .03), rgba(0, 0, 0, .74) 62%, rgba(0, 0, 0, .95));
}

.sw-overlay {
  background: rgba(0, 0, 0, .82) !important;
}

.gradient-edge-top,
.gradient-edge-bottom,
.gradient-edge-top.color,
.gradient-edge-bottom.color,
.dark-scheme .de-gradient-edge-bottom {
  background-color: transparent !important;
}

.gradient-edge-top,
.gradient-edge-top.color {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .94) 0%, rgba(0, 0, 0, 0) 100%) !important;
}

.gradient-edge-bottom,
.gradient-edge-bottom.color,
.dark-scheme .de-gradient-edge-bottom {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, 0) 100%) !important;
}

.radial-gradient-color {
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, .86) 100%) !important;
}

#de-loader,
.dark-scheme #de-loader,
.de-preloader,
.dark-scheme .de-preloader {
  background: #000 !important;
}

.accent-blue {
  color: var(--aas-blue);
}

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

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

.feature-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.feature-list li:before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: none;
}

.gallery-tile {
  position: relative;
  display: block;
  height: 280px;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-year-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.gallery-year-nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #0d0d0e;
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-weight: 900;
}

.gallery-year-nav a:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.gallery-year-nav span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--secondary-color);
  color: #fff;
  font-size: 12px;
}

.gallery-year-block {
  scroll-margin-top: 110px;
  margin-bottom: 58px;
}

.gallery-year-block:last-child {
  margin-bottom: 0;
}

.gallery-year-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.gallery-year-heading h3 {
  margin: 0;
  font-size: 30px;
}

.gallery-year-heading span {
  flex: 0 0 auto;
  color: var(--primary-color);
  font-weight: 900;
}

.gallery-tile span {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-weight: 800;
}

.gallery-open {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #050505;
  background: var(--primary-color);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.gallery-tile:hover .gallery-open,
.gallery-tile:focus .gallery-open {
  opacity: 1;
  transform: translateY(0);
}

.gallery-tile:hover .gallery-open {
  background: #fff;
}

.gallery-year-cover-grid {
  align-items: stretch;
}

.gallery-year-card {
  position: relative;
  display: block;
  width: 100%;
  height: 360px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: #080808;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.gallery-year-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-year-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .78) 62%, rgba(0, 0, 0, .96));
}

.gallery-year-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--primary-color);
  color: #070707;
  font-size: 13px;
  font-weight: 900;
}

.gallery-year-card-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 7px;
}

.gallery-year-card-content strong {
  font-size: 28px;
  line-height: 1;
}

.gallery-year-card-content small {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
}

.gallery-year-card-content em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--primary-color);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

.gallery-year-card:hover,
.gallery-year-card:focus {
  border-color: rgba(255, 210, 31, .5);
  outline: 0;
}

.gallery-year-card:hover img,
.gallery-year-card:focus img {
  transform: scale(1.04);
}

.year-gallery-modal[hidden] {
  display: none;
}

.year-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-modal-open {
  overflow: hidden;
}

.year-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .92);
}

.year-gallery-dialog {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100vw - 48px));
  height: min(86vh, 860px);
  max-height: calc(100vh - 48px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .56);
}

.year-gallery-header,
.year-gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: #080808;
}

.year-gallery-header span,
.year-gallery-footer small {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 800;
}

.year-gallery-header h3 {
  margin: 0;
  font-size: 24px;
}

.year-gallery-close,
.year-gallery-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #070707;
  background: var(--primary-color);
  cursor: pointer;
}

.year-gallery-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.year-gallery-stage {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.year-gallery-swiper {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100% !important;
  min-height: 0;
  background: #000;
}

.year-gallery-swiper .swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

.year-gallery-slide {
  flex: 0 0 100%;
  width: 100% !important;
  min-width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  margin: 0;
  padding: 0;
  background: #000;
}

.year-gallery-slide img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  background: #000;
}

.year-gallery-slide figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .62);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.year-gallery-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .36);
}

.year-gallery-control.prev {
  left: 18px;
}

.year-gallery-control.next {
  right: 18px;
}

.year-gallery-footer span {
  color: var(--primary-color);
  font-weight: 900;
}

.year-gallery-swiper .swiper-slide {
  height: 100%;
}

.mfp-bg {
  background: #000;
  opacity: .94;
}

.mfp-title {
  font-weight: 800;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.countdown-box {
  padding: 22px 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025));
  border: 1px solid rgba(255, 255, 255, .09);
  text-align: center;
}

.countdown-box strong {
  display: block;
  color: var(--primary-color);
  font-size: 36px;
  line-height: 1;
}

.hero-countdown {
  gap: 8px;
}

.hero-countdown .countdown-box {
  padding: 15px 8px;
}

.hero-countdown .countdown-box strong {
  font-size: 28px;
}

.hero-countdown .countdown-box span {
  display: block;
  font-size: 12px;
  line-height: 1.4;
}

.hero-location {
  min-width: 0;
}

.hero-location i {
  flex: 0 0 auto;
  font-size: 40px !important;
}

.hero-location .ms-3 {
  margin-left: .5rem !important;
}

.hero-location h4,
.hero-location p {
  overflow-wrap: anywhere;
  line-height: 1.35;
}

@media (max-width: 1199px) {
  .hero-location {
    justify-content: flex-start !important;
  }
}

.form-border input[type=file] {
  width: 100%;
  padding: 13px 12px;
  color: rgba(255, 255, 255, .8);
  border: solid 1px rgba(255, 255, 255, .25);
  border-radius: 6px;
  background: rgba(255, 255, 255, .04);
}

.form-status {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 24px;
  color: #fff;
  font-weight: 700;
  line-height: 1.45;
}

.form-status:before {
  flex: 0 0 auto;
  font-family: FontAwesome;
  font-weight: normal;
  line-height: 1.45;
}

.form-status.success {
  background: rgba(25, 135, 84, .18);
  border: 1px solid rgba(25, 135, 84, .42);
}

.form-status.success:before {
  content: "\f058";
  color: #46d985;
}

.form-status.danger {
  background: rgba(192, 16, 16, .18);
  border: 1px solid rgba(192, 16, 16, .42);
}

.form-status.danger:before {
  content: "\f06a";
  color: #ff6b6b;
}

.aas-form-card {
  position: relative;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025)),
    #070707;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .36);
}

.aas-form-card:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 4px solid var(--primary-color);
  pointer-events: none;
}

.exhibitor-form-card {
  margin-bottom: 28px;
  scroll-margin-top: 110px;
}

.exhibitor-form-card:last-child {
  margin-bottom: 0;
}

.exhibitor-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 -1px;
  padding: 10px 10px 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)),
    #050505;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .28);
}

.exhibitor-tabs .nav-item {
  flex: 1 1 25%;
  list-style: none;
  margin-bottom: -1px;
}

.exhibitor-tabs .nav-link {
  width: 100%;
  min-height: 48px;
  padding: 10px 15px;
  border: 1px solid transparent;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  position: relative;
  isolation: isolate;
}

@media (max-width: 767px) {
  .exhibitor-tabs .nav-item {
    flex-basis: 50%;
  }
}

@media (max-width: 480px) {
  .exhibitor-tabs .nav-item {
    flex-basis: 100%;
  }
}

.exhibitor-tabs .nav-link:hover {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  color: #fff;
}

.exhibitor-tabs .nav-link.active {
  border-color: rgba(255, 255, 255, .14) rgba(255, 255, 255, .14) #070707;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025)),
    #070707;
  color: #fff;
  box-shadow: inset 0 3px 0 var(--primary-color);
}

.exhibitor-tabs .nav-link.active:after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--secondary-color);
  opacity: .9;
}

.exhibitor-tab-content {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-top: 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background: #070707;
}

.exhibitor-tab-content .aas-form-card {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-color: transparent;
  box-shadow: none;
}

.exhibitor-tab-content > .tab-pane {
  display: none;
}

.exhibitor-tab-content > .active {
  display: block;
}

.form-section-title {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 6px;
  background: rgba(16, 96, 176, .18);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.exhibitor-form-nav {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.exhibitor-form-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  background: #0d0d0e;
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-weight: 800;
}

.exhibitor-form-nav a:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.form-card-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.form-card-head h3 {
  margin: 4px 0 0;
  font-size: 24px;
}

.form-card-head p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.5;
}

.form-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.aas-field {
  position: relative;
}

.aas-field label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.aas-field i {
  position: absolute;
  left: 15px;
  top: 45px;
  z-index: 2;
  color: var(--aas-blue);
  font-size: 15px;
  pointer-events: none;
}

.aas-field input[type=text],
.aas-field input[type=email],
.aas-field input[type=tel],
.aas-field select,
.aas-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px 13px 44px !important;
  border: 1px solid rgba(255, 255, 255, .16) !important;
  border-radius: 8px !important;
  background: #0d0d0e !important;
  color: #fff !important;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.aas-field textarea {
  min-height: 132px;
  padding-left: 16px !important;
  resize: vertical;
}

.aas-field input:focus,
.aas-field select:focus,
.aas-field textarea:focus {
  border-color: var(--primary-color) !important;
  background: #111113 !important;
  box-shadow: 0 0 0 3px rgba(240, 224, 0, .12);
}

.aas-field select {
  appearance: none;
  cursor: pointer;
}

.aas-select:after {
  content: "\f107";
  position: absolute;
  right: 16px;
  top: 43px;
  font-family: FontAwesome;
  color: rgba(255, 255, 255, .7);
  pointer-events: none;
}

.aas-field.aas-file {
  min-height: 100%;
  padding: 14px;
  border: 1px dashed rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: #0d0d0e;
}

.aas-field.aas-file input[type=file] {
  margin-top: 4px;
  border: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.aas-checkbox {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #0d0d0e;
}

.aas-checkbox input[type=checkbox] {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  accent-color: var(--secondary-color);
  cursor: pointer;
}

.aas-checkbox label {
  margin: 0;
  flex: 1 1 220px;
  cursor: pointer;
}

.aas-checkbox label a {
  color: var(--primary-color);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.aas-checkbox .field-error {
  flex: 0 0 100%;
  margin-left: 32px;
}

.aas-recaptcha {
  display: inline-block;
  max-width: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #0d0d0e;
  overflow-x: auto;
}

.aas-recaptcha.is-invalid {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(192, 16, 16, .16);
}

.aas-recaptcha .field-error {
  display: none;
}

.aas-recaptcha.is-invalid .field-error {
  display: block;
}

.aas-field small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
}

.aas-field.is-invalid input,
.aas-field.is-invalid select,
.aas-field.is-invalid textarea,
.aas-field.is-invalid.aas-file,
.aas-field.is-invalid.aas-checkbox {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 3px rgba(192, 16, 16, .16);
}

.field-error {
  display: none;
  margin-top: 7px;
  color: #ff6b6b;
  font-size: 12px;
  line-height: 1.4;
}

.aas-field.is-invalid .field-error {
  display: block;
}

.form-submit-error {
  display: none;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(192, 16, 16, .16);
  border: 1px solid rgba(192, 16, 16, .42);
  color: #fff;
}

.aas-form-card.has-errors .form-submit-error {
  display: block;
}

.aas-form-card.is-submitting {
  pointer-events: none;
}

.aas-form-card.is-submitting button[type=submit] {
  opacity: .72;
  cursor: progress;
}

.footer-logo {
  width: 350px;
  max-width: 100%;
  height: auto;
}

footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(192, 16, 16, .18), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(16, 96, 176, .16), transparent 34%),
    linear-gradient(180deg, #050505 0%, #000 100%);
}

.subfooter {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-heart {
  color: var(--secondary-color);
  margin: 0 4px;
}

.nexaworx-link {
  color: var(--aas-blue) !important;
  font-weight: 800;
}

.aas-page-contact .aas-card > i,
.aas-page-contact .aas-field i {
  color: var(--secondary-color) !important;
}

.news-category-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}

.news-category-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  padding: 8px 12px;
  background: #0d0d0e;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.news-category-strip small,
.news-link {
  color: var(--primary-color);
}

.news-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: #0d0d0e;
}

.news-card-image {
  display: block;
  aspect-ratio: 16 / 8;
  overflow: hidden;
}

.news-card.is-featured .news-card-image {
  aspect-ratio: 16 / 8;
}

.news-card-image img,
.aas-news-preview,
.aas-news-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-image img {
  display: block;
  transition: transform .28s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.04);
}

.news-card-body {
  padding: 20px;
}

.news-meta,
.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.news-meta span,
.news-detail-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .76);
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 800;
}

.news-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.22;
}

.news-card h3 a {
  color: #fff;
}

.news-card p {
  color: rgba(255, 255, 255, .66);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.news-pagination {
  margin-top: 36px;
  text-align: center;
}

.news-pagination ul {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-pagination a,
.news-pagination strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: #0d0d0e;
  color: #fff;
  padding: 0 12px;
}

.news-pagination strong,
.news-pagination a:hover {
  background: var(--primary-color);
  color: #111;
}

.news-article {
  border-radius: 8px;
  background: #0d0d0e;
  border: 1px solid rgba(255, 255, 255, .12);
  padding: clamp(24px, 4vw, 46px);
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.78;
}

.news-article h2,
.news-article h3,
.news-article h4 {
  margin-top: 1.8em;
  margin-bottom: .7em;
  color: #fff;
}

.news-article p,
.news-article ul,
.news-article ol,
.news-article blockquote,
.news-article table {
  margin-bottom: 1.2em;
}

.news-article a {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-article img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.news-article blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 16px 20px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.news-share,
.news-sidebar {
  margin-top: 24px;
  border-radius: 8px;
  background: #0d0d0e;
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 22px;
}

.news-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.news-share span {
  color: #fff;
  font-weight: 900;
}

.news-share a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #151517;
  color: #fff;
}

.news-sidebar {
  position: sticky;
  top: 96px;
}

.news-sidebar h3 {
  margin-bottom: 16px;
}

.news-sidebar-item {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.news-sidebar-item span,
.news-sidebar-item small {
  display: block;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
}

.news-sidebar-item strong {
  display: block;
  margin: 4px 0;
  color: #fff;
  line-height: 1.3;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #0d0d0e;
  padding: clamp(24px, 4vw, 42px);
}

.privacy-policy-content h2 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 22px;
}

.privacy-policy-content h2:first-child {
  margin-top: 0;
}

.privacy-policy-content p,
.privacy-policy-content .feature-list {
  margin-bottom: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  background: #25d366;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.whatsapp-float i {
  font-size: 28px;
}

.page-hero {
  min-height: 520px;
}

.page-hero h1 {
  font-size: 62px;
}

.map-frame {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 8px;
  filter: grayscale(.25) contrast(1.05);
}

.document-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
}

.partner-cta {
  padding: 22px;
  border-radius: 8px;
  background: #0d0d0e;
  border: 1px solid rgba(255, 255, 255, .1);
}

.partner-cta h3 {
  margin-bottom: 8px;
}

.partner-cta p {
  margin-bottom: 18px;
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-card {
  display: flex;
  flex-direction: column;
}

.video-card .video-placeholder {
  margin-top: auto;
}

.video-placeholder img,
.video-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder video {
  display: block;
  background: #000;
}

.video-placeholder img {
  opacity: .72;
}

.video-placeholder span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder i {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #050505;
  background: var(--primary-color);
}

@media (max-width: 991px) {
  div#logo img {
    max-width: 70px;
  }

  .hero-title,
  .page-hero h1 {
    font-size: 42px;
  }

  .metric-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .de-flex-col .apply-nav {
    display: none;
  }
}

@media (max-width: 575px) {
  .news-card.is-featured .news-card-image,
  .news-card-image {
    aspect-ratio: 4 / 3;
  }

  .news-card-body,
  .news-article,
  .news-share,
  .news-sidebar {
    padding: 20px;
  }

  .news-article {
    font-size: 16px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-title,
  .page-hero h1 {
    font-size: 34px;
  }

  .year-gallery-modal {
    padding: 10px;
  }

  .year-gallery-dialog {
    width: calc(100vw - 20px);
    height: calc(100dvh - 20px);
    max-height: calc(100vh - 20px);
  }

  .year-gallery-header,
  .year-gallery-footer {
    padding: 12px 14px;
  }

  .year-gallery-header h3 {
    font-size: 20px;
  }

  .year-gallery-swiper {
    height: 100% !important;
  }

  .year-gallery-control {
    width: 40px;
    height: 40px;
  }

  .year-gallery-control.prev {
    left: 10px;
  }

  .year-gallery-control.next {
    right: 10px;
  }

  .gallery-year-card {
    height: 300px;
  }

  .hero-actions .btn-main {
    width: 100%;
    margin: 6px 0 !important;
    text-align: center;
  }

  .zone-card {
    min-height: 330px;
  }

  .gallery-year-heading {
    display: block;
  }

  .gallery-year-heading span {
    display: inline-block;
    margin-top: 6px;
  }

  .gallery-tile {
    height: 240px;
  }

  .aas-form-card {
    padding: 20px;
  }

  .form-card-head {
    display: block;
  }

  .form-card-head p {
    margin-top: 8px;
  }

  .exhibitor-tabs {
    gap: 0;
  }

  .exhibitor-tabs .nav-item,
  .exhibitor-tabs .nav-link {
    width: 100%;
  }

  .footer-logo {
    width: 220px;
  }
}
