:root {
  --nexa-max-width: 1366px;
  --nexa-page-padding: 16px;
  --nexa-blue: #0267FF;
  --nexa-blue-dark: #004A90;
  --nexa-blue-border: #00A3E0;
  --nexa-purple: #903FF2;
  --nexa-purple-dark: #45325D;
  --nexa-white: #FFFFFF;
  --nexa-black: #000000;
  --nexa-text-color: #111111;
  --nexa-dark: #003b5c;
  --nexa-midnight: #2a2a2a;
}

/* =========================================================
   RESET DEFAULT HEADING MARGINS
   ========================================================= */
.nexa-scope h1, .nexa-scope h2, .nexa-scope h3, .nexa-scope h4, .nexa-scope h5, .nexa-scope h6,
.nexa-section h1,
.nexa-section h2,
.nexa-section h3,
.nexa-section h4,
.nexa-section h5,
.nexa-section h6 {
  margin-block-start: 0;
  margin-block-end: 0;
}

/* =========================================================
   CONTROLLED VERTICAL SPACING BETWEEN TITLE & BODY
   ========================================================= */
.nexa-banner__title {
  margin-bottom: 12px;
}

.nexa-banner__body {
  margin-top: 0;
  margin-bottom: 28px;
}

/* Media Query Placeholders */
.nexa-section {
  width: 100%;
}

.nexa-container {
  width: 100%;
  max-width: var(--nexa-max-width);
  margin: 0 auto;
  padding-left: var(--nexa-page-padding);
  padding-right: var(--nexa-page-padding);
  box-sizing: border-box;
}

/* Typography */
.nexa-scope p,
.nexa-section p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 16px;
}

.nexa-scope h1, .nexa-scope h2, .nexa-scope h3, .nexa-scope h4, .nexa-scope h5, .nexa-scope h6,
.nexa-section h1,
.nexa-section h2,
.nexa-section h3,
.nexa-section h4,
.nexa-section h5,
.nexa-section h6 {
  font-family: 'Comfortaa', sans-serif;
}

.nexa-scope a,
.nexa-section a {
  color: var(--nexa-blue-dark);
  text-decoration: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .nexa-scope p,
  .nexa-section p {
    font-size: 16px;
    line-height: 22px;
  }
}

@media (min-width: 1025px) {
  .nexa-scope p,
  .nexa-section p {
    font-size: 18px;
    line-height: 24px;
  }
}

.nexa-banner__body {
  margin: 0 0 36px;
}

/* CTA Row */
.nexa-banner__cta-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .nexa-banner__cta-row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* Link Arrow */
.nexa-link-arrow--underline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--nexa-white);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
}

.nexa-link-arrow--underline span.link-text {
  text-decoration: underline !important;
}

.nexa-link-arrow--underline:hover {
  color: var(--nexa-white);
  text-decoration: none;
}

.nexa-link-arrow--underline:hover span.link-text {
  text-decoration: underline;
}

/* Arrow Circle */
.arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
}

.arrow-circle i {
  font-size: 12px;
  color: #ffffff;
  margin-left: 1px;
}

@media (max-width: 768px) {
  .arrow-circle {
    width: 18px;
    height: 18px;
  }
  .arrow-circle i {
    font-size: 10px;
  }
}

@media (min-width: 1280px) and (max-width: 1365px) {
  .nexa-banner__quote footer {
    text-align: left !important;
    margin-left: 0 !important;
  }
}

/* Buttons */
.nexa-btn,
.nexa-btn:link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.nexa-btn:focus,
.nexa-btn:link:focus {
  text-decoration: none;
}

.nexa-btn.nexa-blue-white-btn,
.nexa-btn:link.nexa-blue-white-btn {
  background-color: var(--nexa-blue);
  color: var(--nexa-white);
}

.nexa-btn.nexa-shadow-white-btn,
.nexa-btn:link.nexa-shadow-white-btn {
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--nexa-white);
  border-color: var(--nexa-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.nexa-btn.nexa-purple-white-btn,
.nexa-btn:link.nexa-purple-white-btn {
  background-color: var(--nexa-purple);
  color: var(--nexa-white);
}

.nexa-btn.nexa-white-blue-btn,
.nexa-btn:link.nexa-white-blue-btn {
  background-color: var(--nexa-white);
  color: var(--nexa-blue-dark);
  border-color: var(--nexa-blue-border);
}

.nexa-btn.nexa-clear-blue-btn,
.nexa-btn:link.nexa-clear-blue-btn {
  background-color: transparent;
  color: var(--nexa-blue-dark);
  border-color: var(--nexa-blue-dark);
}

.nexa-btn.nexa-outline-white-btn,
.nexa-btn:link.nexa-outline-white-btn {
  background-color: transparent;
  color: var(--nexa-white);
  border-color: var(--nexa-white);
}

button.nexa-btn {
  border-width: 1px;
}

/* Accessibility helper */
.nexa-sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Background */
.nexa-light-blue-ftr {
  background: linear-gradient(180deg, #ffffff 0%, #e5f6fc 100%);
}

.nexa-blue-text-link {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: var(--nexa-blue) !important;
  text-decoration: none;
  padding: 0;
}

.nexa-blue-text-link-underline {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: var(--nexa-blue) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  padding: 0;
}

.nexa-banner {
  position: relative;
  width: 100%;
  min-height: 600px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.nexa-banner__inner {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: var(--nexa-max-width);
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
}

.nexa-banner__inner.title-align-above-layout {
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  padding-top: 100px;
}

.nexa-banner__inner.title-align-beside-left {
  flex-wrap: nowrap;
}

.nexa-banner__inner.title-align-beside-left .nexa-banner__video {
  justify-content: flex-start;
  order: 1;
}

.nexa-banner__inner.title-align-beside-left .nexa-banner__content {
  order: 2;
}

.nexa-banner__video {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  align-items: center;
}

.nexa-banner__video img {
  width: 620px;
  height: 350px;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}

.nexa-banner__video .video-trigger {
  position: relative;
  background: none;
  padding: 0;
  cursor: pointer;
  width: 620px;
  height: 350px;
  border: 4px solid #fff;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  line-height: 0;
}

.nexa-banner__video .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.nexa-banner__video .play-icon i {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  font-size: 60px;
}

.nexa-banner__inner.title-align-above-layout .nexa-banner__video {
  flex: 1 1 45%;
  order: 3;
}

.nexa-banner__content {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
}

.nexa-banner__inner.title-align-above-layout .nexa-banner__content {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  order: 3;
}

.nexa-banner__title {
  color: #fff;
  text-align: left;
  margin-bottom: 8px;
  /* Title alignment variants */
}

.nexa-banner__title.align-above {
  margin-bottom: 20px;
}

.nexa-banner__title.align-beside {
  margin-bottom: 8px;
}

.nexa-banner__inner.title-align-above-layout .nexa-banner__title {
  position: absolute;
  top: var(--nexa-title-top-offset, -17px);
  left: 0;
  right: 0;
  width: 100%;
}

.nexa-banner__body, .nexa-banner__body-html {
  color: #fff;
  margin-top: 12px !important;
  margin-bottom: 30px !important;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}

.nexa-banner__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nexa-banner__subhead {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 16px 0;
}

.nexa-banner__quote {
  color: #fff;
  line-height: 1.4;
  margin: 0 0;
  font-weight: 500;
}

.nexa-banner__quote footer {
  color: #fff;
  margin-top: 16px;
  opacity: 0.8;
}

.nexa-banner .nexa-banner:not(.nexa-banner--case) .nexa-banner__title {
  margin-bottom: 8px !important;
}

.nexa-banner .nexa-banner:not(.nexa-banner--case) .nexa-banner__body {
  margin-top: 0 !important;
}

.nexa-banner .nexa-banner__cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.nexa-banner .nexa-banner__title {
  color: #fff;
}

.nexa-banner .nexa-banner__cta-row {
  display: flex;
  align-items: center;
  gap: 128px;
  margin-top: 32px;
}

.nexa-banner .btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 31px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.nexa-banner .btn:hover {
  background: #4B2776;
  border-color: #fff;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .nexa-banner__body, .nexa-banner__body-html {
    font-size: 16px;
    line-height: 22px;
  }
}

@media (min-width: 769px) {
  .nexa-banner__body, .nexa-banner__body-html {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (min-width: 1024px) {
  .nexa-banner__inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .nexa-banner__content {
    order: 1;
  }
  .nexa-banner__video {
    order: 2;
  }
}

@media (min-width: 1536px) {
  .nexa-banner__cta {
    justify-content: flex-start !important;
  }
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 90px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300000;
  background: rgba(0, 0, 0, 0.45);
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.video-modal.is-open, .video-modal[aria-hidden="false"] {
  display: flex !important;
  /* force flex centering even if JS injected display */
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
}

.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 480px;
  max-height: 90vh;
  background: #fff;
  border-radius: 16px;
  padding: 17px 15px;
  box-sizing: border-box;
  overflow: visible;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.3s ease;
  z-index: 1;
}

.video-modal__content video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-sizing: border-box;
  border: 3px solid var(--nexa-blue-border);
}

.video-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(35%, -35%);
  margin: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #003B5C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  cursor: pointer;
  pointer-events: auto;
}

.video-modal__close i {
  font-size: 20px;
  line-height: 1;
}

@media (min-width: 480px) {
  .video-modal__close {
    width: 42px;
    height: 42px;
  }
}

body.nexa-modal-locked {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  inset: 0;
}

@media (max-width: 768px) {
  .video-modal__content {
    max-width: 95vw;
    padding: 10px;
  }
  .video-modal__close {
    width: 35px;
    height: 35px;
  }
}

@media (min-width: 769px) {
  .video-modal {
    --nexa-header-height: 120px;
    align-items: flex-start;
    padding-top: calc(var(--nexa-header-height) + 40px);
    padding-bottom: 48px;
  }
  .video-modal__content {
    max-width: 960px;
    max-height: 636px;
    padding: 17px 15px;
  }
  .video-modal__close {
    width: 42px;
    height: 42px;
  }
  .video-modal__close i {
    font-size: 22px;
  }
}

@media (min-width: 1301px) {
  .video-modal__content {
    max-width: 1110px;
    height: 636px;
  }
}

@media (max-height: 540px) and (orientation: landscape) {
  .video-modal {
    align-items: center;
    padding: 12px;
  }
  .video-modal__content {
    width: 90vw;
    max-width: 612px;
    max-height: 87vh;
    padding: 10px;
  }
  .video-modal__content video {
    max-height: calc(82vh - 20px);
  }
  .video-modal__close {
    width: 38px;
    height: 38px;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.nexa-banner--case {
  width: 100vw;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;
}

.nexa-banner--case::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.nexa-banner--case .nexa-banner__inner {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 60px 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nexa-banner--case .nexa-banner__title {
  margin-bottom: 20px;
  max-width: 1200px;
}

.nexa-banner--case .nexa-banner__main-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.nexa-banner--case .nexa-banner__video {
  flex: 0 1 50%;
  order: 2;
}

.nexa-banner--case .nexa-banner__video .video-trigger, .nexa-banner--case .nexa-banner__video img {
  width: 620px;
  height: 350px;
}

.nexa-banner__inner.video-align-left:not(.title-align-above-layout) .nexa-banner--case .nexa-banner__video {
  order: 1 !important;
}

.nexa-banner--case .nexa-banner__content {
  flex: 0 1 55%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  order: 1;
}

.nexa-banner__inner.video-align-left:not(.title-align-above-layout) .nexa-banner--case .nexa-banner__content {
  order: 2;
}

.nexa-banner--case .nexa-banner__subhead {
  color: #fff;
  display: inline-block;
  padding: 6px 10px;
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nexa-banner--case .nexa-banner__quote {
  color: #fff;
  margin-bottom: 0px;
  line-height: 1.2;
  max-width: 600px;
}

.nexa-banner--case .nexa-banner__quote h3 {
  margin: 0;
  color: #fff;
}

.nexa-banner--case .nexa-banner__quote footer {
  margin-top: 12px;
  text-transform: uppercase;
  color: #d9d6f0;
  letter-spacing: 0.5px;
}

.nexa-banner--case .nexa-link-arrow--underline {
  color: #fff !important;
}

.nexa-banner--case .nexa-link-arrow--underline .link-text {
  text-decoration: underline !important;
}

.nexa-banner--case .nexa-link-arrow--underline:hover {
  color: #fff !important;
  text-decoration: none !important;
}

.nexa-banner--case .nexa-link-arrow--underline:hover .link-text {
  text-decoration: underline !important;
}

@media (min-width: 1280px) {
  .nexa-banner--case::before {
    background-size: 2000px auto;
    background-position: 45% -600px;
    opacity: 0.35;
  }
}

@media (max-width: 1024px) {
  .nexa-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .nexa-banner__content, .nexa-banner__video {
    flex: unset;
    width: 100%;
    justify-content: center;
  }
  .nexa-banner__title {
    text-align: center;
  }
  .nexa-banner__body {
    text-align: center;
  }
  .nexa-banner__cta {
    justify-content: center;
  }
  .nexa-banner--case::before {
    background-size: 1650px auto;
    background-position: 50% -440px;
    opacity: 0.32;
  }
  .nexa-banner--case .nexa-banner__video .video-trigger, .nexa-banner--case .nexa-banner__video img {
    width: 500px;
    height: 300px;
  }
  .nexa-banner--case .nexa-banner__quote {
    text-align: left !important;
    max-width: 600px;
    margin: 0 !important;
  }
  .nexa-banner--case .nexa-banner__quote footer {
    text-align: left !important;
    margin-top: 12px;
  }
  .nexa-banner--case .nexa-banner__cta-row {
    justify-content: flex-start !important;
    gap: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .nexa-banner--case .nexa-banner__main-content {
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 14px !important;
  }
  .nexa-banner--case .nexa-banner__video {
    flex: 0 1 45% !important;
    justify-content: flex-start !important;
  }
  .nexa-banner--case::before {
    background-position: 50% -470px !important;
  }
  .nexa-banner--case .nexa-banner__video .video-trigger, .nexa-banner--case .nexa-banner__video img {
    width: 480px !important;
    height: 270px !important;
  }
  .nexa-banner--case .nexa-banner__content {
    flex: 0 1 50% !important;
    text-align: left !important;
    align-items: flex-start !important;
  }
  .nexa-banner--case .nexa-banner__inner {
    padding: 40px 40px !important;
  }
}

@media (min-width: 1280px) {
  .nexa-banner:not(.nexa-banner--case) .nexa-banner__inner {
    padding-left: 100px !important;
  }
  .nexa-banner--case .nexa-banner__cta-row {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nexa-banner:not(.nexa-banner--case) {
    padding: 60px 0 80px;
  }
  .nexa-banner:not(.nexa-banner--case) .nexa-banner__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .nexa-banner:not(.nexa-banner--case) .nexa-banner__content {
    order: 0 !important;
    padding: 0;
    display: contents !important;
  }
  .nexa-banner:not(.nexa-banner--case) .nexa-banner__cta {
    order: 2 !important;
  }
  .nexa-banner:not(.nexa-banner--case) .nexa-banner__title {
    text-align: center;
    order: 0;
    padding: 0 0;
  }
  .nexa-banner:not(.nexa-banner--case) .nexa-banner__body,
  .nexa-banner:not(.nexa-banner--case) .nexa-banner__body-html {
    margin-bottom: 12px !important;
    text-align: left;
    order: 1;
    padding: 0 16px;
  }
  .nexa-banner:not(.nexa-banner--case) .nexa-banner__video {
    order: 2 !important;
    justify-content: center;
    margin: 8px 0 16px 0;
  }
  .nexa-banner:not(.nexa-banner--case) .nexa-banner__cta {
    order: 3 !important;
    padding: 0 16px;
  }
  .nexa-banner:not(.nexa-banner--case) .video-trigger {
    max-width: 320px;
    width: 100%;
    border-width: 3px;
  }
  .nexa-banner--case {
    padding: 20px 0 40px !important;
  }
  .nexa-banner--case::before {
    background-size: 900px auto;
    background-position: 50% 0px;
    opacity: 0.28;
  }
  .nexa-banner--case .nexa-banner__main-content {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .nexa-banner--case .nexa-banner__inner {
    flex-direction: column;
    gap: 16px;
    padding: 24px 16px;
  }
  .nexa-banner--case .nexa-banner__video {
    order: 2;
    justify-content: center;
  }
  .nexa-banner--case .nexa-banner__video .video-trigger, .nexa-banner--case .nexa-banner__video img {
    width: 100%;
    max-width: 340px;
    height: auto;
    border-width: 3px;
    border-radius: 8px;
  }
  .nexa-banner--case .nexa-banner__content {
    order: 0;
    display: contents;
    width: 100%;
  }
  .nexa-banner--case .nexa-banner__body,
  .nexa-banner--case .nexa-banner__body-html {
    order: 1;
  }
  .nexa-banner--case .nexa-banner__cta {
    order: 3;
  }
  .nexa-banner--case .nexa-banner__inner.title-align-beside-left {
    align-items: stretch;
  }
  .nexa-banner--case .nexa-banner__inner.title-align-beside-left .nexa-banner__content {
    order: 0 !important;
    display: contents !important;
    width: 100%;
  }
  .nexa-banner--case .nexa-banner__inner.title-align-beside-left .nexa-banner__title,
  .nexa-banner--case .nexa-banner__inner.title-align-beside-left .nexa-banner__body {
    text-align: left;
    padding: 0 16px;
  }
  .nexa-banner--case .nexa-banner__inner.title-align-beside-left .nexa-banner__video {
    order: 2 !important;
    margin: 12px 0;
    justify-content: center;
  }
  .nexa-banner--case .nexa-banner__inner.title-align-beside-left .nexa-banner__body, .nexa-banner--case .nexa-banner__inner.title-align-beside-left .nexa-banner__body-html {
    order: 1;
  }
  .nexa-banner--case .nexa-banner__inner.title-align-beside-left .nexa-banner__cta {
    order: 3 !important;
    padding: 0 16px;
  }
  .nexa-banner--case .nexa-banner__title {
    text-align: center;
    margin-bottom: 43px;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
  .nexa-banner--case .nexa-banner__subhead {
    line-height: 23.5px;
    margin: 8px 0 8px;
    align-self: flex-start;
  }
  .nexa-banner--case .nexa-banner__quote {
    line-height: 34px;
    text-align: left;
    padding: 0;
    margin: 0 0 8px 0;
  }
  .nexa-banner--case .nexa-banner__quote footer {
    line-height: 18px !important;
    color: #d9d6f0 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: normal;
    overflow-wrap: anywhere;
    max-width: 289px;
    text-align: left !important;
  }
  .nexa-banner--case .nexa-banner__cta-row {
    margin-top: 20px;
    gap: 20px;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
  }
  .nexa-banner--case .nexa-link-arrow--underline {
    display: inline-flex;
  }
}

@media (max-width: 430px) {
  .nexa-banner:not(.nexa-banner--case) .nexa-banner__video {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nexa-banner:not(.nexa-banner--case) .nexa-banner__video .video-trigger, .nexa-banner:not(.nexa-banner--case) .nexa-banner__video img {
    width: 371px !important;
    height: 211px !important;
    max-width: none !important;
  }
}

@media (min-width: 1280px) {
  .nexa-banner:not(.nexa-banner--case) .nexa-banner__inner {
    max-width: 1380px !important;
    gap: 12px !important;
    padding: 50px 50px !important;
  }
  .nexa-banner:not(.nexa-banner--case) .nexa-banner__body {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .nexa-banner:not(.nexa-banner--case) .nexa-banner__cta {
    justify-content: flex-start;
    flex-wrap: nowrap !important;
    gap: 20px !important;
  }
  .nexa-banner:not(.nexa-banner--case) .nexa-btn {
    white-space: nowrap !important;
  }
  .nexa-banner:not(.nexa-banner--case) .nexa-banner__video .video-trigger, .nexa-banner:not(.nexa-banner--case) .nexa-banner__video img {
    width: 570px !important;
    height: 330px !important;
  }
}

@media (min-width: 900px) and (max-width: 1279px) {
  .nexa-banner:not(.nexa-banner--case) .nexa-banner__inner {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0px !important;
    padding: 40px 64px !important;
  }
  .nexa-banner:not(.nexa-banner--case) .nexa-banner__video {
    justify-content: flex-end !important;
  }
  .nexa-banner:not(.nexa-banner--case) .nexa-banner__video .video-trigger, .nexa-banner:not(.nexa-banner--case) .nexa-banner__video img {
    width: 440px !important;
    height: 260px !important;
  }
  .nexa-banner:not(.nexa-banner--case) .nexa-banner__body {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .nexa-banner:not(.nexa-banner--case) .nexa-banner__cta {
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 20px !important;
  }
  .nexa-banner:not(.nexa-banner--case) .nexa-btn {
    white-space: nowrap !important;
  }
}

@media (min-width: 900px) and (max-width: 1279px) {
  .nexa-banner:not(.nexa-banner--case).nexa-banner--center .nexa-banner__inner {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 24px !important;
  }
  .nexa-banner:not(.nexa-banner--case).nexa-banner--center .nexa-banner__body {
    text-align: center !important;
  }
  .nexa-banner:not(.nexa-banner--case).nexa-banner--center .nexa-banner__video {
    justify-content: center !important;
    order: 1 !important;
    align-self: center !important;
  }
  .nexa-banner:not(.nexa-banner--case).nexa-banner--center .nexa-banner__cta {
    justify-content: center !important;
  }
}

.nexa-banner__error {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 620px;
  height: 350px;
  border: 4px solid #fff;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  text-align: center;
  line-height: 1.4;
  padding: 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .nexa-banner__error {
    width: 100%;
    max-width: 320px;
    height: auto;
    min-height: 180px;
    font-size: 16px;
    border-width: 3px;
    padding: 12px;
  }
}

.video-modal__close {
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.video-modal__close:focus {
  outline: none;
  box-shadow: none;
}

.video-modal__close:focus-visible {
  outline: none;
  border: 2px solid #fff;
}

.video-modal__close:focus:not(:focus-visible) {
  box-shadow: none;
}

.nexa-hr {
  border: none;
}

.nexa-section[data-component="HorizontalRule"] {
  display: flow-root;
}

/* ---------------------------------------
   Nexa Rollover Cards (Final Optimized)
---------------------------------------- */
:root {
  --nexa-line: #1aa1e6;
  --card-bg: #fff;
  --card-text: #0b1110;
  --card-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
  --card-radius: 8px;
  --card-max-width: 400px;
  --card-height: 220px;
  --card-height-mobile: 260px;
  --gap: 24px;
  --card-padding: 16px 20px;
  --card-icon-size: 64px;
}

/* ---------------------------
   Section Wrapper
---------------------------- */
.nexa-rollover-section {
  position: relative;
  background-color: #0b1110;
  padding: 0 0 72px;
  overflow: hidden;
}

/* Single blue line across top */
.nexa-rollover-topbar {
  height: 6px;
  background: var(--nexa-line);
  width: 100%;
}

/* ---------------------------
   Container
---------------------------- */
.nexa-rollover-container {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: var(--gap);
}

/* ---------------------------
   Card Shell
---------------------------- */
.nexa-rollover-card {
  flex: 0 1 var(--card-width-desktop, var(--card-width, 33%));
  max-width: var(--card-max-width);
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: pointer;
  outline: none;
}

.nexa-card-topline {
  height: 0;
  background: var(--nexa-line);
  width: 100%;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}

.nexa-card-body {
  position: relative;
  display: grid;
  box-sizing: border-box;
  min-width: 0;
  background: var(--card-bg);
  color: var(--card-text);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  min-height: var(--card-height);
  overflow: hidden;
  transform-origin: top center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nexa-rollover-card:focus-visible .nexa-card-body {
  box-shadow: 0 0 0 3px rgba(26, 161, 230, 0.35), var(--card-shadow);
}

/* ---------------------------
   Card Layers
---------------------------- */
.nexa-card-body .card-layer {
  grid-area: 1 / 1;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  padding: var(--card-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--card-bg);
  transition: opacity 0.24s ease;
}

.nexa-card-body .card-default {
  opacity: 1;
  z-index: 1;
}

.nexa-card-body .card-hover {
  opacity: 0;
  z-index: 2;
}

/* Hover swap */
.nexa-rollover-card:hover .nexa-card-body .card-default,
.nexa-rollover-card.is-active .nexa-card-body .card-default {
  opacity: 0;
}

.nexa-rollover-card:hover .nexa-card-body .card-hover,
.nexa-rollover-card.is-active .nexa-card-body .card-hover {
  opacity: 1;
}

/* No rollover content: keep static */
.nexa-rollover-card.no-rollover {
  cursor: default;
}

.nexa-rollover-card.no-rollover .card-hover {
  display: none;
}

.nexa-rollover-card.no-rollover:hover .nexa-card-body .card-default,
.nexa-rollover-card.no-rollover.is-active .nexa-card-body .card-default {
  opacity: 1;
}

.nexa-rollover-card.no-rollover:hover .nexa-card-body,
.nexa-rollover-card.no-rollover.is-active .nexa-card-body {
  transform: none;
  box-shadow: var(--card-shadow);
}

/* ---------------------------
   Media / Icon
---------------------------- */
.nexa-rollover-card .card-media {
  display: grid;
  place-items: center;
  width: 100%;
  height: auto;
}

.nexa-rollover-card .card-media img {
  max-width: 100%;
  height: auto;
  display: block;
}

.nexa-rollover-card .card-media i {
  font-size: var(--card-icon-size);
  color: var(--nexa-blue-border);
}

/* ---------------------------
   Typography
---------------------------- */
.nexa-rollover-card .card-title {
  margin: 8px 0 0;
  color: #0f61a8;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.nexa-rollover-card .card-body {
  margin-top: 4px;
  line-height: 28px;
  text-align: center;
  letter-spacing: 0;
  color: #2a2a2a;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ---------------------------
   Hover / Active Effect
---------------------------- */
.nexa-rollover-card:hover .nexa-card-body,
.nexa-rollover-card.is-active .nexa-card-body {
  transform: translateY(-6px);
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.22);
  z-index: 5;
}

/* ---------------------------
   Responsive
---------------------------- */
/* Tablet */
@media (max-width: 1024px) {
  .nexa-rollover-container {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 2px;
  }
  .nexa-rollover-card {
    flex: 0 1 var(--card-width-tablet, var(--card-width-desktop, var(--card-width, 33%)));
  }
  .nexa-card-body {
    min-height: calc(var(--card-height) + 10px);
  }
}

/* ---------------------------
   Mobile
---------------------------- */
@media (max-width: 768px) {
  .nexa-rollover-topbar {
    display: none;
  }
  .nexa-rollover-container {
    padding: 0 24px;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 24px;
  }
  .nexa-rollover-card {
    flex: 0 1 100%;
    max-width: 100%;
  }
  .nexa-card-topline {
    height: 8px;
    width: calc(100% + 48px);
    margin: 0 -24px;
    border-radius: 0;
  }
  .nexa-card-body {
    min-height: var(--card-height-mobile);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    background: var(--card-bg);
  }
  .nexa-card-body .card-layer {
    padding: 16px 20px 18px;
    grid-area: 1 / 1;
  }
  .nexa-rollover-card.is-active .nexa-card-body {
    transform: translateY(-4px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
    z-index: 6;
  }
}

@media (min-width: 1100px) {
  .nexa-card-body {
    min-height: var(--card-height);
  }
}

@media (min-width: 1400px) {
  .nexa-rollover-container {
    padding: 0 105px;
  }
}

.nexa-rollover-card .card-body ul,
.nexa-rollover-card .card-body ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

.nexa-rollover-card .card-body li {
  margin: 0;
  padding: 0;
}

.nexa-section {
  margin: 0 auto !important;
}

.nexa-footer-section {
  padding: 28px 0;
}

@media (max-width: 1023px) {
  .nexa-footer-section {
    background-size: cover !important;
    background-position: center !important;
  }
}

.nexa-footer-section a:focus, .nexa-footer-section a:focus-visible {
  outline: 2px solid #8a63b9;
  outline-offset: 2px;
  border-radius: 3px;
}

.nexa-footer-section a .nexa-footer-navigation-title, .nexa-footer-section a .nexa-footer-child-navigation-title {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nexa-footer-section .nexa-footer-navigation-link-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

@media (max-width: 768px) {
  .nexa-footer-section .nexa-footer-navigation-link-section {
    display: none;
  }
}

.nexa-footer-section .nexa-footer-child-navigation-section {
  display: grid;
  padding: 10px;
  border-top: 1px solid var(--nexa-dark);
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0;
}

.nexa-footer-section .nexa-footer-child-navigation-section.nexa-footer-two-child-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .nexa-footer-section .nexa-footer-child-navigation-section.nexa-footer-two-child-section {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px;
  }
}

.nexa-footer-section .nexa-footer-images-links-section {
  display: flex;
  gap: 17px;
  justify-content: flex-end;
  margin-top: 22px;
}

.nexa-footer-section .nexa-footer-images-links-section .nexa-footer-image-link-item {
  max-height: 38px;
  width: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .nexa-footer-section .nexa-footer-images-links-section {
    justify-content: center;
    gap: 30px;
  }
}

.nexa-footer-section .nexa-footer-image-link-item-wrapper i {
  font-size: 38px;
  color: var(--nexa-blue-border);
}

.nexa-footer-section .nexa-footer-image-link-item-wrapper img {
  max-height: 37px;
  width: auto;
}

.nexa-footer-section .nexa-footer-navigation-title {
  color: var(--nexa-dark);
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: 0;
}

.nexa-footer-section .nexa-footer-child-navigation-title {
  font-family: "Inter", sans-serif;
  color: var(--nexa-midnight);
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nexa-footer-section .nexa-footer-navigation-links-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 12px;
}

.nexa-footer-section .nexa-footer-navigation-links-ul li:not(:first-child) {
  margin-top: 14px;
}

.nexa-footer-section .nexa-footer-navigation-link-item {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--nexa-blue);
  transition: color 200ms ease-out, opacity 200ms ease-out;
}

.nexa-footer-section .nexa-footer-navigation-link-item i {
  margin-left: 6px;
  color: var(--nexa-blue);
  font-size: 16px;
  transition: transform 200ms ease-out, color 200ms ease-out;
}

.nexa-footer-section a.nexa-footer-navigation-link-item {
  text-decoration: none;
}

.nexa-footer-section a.nexa-footer-navigation-link-item:hover, .nexa-footer-section a.nexa-footer-navigation-link-item:focus {
  color: var(--nexa-midnight);
}

.nexa-footer-section a.nexa-footer-navigation-link-item:hover i, .nexa-footer-section a.nexa-footer-navigation-link-item:focus i {
  color: var(--nexa-midnight);
  transform: translateX(4px);
}

.nexa-footer-section .nexa-footer-dynamic-two-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 768px) {
  .nexa-footer-section .nexa-footer-dynamic-two-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
}

.nexa-footer-section .nexa-footer-dynamic-fourth-section {
  display: flex;
  justify-content: flex-end;
}

.nexa-footer-section .nexa-footer-social-links-section {
  display: flex;
  gap: 15px;
  align-items: center;
}

@media (max-width: 768px) {
  .nexa-footer-section .nexa-footer-social-links-section {
    gap: 30px;
  }
}

.nexa-footer-section .nexa-footer-social-links-item-wrapper i {
  font-size: 30px;
  color: var(--nexa-blue-border);
}

.nexa-footer-section .nexa-footer-social-links-item-wrapper img {
  max-height: 32px;
  width: auto;
}

.nexa-footer-section .nexa-footer-copyright-section,
.nexa-footer-section .nexa-footer-copyright-section p {
  font-family: "Inter", sans-serif;
  color: var(--nexa-midnight);
  margin: 0;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.nexa-footer-section .nexa-footer-social-links-item {
  width: 28px;
  height: 32px;
  object-fit: cover;
}

.nexa-footer-section .nexa-footer-dynamic-fifth-section {
  margin-top: 4px;
}

@media (max-width: 768px) {
  .nexa-footer-section .nexa-footer-dynamic-fifth-section {
    margin-top: 10px;
  }
}

.nexa-footer-section .nexa-footer-legal-links-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  width: 100%;
}

@media (max-width: 768px) {
  .nexa-footer-section .nexa-footer-legal-links-section {
    justify-content: center;
  }
}

.nexa-footer-section .nexa-footer-legal-links-section a,
.nexa-footer-section .nexa-footer-legal-links-section .divider {
  color: var(--nexa-blue);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.nexa-footer-section .nexa-footer-legal-links-section a {
  text-decoration: underline;
  text-underline-offset: 3px;
  width: fit-content;
}

.nexa-footer-section .nexa-footer-legal-links-section .divider {
  user-select: none;
  text-decoration: none;
}

.nexa-footer-section .nexa-footer-social-divider {
  border-bottom: 1px solid var(--nexa-dark);
  margin: 22px 0 10px 0;
  opacity: 40%;
}

.nexa-nav__list, .nexa-megamenu__links, .nexa-sublist, .nexa-mobile__list, .nexa-mobile__submenu .nexa-megamenu__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nexa-megamenu__links {
  display: grid;
  gap: 12px;
}

.nexa-mobile__list {
  display: grid;
  gap: 16px;
}

.nexa-nav__list, .nexa-megamenu__links, .nexa-sublist, .nexa-mobile__list, .nexa-mobile__submenu .nexa-megamenu__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nexa-megamenu__links {
  display: grid;
  gap: 12px;
}

.nexa-mobile__list {
  display: grid;
  gap: 16px;
}

.nexa-header {
  --nexa-header-offset: 72px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200000;
  background: var(--nexa-header-bg, #E5F6FC);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.28);
  overflow: visible;
  isolation: isolate;
  /* Left-side wrapper */
  /* Targetable class for header button-style links */
  /* Default header icon/link color */
}

.nexa-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  min-height: var(--nexa-header-offset, 72px);
  position: relative;
  overflow: visible;
  padding-left: 20px;
  padding-right: 0;
  width: 100%;
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.nexa-header .nexa-header__inner {
  overflow: visible !important;
}

.nexa-header__logo img {
  height: 52px;
  width: auto;
  display: block;
}

.nexa-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
  overflow: visible;
}

@media (min-width: 1024px) {
  .nexa-header__actions {
    flex-wrap: nowrap;
  }
}

.nexa-header__actions[data-slot="left-nav"] {
  justify-content: flex-start;
}

@media (min-width: 1024px) {
  .nexa-header__actions[data-slot="left-nav"] {
    min-width: auto;
    flex: 1 1 430px;
    /* tighter footprint to reduce side padding around links */
    justify-content: flex-start;
  }
  .nexa-header__actions[data-slot="right-actions"] {
    min-width: auto;
    flex: 0 0 auto;
    margin-left: 24px;
    gap: 20px;
    justify-content: flex-start;
  }
}

.nexa-header__cta {
  margin-left: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background-color: var(--cta-bg, #3754E1);
  color: var(--cta-color, #fff);
  border-color: var(--cta-border, transparent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.nexa-header__cta:link, .nexa-header__cta:visited {
  color: var(--cta-color, #fff);
  text-decoration: none;
}

.nexa-header__cta:focus-visible {
  transform: none;
  text-decoration: none;
}

.nexa-header__actions .nexa-icon-btn {
  color: #006FD6;
}

.nexa-header__actions .nexa-icon-btn i {
  color: inherit;
}

.nexa-header__icon {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px;
  color: #006FD6;
  font-size: 22px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nexa-header__icon:hover, .nexa-header__icon:focus {
  color: #0055a3;
}

.nexa-header__icon--search {
  margin-left: 12px;
}

.st-header {
  --nexa-header-offset: 72px;
  background: var(--nexa-header-bg, #E5F6FC);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  overflow: visible;
  width: 100%;
  position: relative;
  z-index: 200000;
}

@media (max-width: 1023px) {
  .nexa-header {
    --nexa-header-offset: 54px;
  }
  .nexa-header__inner {
    min-height: var(--nexa-header-offset, 64px);
    padding-left: 22px;
    padding-right: 22px;
    gap: var(--nexa-header-gap-mobile, 42px);
  }
  .nexa-header__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nexa-header__icon + .nexa-header__icon {
    margin-left: -35px;
  }
  .nexa-header__icon--hamburger[aria-expanded="true"] i::before,
  .nexa-header__icon--hamburger[aria-expanded="true"] .fa-bars::before {
    font-weight: 900 !important;
    content: "\f00d" !important;
  }
}

@media (max-width: 376px) {
  .nexa-header__inner {
    --nexa-header-gap-mobile: 52px;
  }
}

@media (min-width: 376px) and (max-width: 400px) {
  .nexa-header__inner {
    --nexa-header-gap-mobile: 57px;
  }
}

@media (min-width: 401px) and (max-width: 416px) {
  .nexa-header__inner {
    --nexa-header-gap-mobile: 65px;
  }
}

@media (min-width: 415px) and (max-width: 435px) {
  .nexa-header__inner {
    --nexa-header-gap-mobile: 70px;
  }
}

@media (min-width: 360px) and (max-width: 540px) {
  .nexa-header__inner {
    justify-content: space-between;
  }
  .nexa-header__icon--search {
    margin-left: 40px;
  }
  .nexa-header__icon + .nexa-header__icon {
    margin-left: -64px;
  }
}

@media (min-width: 470px) and (max-width: 1023px) {
  .nexa-header__icon--search {
    margin-left: auto;
  }
  .nexa-header__icon + .nexa-header__icon {
    margin-left: 12px;
  }
}

@media (min-width: 992px) and (max-width: 1023px) {
  .nexa-header__icon--search {
    display: inline-flex !important;
  }
}

@media (max-width: 932px) and (max-height: 500px) and (orientation: landscape) {
  .nexa-header__inner {
    --nexa-header-gap-mobile: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .nexa-header__actions {
    display: none;
  }
  .nexa-header__icon--search {
    margin-left: auto;
  }
  .nexa-header__icon + .nexa-header__icon {
    margin-left: 12px;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .nexa-header__inner {
    justify-content: flex-start;
    gap: 6px;
    padding-left: 6px;
    padding-right: 6px;
  }
  .nexa-header__actions[data-slot="left-nav"] {
    flex: 1 1 430px;
    min-width: auto;
  }
  .nexa-header__actions[data-slot="right-actions"] {
    flex: 0 0 auto;
    min-width: auto;
    flex-shrink: 1;
  }
  .nexa-header__actions[data-slot="left-nav"] {
    justify-content: flex-start;
  }
  .nexa-header__actions[data-slot="right-actions"] {
    justify-content: flex-start;
    margin-left: -17px;
    gap: 16px;
  }
  .nexa-header__logo {
    margin-left: 5px;
  }
  .nexa-search {
    position: relative;
    margin: 0 auto;
    flex: 0 1 320px;
    max-width: 320px;
    min-width: 220px;
    justify-self: center;
  }
}

@media (min-width: 1280px) {
  .nexa-header__inner {
    justify-content: flex-start;
    gap: 0px;
    padding-left: 33px;
    padding-right: 33px;
  }
  .nexa-header__actions[data-slot="left-nav"] {
    justify-content: center;
    flex: 1 1 430px;
  }
  .nexa-header__actions[data-slot="right-actions"] {
    justify-content: flex-end;
    flex: 0 0 auto;
    min-width: auto;
    margin-left: -22px;
    gap: 16px;
    flex-shrink: 1;
  }
  .nexa-search {
    position: static;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 360px;
    flex: 0 1 360px;
    justify-self: center;
  }
}

@media (min-width: 1400px) {
  .nexa-header__inner {
    padding-left: 14px;
    padding-right: 12px;
  }
}

.scEnabledChrome .nexa-header__inner {
  display: none;
}

.nexa-nav__list, .nexa-megamenu__links, .nexa-sublist, .nexa-mobile__list, .nexa-mobile__submenu .nexa-megamenu__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nexa-megamenu__links {
  display: grid;
  gap: 12px;
}

.nexa-mobile__list {
  display: grid;
  gap: 16px;
}

.nexa-nav {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #004A90;
  overflow: visible;
  /* Ensure open menu sits above sibling actions/search within header stacking context */
  /* Active state for open mega menu */
}

.nexa-nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nexa-nav__item {
  position: relative;
  overflow: visible;
}

.nexa-nav__item--has-menu {
  position: static;
  /* megamenu positions to header container */
  overflow: visible;
}

.nexa-nav__item.is-open {
  z-index: 130000;
  position: relative;
}

.nexa-nav__toggle, .nexa-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 400 16px/24px "Inter", sans-serif !important;
  color: #004A90;
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  padding: 8px 4px;
  cursor: pointer;
  text-decoration: none;
}

.nexa-nav__toggle:focus-visible, .nexa-nav__link:focus-visible {
  outline: 2px solid #006FD6;
  outline-offset: 2px;
  border-radius: 4px;
}

.nexa-nav__toggle i {
  transition: transform .2s ease;
}

.nexa-nav__toggle[aria-expanded="true"] i {
  transform: scaleY(-1);
}

.nexa-nav__item.is-open > .nexa-nav__toggle {
  font-weight: 400;
  color: #2A2A2A;
}

.nexa-nav__item.is-open > .nexa-nav__link {
  color: #2A2A2A;
}

@media (max-width: 1023px) {
  .nexa-nav {
    display: none;
  }
}

@media (min-width: 1024px) {
  .nexa-nav__list {
    gap: 20px;
  }
}

.nexa-nav__list, .nexa-megamenu__links, .nexa-sublist, .nexa-mobile__list, .nexa-mobile__submenu .nexa-megamenu__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nexa-megamenu__links {
  display: grid;
  gap: 12px;
}

.nexa-mobile__list {
  display: grid;
  gap: 16px;
}

.nexa-megamenu__inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  --mm-gap: 24px;
  align-items: start;
}

.nexa-megamenu__col {
  padding: 0 32px;
  align-self: stretch;
}

.nexa-megamenu__col--with-divider {
  position: relative;
  align-self: stretch;
}

.nexa-megamenu__col--hide-divider::before {
  display: none !important;
}

.nexa-megamenu__col--with-divider::before {
  content: "";
  position: absolute;
  left: calc(var(--mm-gap, 24px) / -2);
  top: 0;
  bottom: 0;
  width: 1px;
  background: #b6dcf2;
  pointer-events: none;
}

.nexa-megamenu__heading {
  color: #004a90;
  margin: 4px 0 12px;
  text-transform: none;
  letter-spacing: 0;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nexa-megamenu__heading--long {
  min-height: 72px;
}

.nexa-megamenu__links {
  grid-auto-rows: minmax(44px, auto);
}

.nexa-megamenu__links--grid {
  grid-template-columns: 1fr 1fr;
}

.nexa-megamenu__links a {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 8px;
  align-items: start;
  padding: 10px 12px;
  border: 1px solid #e9f3fb;
  border-radius: 8px;
  text-decoration: none;
  color: #006fd6 !important;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.nexa-megamenu__links a:hover {
  background: #f5fafe;
  border-color: #b6dcf2;
}

.nexa-megamenu__links i {
  color: #006fd6;
  font-size: 28px;
  height: 28px;
  line-height: 28px;
  height: 0;
  line-height: 45px;
}

.nexa-megamenu__links a.nexa-link--no-sub i {
  line-height: 21px;
}

.nexa-megamenu__links .link-main {
  font: 400 18px/20px "Inter", sans-serif !important;
}

.nexa-megamenu__links .link-sub {
  font: 400 16px/20px "Inter", sans-serif !important;
  color: #2A2A2A;
  display: block;
  grid-column: 2;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.nexa-megamenu__feature {
  width: 360px;
  padding: 0 20px 0 0;
}

.nexa-megamenu--three {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(var(--nexa-header-offset, 72px) + var(--nexa-mega-offset, 0px));
  z-index: 210000;
  pointer-events: none;
  /* allow clicks only on inner content */
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 0;
  border-bottom: 3px solid #00A3E0;
  box-shadow: inset 0 10px 10px -10px rgba(0, 0, 0, 0.28);
  padding: 16px 0 20px;
  transform-origin: top center;
  /* CLOSED STATE (default) */
  transform: translateY(-6px) scaleY(0.96);
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  filter: blur(1px);
  transition: opacity 0.35s ease, transform 0.35s ease, clip-path 0.35s ease, filter 0.35s ease;
  will-change: opacity, transform, clip-path, filter;
}

.nexa-nav__item.is-opening .nexa-megamenu--three {
  opacity: 0;
  transform: translateY(-6px) scaleY(0.96);
  clip-path: inset(0 0 100% 0);
  filter: blur(1px);
  pointer-events: none;
}

.nexa-nav__item.is-open .nexa-megamenu--three {
  opacity: 1;
  transform: translateY(0) scaleY(1);
  clip-path: inset(0 0 0 0);
  filter: blur(0);
}

.nexa-nav__item.is-open .nexa-megamenu--three .nexa-megamenu__inner {
  position: relative;
  grid-template-columns: 1fr 1fr 460px;
  margin: 0 auto;
  pointer-events: auto;
  width: 100%;
  max-width: 1366px;
}

.nexa-nav__item.is-open .nexa-megamenu--three .nexa-megamenu__feature {
  display: block;
  width: auto;
  padding: 0 40px;
}

.nexa-nav__item.is-open .nexa-megamenu--three .nexa-megamenu__col:nth-child(2) {
  position: relative;
  align-self: stretch;
}

.nexa-nav__item.is-open .nexa-megamenu--three .nexa-megamenu__col:nth-child(2)::before {
  content: "";
  position: absolute;
  left: calc(var(--mm-gap, 24px) / -2);
  top: 0;
  bottom: 0;
  width: 1px;
  background: #b6dcf2;
  pointer-events: none;
}

.nexa-megamenu__col--offset {
  padding-top: 40px;
}

.nexa-megamenu__col--span-2 {
  grid-column: span 2;
}

.nexa-megamenu__col--hide-divider::before {
  display: none !important;
}

.nexa-megamenu__col--no-heading {
  padding-top: 23px;
}

.nexa-megamenu__col.nexa-megamenu__col--no-heading {
  padding-top: 23px;
}

@media (min-width: 1024px) {
  .nexa-megamenu__col.nexa-megamenu__col--no-heading {
    padding: 23px 8px 0 8px;
  }
}

.nexa-megamenu__col--no-heading .nexa-megamenu__heading {
  display: none !important;
}

.nexa-megamenu__desc {
  font: 400 16px/20px "Inter", sans-serif !important;
  color: #6b7280;
  margin: 4px 0 12px;
}

.nexa-megamenu__links a[data-sc-template="MenuItem"] .link-main {
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 991px) and (max-width: 1352px) {
  .nexa-megamenu--three .nexa-megamenu__links a[data-sc-template="MenuItem"] .link-main {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
}

@media (min-width: 991px) and (max-width: 1279px) {
  .nexa-nav__item.is-open .nexa-megamenu--three.nexa-megamenu--has-feature .nexa-megamenu__inner {
    position: relative;
    grid-template-columns: 1fr 1fr 400px;
  }
  .nexa-nav__item.is-open .nexa-megamenu--three.nexa-megamenu--no-feature .nexa-megamenu__inner {
    position: relative;
    grid-template-columns: 1fr 1fr 330px;
  }
}

/* Feature image helpers */
.nexa-feature__body {
  position: relative;
  z-index: 2;
}

.nexa-feature__body h1, .nexa-feature__body h2, .nexa-feature__body h3, .nexa-feature__body h4, .nexa-feature__body h5, .nexa-feature__body h6 {
  font-size: revert !important;
  line-height: revert;
  font-weight: revert;
}

@keyframes nexa-mega-wipe {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  50% {
    clip-path: inset(0 0 35% 0);
    opacity: 0.6;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.nexa-feature__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.nexa-feature {
  position: relative;
  background-color: var(--feature-bg-color, transparent);
  border-radius: 10px;
  overflow: hidden;
}

.nexa-feature__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--feature-bg-color, transparent);
  opacity: 0.75;
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
}

.nexa-feature[style*="background-image"] .nexa-feature__overlay {
  opacity: 0;
}

.nexa-icon-stack {
  position: relative;
  width: 24px;
  height: 20px;
  display: inline-block;
}

.nexa-icon-stack i {
  position: absolute;
  color: #006fd6;
}

.nexa-icon-stack .fa-window-restore {
  left: -2px;
  top: -1px;
  font-size: 20px;
}

.nexa-icon-stack .fa-mobile-screen-button {
  left: 10px;
  top: 2px;
  font-size: 16px;
}

.nexa-sublist {
  display: grid;
  gap: 10px;
}

.nexa-sublist a {
  color: #004a90;
  text-decoration: none;
  padding: 6px 0;
  display: inline-block;
}

.nexa-sublist a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .nexa-megamenu {
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nexa-megamenu__feature {
    display: none;
  }
  .nexa-megamenu__inner {
    padding-bottom: 80px;
  }
  .nexa-megamenu__heading--long {
    min-height: auto;
  }
  .nexa-megamenu::-webkit-scrollbar {
    width: 4px;
  }
  .nexa-megamenu::-webkit-scrollbar-track {
    background: transparent;
  }
  .nexa-megamenu::-webkit-scrollbar-thumb {
    background-color: rgba(0, 74, 144, 0.15);
    border-radius: 2px;
  }
}

@media (min-width: 1280px) {
  .nexa-megamenu--three .nexa-megamenu__col:nth-child(1) .nexa-megamenu__links a {
    max-width: 93%;
    margin-left: 0;
    margin-right: auto;
  }
  .nexa-megamenu--three .nexa-megamenu__col:nth-child(2) .nexa-megamenu__links a {
    max-width: 93%;
    margin-left: auto;
    margin-right: 0;
  }
  .nexa-megamenu--three .nexa-megamenu__col:nth-child(3):not(.nexa-megamenu__feature) .nexa-megamenu__links a {
    max-width: 93%;
    margin-left: auto;
    margin-right: 0;
  }
}

@media (min-width: 1281px) {
  .nexa-megamenu--three .nexa-megamenu__inner {
    width: 100%;
    max-width: 1366px;
  }
}

@media (min-width: 1900px) {
  .nexa-megamenu--three .nexa-megamenu__inner {
    width: 100%;
    max-width: 1366px;
  }
}

.nexa-nav__item {
  position: relative;
}

.nexa-nav__item .nexa-nav__link {
  position: relative;
  text-decoration: none;
  color: #004A90;
  transition: color 0.2s ease;
}

.nexa-nav__item .nexa-nav__link:hover {
  color: #006FD6;
}

.nexa-nav__list, .nexa-megamenu__links, .nexa-sublist, .nexa-mobile__list, .nexa-mobile__submenu .nexa-megamenu__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nexa-megamenu__links {
  display: grid;
  gap: 12px;
}

.nexa-mobile__list {
  display: grid;
  gap: 16px;
}

.nexa-feature {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--feature-bg-color, #003b5c);
  border-radius: 12px;
  overflow: hidden;
  min-height: 260px;
  display: grid;
  align-items: start;
  justify-items: end;
}

.nexa-feature__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--feature-bg-color, rgba(0, 0, 0, 0.65));
  opacity: 0.85;
  pointer-events: none;
}

.nexa-feature__body {
  color: #fff;
  padding: 0 0 16px 16px;
  display: grid;
  gap: 10px;
  grid-template-rows: max-content 1fr max-content;
  margin: 12px;
}

.nexa-feature__body h5 {
  font: 700 18px/25px "Inter", sans-serif !important;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 6px 0;
}

.nexa-feature__body p {
  font: 500 16px/20px "Inter", sans-serif !important;
  color: #fff;
  margin: 0;
}

.nexa-feature__cta {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-transform: none;
  padding: 2px 10px;
  border-radius: 6px;
  justify-self: center;
  align-self: end;
  margin: 0 0 12px 0;
}

@media (min-width: 992px) and (max-width: 1279px) {
  .nexa-feature {
    min-height: 220px;
  }
}

@media (min-width: 1280px) {
  .nexa-feature .nexa-feature__body h5 {
    font-size: 18px !important;
    line-height: 25px !important;
    font-weight: 700 !important;
    font-family: 'Inter', sans-serif !important;
  }
  .nexa-feature .nexa-feature__body p {
    font-size: 16px !important;
    line-height: 20px !important;
    font-weight: 500 !important;
    font-family: 'Inter', sans-serif !important;
  }
  .nexa-feature .nexa-feature__cta, .nexa-feature .nexa-feature__body .nexa-btn {
    font-size: 16px !important;
    line-height: 20px !important;
    font-weight: 500 !important;
    margin-bottom: 7px;
  }
}

.nexa-nav__list, .nexa-megamenu__links, .nexa-sublist, .nexa-mobile__list, .nexa-mobile__submenu .nexa-megamenu__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nexa-megamenu__links {
  display: grid;
  gap: 12px;
}

.nexa-mobile__list {
  display: grid;
  gap: 16px;
}

.nexa-search {
  --search-collapsed: 130px;
  --search-expanded: 140px;
  --search-line-color: $nexa-blue-icon;
  max-width: var(--search-max, var(--search-expanded));
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #006FD6;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid #006FD6;
  padding: 4px 2px;
  min-width: 100px;
  width: var(--search-collapsed);
  transition: width .2s ease;
  position: relative;
}

.nexa-search:focus-within, .nexa-search[data-expanded="true"] {
  width: var(--search-expanded);
}

.nexa-search__input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #004A90;
  font: 400 16px/24px "Inter", sans-serif !important;
  padding: 0;
  text-align: center;
}

.nexa-search__input ::placeholder {
  color: #9CA3AF;
}

.nexa-search__input:focus,
.nexa-search[data-expanded="true"] .nexa-search__input {
  text-align: left;
}

.nexa-search__btn {
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  color: #006FD6;
  font-size: 18px;
  padding: 0 2px;
  cursor: pointer;
}

.nexa-search__btn::before {
  font-weight: 900;
  transition: content 0.2s ease;
}

.nexa-search__btn--close::before {
  content: "\f00d";
}

.nexa-icon-btn {
  color: #006FD6;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.nexa-icon-btn i {
  color: inherit;
  height: 20px;
  line-height: 20px;
}

.nexa-header__actions .nexa-icon-btn + .nexa-icon-btn {
  margin-left: 3px;
}

.nexa-search__icon {
  color: #006FD6;
  font-size: 18px;
}

@media (min-width: 1024px) {
  .nexa-search {
    --search-collapsed: 132px;
    --search-expanded: 164px;
    --search-line-collapsed: var(--search-collapsed);
    --search-line-expanded: var(--search-expanded);
    --search-line-width: var(--search-line-collapsed);
    --search-line-color: #006FD6;
    flex: 0 0 var(--search-expanded);
    max-width: var(--search-expanded);
    width: var(--search-expanded);
    margin: 0 4px 0 0;
    transform: none;
    transform-origin: right center;
    transition: width 0.2s ease, border-color 0.2s ease;
    border-bottom: none;
  }
  .nexa-search[data-expanded="true"],
  .nexa-search:focus-within {
    width: var(--search-expanded);
    max-width: var(--search-expanded);
    transform: none;
    --search-line-width: var(--search-line-expanded);
  }
  .nexa-search::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 1px;
    width: var(--search-line-width);
    background: var(--search-line-color);
    transition: width 0.2s ease;
    pointer-events: none;
  }
  .nexa-search__input {
    width: 100%;
    border: none;
    outline: none;
    padding: 0 47px 0 8px;
    font: 400 16px/24px "Inter", sans-serif !important;
    color: var(--nexa-blue-dark);
    background: transparent;
    text-align: right;
  }
  .nexa-search__input::placeholder {
    color: #9CA3AF;
  }
  .nexa-search[data-expanded="true"] .nexa-search__input::placeholder {
    color: transparent;
  }
  .nexa-search__input:focus,
  .nexa-search[data-expanded="true"] .nexa-search__input {
    text-align: left;
  }
  .nexa-search__btn {
    position: absolute;
    right: 0;
    top: 60%;
    transform: translateY(-50%);
    background: transparent;
  }
  /* If using an <i> icon instead of a button */
  .nexa-search__icon {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
  }
}

@media (min-width: 1280px) {
  .nexa-header__inner {
    position: relative;
  }
  .nexa-search {
    position: relative;
    right: auto;
    top: auto;
    --search-expanded: 240px;
    --search-collapsed: 132px;
    --search-line-collapsed: var(--search-collapsed);
    --search-line-expanded: var(--search-expanded);
    --search-line-width: var(--search-line-collapsed);
    margin: 0 24px 0 0;
    transition: transform 0.3s ease;
  }
  .nexa-search[data-expanded="true"],
  .nexa-search:focus-within {
    max-width: var(--search-expanded);
    flex-basis: auto;
  }
}

@media (max-width: 1023px) {
  .nexa-search {
    display: none !important;
  }
  .nexa-search__btn {
    position: relative;
    z-index: 2;
  }
  .nexa-search__btn--close {
    position: fixed;
    right: 16px;
    top: 16px;
    font-size: 24px;
  }
  .nexa-search[data-expanded="true"] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    padding: 16px;
  }
  .nexa-search[data-expanded="true"] .nexa-search {
    --search-collapsed: 130px;
    --search-expanded: 140px;
    max-width: var(--search-max, var(--search-expanded));
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #006FD6;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #006FD6;
    padding: 4px 2px;
    min-width: 100px;
    width: var(--search-collapsed);
    transition: width .2s ease;
  }
  .nexa-search[data-expanded="true"] .nexa-search:focus-within, .nexa-search[data-expanded="true"] .nexa-search[data-expanded="true"] {
    width: var(--search-expanded);
  }
  .nexa-search[data-expanded="true"] .nexa-search__input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    color: #004A90;
    font: 400 16px/24px "Inter", sans-serif !important;
    padding: 0;
  }
  .nexa-search[data-expanded="true"] .nexa-search__input ::placeholder {
    color: #9CA3AF;
  }
  .nexa-search[data-expanded="true"] .nexa-search__btn {
    background: transparent;
    border: 0;
    padding: 0;
    color: inherit;
    color: #006FD6;
    font-size: 18px;
    padding: 0 2px;
    cursor: pointer;
  }
  .nexa-search[data-expanded="true"] .nexa-search__btn::before {
    font-weight: 900;
    transition: content 0.2s ease;
  }
  .nexa-search[data-expanded="true"] .nexa-search__btn--close::before {
    content: "\f00d";
  }
}

.nexa-nav__list, .nexa-megamenu__links, .nexa-sublist, .nexa-mobile__list, .nexa-mobile__submenu .nexa-megamenu__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nexa-megamenu__links {
  display: grid;
  gap: 12px;
}

.nexa-mobile__list {
  display: grid;
  gap: 16px;
}

.nexa-mobile {
  position: fixed;
  left: 0;
  right: 0;
  top: 66px;
  bottom: 0;
  background: #E5F6FC;
  z-index: 999;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.nexa-mobile[hidden] {
  display: none !important;
}

.nexa-mobile__bar {
  display: none;
}

.nexa-mobile--search {
  position: static;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  background: transparent;
  z-index: auto;
  overflow: visible;
}

.nexa-mobile--search .nexa-mobile__content {
  padding-top: 8px;
  padding-bottom: 12px;
}

.nexa-mobile--search {
  border-top: 1px solid #80a5bb;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  padding-top: 6px;
  margin-top: 12px;
}

.nexa-mobile__close {
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  color: #006FD6;
  font-size: 28px;
}

.nexa-mobile__content {
  padding-bottom: 28px;
  padding-inline: var(--nexa-page-padding);
  box-sizing: border-box;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.nexa-mobile__list {
  gap: 0;
}

.nexa-mobile__toggle {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  border-bottom: 2px solid #B6DCF2;
  color: #004A90;
  text-align: left;
  padding: 14px 0;
  font: 400 18px/26px "Inter", sans-serif !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nexa-mobile__link {
  display: block;
  width: 100%;
  padding: 14px 0;
  border-bottom: 2px solid #B6DCF2;
  color: #004A90;
  text-decoration: none;
  font: 400 18px/26px "Inter", sans-serif !important;
}

.nexa-mobile__link:hover, .nexa-mobile__link:focus-visible {
  color: #006FD6;
  text-decoration: none;
}

.nexa-mobile__toggle i {
  color: #006FD6;
  transition: transform .2s ease;
}

.nexa-mobile__toggle[aria-expanded="true"] i {
  transform: scaleY(-1);
}

.nexa-mobile__list > li:last-child .nexa-mobile__submenu {
  margin-bottom: 16px;
}

.nexa-mobile__submenu > a {
  display: none !important;
}

.nexa-mobile__submenu a {
  color: #004A90;
  text-decoration: none;
  font: 500 16px/24px "Inter", sans-serif !important;
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 6px;
  align-items: start;
  padding: 12px;
  border: 2px solid #B6DCF2;
  border-radius: 10px;
  background: #fff;
}

.nexa-mobile__submenu a:hover {
  background: #F5FAFE;
}

.nexa-mobile__submenu a i {
  color: #006FD6;
  font-size: 26px;
  height: 26px;
  line-height: 26px;
  line-height: 35px !important;
}

.nexa-mobile__submenu a .link-main {
  font: 400 18px/20px "Inter", sans-serif !important;
}

.nexa-mobile__submenu a .link-sub {
  font: 400 16px/20px "Inter", sans-serif !important;
  color: #2A2A2A;
  grid-column: 2;
}

.nexa-mobile__toggle[aria-expanded="false"] + .nexa-mobile__submenu {
  display: none !important;
}

.nexa-mobile__toggle[aria-expanded="true"] + .nexa-mobile__submenu {
  display: grid;
}

/* Mobile rendering of megamenu sections within accordion panels */
.nexa-mobile__submenu .nexa-megamenu__heading {
  color: #004A90;
  font: 700 14px/18px "Inter", sans-serif !important;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin: 8px 0 10px;
}

.nexa-mobile__submenu .nexa-megamenu__links {
  display: grid;
  gap: 10px;
}

.nexa-mobile__submenu .nexa-megamenu__links a {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 6px;
  align-items: start;
  padding: 12px;
  border: 2px solid #B6DCF2;
  border-radius: 10px;
  background: #fff;
  color: #004A90;
  text-decoration: none;
}

.nexa-mobile__submenu .nexa-megamenu__links a:hover {
  background: #F5FAFE;
}

.nexa-mobile__submenu .nexa-megamenu__links i {
  color: #006FD6;
  font-size: 26px;
  height: 26px;
  line-height: 26px;
}

.nexa-mobile__submenu .nexa-megamenu__links .link-main {
  font: 400 18px/20px "Inter", sans-serif !important;
}

.nexa-mobile__submenu .nexa-megamenu__links .link-sub {
  font: 400 16px/20px "Inter", sans-serif !important;
  color: #2A2A2A;
  grid-column: 2;
}

.nexa-mobile__submenu .nexa-megamenu__desc {
  font: 400 14px/20px "Inter", sans-serif !important;
  color: #6B7280;
  margin: 0 0 10px;
}

.nexa-mobile__links {
  margin-top: auto;
  padding-top: 20px;
  border-top: 2px solid #B6DCF2;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  padding-inline: var(--nexa-page-padding);
  box-sizing: border-box;
}

.nexa-mobile__links .nexa-icon-btn {
  display: inline-flex;
  white-space: nowrap;
  font: 500 16px/20px "Inter", sans-serif !important;
}

.nexa-mobile__links .nexa-header__cta {
  margin-left: auto;
  display: inline-flex;
  white-space: nowrap;
  margin-right: 12px;
}

.nexa-mobile .nexa-header__cta {
  display: inline-flex !important;
}

@media (max-width: 360px) {
  .nexa-mobile__links {
    flex-wrap: wrap;
  }
}

@media only screen and (device-width: 430px) and (device-height: 932px) and (-webkit-device-pixel-ratio: 3) {
  .nexa-mobile .nexa-btn,
  .nexa-mobile .nexa-btn:link,
  .nexa-mobile .nexa-btn:visited {
    font-size: 18px;
  }
  .nexa-mobile .nexa-mobile__links .nexa-icon-btn {
    font: 500 17px/20px "Inter", sans-serif !important;
  }
}

@media only screen and (device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) {
  .nexa-mobile .nexa-btn,
  .nexa-mobile .nexa-btn:link,
  .nexa-mobile .nexa-btn:visited {
    font-size: 16px;
  }
  .nexa-mobile .nexa-mobile__links .nexa-icon-btn {
    font: 500 14px/20px "Inter", sans-serif !important;
  }
}

@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
  .nexa-mobile .nexa-btn,
  .nexa-mobile .nexa-btn:link,
  .nexa-mobile .nexa-btn:visited {
    font-size: 17px;
  }
  .nexa-mobile .nexa-mobile__links .nexa-icon-btn {
    font: 500 16px/20px "Inter", sans-serif !important;
  }
}

@media only screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) {
  .nexa-mobile .nexa-btn,
  .nexa-mobile .nexa-btn:link,
  .nexa-mobile .nexa-btn:visited {
    font-size: 15px;
  }
  .nexa-mobile .nexa-mobile__links .nexa-icon-btn {
    font: 500 14px/20px "Inter", sans-serif !important;
  }
}

.nexa-mobile__search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid #B6DCF2;
  border-radius: 12px;
  padding: 10px 12px;
}

.nexa-mobile__search-form input {
  border: 0;
  outline: none;
  background: transparent;
  color: #004A90;
  font: 400 16px/22px 'Inter', sans-serif;
  min-width: 0;
}

.nexa-mobile__search-form button {
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  color: #006FD6;
  font-size: 20px;
}

/* Lock body scroll when overlays are open */
body.nexa-lock {
  overflow: hidden;
}

@media (max-width: 1023px) {
  .nexa-search {
    display: none;
  }
  .nexa-header__cta {
    display: none !important;
  }
  .nexa-icon-btn {
    display: none;
  }
  .nexa-header__icon {
    display: inline-flex;
  }
  .nexa-feature {
    display: none;
  }
  .nexa-btn {
    padding: 9px 4px !important;
  }
  .nexa-header__actions[data-slot="right-actions"] {
    display: none;
  }
}

.nexa-mobile .nexa-icon-btn {
  display: inline-flex;
}

.nexa-btn {
  border-radius: 999px;
  background-color: var(--cta-bg, #3754E1);
  color: var(--cta-color, #fff);
  border-color: var(--cta-border, transparent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0, 74, 144, 0.2);
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.nexa-btn:focus-visible {
  background-color: var(--cta-bg-hover, var(--cta-bg, #2440C2));
  color: var(--cta-color-hover, var(--cta-color, #fff));
  transform: translateY(-1px);
  text-decoration: none;
}

.nexa-section {
  margin: 0;
}

.nexa-flex-block-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (max-width: 1023px) {
  .nexa-flex-block-section {
    padding-top: 30px;
    padding-bottom: 30px;
    background-size: cover !important;
    background-position: center !important;
  }
}

.nexa-flex-block-section .nexa-flex-block-copy-block,
.nexa-flex-block-section .nexa-flex-block-feature-block {
  padding: 10px;
}

.nexa-flex-block-section .nexa-flex-block-copy-title,
.nexa-flex-block-section .nexa-flex-block-feature-title {
  margin: 0;
  color: var(--nexa-black);
  margin-bottom: 35px;
  word-break: break-word;
}

.nexa-flex-block-section .nexa-flex-block-align-content-left {
  text-align: left;
}

.nexa-flex-block-section .nexa-flex-block-copy-body,
.nexa-flex-block-section .nexa-flex-block-feature-body {
  margin: 0;
  color: var(--nexa-black);
  margin-bottom: 35px;
}

.nexa-flex-block-section .nexa-flex-block-copy-cta-container,
.nexa-flex-block-section .nexa-flex-block-feature-cta-container {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: center;
  flex-direction: row;
  margin-bottom: 35px;
}

@media (max-width: 1023px) {
  .nexa-flex-block-section .nexa-flex-block-copy-cta-container,
  .nexa-flex-block-section .nexa-flex-block-feature-cta-container {
    flex-direction: column;
  }
}

.nexa-flex-block-section .nexa-flex-block-copy-cta-container.feature-cta-column-container,
.nexa-flex-block-section .nexa-flex-block-feature-cta-container.feature-cta-column-container {
  flex-direction: column;
}

.nexa-flex-block-section .nexa-flex-block-feature-video-container {
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px;
}

.nexa-flex-block-section .nexa-flex-block-feature-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.nexa-flex-block-section .nexa-flex-block-feature-image {
  padding: 10px;
}

.nexa-flex-block-section .nexa-flex-block-feature-image img {
  width: 100%;
}

.nexa-flex-block-section .nexa-flex-block-feature-image .nexa-flex-block-feature-image-trigger {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.nexa-flex-block-section .nexa-flex-block-row-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 75px;
}

@media (max-width: 1023px) {
  .nexa-flex-block-section .nexa-flex-block-row-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .nexa-flex-block-section .nexa-flex-block-row-container {
    gap: 0;
  }
}

.nexa-flex-block-section .nexa-blue-text-link {
  font-size: 18px;
  line-height: 24px;
  color: var(--nexa-blue);
  text-decoration: none;
  padding: 0;
}

/* Image Modal Styles */
.nexa-image-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300000;
  background: rgba(0, 0, 0, 0.45);
  align-items: center;
  justify-content: center;
  overflow: visible;
  overscroll-behavior: contain;
}

.nexa-image-modal.is-open, .nexa-image-modal[aria-hidden="false"] {
  display: flex !important;
}

.nexa-image-modal__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
}

.nexa-image-modal__content {
  position: relative;
  width: 85%;
  max-width: 1366px;
  max-height: 90vh;
  background: var(--nexa-white);
  border-radius: 16px;
  padding: 17px 15px;
  box-sizing: border-box;
  animation: fadeIn 0.3s ease;
  z-index: 1;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: auto;
}

.nexa-image-modal__image-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
}

.nexa-image-modal__zoom {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 100%;
  cursor: zoom-in;
  overflow: hidden;
  position: relative;
}

.nexa-image-modal__zoom.active {
  cursor: move;
}

.nexa-image-modal__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 3px solid var(--nexa-blue-border);
  box-sizing: border-box;
  object-fit: contain;
}

.nexa-image-modal__close {
  position: absolute;
  top: -22px;
  right: -9px;
  margin: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--nexa-white);
  background: var(--nexa-dark);
  color: var(--nexa-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nexa-image-modal__close i {
  font-size: 20px;
  line-height: 1;
}

/* ContainerZoom styles for zoom functionality */
.nexa-image-modal figure.containerZoom {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  cursor: zoom-in;
  box-sizing: border-box;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 190%;
  background-attachment: scroll;
  border: 3px solid var(--nexa-blue-border);
  border-radius: 16px;
}

.nexa-image-modal figure.containerZoom img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  pointer-events: auto;
  border-radius: 9px;
  object-fit: cover;
  margin: 0;
  padding: 0;
  transition: opacity 0.3s;
  opacity: 1;
  cursor: zoom-in;
}

@media (min-width: 480px) {
  .nexa-image-modal__close {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 768px) {
  .nexa-image-modal__content {
    width: 95%;
    padding: 17px 15px;
    max-height: 95vh;
  }
  .nexa-image-modal figure.containerZoom {
    max-height: calc(95vh - 40px);
  }
  .nexa-image-modal figure.containerZoom::before {
    padding-top: 0;
  }
  .nexa-image-modal figure.containerZoom img {
    max-height: calc(95vh - 40px);
  }
  .nexa-image-modal__close {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .nexa-image-modal__close {
    width: 32px;
    height: 32px;
    top: -15px;
    right: -6px;
  }
  .nexa-image-modal__close i {
    font-size: 16px;
  }
}

@media (min-width: 769px) {
  .nexa-image-modal {
    align-items: center;
    justify-content: center;
    padding: 16px;
  }
  .nexa-image-modal__content {
    max-height: 85vh;
    padding: 17px 15px;
  }
  .nexa-image-modal__content {
    max-height: 85vh;
  }
  .nexa-image-modal figure.containerZoom {
    max-height: calc(85vh - 48px);
  }
  .nexa-image-modal figure.containerZoom::before {
    padding-top: 0;
  }
  .nexa-image-modal figure.containerZoom img {
    max-height: calc(85vh - 48px);
  }
  .nexa-image-modal__close i {
    font-size: 22px;
  }
}

@media (max-height: 540px) and (orientation: landscape) {
  .nexa-image-modal {
    align-items: center;
    padding: 12px;
  }
  .nexa-image-modal__content {
    width: 90vw;
    max-width: 1366px;
    max-height: 87vh;
    padding: 17px 15px;
  }
  .nexa-image-modal figure.containerZoom {
    max-height: calc(87vh - 40px);
  }
  .nexa-image-modal figure.containerZoom::before {
    padding-top: 0;
  }
  .nexa-image-modal figure.containerZoom img {
    max-height: calc(87vh - 40px);
  }
  .nexa-image-modal__close {
    width: 38px;
    height: 38px;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.nexa-image-modal__close {
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.nexa-image-modal__close:focus {
  outline: none;
}

.nexa-image-modal__close:focus-visible {
  outline: none;
  border: 2px solid #fff;
}

.nexa-image-cycle-banner-section {
  padding: 50px 0;
}

@media (max-width: 1023px) {
  .nexa-image-cycle-banner-section {
    padding: 30px 0;
    background-size: cover !important;
    background-position: center !important;
  }
}

.nexa-image-cycle-banner-section .nexa-image-cycle-banner-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 75px;
}

@media (max-width: 1023px) {
  .nexa-image-cycle-banner-section .nexa-image-cycle-banner-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 35px;
  }
}

.nexa-image-cycle-banner-section .nexa-image-cycle-banner-copy-title {
  margin: 0;
  font-family: "Comfortaa", sans-serif !important;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: var(--nexa-black);
  margin-bottom: 30px;
  text-align: left;
}

@media (max-width: 1023px) {
  .nexa-image-cycle-banner-section .nexa-image-cycle-banner-copy-title {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 22px;
  }
}

.nexa-image-cycle-banner-section .nexa-image-cycle-banner-copy-body,
.nexa-image-cycle-banner-section .nexa-image-cycle-banner-copy-body p {
  margin: 0;
  font-family: "Inter", sans-serif !important;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--nexa-black);
  margin-top: 30px;
  text-align: left;
}

@media (max-width: 1023px) {
  .nexa-image-cycle-banner-section .nexa-image-cycle-banner-copy-body,
  .nexa-image-cycle-banner-section .nexa-image-cycle-banner-copy-body p {
    margin-top: 22px;
  }
}

.nexa-image-cycle-banner-section .nexa-image-cycle-banner-copy-body p,
.nexa-image-cycle-banner-section .nexa-image-cycle-banner-copy-body p p {
  margin: 0;
  margin-bottom: 30px;
}

@media (max-width: 1023px) {
  .nexa-image-cycle-banner-section .nexa-image-cycle-banner-copy-body p,
  .nexa-image-cycle-banner-section .nexa-image-cycle-banner-copy-body p p {
    margin-bottom: 20px;
  }
}

.nexa-image-cycle-banner-section .nexa-image-cycle-banner-copy-body p:last-child,
.nexa-image-cycle-banner-section .nexa-image-cycle-banner-copy-body p p:last-child {
  margin-bottom: 0;
}

.nexa-image-cycle-banner-section .nexa-image-cycle-banner-copy-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
  align-items: center;
}

@media (max-width: 1023px) {
  .nexa-image-cycle-banner-section .nexa-image-cycle-banner-copy-cta {
    justify-content: center;
  }
  .nexa-image-cycle-banner-section .nexa-image-cycle-banner-copy-cta.desktop-cta {
    display: none;
  }
}

.nexa-image-cycle-banner-section .nexa-image-cycle-banner-copy-cta.mobile-cta {
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .nexa-image-cycle-banner-section .nexa-image-cycle-banner-copy-cta.mobile-cta {
    display: none;
  }
}

.nexa-image-cycle-banner-section .nexa-image-cycle-banner-image-block {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.nexa-image-cycle-banner-section .nexa-image-cycle-banner-image-caption {
  font-family: "Comfortaa", sans-serif !important;
  font-weight: 700;
  font-size: 21px;
  color: var(--nexa-dark);
  margin-top: 50px;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .nexa-image-cycle-banner-section .nexa-image-cycle-banner-image-caption {
    font-size: 16px;
    margin-top: 24px;
  }
}

.nexa-image-cycle-banner-section .nexa-image-cycle-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  flex-direction: column;
}

.nexa-image-cycle-banner-section .nexa-image-cycle-image-container .nexa-image-cycle-slide {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.nexa-image-cycle-banner-section .nexa-image-cycle-image-container .nexa-image-cycle-slide img {
  width: auto;
  max-width: 100%;
  height: 393px;
  object-fit: contain;
  margin-bottom: 20px;
}

.nexa-image-cycle-banner-section .nexa-image-cycle-image-container .nexa-image-cycle-slide.active {
  opacity: 1;
  position: relative;
}

@media (max-width: 1023px) {
  .nexa-image-cycle-banner-section .nexa-image-cycle-image-container {
    height: 500px;
  }
  .nexa-image-cycle-banner-section .nexa-image-cycle-image-container .nexa-image-cycle-slide img {
    width: 450px;
  }
}

@media (max-width: 480px) {
  .nexa-image-cycle-banner-section .nexa-image-cycle-image-container .nexa-image-cycle-slide img {
    width: 352px;
    height: 300px;
  }
}

.nexa-blog-search-section {
  padding: 52px 0 80px;
}

.nexa-blog-search-section .nexa-blog-search-tags-block {
  padding-left: 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 1023px) {
  .nexa-blog-search-section .nexa-blog-search-tags-block {
    gap: 15px;
    padding-left: 5px;
  }
}

@media (max-width: 600px) {
  .nexa-blog-search-section .nexa-blog-search-tags-block {
    gap: 8px;
    padding: 0;
    flex-wrap: wrap;
    overflow: visible;
    white-space: normal;
    align-items: flex-start;
  }
}

.nexa-blog-search-section .js-filter__inputs,
.nexa-blog-search-section .filter__inputs {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.nexa-blog-search-section .nexa-blog-search-tag-link {
  background-color: #f3eff8;
  color: var(--nexa-purple-dark);
  border-radius: 10px;
  padding: 5px 10px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  transition: background-color 200ms ease-out, color 200ms ease-out, opacity 200ms ease-out;
  flex: 0 0 auto;
}

.nexa-blog-search-section .nexa-blog-search-tag-link.active-tag {
  background-color: var(--nexa-purple-dark);
  color: #ffffff;
}

@media (max-width: 600px) {
  .nexa-blog-search-section .nexa-blog-search-tag-link {
    font-size: 13px;
    line-height: 16px;
    padding: 5px 8px;
  }
}

.nexa-blog-search-section .nexa-blog-search-cards-block {
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
}

@media (max-width: 1023px) {
  .nexa-blog-search-section .nexa-blog-search-cards-block {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .nexa-blog-search-section .nexa-blog-search-cards-block {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.nexa-blog-search-section .nexa-blog-search-card {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  box-shadow: 0px 12px 21px 0px #00000038;
}

.nexa-blog-search-section .nexa-blog-search-card .nexa-blog-search-card-image-wrap {
  width: 100%;
  height: 292px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.nexa-blog-search-section .nexa-blog-search-card .nexa-blog-search-card-image-wrap:hover .nexa-blog-search-card-image,
.nexa-blog-search-section .nexa-blog-search-card .nexa-blog-search-card-image-wrap:hover .video-preview-thumbnail {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

.nexa-blog-search-section .nexa-blog-search-card .nexa-blog-search-card-image-wrap .video__wrapper,
.nexa-blog-search-section .nexa-blog-search-card .nexa-blog-search-card-image-wrap .video__container {
  width: 100%;
  height: 100%;
}

.nexa-blog-search-section .nexa-blog-search-card .nexa-blog-search-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: transform 0.3s ease-in-out;
  display: block;
}

.nexa-blog-search-section .nexa-blog-search-card .video-preview-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: transform 0.3s ease-in-out;
  display: block;
}

.nexa-blog-search-section .nexa-blog-search-card .video__container .video-play-icon {
  display: none !important;
}

.nexa-blog-search-section .nexa-blog-search-card .nexa-blog-search-card-content {
  padding: 10px 15px 32px 15px;
}

.nexa-blog-search-section .nexa-blog-search-card .nexa-blog-search-card-category-date {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.nexa-blog-search-section .nexa-blog-search-card .nexa-blog-search-card-tag-link {
  background-color: #f3eff8;
  color: var(--nexa-purple-dark);
  border-radius: 10px;
  padding: 5px 10px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  transition: background-color 200ms ease-out, color 200ms ease-out, opacity 200ms ease-out;
}

.nexa-blog-search-section .nexa-blog-search-card .nexa-blog-search-card-date {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #535357;
  margin: 0;
  white-space: nowrap;
  text-transform: uppercase;
}

.nexa-blog-search-section .nexa-blog-search-card .nexa-blog-search-card-title {
  margin-top: 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--nexa-midnight);
  cursor: pointer;
}

@media (max-width: 1023px) {
  .nexa-blog-search-section .nexa-blog-search-card .nexa-blog-search-card-title {
    font-size: 18px;
    line-height: 24px;
  }
}

.nexa-blog-search-section .nexa-blog-search-card .nexa-blog-search-card-link-item {
  margin-top: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--nexa-blue-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease-out;
}

.nexa-blog-search-section .nexa-blog-search-card .nexa-blog-search-card-link-item span {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.3s ease-out;
}

.nexa-blog-search-section .nexa-blog-search-card .nexa-blog-search-card-link-item i {
  transition: transform 0.3s ease-out, color 0.3s ease-out;
}

.nexa-blog-search-section .nexa-blog-search-card .nexa-blog-search-card-link-item:hover {
  color: var(--nexa-blue);
}

.nexa-blog-search-section .nexa-blog-search-card .nexa-blog-search-card-link-item:hover span {
  color: var(--nexa-blue);
}

.nexa-blog-search-section .nexa-blog-search-card .nexa-blog-search-card-link-item:hover i {
  transform: translateX(6px);
  color: var(--nexa-blue);
}

.nexa-blog-search-section .nexa-blog-search-tags-block .js-filters {
  display: flex;
  flex: 1 1 0;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 8px;
  align-items: center;
  min-width: 0;
  padding: 0;
  margin: 0;
}

.nexa-blog-search-section .nexa-blog-search-tag-link {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .nexa-blog-search-section .nexa-blog-search-tags-block .js-filters {
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 6px;
  }
}

.is-hidden {
  display: none;
}

.blogsearch-loading {
  text-align: center;
  padding: 20px 0;
  font-size: 16px;
  color: #666;
}

.nexa-feature-article__wrapper {
  padding: 80px 0px 27px;
}

.nexa-feature-article__title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 23.5px;
  text-transform: uppercase;
  color: #535357;
  margin-bottom: 17px;
  margin-top: 0;
}

.nexa-feature-article__content-wrapper {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 44px;
}

.nexa-feature-article__media {
  width: 548px;
  height: 329px;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 14px 21px 0 rgba(0, 0, 0, 0.22);
}

.nexa-feature-article__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nexa-feature-article__video {
  border-radius: 8px;
  border: 3px solid #FFF;
  box-shadow: 0 14px 21px 0 rgba(0, 0, 0, 0.22);
  height: 100%;
}

.nexa-feature-article__text-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.nexa-feature-article__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.nexa-feature-article__tags {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background: #f3eff8;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #45325D;
}

.nexa-feature-article__date {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-transform: uppercase;
  color: #535357;
  margin-left: auto;
}

.nexa-feature-article__heading {
  font-family: 'Comfortaa', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
  color: #45325d;
  margin-bottom: 30px;
  margin-top: 0;
}

.nexa-feature-article__link {
  display: flex;
  align-items: center;
}

.nexa-feature-article__link a {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24.5px;
  text-decoration: none;
  color: #004a90;
  display: flex;
  align-items: center;
}

.nexa-feature-article__link a span {
  text-decoration: underline;
}

.nexa-feature-article__link a i {
  margin-left: 6px;
  font-size: 18px;
  color: #004a90;
  transition: transform 200ms ease-out, color 200ms ease-out;
}

.nexa-feature-article__link a:hover {
  color: var(--nexa-blue);
}

.nexa-feature-article__link a:hover i {
  color: var(--nexa-blue);
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .nexa-feature-article__wrapper {
    padding: 11px 0px 25px 0px;
  }
  .nexa-feature-article__title {
    margin-bottom: 25px;
  }
  .nexa-feature-article__content-wrapper {
    flex-direction: column;
    gap: 25px;
    border: none;
    padding-bottom: 0;
  }
  .nexa-feature-article__top {
    margin-bottom: 25px;
  }
  .nexa-feature-article__heading {
    margin-bottom: 25px;
    font-size: 32px;
    line-height: 40px;
    margin-top: 0;
  }
  .nexa-feature-article__media {
    width: 100%;
    height: auto;
  }
  .nexa-feature-article__media img {
    width: 100%;
    height: auto;
  }
}

/* =========================================
   NEXA SIDEBAR NAVIGATION COMPONENT
   ========================================= */
body {
  overflow-x: visible !important;
}

.nexa-sidebar {
  top: 100px;
  align-self: flex-start;
  max-width: 320px;
  /* Card-like panel that holds content inside the sidebar */
  /* Share links */
  /* Support section */
  /* Recent articles */
}

@media (max-width: 992px) {
  .nexa-sidebar {
    display: none;
    /* Hidden on mobile */
  }
}

.nexa-sidebar__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nexa-sidebar__return {
  display: flex;
  justify-content: flex-end;
}

.nexa-sidebar__return .nexa-sidebar__back-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 18px;
  color: var(--nexa-blue-dark);
  text-decoration: none;
  line-height: 24.5px;
  font-family: 'Inter', sans-serif;
}

.nexa-sidebar__return .nexa-sidebar__back-link:hover {
  color: #006FD6;
}

.nexa-sidebar__return .nexa-sidebar__back-link:hover i {
  color: #006FD6;
  transform: translateX(-4px);
}

.nexa-sidebar__return .nexa-sidebar__back-link i {
  font-size: 20px;
  color: var(--nexa-blue-dark);
  transition: transform 200ms ease-out, color 200ms ease-out;
}

.nexa-sidebar__panel {
  background-color: var(--nexa-white);
  border: 1px solid #DCD0EA;
  border-radius: 6px;
  padding: 20px 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.nexa-sidebar__share {
  padding-left: 19px;
  padding-right: 10px;
}

.nexa-sidebar__title {
  font-family: 'Comfortaa', sans-serif !important;
  font-weight: 700 !important;
  font-size: 24px !important;
  line-height: 32px !important;
  color: var(--nexa-purple-dark);
  margin: 0;
  padding-bottom: 20px;
}

.nexa-sidebar__divider {
  border: 0;
  border-top: 1px solid var(--nexa-purple-dark);
  margin: 20px 0 15px;
}

.nexa-sidebar__support {
  padding-left: 19px;
  padding-right: 10px;
}

.nexa-sidebar__share-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nexa-sidebar__share-links li + li {
  margin-top: 21px;
}

.nexa-sidebar__share-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--nexa-blue-dark);
  font-weight: 700;
  font-size: 18px;
  line-height: 24.5px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.nexa-sidebar__share-links a i {
  font-size: 16px;
  color: var(--nexa-white);
  padding-top: 2px;
}

.nexa-sidebar__share-icons {
  background-color: var(--nexa-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 21px;
  padding: 0 1px;
  border-radius: 4px;
}

.nexa-sidebar__support-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nexa-sidebar__support-links li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--nexa-blue-dark);
  font-weight: 700;
  line-height: 24.5px;
  font-size: 18px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.nexa-sidebar__support-links li i {
  font-size: 21px;
  color: var(--nexa-blue-dark);
}

.nexa-sidebar__support-links li + li {
  margin-top: 21px;
}

.nexa-sidebar__recent-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nexa-sidebar__recent-list li {
  margin-bottom: 10px;
  border-bottom: 1px solid #B6B8BA;
  padding-bottom: 10px;
}

.nexa-sidebar__recent-list a {
  display: block;
  font-weight: 700;
  font-size: 18px;
  color: var(--nexa-blue-dark);
  text-decoration: none;
  line-height: 24.5px;
  font-family: 'Inter', sans-serif;
  padding-left: 19px;
  padding-right: 10px;
}

.nexa-sidebar__recent-list a:hover {
  color: var(--nexa-blue);
  text-decoration: underline;
}

.nexa-sidebar__tag {
  display: block;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: var(--nexa-purple-dark);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  margin-bottom: 2px;
  letter-spacing: 0.4px;
  padding-left: 19px;
  padding-right: 10px;
}

.nexa-sidebar__recent-title {
  padding-left: 19px;
  padding-right: 10px;
}

.nexa-blog-layout-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 320px;
  gap: 64px;
  padding: 46px 10px;
}

@media (max-width: 1023px) {
  .nexa-blog-layout-wrapper {
    grid-template-columns: 1fr;
  }
}

.nexa-blog-layout-wrapper .nexa-blog-article-wrapper {
  grid-column: span 3;
}

@media (max-width: 1023px) {
  .nexa-blog-layout-wrapper .nexa-blog-article-wrapper {
    grid-column: auto;
  }
}

.nexa-blog-layout-wrapper .nexa-blog-sidebar-wrapper {
  grid-column: span 1;
  position: relative;
  padding-top: 180px;
}

.nexa-blog-layout-wrapper .nexa-blog-sidebar-wrapper .nexa-blog-detail-sidebar {
  position: sticky;
  top: 180px;
}

@media (max-width: 1023px) {
  .nexa-blog-layout-wrapper .nexa-blog-sidebar-wrapper {
    display: none;
  }
}

.nexa-blog-layout-wrapper .nexa-blog-article-head-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nexa-blog-layout-wrapper .nexa-blog-article-head-section .download-link a {
  color: #004A90;
}

.nexa-blog-layout-wrapper .nexa-blog-article-head-section .download-link a span {
  text-decoration: underline;
  font-size: 18px;
  font-family: "Inter", sans-serif;
}

.nexa-blog-layout-wrapper .nexa-blog-article-head-section .download-link a i {
  font-size: 20px;
  color: #004A90;
  margin-left: 6px;
  transition: transform 200ms ease-out, color 200ms ease-out;
}

.nexa-blog-layout-wrapper .nexa-blog-article-head-section .download-link a:hover {
  color: var(--nexa-blue);
}

.nexa-blog-layout-wrapper .nexa-blog-article-head-section .download-link a:hover i {
  color: var(--nexa-blue);
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .nexa-blog-layout-wrapper .nexa-blog-article-head-section {
    display: grid;
    gap: 10px;
  }
}

.nexa-blog-layout-wrapper .nexa-blog-article-tag-date {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  padding-right: 20px;
}

.nexa-blog-layout-wrapper .nexa-blog-article-tag-date .nexa-blog-article-tag {
  background-color: #f3eff8;
  padding: 5px 10px;
  color: var(--nexa-purple-dark);
  border-radius: 10px;
  font-family: "Inter", sans-serif !important;
  font-weight: 500;
  border: none;
  font-size: 16px;
  line-height: 20px;
}

.nexa-blog-layout-wrapper .nexa-blog-article-tag-date .nexa-blog-article-date {
  color: #535357;
  font-family: "Inter", sans-serif !important;
  font-weight: 400;
  border: none;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
}

.nexa-blog-layout-wrapper .nexa-blog-article-title {
  font-family: "Comfortaa", sans-serif !important;
  font-weight: 700;
  margin-top: 18px;
  font-size: 40px;
  line-height: 44px;
}

@media (max-width: 1023px) {
  .nexa-blog-layout-wrapper .nexa-blog-article-title {
    font-size: 24px;
    line-height: 32px;
  }
}

.nexa-blog-layout-wrapper .nexa-blog-richtext-wrapper {
  margin-top: 20px;
}

.nexa-blog-layout-wrapper .nexa-blog-article-asset {
  margin-right: 20px;
  margin-top: 10px;
  border-radius: 10px;
  position: relative;
}

.nexa-blog-layout-wrapper .nexa-blog-article-asset video {
  max-width: 100%;
  width: 100%;
}

.nexa-blog-layout-wrapper .nexa-blog-article-asset .video-play-icon {
  cursor: pointer;
}

.nexa-blog-layout-wrapper .nexa-blog-article-asset .nexa-blog-article-asset-image {
  border-radius: 10px;
  height: auto;
  width: 100%;
  display: block;
  object-fit: cover;
}

.nexa-blog-layout-wrapper .nexa-blog-article-asset .nexa-blog-article-asset-video {
  border-radius: 10px;
  height: auto;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.nexa-blog-layout-wrapper .nexa-blog-article-asset .video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.nexa-related-articles-section {
  padding: 27px 0 142px;
}

.nexa-related-articles-section .nexa-related-articles-heading {
  font-weight: 700;
  font-size: 30px;
  line-height: 42px;
  color: var(--nexa-purple-dark);
}

.nexa-related-articles-section .nexa-related-articles-cards-block {
  padding-top: 37px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
}

@media (max-width: 1023px) {
  .nexa-related-articles-section .nexa-related-articles-cards-block {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .nexa-related-articles-section .nexa-related-articles-cards-block {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.nexa-related-articles-section .nexa-related-articles-card {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  box-shadow: 0px 12px 21px 0px #00000038;
}

.nexa-related-articles-section .nexa-related-articles-card .nexa-related-articles-card-image-wrap {
  width: 100%;
  height: 292px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease-in-out;
}

.nexa-related-articles-section .nexa-related-articles-card .nexa-related-articles-card-image-wrap:hover .nexa-related-articles-card-image {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

.nexa-related-articles-section .nexa-related-articles-card .video-play-icon {
  display: none;
}

.nexa-related-articles-section .nexa-related-articles-card .nexa-related-articles-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.nexa-related-articles-section .nexa-related-articles-card .nexa-related-articles-card-content {
  padding: 10px 15px 66px 15px;
}

.nexa-related-articles-section .nexa-related-articles-card .nexa-related-articles-card-category-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

.nexa-related-articles-section .nexa-related-articles-card .nexa-related-articles-card-tag-link {
  background-color: #f3eff8;
  color: var(--nexa-purple-dark);
  border-radius: 10px;
  padding: 5px 10px;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  transition: background-color 200ms ease-out, color 200ms ease-out, opacity 200ms ease-out;
}

.nexa-related-articles-section .nexa-related-articles-card .nexa-related-articles-card-date {
  font-family: "Inter", sans-serif !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #535357;
  margin: 0;
  text-transform: uppercase;
}

.nexa-related-articles-section .nexa-related-articles-card .nexa-related-articles-card-title {
  margin-top: 20px;
  font-family: "Comfortaa", sans-serif !important;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--nexa-midnight);
}

@media (max-width: 1023px) {
  .nexa-related-articles-section .nexa-related-articles-card .nexa-related-articles-card-title {
    font-size: 18px;
    line-height: 24px;
  }
}

.nexa-related-articles-section .nexa-related-articles-card .nexa-related-articles-card-link-item {
  margin-top: 20px;
  font-family: "Inter", sans-serif !important;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--nexa-blue-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease-out;
}

.nexa-related-articles-section .nexa-related-articles-card .nexa-related-articles-card-link-item span {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.3s ease-out;
}

.nexa-related-articles-section .nexa-related-articles-card .nexa-related-articles-card-link-item i {
  transition: transform 0.3s ease-out, color 0.3s ease-out;
}

.nexa-related-articles-section .nexa-related-articles-card .nexa-related-articles-card-link-item:hover {
  color: var(--nexa-blue);
}

.nexa-related-articles-section .nexa-related-articles-card .nexa-related-articles-card-link-item:hover span {
  color: var(--nexa-blue);
}

.nexa-related-articles-section .nexa-related-articles-card .nexa-related-articles-card-link-item:hover i {
  transform: translateX(6px);
  color: var(--nexa-blue);
}

.block-container {
  --bg-color: #ffffff;
  --bg-image: none;
  background: var(--bg-color, #ffffff) var(--bg-image, none) no-repeat center/cover;
  padding: 60px 0px;
  color: #000;
  /* Custom Play Button */
  /* Hide button during video playback */
  /* Responsive layout */
}

.block-container[data-bg-align="Centre"] {
  background-position: center;
  background-size: auto;
}

.block-container[data-bg-align="Stretch"] {
  background-position: center;
  background-size: cover;
}

.block-container__blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.block-container__block {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.block-container__block:hover, .block-container__block:focus-within {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.block-container__block--highlight {
  color: #fff;
}

.block-container__block--width-20\% {
  flex-basis: calc(20% - 30px);
}

.block-container__block--width-25\% {
  flex-basis: calc(25% - 30px);
}

.block-container__block--width-33\% {
  flex-basis: calc(33.333% - 30px);
}

.block-container__block--width-50\% {
  flex-basis: calc(50% - 30px);
}

.block-container__block--width-100\% {
  flex-basis: 100%;
}

.block-container .block-container__block-title {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 48px;
  margin-top: 0;
  /* Fallbacks */
  font-size: var(--font-size, 36px);
  text-align: center;
  color: var(--title-color, #003B5C);
  text-shadow: 0 2px 8px var(--shadow-color);
  /* Dynamic alignment */
}

.block-container .block-container__block-title[data-alignment="left" i] {
  text-align: left;
}

.block-container .block-container__block-title[data-alignment="center" i] {
  text-align: center;
}

.block-container .block-container__block-title[data-alignment="right" i] {
  text-align: right;
}

.block-container__block-body {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: inherit;
}

.block-container__block-body p {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-top: 0;
}

.block-container__media,
.block-container .video-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  margin-bottom: 15px;
}

.block-container__media img,
.block-container .custom-video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.block-container .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-container .play-btn i {
  font-size: 50px;
  color: white;
}

.block-container .play-btn.hidden {
  display: none !important;
}

.block-container__link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-container__button {
  display: inline-block;
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--btn-text-color, #fff);
  background-color: var(--btn-bg-color, #004a90);
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid #00A3E0;
  text-align: center;
  transition: all 0.3s ease;
  line-height: 23.5px;
}

.block-container__button:hover {
  background: #00A3E0;
}

@media (max-width: 991px) {
  .block-container__block {
    flex: 0 1 100%;
  }
}

.block-container .textabovecontainer {
  margin-bottom: 20px;
}

.block-container .textbelowcontainer {
  margin-top: 20px;
}

.picture-bullet {
  --text-color: #004a90;
  --bg-color: #ffffff;
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 45px 0px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* Modifier for column count */
}

.picture-bullet--bg-Stretch {
  background-size: cover;
  background-position: center;
}

.picture-bullet--bg-Centre {
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center top;
}

.picture-bullet__container {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 30px;
}

.picture-bullet__title {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 32px;
  margin-top: 0;
}

.picture-bullet__columns {
  display: grid;
  row-gap: 20px;
  column-gap: 35px;
}

.picture-bullet--1col .picture-bullet__columns {
  grid-template-columns: 1fr;
}

.picture-bullet--2col .picture-bullet__columns {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.picture-bullet--3col .picture-bullet__columns {
  grid-template-columns: repeat(3, minmax(280px, 1fr));
}

@media (max-width: 991px) {
  .picture-bullet__columns {
    grid-template-columns: 1fr !important;
  }
}

.picture-bullet__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.picture-bullet__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.picture-bullet__item i {
  font-size: 28px;
  color: var(--text-color);
  flex-shrink: 0;
  width: 32px;
}

.picture-bullet__text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  margin: 0;
  color: var(--text-color);
}

@media (max-width: 991px) {
  .picture-bullet__text {
    font-size: 21px;
    line-height: 28px;
  }
}

.nexa-feature-carousel-container {
  padding-top: 40px;
  padding-bottom: 100px;
  position: relative;
}

.nexa-feature-carousel-container .nexa-feature-carousel-heading-body {
  text-align: center;
  color: var(--nexa-white);
}

.nexa-feature-carousel-container .nexa-feature-carousel-wrapper {
  padding-top: 40px;
}

@media (max-width: 600px) {
  .nexa-feature-carousel-container .nexa-feature-carousel-wrapper.autoplay-slider-active .slick-dots {
    text-align: left;
  }
}

.nexa-feature-carousel-container .nexa-feature-carousel-slide {
  outline: none;
  padding: 20px 50px;
}

@media (max-width: 1024px) {
  .nexa-feature-carousel-container .nexa-feature-carousel-slide {
    padding: 5px;
  }
}

.nexa-feature-carousel-container .nexa-feature-slick-previous,
.nexa-feature-carousel-container .nexa-feature-slick-next {
  z-index: 1;
}

.nexa-feature-carousel-container .nexa-feature-carousel-slide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

@media (min-width: 1024px) {
  .nexa-feature-carousel-container .nexa-feature-carousel-slide-inner .nexa-feature-carousel-slide-image {
    max-width: 50%;
  }
  .nexa-feature-carousel-container .nexa-feature-carousel-slide-inner .nexa-feature-carousel-slide-image img {
    max-width: 100%;
  }
  .nexa-feature-carousel-container .nexa-feature-carousel-slide-inner .nexa-feature-carousel-slide-content {
    max-width: 50%;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .nexa-feature-carousel-container .nexa-feature-carousel-slide-inner.align-left {
    flex-direction: row-reverse;
  }
}

.nexa-feature-carousel-container .nexa-feature-slick-next {
  right: -10px;
  width: auto;
  height: auto;
}

.nexa-feature-carousel-container .nexa-feature-slick-next::before {
  content: none;
}

.nexa-feature-carousel-container .nexa-feature-slick-next i {
  font-size: 63px;
  color: var(--nexa-white);
}

@media (max-width: 1023px) {
  .nexa-feature-carousel-container .nexa-feature-slick-next {
    right: -40px;
  }
  .nexa-feature-carousel-container .nexa-feature-slick-next i {
    font-size: 50px;
  }
}

.nexa-feature-carousel-container .nexa-feature-slick-next.slick-disabled {
  opacity: 50%;
}

.nexa-feature-carousel-container .nexa-feature-slick-previous {
  left: -10px;
  width: auto;
  height: auto;
}

.nexa-feature-carousel-container .nexa-feature-slick-previous::before {
  content: none;
}

.nexa-feature-carousel-container .nexa-feature-slick-previous i {
  font-size: 63px;
  color: var(--nexa-white);
}

@media (max-width: 1023px) {
  .nexa-feature-carousel-container .nexa-feature-slick-previous {
    left: -40px;
  }
  .nexa-feature-carousel-container .nexa-feature-slick-previous i {
    font-size: 50px;
  }
}

.nexa-feature-carousel-container .nexa-feature-slick-previous.slick-disabled {
  opacity: 50%;
}

.nexa-feature-carousel-container .slick-dots {
  bottom: -60px;
}

.nexa-feature-carousel-container .slick-dots li {
  width: 16px;
  height: 16px;
}

.nexa-feature-carousel-container .slick-dots li button {
  width: 16px;
  height: 16px;
}

.nexa-feature-carousel-container .nexa-feature-carousel-custom-dot {
  padding: 0;
  margin: 0;
}

.nexa-feature-carousel-container .nexa-feature-carousel-custom-dot::before {
  content: none;
}

.nexa-feature-carousel-container .nexa-feature-carousel-custom-dot i {
  font-size: 16px;
  color: var(--nexa-dark);
}

.nexa-feature-carousel-container .nexa-feature-carousel-autoplay-wrapper {
  background-color: #2a2a2abf;
  position: absolute;
  bottom: 55px;
  padding: 10px;
  right: 30px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nexa-feature-carousel-container .nexa-feature-carousel-autoplay-wrapper .nexa-feature-carousel-autoplay-toggle {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nexa-feature-carousel-container .nexa-feature-carousel-autoplay-wrapper .nexa-feature-carousel-autoplay-toggle i {
  font-size: 30px;
  color: var(--nexa-white);
}

.nexa-feature-carousel-container .nexa-feature-carousel-slide-image {
  width: 100%;
}

.nexa-feature-carousel-container .nexa-feature-carousel-slide-image img {
  display: block;
  border-radius: 8px;
  height: 360px;
  width: 100%;
  object-fit: cover;
}

.nexa-feature-carousel-container .nexa-feature-carousel-slide-caption {
  font-family: "Inter", sans-serif;
  color: #f3eff8;
  margin-top: 10px;
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0%;
  text-transform: uppercase;
}

.nexa-feature-carousel-container .nexa-feature-carousel-slide-richtext {
  color: var(--nexa-white);
}

.nexa-feature-carousel-container .nexa-feature-carousel-copy-cta {
  margin-top: 20px;
}

@media (max-width: 1023px) {
  .nexa-feature-carousel-container .slick-prev,
  .nexa-feature-carousel-container .slick-next {
    display: none !important;
  }
  .nexa-feature-carousel-container .nexa-feature-carousel-slide-inner {
    flex-direction: column !important;
    text-align: center;
    gap: 30px;
  }
  .nexa-feature-carousel-container .nexa-feature-carousel-slide-image {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .nexa-feature-carousel-container .nexa-feature-carousel-slide-image img {
    width: 100%;
    max-width: 100%;
    display: block;
  }
  .nexa-feature-carousel-container .nexa-feature-carousel-slide-content {
    width: 100%;
    max-width: 100%;
  }
}

.nexa-sequence {
  --nexa-sequence-padding-y: clamp(60px, 8vw, 60px);
  --nexa-sequence-padding-x: clamp(20px, 5vw, 32px);
  --nexa-sequence-card-gap: clamp(24px, 4vw, 48px);
  --nexa-sequence-card-min: clamp(220px, 28vw, 320px);
  --nexa-sequence-card-template: repeat(auto-fit, minmax(var(--nexa-sequence-card-min, 240px), 1fr));
  --nexa-sequence-card-radius: 32px;
  --nexa-sequence-card-bg: rgba(4, 22, 53, 0.55);
  --nexa-sequence-card-border: rgba(255, 255, 255, 0.18);
  --nexa-sequence-divider-offset: 64px;
  --nexa-sequence-divider-color: rgba(255, 255, 255, 0.24);
  --nexa-sequence-divider-height: 1px;
  --nexa-sequence-bg-line-color: rgba(255, 255, 255, 0.18);
  --nexa-sequence-bg-line-offset: 55%;
  --nexa-sequence-cta-gap: 50px;
  --nexa-sequence-padding-bottom: 50px;
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--nexa-sequence-bg-color, #03122c);
  color: var(--nexa-white);
}

.nexa-sequence__background {
  position: absolute;
  inset: 0;
  background-color: var(--nexa-sequence-bg-color, #03122c);
  background-image: var(--nexa-sequence-bg-image, none);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

.nexa-sequence__background--center {
  background-size: auto;
  background-position: center top;
}

.nexa-sequence__background::after {
  content: "";
  position: absolute;
  inset: 0;
}

.nexa-sequence__background-line {
  position: absolute;
  top: var(--nexa-sequence-bg-line-offset);
  left: 50%;
  width: 160%;
  height: var(--nexa-sequence-bg-line-thickness);
  background: linear-gradient(90deg, transparent 0%, var(--nexa-sequence-bg-line-color) 15%, var(--nexa-sequence-bg-line-color) 85%, transparent 100%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.nexa-sequence__inner {
  position: relative;
  z-index: 1;
  padding: var(--nexa-sequence-padding-y) var(--nexa-sequence-padding-x) var(--nexa-sequence-padding-bottom, var(--nexa-sequence-padding-y));
  box-sizing: border-box;
}

.nexa-sequence__header {
  margin: 0 auto clamp(32px, 5vw, 56px);
  text-align: center;
}

.nexa-sequence__title {
  margin: 0 0 12px;
  color: var(--nexa-sequence-title-color, #ffffff);
  text-shadow: var(--nexa-sequence-title-shadow, none);
  text-align: var(--nexa-sequence-title-align, center);
  font-family: 'Comfortaa', sans-serif;
}

.nexa-sequence__intro {
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.6;
  color: var(--nexa-sequence-intro-color, rgba(255, 255, 255, 0.85));
  font-family: 'Inter', sans-serif;
}

.nexa-sequence__cards {
  display: grid;
  grid-template-columns: var(--nexa-sequence-card-template);
  gap: var(--nexa-sequence-card-gap);
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  justify-content: center;
}

.nexa-sequence__divider {
  display: none;
}

.nexa-sequence[data-divider-enabled="true"] .nexa-sequence__divider {
  display: block;
  width: 100%;
  height: var(--nexa-sequence-divider-height);
  margin-top: var(--nexa-sequence-divider-offset);
  background: var(--nexa-sequence-divider-color);
  opacity: 0.85;
}

.nexa-sequence__cta {
  display: flex;
  justify-content: center;
  margin-top: var(--nexa-sequence-cta-gap);
  width: 100%;
}

.nexa-sequence__cta-btn {
  min-width: clamp(200px, 18vw, 260px);
  justify-content: center;
}

.nexa-sequence[data-card-count="2"] {
  --nexa-sequence-card-gap: clamp(32px, 6vw, 96px);
  --nexa-sequence-card-min: clamp(300px, 34vw, 460px);
  --nexa-sequence-padding-x: clamp(32px, 8vw, 140px);
}

.nexa-sequence[data-card-count="3"] {
  --nexa-sequence-card-gap: clamp(26px, 5vw, 68px);
  --nexa-sequence-card-min: clamp(260px, 22vw, 330px);
  --nexa-sequence-padding-x: clamp(28px, 6vw, 120px);
}

.nexa-sequence[data-card-count="4"] {
  --nexa-sequence-card-gap: clamp(20px, 3vw, 40px);
  --nexa-sequence-card-min: clamp(190px, 17vw, 260px);
  --nexa-sequence-padding-x: clamp(24px, 5vw, 96px);
}

.nexa-sequence-card {
  --nexa-sequence-card-heading-color: #ffffff;
  --nexa-sequence-card-heading-shadow: none;
  --nexa-sequence-card-body-color: #ffffff;
  --nexa-sequence-card-marker-color: #00A3E0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(24px, 4vw, 36px) clamp(16px, 3vw, 0);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  min-height: auto;
}

.nexa-sequence-card__marker {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.nexa-sequence-card__marker--icon {
  border-radius: 0;
  border: none;
  color: var(--nexa-sequence-card-marker-color);
  font-size: 112px;
  font-weight: 100;
  background: transparent;
}

.nexa-sequence-card__marker--image {
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  padding: 0;
  background: none;
}

.nexa-sequence-card__marker--image img {
  width: 100%;
  height: auto;
  max-width: 122px;
  border-radius: 12px;
  display: block;
}

.nexa-sequence-card[data-marker-style="filled"] .nexa-sequence-card__marker {
  background: var(--nexa-sequence-card-marker-color);
  color: #012b4b;
  border-color: transparent;
}

.nexa-sequence-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nexa-sequence-card__heading {
  margin: 0;
  color: var(--nexa-sequence-card-heading-color);
  text-shadow: var(--nexa-sequence-card-heading-shadow);
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  flex-wrap: nowrap;
  white-space: normal;
  text-align: center;
  min-width: 0;
}

.nexa-sequence-card__heading-text {
  display: inline-flex;
  align-items: center;
  white-space: normal;
  text-align: center;
  min-width: 0;
  overflow: visible;
  text-overflow: unset;
  word-break: break-word;
}

.nexa-sequence-card__icon {
  width: 48px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.nexa-sequence-card__icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.nexa-sequence-card__copy {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--nexa-sequence-card-body-color);
  font-family: 'Inter', sans-serif;
}

.nexa-sequence-card__link {
  margin-top: 12px;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nexa-sequence-card__cta-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.nexa-sequence-card__cta-icons li {
  display: inline-flex;
}

.nexa-sequence-card__cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nexa-sequence-card__cta-icon:hover, .nexa-sequence-card__cta-icon:focus-visible {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 640px) {
  .nexa-sequence__inner {
    padding: clamp(40px, 12vw, 64px) clamp(24px, 8vw, 40px);
  }
  .nexa-sequence__cards {
    grid-template-columns: 1fr;
  }
  .nexa-sequence-card {
    width: 100%;
    max-width: 420px;
  }
}

@media (min-width: 900px) {
  .nexa-sequence[data-card-count="2"] .nexa-sequence__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nexa-sequence[data-card-count="3"] .nexa-sequence__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .nexa-sequence[data-card-count="4"] .nexa-sequence__cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.search-results {
  padding: 40px 0;
  /* Keep Nexa site search filters inline and always visible */
}

.search-results__title {
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 0;
  font-family: 'Comfortaa', sans-serif;
  color: #45325d;
  border-bottom: 1px solid #45325d;
  padding-bottom: 20px;
}

.search-results__divider {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #ddd;
}

.search-results__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 35px;
}

.search-results__filters .js-filter__inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.search-results .nexa-site-search-grid .js-filters {
  width: 100%;
}

.search-results .nexa-site-search-grid .js-filter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.search-results .nexa-site-search-grid .js-filter__label {
  margin: 0;
}

.search-results .nexa-site-search-grid .js-filter__inputs {
  display: flex !important;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.search-results .nexa-site-search-grid .js-filter__item {
  margin: 0;
}

.search-results__filter {
  padding: 5px 10px;
  background: #f3eff8;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  color: var(--nexa-purple-dark);
}

.search-results__filter--active {
  background: #45325d;
  color: white;
}

.search-results__filter.active, .search-results__filter.is-active, .search-results__filter.selected, .search-results__filter[aria-pressed="true"], .search-results__filter[data-checked="true"] {
  background: var(--nexa-purple-dark);
  color: #ffffff;
}

.search-results__layout {
  display: flex;
  gap: 30px;
}

.search-results__results {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.search-results__sidebarWrapper {
  position: relative;
  padding-top: 10px;
}

.search-results__sidebar {
  width: 300px;
  display: block;
  position: sticky;
  top: 100px;
}

/* Search Result Cards*/
.search-results-card {
  border-bottom: 2px solid #45325d;
  padding: 25px 0 25px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Video */
}

.search-results-card__type {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #45325d;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.search-results-card__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin: 0;
  color: #45325d;
}

.search-results-card__description {
  font-size: 18px;
  color: #000000;
  line-height: 24.5px;
  font-weight: 400;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.search-results-card__cta {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 24.5px;
  color: #004a90;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.search-results-card__cta i {
  transition: transform 200ms ease-out, color 200ms ease-out;
}

.search-results-card__cta:hover i {
  color: #0267ff;
  transform: translateX(4px);
}

.search-results-card__cta-text {
  text-decoration: underline;
}

.search-results-card__cta-text:hover {
  color: #0267ff;
}

.search-results-card--video .search-results-card__videoWrapper {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.search-results-card--video .search-results-card__media {
  position: relative;
  flex: 0 0 260px;
  width: 260px;
  height: 160px;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.search-results-card--video .search-results-card__media img,
.search-results-card--video .search-results-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.search-results-card--video .search-results-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-results-card--video .search-results-play-btn i {
  font-size: 36px;
  color: #fff;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.search-results-card--video .search-results-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search-results-card--pdf a, .search-results-card--page a {
  text-decoration: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .search-results__sidebar {
    display: none;
  }
  /* Stack video + text on mobile */
  .search-results-card--video .search-results-card__videoWrapper {
    flex-direction: column;
  }
  .search-results-card--video .search-results-card__media {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
  }
}

.search-results .no-results {
  font-size: 2.6rem;
  line-height: 3.2rem;
  font-weight: 700;
  position: absolute;
}

.search-results .no-results.show {
  display: block;
}

.search-results .no-results.is-hidden {
  display: none;
}

.search-results .js-results-target {
  width: calc(100% - 300px - 40px);
  margin-right: 40px;
}

.search-results .loader-wrapper {
  width: 100%;
  height: 100%;
  z-index: 5;
  top: 0;
  left: 0;
  padding: 16px;
  position: absolute;
  background: rgba(42, 45, 53, 0.7);
  min-height: 200px;
}

.search-results .loader-wrapper .loader {
  width: 100px;
  height: 100px;
  background: url("/Areas/Watts/Content/images/LeakdefenseLoader.gif") no-repeat;
  margin: 0 auto;
  position: relative;
  top: 50%;
  bottom: 50%;
}

.search-results .video__wrapper .video__container {
  background: #bfd7ee;
  display: block;
  width: 100%;
  height: 160px;
  position: relative;
  overflow: hidden;
  margin: 0px;
  overflow: hidden;
  cursor: pointer;
}

.search-results .results-target .grid-item.video-on-modal .video__wrapper .video-play-icon {
  display: block;
  position: absolute !important;
  z-index: 2;
  top: 40%;
  left: 40%;
  width: 50px;
  height: 50px;
}

.search-results .grid-item {
  cursor: pointer;
}

.show-video-modal {
  display: none;
  position: fixed;
  z-index: 200000;
  left: 0;
  top: 0;
  width: 600px;
  height: 700px;
  overflow: hidden;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content */
.show-video-modal .modal-content {
  background-color: #fefefe;
  margin: 1% auto;
  padding: 2px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.show-video-modal .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

show-video-modal .close:hover,
show-video-modal .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.show-video-modal {
  background-color: white;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  left: auto;
  margin: 0;
}

.show-video-modal .modal-content {
  margin: auto;
  border: 0;
  width: 100%;
}

.show-video-modal .modal-content .modal-body {
  margin: 0 auto;
}

.show-video-modal .modal-content .show-video-modal-content {
  margin: auto;
  position: relative;
  width: 100%;
  padding-bottom: 34.25%;
  overflow-y: auto;
  height: 100% !important;
  max-width: 700px;
}

@media (max-width: 1200px) {
  .show-video-modal .modal-content .show-video-modal-content {
    padding-bottom: 42.25%;
    max-width: 600px;
  }
}

@media (max-width: 767px) {
  .show-video-modal .modal-content .show-video-modal-content {
    margin: 50% auto;
    padding-bottom: 50.25%;
    max-width: 350px;
  }
}

.show-video-modal .modal-content .show-video-modal-content .js-video.video {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
}

.show-video-modal .modal-content .show-video-modal-content .video-play-icon {
  display: none;
}

.show-video-modal .modal-header {
  position: relative;
}

.show-video-modal .close {
  position: absolute;
  display: block;
  width: 50px !important;
  height: 50px !important;
  background: #005db9 !important;
  top: 0;
  right: 8px;
  border-radius: 70% !important;
  z-index: 1;
  cursor: pointer;
  opacity: 0.75 !important;
  border: none;
}

.show-video-modal .close:hover {
  color: #000;
  text-decoration: none;
  width: 50px !important;
  height: 50px !important;
  opacity: 1 !important;
}

.show-video-modal .close .close-icon {
  margin-left: 0px;
  top: -2px;
  position: relative;
  max-width: unset;
}

.show-video-modal .video__wrapper {
  font-size: 0px;
  line-height: 0px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .search-results .js-results-target {
    width: 100%;
    margin-right: 0;
  }
}

.nexa-feature-content__wrapper {
  padding: 80px 0px 27px;
}

.nexa-feature-content__title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 23.5px;
  text-transform: uppercase;
  color: #535357;
  margin-bottom: 17px;
  margin-top: 0;
}

.nexa-feature-content__content-wrapper {
  display: flex;
  gap: 44px;
  align-items: flex-start;
  padding-bottom: 44px;
}

.nexa-feature-content__media {
  width: 548px;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 14px 21px 0 rgba(0, 0, 0, 0.22);
}

.nexa-feature-content__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.nexa-feature-content .nexa-feature-article__media-image img {
  height: 329px;
}

.nexa-feature-content__video {
  border-radius: 8px;
  position: relative;
}

.nexa-feature-content__text-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.nexa-feature-content__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.nexa-feature-content__tags {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background: #f3eff8;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--nexa-purple-dark);
}

.nexa-feature-content__date {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-transform: uppercase;
  color: #535357;
  margin-left: auto;
}

.nexa-feature-content__heading {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  color: var(--nexa-purple-dark);
  margin-top: 0;
}

.nexa-feature-content__link {
  display: flex;
  align-items: center;
}

.nexa-feature-content__link a {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24.5px;
  text-decoration: none;
  color: #004a90;
  display: flex;
  align-items: center;
}

.nexa-feature-content__link a span {
  text-decoration: underline;
}

.nexa-feature-content__link a i {
  margin-left: 6px;
  font-size: 18px;
  color: #004a90;
  transition: transform 200ms ease-out, color 200ms ease-out;
}

.nexa-feature-content__link a:hover {
  color: var(--nexa-blue);
}

.nexa-feature-content__link a:hover i {
  color: var(--nexa-blue);
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .nexa-feature-content__wrapper {
    padding: 11px 0px 25px 0px;
  }
  .nexa-feature-content__title {
    margin-bottom: 25px;
  }
  .nexa-feature-content__content-wrapper {
    flex-direction: column;
    gap: 25px;
    border: none;
    padding-bottom: 0;
  }
  .nexa-feature-content__top {
    margin-bottom: 25px;
  }
  .nexa-feature-content__heading {
    margin-top: 0;
  }
  .nexa-feature-content__media {
    width: 100%;
    height: auto;
  }
  .nexa-feature-content__media img {
    width: 100%;
    height: auto;
  }
}

.nexa-feature-content .fit-content {
  width: fit-content;
}

.nexa-feature-content .nexa-feature-content__video .video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
}

.nexa-feature-content .nexa-feature-content__video video {
  max-width: 100%;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: block;
}

.nexa-scrollToTop {
  float: right;
  right: 32px;
  position: fixed;
  bottom: 48px;
  text-decoration: none;
  z-index: 1000;
  display: none;
}

.nexa-scrollToTop i {
  color: #FFF;
  text-align: center;
  font-family: "Font Awesome 7 Pro";
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  width: 48px;
  height: 48px;
  border-radius: 50px;
  border: 2px solid #FFF;
  background: #004A90;
  box-shadow: 0 12px 21px 0 rgba(0, 0, 0, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Nexa layout wrappers*/
html, body {
  width: 100%;
  padding: 0px;
  margin: 0px;
  min-width: 320px;
  overflow-x: hidden;
  background-color: #FFFFFF;
}

.nexa-container {
  max-width: var(--nexa-max-width);
  width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Full-width band area for components that span 100% */
.nexa-fullwidth {
  width: 100%;
  margin: 0 auto;
}

/* Main page content wrapper */
.nexa-main {
  width: 100%;
  padding-top: 63px;
}

/* Footer wrapper tweaks for Nexa */
.nexa-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 24px;
}
