.ntgy-block-home-hero-v1 {
  --ntgy-home-hero-v1-media-width: 529px;
  --ntgy-layout-full-max: 1792px;

  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(230, 236, 241, 0.5) 0%, rgba(230, 236, 241, 0) 100%), var(--ntgy-color-white);
}

.entry-content > .ntgy-block-home-hero-v1.alignfull,
.editor-styles-wrapper .is-root-container > .ntgy-block-home-hero-v1.alignfull {
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

.entry-content > .ntgy-block-home-hero-v1.alignwide,
.editor-styles-wrapper .is-root-container > .ntgy-block-home-hero-v1.alignwide {
  width: min(100% - (var(--ntgy-gutter) * 2), var(--ntgy-layout-wide));
  max-width: var(--ntgy-layout-wide);
  margin-inline: auto;
}

.ntgy-has-hero-claim-shell .ntgy-block-home-hero-v1 {
  background: transparent;
}

.ntgy-block-home-hero-v1__inner {
  display: grid;
  gap: var(--ntgy-spacing-md);
  width: 100%;
}

.ntgy-block-home-hero-v1__heading-box {
  width: 100%;
  max-width: 40.5625rem;
  margin-block-end: 40px;
}

.ntgy-block-home-hero-v1__heading {
  margin: 0;
  color: var(--ntgy-color-blue-100);
  font-size: clamp(2.625rem, 7vw, 4rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.ntgy-block-home-hero-v1__heading-text,
.ntgy-block-home-hero-v1__heading-accent {
  display: inline;
}

.ntgy-block-home-hero-v1__heading-accent {
  color: var(--ntgy-color-orange-100);
}

.ntgy-block-home-hero-v1__media-column,
.ntgy-block-home-hero-v1__posts-column {
  min-width: 0;
}

.ntgy-block-home-hero-v1__media-column {
  display: flex;
  align-items: end;
  width: 100%;
  max-width: var(--ntgy-home-hero-v1-media-width);
}

.ntgy-block-home-hero-v1__media-link {
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.ntgy-block-home-hero-v1__media-frame {
  position: relative;
  display: grid;
  gap: 1rem;
  width: 100%;
}

.ntgy-block-home-hero-v1__image,
.ntgy-block-home-hero-v1__video,
.ntgy-block-home-hero-v1__lottie,
.ntgy-block-home-hero-v1__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 505 / 481;
}

.ntgy-block-home-hero-v1__image,
.ntgy-block-home-hero-v1__video {
  height: auto;
  object-fit: contain;
}

.ntgy-block-home-hero-v1__video {
  height: 100%;
}

.ntgy-block-home-hero-v1__lottie,
.ntgy-block-home-hero-v1__placeholder,
.ntgy-block-home-hero-v1__heading-placeholder,
.ntgy-block-home-hero-v1__posts-placeholder {
  display: grid;
  place-items: center;
  border: 1px dashed var(--ntgy-color-border-muted);
  border-radius: var(--ntgy-radius-md);
  color: var(--ntgy-color-text-secondary);
  font-size: var(--ntgy-font-size-small);
  line-height: var(--ntgy-line-height-body);
  text-align: center;
}

.ntgy-block-home-hero-v1__lottie {
  position: relative;
  overflow: hidden;
}

.ntgy-block-home-hero-v1__heading-placeholder {
  min-height: 4rem;
  margin: 0;
}

.ntgy-block-home-hero-v1__lottie::before {
  content: "Lottie animation";
}

.ntgy-block-home-hero-v1__lottie.is-lottie-ready {
  border: 0;
  color: transparent;
}

.ntgy-block-home-hero-v1__lottie.is-lottie-ready::before {
  content: none;
}

.ntgy-block-home-hero-v1__lottie svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ntgy-block-home-hero-v1__motion-toggle {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: var(--ntgy-radius-pill);
  color: var(--ntgy-color-blue-100);
  background: transparent;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: var(--ntgy-line-height-ui);
  cursor: pointer;
}

.ntgy-block-home-hero-v1__motion-toggle:hover,
.ntgy-block-home-hero-v1__motion-toggle:focus-visible {
  color: var(--ntgy-color-blue-100);
}

.ntgy-block-home-hero-v1__motion-toggle:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px var(--ntgy-color-white), 0 0 0 5px var(--ntgy-color-blue-100);
}

.ntgy-block-home-hero-v1__motion-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 2.75rem;
  height: 1.5rem;
  flex: 0 0 2.75rem;
  padding: 0.1875rem;
  border-radius: var(--ntgy-radius-pill);
  background: var(--ntgy-color-blue-100);
  transition: background-color var(--ntgy-transition-duration) var(--ntgy-transition-timing);
}

.ntgy-block-home-hero-v1__motion-switch-thumb {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: var(--ntgy-color-white);
  box-shadow: 0 0.125rem 0.375rem rgba(0, 48, 79, 0.2);
  transform: translateX(1.25rem);
  transition: transform var(--ntgy-transition-duration) var(--ntgy-transition-timing);
}

.ntgy-block-home-hero-v1__motion-toggle[aria-pressed="true"] .ntgy-block-home-hero-v1__motion-switch {
  background: var(--ntgy-color-blue-20);
}

.ntgy-block-home-hero-v1__motion-toggle[aria-pressed="true"] .ntgy-block-home-hero-v1__motion-switch-thumb {
  transform: translateX(0);
}

.ntgy-block-home-hero-v1__motion-label {
  display: inline-block;
}

.ntgy-block-home-hero-v1__animated-image-poster {
  display: none;
  width: 100%;
  aspect-ratio: 505 / 481;
}

.ntgy-block-home-hero-v1__media-frame.is-motion-paused .ntgy-block-home-hero-v1__image[data-ntgy-hero-motion-target="animated-image"] {
  display: none;
}

.ntgy-block-home-hero-v1__media-frame.is-motion-paused .ntgy-block-home-hero-v1__animated-image-poster {
  display: block;
}

.ntgy-block-home-hero-v1__posts-column {
  display: block;
}

.ntgy-block-home-hero-v1__slider {
  display: grid;
  gap: 1.1875rem;
  width: 100%;
}

.ntgy-block-home-hero-v1__slider-track {
  display: flex;
  align-items: end;
  gap: 0.75rem;
  min-height: 28.875rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pan-y;
  user-select: none;
}

.ntgy-block-home-hero-v1__slider-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.ntgy-block-home-hero-v1__slider-track::-webkit-scrollbar {
  display: none;
}

.ntgy-block-home-hero-v1__card {
  --ntgy-home-hero-v1-card-media-space: 11.5rem;
  --ntgy-card-content-min-height: 8.5rem;
  --ntgy-home-hero-v1-standard-content-height: 10.0625rem;

  position: relative;
  flex: 0 0 clamp(21.21875rem, calc((100% - 1.5rem) / 2.2), 32rem);
  height: auto;
  min-height: calc(var(--ntgy-card-content-min-height) + var(--ntgy-home-hero-v1-card-media-space));
  overflow: hidden;
  border-radius: var(--ntgy-radius-md);
  scroll-snap-align: start;
  background: var(--ntgy-color-blue-10);
  transition: background-color 260ms var(--ntgy-transition-timing);
}

.ntgy-block-home-hero-v1__card.is-featured {
  min-height: calc(var(--ntgy-card-content-min-height) + var(--ntgy-home-hero-v1-card-media-space));
}

.ntgy-block-home-hero-v1__card.is-standard-card {
  border: 1px solid transparent;
  background: var(--ntgy-color-blue-10);
  transition:
    background-color 260ms var(--ntgy-transition-timing),
    border-color 260ms var(--ntgy-transition-timing);
}

.ntgy-block-home-hero-v1__card.is-standard-card.is-card-tone-blue {
  background: var(--ntgy-color-blue-10);
}

.ntgy-block-home-hero-v1__card.is-standard-card.is-card-tone-blue:has(.ntgy-block-home-hero-v1__card-title-link:hover),
.ntgy-block-home-hero-v1__card.is-standard-card.is-card-tone-blue:has(.ntgy-block-home-hero-v1__card-title-link:focus-visible) {
  background: var(--ntgy-color-blue-20);
  border-color: var(--ntgy-color-blue-80);
}

.ntgy-block-home-hero-v1__card.is-standard-card.is-card-tone-orange {
  background: var(--ntgy-color-orange-10);
}

.ntgy-block-home-hero-v1__card.is-standard-card.is-card-tone-orange:has(.ntgy-block-home-hero-v1__card-title-link:hover) {
  background: var(--ntgy-color-orange-40);
  border-color: var(--ntgy-color-orange-100);
}

.ntgy-block-home-hero-v1__card.is-standard-card.is-card-tone-orange:has(.ntgy-block-home-hero-v1__card-title-link:focus-visible) {
  background: var(--ntgy-color-blue-20);
  border-color: var(--ntgy-color-blue-100);
}

.ntgy-block-home-hero-v1__card-link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  min-height: calc(var(--ntgy-card-content-min-height) + var(--ntgy-home-hero-v1-card-media-space));
  color: var(--ntgy-color-blue-100);
  -webkit-user-drag: none;
}

.ntgy-block-home-hero-v1__card.is-standard-card .ntgy-block-home-hero-v1__card-link {
  justify-content: flex-start;
  gap: 0;
  min-height: calc(11.625rem + var(--ntgy-home-hero-v1-standard-content-height));
  padding: 0 0 0 2rem;
}

.ntgy-block-home-hero-v1__card-link:focus-visible {
  outline: 0;
}

.ntgy-block-home-hero-v1__card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--ntgy-radius-md);
  overflow: hidden;
}

.ntgy-block-home-hero-v1__card.is-standard-card .ntgy-block-home-hero-v1__card-media {
  position: relative;
  inset: auto;
  align-self: stretch;
  width: 100%;
  height: 11.625rem;
  flex: 0 0 11.625rem;
  border-radius: var(--ntgy-radius-md);
  border-top-left-radius: 0;
}

.ntgy-block-home-hero-v1__card-media::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 40.197%);
  content: "";
  pointer-events: none;
}

.ntgy-block-home-hero-v1__card.is-standard-card .ntgy-block-home-hero-v1__card-media::after {
  content: none;
}

.ntgy-block-home-hero-v1__card-image,
.ntgy-block-home-hero-v1__card-image-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ntgy-block-home-hero-v1__card.is-standard-card .ntgy-block-home-hero-v1__card-image,
.ntgy-block-home-hero-v1__card.is-standard-card .ntgy-block-home-hero-v1__card-image-placeholder {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
}

.ntgy-block-home-hero-v1__card-image-placeholder {
  background: linear-gradient(135deg, var(--ntgy-color-blue-20), var(--ntgy-color-orange-20));
}

.ntgy-block-home-hero-v1__card.is-multimedia-card,
.ntgy-block-home-hero-v1__card.is-project-card,
.ntgy-block-home-hero-v1__card.is-full-image-card {
  --ntgy-business-line-icon-box-size: var(--ntgy-business-line-icon-box-size-full-image);
  --ntgy-business-line-icon-size: var(--ntgy-business-line-icon-size-full-image);
}

.ntgy-block-home-hero-v1__card-icon {
  position: absolute;
  inset-block-start: 1.5rem;
  inset-inline-start: 1.5rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: var(--ntgy-business-line-icon-box-size);
  height: var(--ntgy-business-line-icon-box-size);
  border-radius: var(--ntgy-radius-sm);
  background: var(--ntgy-color-orange-100);
}

.ntgy-block-home-hero-v1__card.is-standard-card .ntgy-block-home-hero-v1__card-icon {
  position: relative;
  inset: auto;
  margin-block-start: auto;
  margin-inline-start: 1.5rem;
}

.ntgy-block-home-hero-v1__card-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 1.25rem;
  width: min(calc(100% - 1.5rem), 25rem);
  max-width: 100%;
  min-height: var(--ntgy-card-content-min-height);
  margin-block-start: var(--ntgy-home-hero-v1-card-media-space);
  margin-inline-start: auto;
  padding: var(--ntgy-spacing-sm) var(--ntgy-spacing-md) var(--ntgy-spacing-sm) 2.5rem;
  border: 0.81px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--ntgy-radius-md);
  background: rgba(253, 254, 254, 0.85);
  backdrop-filter: blur(8px);
}

.ntgy-block-home-hero-v1__card.is-standard-card .ntgy-block-home-hero-v1__card-content {
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 1.25rem;
  width: 100%;
  min-height: var(--ntgy-home-hero-v1-standard-content-height);
  margin-block-start: -0.125rem;
  margin-inline: 0;
  padding: 17px var(--ntgy-spacing-md) 17px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.ntgy-block-home-hero-v1__card.is-multimedia-card .ntgy-block-home-hero-v1__card-content {
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 0.75rem;
  padding: 1.5rem 1rem 1rem 2.5rem;
  color: var(--ntgy-color-white);
  background: rgba(0, 39, 64, 0.7);
  backdrop-filter: blur(5.85px);
}

.ntgy-block-home-hero-v1__card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.75rem;
  min-height: 1.75rem;
  justify-self: start;
  padding: 0.5rem;
  border-radius: var(--ntgy-radius-sm);
  color: var(--ntgy-color-blue-100);
  background: var(--ntgy-color-white);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 0.75rem;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color var(--ntgy-transition-duration) var(--ntgy-transition-timing),
    background-color var(--ntgy-transition-duration) var(--ntgy-transition-timing);
}

.ntgy-block-home-hero-v1__card-tag-row {
  --ntgy-business-line-icon-box-size: var(--ntgy-tag-label-min-height);
  --ntgy-business-line-icon-size: var(--ntgy-business-line-icon-size-inline);

  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.25rem;
  width: fit-content;
  max-width: 100%;
  min-height: var(--ntgy-tag-label-min-height);
  justify-self: start;
  border-radius: var(--ntgy-radius-sm);
}

.ntgy-block-home-hero-v1__card .ntgy-block-home-hero-v1__card-tag-row .ntgy-block-home-hero-v1__card-icon {
  position: relative;
  inset: auto;
  flex: 0 0 var(--ntgy-business-line-icon-box-size);
  margin: 0;
}

.ntgy-block-home-hero-v1__card-tag-row .ntgy-block-home-hero-v1__card-tag {
  justify-self: auto;
}

.ntgy-block-home-hero-v1__card-tag:hover {
  color: var(--ntgy-color-white);
  background: var(--ntgy-color-blue-100);
}

.ntgy-block-home-hero-v1__card-tag:focus-visible {
  position: relative;
  z-index: 3;
  overflow: visible;
  outline: 0;
  color: var(--ntgy-color-blue-100);
  background: var(--ntgy-color-white);
  box-shadow:
    0 0 0 2px var(--ntgy-color-white, #fff),
    0 0 0 5px var(--ntgy-color-blue-100, #004571);
}

a.ntgy-block-home-hero-v1__card-tag,
.ntgy-block-home-hero-v1__card-title-link {
  cursor: pointer;
}

.ntgy-block-home-hero-v1__card-title {
  clear: none;
  display: -webkit-box;
  width: fit-content;
  max-width: 100%;
  max-height: 7.5rem;
  overflow: hidden;
  margin: 0;
  border-radius: var(--ntgy-radius-sm);
  color: var(--ntgy-color-blue-100);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration-thickness: from-font;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.ntgy-block-home-hero-v1__card-title:has(.ntgy-block-home-hero-v1__card-title-link:focus-visible) {
  overflow: visible;
  box-shadow:
    0 0 0 2px var(--ntgy-color-white),
    0 0 0 5px var(--ntgy-color-blue-100);
}

.ntgy-block-home-hero-v1__card-title-link {
  border-radius: var(--ntgy-radius-sm);
  color: inherit;
}

.ntgy-block-home-hero-v1__card-title-link:hover,
.ntgy-block-home-hero-v1__card-title-link:focus-visible {
  text-decoration-line: underline;
  text-underline-position: from-font;
}

.ntgy-block-home-hero-v1__card-title-link:focus-visible {
  outline: 0;
  box-shadow: none;
}

.ntgy-block-home-hero-v1__card-title-wrap {
  display: grid;
  align-items: end;
}

.ntgy-block-home-hero-v1__card.is-standard-card .ntgy-block-home-hero-v1__card-title-wrap {
  align-items: center;
}

.ntgy-block-home-hero-v1__card-separator {
  display: block;
  width: 100%;
  height: 1px;
  border-block-start: 1px dashed var(--ntgy-color-blue-20);
}

.ntgy-block-home-hero-v1__card.is-standard-card .ntgy-block-home-hero-v1__card-separator {
  margin-block-start: 0;
}

.ntgy-block-home-hero-v1__card.is-multimedia-card .ntgy-block-home-hero-v1__card-title {
  color: var(--ntgy-color-white);
}

.ntgy-block-home-hero-v1__card.is-multimedia-card .ntgy-block-home-hero-v1__card-title-wrap {
  min-height: auto;
}

.ntgy-block-home-hero-v1__card-date {
  color: var(--ntgy-color-blue-80);
  font-size: var(--ntgy-font-size-small);
  line-height: 1;
}

.ntgy-block-home-hero-v1__card.is-multimedia-card .ntgy-block-home-hero-v1__card-date {
  color: var(--ntgy-color-white);
}

.ntgy-block-home-hero-v1__card.is-standard-card .ntgy-block-home-hero-v1__card-date {
  height: 0.875rem;
  overflow: hidden;
  padding-block-start: 0;
}

.ntgy-block-home-hero-v1__card-player {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ntgy-spacing-xs);
  width: 100%;
  color: var(--ntgy-color-white);
  font-size: 0.875rem;
  line-height: 1;
}

.ntgy-block-home-hero-v1__card-play,
.ntgy-block-home-hero-v1__card-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}

.ntgy-block-home-hero-v1__card-play {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.ntgy-block-home-hero-v1__card-play-label {
  font-weight: 600;
  white-space: nowrap;
}

.ntgy-block-home-hero-v1__card-play-icon {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: var(--ntgy-radius-pill);
  background: var(--ntgy-color-white);
}

.ntgy-block-home-hero-v1__card-play-icon::before {
  width: 1.575rem;
  height: 1.575rem;
  background: var(--ntgy-color-blue-100);
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 25.2 25.2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.4848 9.04837C10.7849 8.62846 9.89453 9.13258 9.89453 9.94874V15.2515C9.89453 16.0676 10.7849 16.5717 11.4848 16.1518L15.9037 13.5005C16.5834 13.0926 16.5834 12.1076 15.9037 11.6997L11.4848 9.04837Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 25.2 25.2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.4848 9.04837C10.7849 8.62846 9.89453 9.13258 9.89453 9.94874V15.2515C9.89453 16.0676 10.7849 16.5717 11.4848 16.1518L15.9037 13.5005C16.5834 13.0926 16.5834 12.1076 15.9037 11.6997L11.4848 9.04837Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ntgy-block-home-hero-v1__card-duration {
  gap: 0.375rem;
  white-space: nowrap;
}

.ntgy-block-home-hero-v1__card-duration-icon {
  position: relative;
  flex: 0 0 auto;
  width: 0.75375rem;
  height: 0.75375rem;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 12.0591 12.0591' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 9.7159V6.02954C0.5 4.56302 1.08257 3.15656 2.11957 2.11957C3.15656 1.08258 4.56302 0.5 6.02954 0.5C7.49607 0.5 8.90253 1.08258 9.93952 2.11957C10.9765 3.15656 11.5591 4.56302 11.5591 6.02954V9.7159M11.5591 10.3303C11.5591 10.6562 11.4296 10.9687 11.1992 11.1992C10.9687 11.4296 10.6562 11.5591 10.3303 11.5591H9.7159C9.39001 11.5591 9.07746 11.4296 8.84702 11.1992C8.61658 10.9687 8.48712 10.6562 8.48712 10.3303V8.48712C8.48712 8.16122 8.61658 7.84867 8.84702 7.61823C9.07746 7.38779 9.39001 7.25833 9.7159 7.25833H11.5591V10.3303ZM0.5 10.3303C0.5 10.6562 0.629461 10.9687 0.859903 11.1992C1.09035 11.4296 1.40289 11.5591 1.72879 11.5591H2.34318C2.66907 11.5591 2.98162 11.4296 3.21206 11.1992C3.44251 10.9687 3.57197 10.6562 3.57197 10.3303V8.48712C3.57197 8.16122 3.44251 7.84867 3.21206 7.61823C2.98162 7.38779 2.66907 7.25833 2.34318 7.25833H0.5V10.3303Z' fill='none' stroke='black' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 12.0591 12.0591' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 9.7159V6.02954C0.5 4.56302 1.08257 3.15656 2.11957 2.11957C3.15656 1.08258 4.56302 0.5 6.02954 0.5C7.49607 0.5 8.90253 1.08258 9.93952 2.11957C10.9765 3.15656 11.5591 4.56302 11.5591 6.02954V9.7159M11.5591 10.3303C11.5591 10.6562 11.4296 10.9687 11.1992 11.1992C10.9687 11.4296 10.6562 11.5591 10.3303 11.5591H9.7159C9.39001 11.5591 9.07746 11.4296 8.84702 11.1992C8.61658 10.9687 8.48712 10.6562 8.48712 10.3303V8.48712C8.48712 8.16122 8.61658 7.84867 8.84702 7.61823C9.07746 7.38779 9.39001 7.25833 9.7159 7.25833H11.5591V10.3303ZM0.5 10.3303C0.5 10.6562 0.629461 10.9687 0.859903 11.1992C1.09035 11.4296 1.40289 11.5591 1.72879 11.5591H2.34318C2.66907 11.5591 2.98162 11.4296 3.21206 11.1992C3.44251 10.9687 3.57197 10.6562 3.57197 10.3303V8.48712C3.57197 8.16122 3.44251 7.84867 3.21206 7.61823C2.98162 7.38779 2.66907 7.25833 2.34318 7.25833H0.5V10.3303Z' fill='none' stroke='black' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ntgy-block-home-hero-v1__slider-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

.ntgy-block-home-hero-v1__slider-dots,
.ntgy-block-home-hero-v1__slider-buttons {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.ntgy-block-home-hero-v1__slider-dots {
  width: 17.6875rem;
  height: 2.75rem;
}

.ntgy-block-home-hero-v1__slider-dot {
  flex: 1 1 0;
  height: 0.249375rem;
  padding: 0;
  border: 1px solid var(--ntgy-color-blue-80);
  border-radius: var(--ntgy-radius-pill);
  background: transparent;
  transition:
    flex-basis 320ms var(--ntgy-transition-timing),
    border-color 220ms var(--ntgy-transition-timing),
    background-color 220ms var(--ntgy-transition-timing);
}

.ntgy-block-home-hero-v1__slider-dot.is-active {
  flex: 0 0 8.0625rem;
  border-color: var(--ntgy-color-blue-100);
  background: var(--ntgy-color-blue-100);
}

.ntgy-block-home-hero-v1__slider-dot:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 2px var(--ntgy-color-white, #fff),
    0 0 0 5px var(--ntgy-color-blue-100, #004571);
}

.ntgy-block-home-hero-v1__slider-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.71375rem;
  height: 1.5rem;
  padding: 0;
  border: 0.0625rem solid var(--ntgy-color-blue-80);
  border-radius: var(--ntgy-radius-pill);
  color: var(--ntgy-color-blue-80);
  background: transparent;
}

.ntgy-block-home-hero-v1__slider-button.is-next {
  border-color: var(--ntgy-color-blue-100);
  color: var(--ntgy-color-white);
  background: var(--ntgy-color-blue-100);
}

.ntgy-block-home-hero-v1__slider-button.is-next:hover {
  border-color: var(--ntgy-color-orange-100, #e57200);
  background: var(--ntgy-color-orange-100, #e57200);
}

.ntgy-block-home-hero-v1__slider-button.is-next:focus-visible {
  border-color: var(--ntgy-color-blue-100, #004571);
  background: var(--ntgy-color-blue-100, #004571);
  box-shadow:
    0 0 0 2px var(--ntgy-color-white, #fff),
    0 0 0 5px var(--ntgy-color-blue-100, #004571);
  outline: 0;
}

.ntgy-block-home-hero-v1__slider-button:not(.is-next):hover,
.ntgy-block-home-hero-v1__slider-button:not(.is-next):focus-visible {
  border-width: 2px;
  border-color: var(--ntgy-color-blue-80, #336a8d);
  background: rgba(255, 255, 255, 0.01);
}

.ntgy-block-home-hero-v1__slider-button:not(.is-next):focus-visible {
  box-shadow:
    0 0 0 2px var(--ntgy-color-white, #fff),
    0 0 0 5px var(--ntgy-color-blue-100, #004571);
  outline: 0;
}

.ntgy-block-home-hero-v1__slider-button::before {
  width: 0.2135625rem;
  height: 0.427125rem;
  background: url("../../assets/images/icons/carousel-arrow-blue.svg") center / 100% 100% no-repeat;
  content: "";
}

.ntgy-block-home-hero-v1__slider-button.is-next::before {
  background-image: url("../../assets/images/icons/carousel-arrow-white.svg");
}

.ntgy-block-home-hero-v1__slider-button.is-prev::before {
  transform: rotate(180deg);
}

.ntgy-floating-video-player {
  position: fixed;
  inset-block-end: 1rem;
  inset-inline-start: clamp(1rem, 3vw, 4rem);
  z-index: 1000;
  width: min(26.75rem, var(--ntgy-mobile-module-width));
  pointer-events: none;
}

.ntgy-floating-video-player__container {
  display: grid;
  gap: var(--ntgy-spacing-xs);
  padding: var(--ntgy-spacing-xs);
  border-radius: var(--ntgy-radius-md);
  background: var(--ntgy-color-white);
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
}

.ntgy-floating-video-player__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.25rem;
}

.ntgy-floating-video-player__button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 0;
  border-radius: var(--ntgy-radius-pill);
  color: var(--ntgy-color-blue-100);
  background: var(--ntgy-color-grey-10, #f9f8f7);
  cursor: pointer;
}

.ntgy-floating-video-player__button::before {
  position: absolute;
  background: currentColor;
  content: "";
}

.ntgy-floating-video-player__button--expand::before {
  width: 0.875rem;
  height: 0.875rem;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 5V1.5H5M9 1.5h3.5V5M12.5 9v3.5H9M5 12.5H1.5V9' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='square'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 5V1.5H5M9 1.5h3.5V5M12.5 9v3.5H9M5 12.5H1.5V9' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='square'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ntgy-floating-video-player__button--close::before {
  width: 0.875rem;
  height: 0.875rem;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L12 12M12 2L2 12' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='square'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L12 12M12 2L2 12' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='square'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ntgy-floating-video-player__media {
  position: relative;
  display: grid;
  place-items: stretch;
  height: 15rem;
  overflow: hidden;
  padding: 0.25rem 0.5rem;
  border-radius: var(--ntgy-radius-md);
  background: var(--ntgy-color-blue-100);
}

.ntgy-floating-video-player__video,
.ntgy-floating-video-player__iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.ntgy-floating-video-player__controls {
  position: relative;
  z-index: 1;
  display: flex;
  align-self: end;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  padding: 0.25rem;
  border-radius: 2.75rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
}

.ntgy-floating-video-player__control-button {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.625rem;
  height: 2.625rem;
  padding: 0;
  border: 0;
  border-radius: var(--ntgy-radius-pill);
  background: var(--ntgy-color-blue-100);
  cursor: pointer;
}

.ntgy-floating-video-player__control-button--play::before {
  display: block;
  width: 0.6875rem;
  height: 1.164rem;
  margin: 0;
  border: 0;
  background: var(--ntgy-color-white);
  content: "";
  -webkit-mask: url("../../assets/icons/video-player-play.svg") center / contain no-repeat;
  mask: url("../../assets/icons/video-player-play.svg") center / contain no-repeat;
}

.ntgy-floating-video-player__control-button--play:not(.is-paused) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.ntgy-floating-video-player__control-button--play:not(.is-paused)::before,
.ntgy-floating-video-player__control-button--play:not(.is-paused)::after {
  display: block;
  width: 0.25rem;
  height: 1rem;
  margin: 0;
  border: 0;
  background: var(--ntgy-color-white);
  content: "";
  -webkit-mask: none;
  mask: none;
}

.ntgy-floating-video-player__control-button--volume::before {
  width: 1.5rem;
  height: 1.5rem;
  border: 0;
  background: var(--ntgy-color-white);
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 25.2 25.2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.2 10.15v4.9h3.15L12.6 19.6V5.6L7.35 10.15H4.2Zm11.2-1.75-1.3 1.3c.8.8 1.3 1.8 1.3 2.9s-.5 2.1-1.3 2.9l1.3 1.3c1.1-1.1 1.8-2.6 1.8-4.2s-.7-3.1-1.8-4.2Zm2.45-2.45-1.3 1.3c1.45 1.45 2.35 3.35 2.35 5.35s-.9 3.9-2.35 5.35l1.3 1.3c1.8-1.8 2.9-4.15 2.9-6.65s-1.1-4.85-2.9-6.65Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 25.2 25.2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.2 10.15v4.9h3.15L12.6 19.6V5.6L7.35 10.15H4.2Zm11.2-1.75-1.3 1.3c.8.8 1.3 1.8 1.3 2.9s-.5 2.1-1.3 2.9l1.3 1.3c1.1-1.1 1.8-2.6 1.8-4.2s-.7-3.1-1.8-4.2Zm2.45-2.45-1.3 1.3c1.45 1.45 2.35 3.35 2.35 5.35s-.9 3.9-2.35 5.35l1.3 1.3c1.8-1.8 2.9-4.15 2.9-6.65s-1.1-4.85-2.9-6.65Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ntgy-floating-video-player__control-button--volume::after {
  content: none;
}

.ntgy-floating-video-player__control-button--volume.is-muted::after {
  position: absolute;
  width: 1rem;
  height: 0.125rem;
  border: 0;
  border-radius: var(--ntgy-radius-pill);
  background: var(--ntgy-color-white);
  transform: rotate(45deg);
}

.ntgy-floating-video-player__timeline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  flex: 1 1 auto;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.ntgy-floating-video-player__time {
  color: var(--ntgy-color-blue-100);
  font-size: 0.75rem;
  line-height: 1.6333;
  letter-spacing: 0.004375rem;
  white-space: nowrap;
}

.ntgy-floating-video-player__range {
  --ntgy-video-progress: 0%;

  width: 100%;
  height: 0.25rem;
  accent-color: var(--ntgy-color-blue-100);
  background: linear-gradient(
    90deg,
    var(--ntgy-color-blue-100) 0%,
    var(--ntgy-color-blue-100) var(--ntgy-video-progress),
    rgba(0, 69, 113, 0.2) var(--ntgy-video-progress),
    rgba(0, 69, 113, 0.2) 100%
  );
  border-radius: var(--ntgy-radius-pill);
  appearance: none;
}

.ntgy-floating-video-player__range::-webkit-slider-thumb {
  width: 0.625rem;
  height: 0.625rem;
  border: 0;
  border-radius: var(--ntgy-radius-pill);
  background: var(--ntgy-color-blue-100);
  appearance: none;
}

.ntgy-floating-video-player__range::-moz-range-thumb {
  width: 0.625rem;
  height: 0.625rem;
  border: 0;
  border-radius: var(--ntgy-radius-pill);
  background: var(--ntgy-color-blue-100);
}

.ntgy-floating-video-player__fallback {
  display: grid;
  place-items: center;
  color: var(--ntgy-color-white);
  font-weight: 600;
  text-decoration: underline;
}

.ntgy-floating-video-player.is-expanded {
  width: min(70rem, var(--ntgy-mobile-module-width));
}

.ntgy-floating-video-player.is-expanded .ntgy-floating-video-player__media {
  height: auto;
  aspect-ratio: 16 / 9;
}

@media (max-width: 1023px) {
  .ntgy-block-home-hero-v1 {
    padding-block: 5rem;
  }

  .ntgy-block-home-hero-v1__heading-box {
    max-width: 20.1125rem;
    margin-block-end: 2rem;
  }

  .ntgy-block-home-hero-v1__heading {
    font-size: 3rem;
    line-height: 0.9;
  }

  .ntgy-block-home-hero-v1__inner {
    display: block;
  }

  .ntgy-block-home-hero-v1__media-column {
    display: none;
  }

  .ntgy-block-home-hero-v1__slider {
    gap: 1.1875rem;
  }

  .ntgy-block-home-hero-v1__slider-track {
    min-height: 28.875rem;
    gap: 0.75rem;
  }

  .ntgy-block-home-hero-v1__card {
    flex-basis: min(21.21875rem, calc(100vw - 3.375rem));
  }

  .ntgy-block-home-hero-v1__card-icon {
    inset-block-start: 1.5rem;
    inset-inline-start: 1.5rem;
  }

  .ntgy-block-home-hero-v1__card-content {
    gap: 1rem;
    padding: 1rem 1.5rem 1rem 2.5rem;
  }

  .ntgy-block-home-hero-v1__card-title {
    padding-block-end: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .ntgy-block-home-hero-v1__slider-navigation {
    gap: 2rem;
  }

  .ntgy-block-home-hero-v1__slider-dots {
    flex: 1 1 auto;
    min-width: 0;
  }

  .ntgy-block-home-hero-v1__slider-dot {
    flex: 1 1 0;
    width: auto;
  }

  .ntgy-block-home-hero-v1__slider-dot.is-active {
    flex: 1 1 6.98125rem;
    width: auto;
  }

  .ntgy-floating-video-player {
    inset-inline-start: 1rem;
  }
}

@media (min-width: 1024px) {
  .ntgy-block-home-hero-v1 {
    padding-block: 4.125rem 3.4375rem;
  }

  .ntgy-block-home-hero-v1.alignfull .ntgy-block-home-hero-v1__inner {
    max-width: var(--ntgy-layout-full-max);
    margin-inline: auto;
  }

  .ntgy-block-home-hero-v1.alignfull .ntgy-block-home-hero-v1__heading-box {
    margin-inline-start: max(0px, calc((100% - var(--ntgy-layout-full-max)) / 2));
  }

  .ntgy-block-home-hero-v1__inner {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: var(--ntgy-spacing-md);
    align-items: end;
  }

  .ntgy-block-home-hero-v1__posts-column {
    min-height: 28.875rem;
  }

  .ntgy-block-home-hero-v1__posts-placeholder {
    min-height: 28.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ntgy-block-home-hero-v1__card,
  .ntgy-block-home-hero-v1__card-image,
  .ntgy-block-home-hero-v1__card-image-placeholder {
    transition: none;
  }

  .ntgy-block-home-hero-v1__card:has(.ntgy-block-home-hero-v1__card-title-link:hover) .ntgy-block-home-hero-v1__card-image,
  .ntgy-block-home-hero-v1__card:has(.ntgy-block-home-hero-v1__card-title-link:focus-visible) .ntgy-block-home-hero-v1__card-image,
  .ntgy-block-home-hero-v1__card:has(.ntgy-block-home-hero-v1__card-title-link:hover) .ntgy-block-home-hero-v1__card-image-placeholder,
  .ntgy-block-home-hero-v1__card:has(.ntgy-block-home-hero-v1__card-title-link:focus-visible) .ntgy-block-home-hero-v1__card-image-placeholder {
    transform: none;
  }
}
