.c-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 480px;
}
@media (min-width: 768px) {
  .c-hero {
    min-height: 620px;
  }
}
.c-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.c-hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  width: 100%;
  max-width: 1184px;
  margin: 0 auto;
  padding: 48px 16px;
}
.c-hero--image-center .c-hero__inner {
  justify-content: flex-start;
  padding: 100px 16px 48px;
}
@media (min-width: 768px) {
  .c-hero--image-center .c-hero__inner {
    padding: 100px 40px 64px;
  }
}
@media (min-width: 1200px) {
  .c-hero--image-center .c-hero__inner {
    padding: 100px 0 64px;
  }
}
@media (min-width: 768px) {
  .c-hero__inner {
    padding: 64px 40px;
  }
}
@media (min-width: 1200px) {
  .c-hero__inner {
    padding: 64px 0;
  }
}
.c-hero__breadcrumb {
  position: relative;
  z-index: 3;
  max-width: 1184px;
  width: 100%;
  margin: 50px auto 0;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .c-hero__breadcrumb {
    padding: 0 40px;
  }
}
@media (min-width: 1200px) {
  .c-hero__breadcrumb {
    padding: 0;
  }
}
.c-hero__breadcrumb > div[id^=block-] {
  display: contents;
}
.c-hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media (min-width: 768px) {
  .c-hero__content {
    gap: 24px;
  }
}
.c-hero__title {
  font-family: var(--primary-font);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  line-height: 1.33;
  color: #1c2024;
  margin: 0;
}
@media (min-width: 768px) {
  .c-hero__title {
    font-size: var(--font-size-5xl);
    line-height: 1;
  }
}
.c-hero__title em,
.c-hero__title strong {
  font-style: normal;
  color: var(--color-primary);
}
.c-hero__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: var(--font-size-sm);
  line-height: normal;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 8px 20px;
  width: fit-content;
  margin: 0;
  order: -1;
}
.c-hero__subtitle::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #0EA5E9;
  flex-shrink: 0;
}
.c-hero__description {
  font-family: var(--primary-font);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.57;
  color: #1c2024;
  margin: 0;
}
@media (min-width: 768px) {
  .c-hero__description {
    font-size: var(--font-size-lg);
    line-height: 1.5;
  }
}
.c-hero__description p {
  margin: 0;
}
.c-hero__cta {
  margin-top: 8px;
}
.c-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 4px;
  font-family: var(--primary-font);
  font-size: var(--font-size-base);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  background-color: #081462;
  border: none;
}
.c-hero__btn:hover {
  opacity: 0.9;
}
.c-hero--image-center {
  min-height: 724px;
  background: #ffffff;
}
.c-hero--image-center .c-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(1, 59, 121, 0.31);
  pointer-events: none;
}
.c-hero--image-center::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0) 88%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0) 88%);
}
.c-hero--image-center::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 26.4%, rgba(255, 255, 255, 0) 100%);
}
.c-hero--image-center .c-hero__bg-image {
  object-position: center 25%;
  filter: saturate(0.76) contrast(0.7) brightness(1.3) hue-rotate(8deg);
}
.c-hero--image-center .c-hero__content {
  gap: 32px;
}
.c-hero--image-center .c-hero__description {
  color: #1c2024;
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
.c-hero--image-center .c-hero__subtitle {
  color: #1c2024;
  background: rgba(28, 32, 36, 0.06);
  border-color: rgba(28, 32, 36, 0.15);
}
.c-hero--image-center .c-hero__subtitle::before {
  background: var(--color-primary, #1557b5);
}
.c-hero--image-center .btn.btn-secondary {
  background: none;
  transition: background 0.5s ease, color 0.5s ease, border-color 0.5s ease;
  padding: 16px;
  line-height: 1;
  text-decoration: none;
  border-radius: 8px;
  z-index: 1;
  border-width: 1px;
}
.c-hero--image-center .btn.btn-secondary:hover {
  background: var(--color-primary, #1557b5);
  color: #fff;
  border-color: var(--color-primary, #1557b5);
}
.c-hero--image-center .c-hero__content, .c-hero--gradient-center .c-hero__content {
  max-width: 685px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}
.c-hero--image-left .c-hero__content, .c-hero--gradient-left .c-hero__content {
  max-width: 760px;
  margin: 0;
  align-items: flex-start;
  text-align: left;
}
.c-hero--gradient-center::after, .c-hero--gradient-left::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background-image: radial-gradient(circle, #0066cc 6px, transparent 6px);
  background-size: 48px 48px;
  background-position: center bottom;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 60%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 60%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}
.c-hero--video-left {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: #ffffff;
  flex-direction: column;
}
@media (min-width: 768px) {
  .c-hero--video-left {
    min-height: 623px;
  }
}
.c-hero--video-left .c-hero__inner {
  max-width: 1184px;
  padding: 48px 16px;
}
@media (min-width: 768px) {
  .c-hero--video-left .c-hero__inner {
    padding: 60px 40px;
  }
}
@media (min-width: 1200px) {
  .c-hero--video-left .c-hero__inner {
    padding: 60px 0;
  }
}
.c-hero--video-left .c-breadcrumb__link,
.c-hero--video-left .c-breadcrumb__current {
  color: #1c2024;
}
.c-hero--video-left .c-breadcrumb__item + .c-breadcrumb__item::before {
  border-color: rgba(28, 32, 36, 0.4);
}
.c-hero--video-left .c-hero__content {
  max-width: 685px;
  gap: 32px;
  align-items: flex-start;
  text-align: left;
}
.c-hero--video-left .c-hero__title {
  font-size: var(--font-size-3xl);
  color: #1c2024;
}
@media (min-width: 768px) {
  .c-hero--video-left .c-hero__title {
    font-size: var(--font-size-6xl);
    line-height: 1;
  }
}
.c-hero--video-left .c-hero__description {
  font-family: var(--secondary-font, "Barlow", sans-serif);
  font-size: var(--font-size-lg);
}
@media (min-width: 768px) {
  .c-hero--video-left .c-hero__description {
    font-size: var(--font-size-xl);
    line-height: 1.4;
  }
}
.c-hero--video-left .c-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 4px;
  border: 1px solid var(--color-accent-content);
  color: var(--color-primary-content);
  background: var(--color-accent-content);
  font-family: var(--primary-font);
  font-size: var(--font-size-sm);
  font-style: normal;
  font-weight: 600;
  line-height: 1.8;
  text-decoration: none;
}
.c-hero--video-left .c-hero__btn:hover {
  background: #0031a0;
  border-color: #0031a0;
}
.c-hero--video-left .c-hero__video-col {
  display: none;
}
@media (min-width: 768px) {
  .c-hero--video-left .c-hero__video-col {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 57.6%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(to right, #f5fafd 0%, #c8ddf5 20%, #8fbef4 45%, #3d78f2 60%, #d9e8f0 85%, #dce8f2 100%);
  }
}
.c-hero--video-left .c-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.c-hero--video-left .c-hero__video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.c-hero--video-left .c-hero__video-facade {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  background: rgba(8, 20, 98, 0.28);
  color: #fff;
  cursor: pointer;
  font-family: var(--primary-font);
  font-weight: 600;
  padding: 0;
}
.c-hero--video-left .c-hero__video-facade-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #081462;
}
.c-hero--video-left .c-hero__video-col.is-playing .c-hero__video {
  opacity: 1;
}
.c-hero--video-left .c-hero__video-col.is-playing .c-hero__video-poster,
.c-hero--video-left .c-hero__video-col.is-playing .c-hero__video-facade {
  display: none;
}
.c-hero--video-left .c-hero__text-fade {
  display: none;
}
@media (min-width: 768px) {
  .c-hero--video-left .c-hero__text-fade {
    display: block;
    position: absolute;
    top: 0;
    left: calc(42.4% - 100px);
    width: 280px;
    height: 100%;
    background: linear-gradient(to right, #ffffff 35%, transparent 100%);
    pointer-events: none;
    z-index: 2;
  }
}
.c-hero--video-left .c-hero__blur-overlay {
  display: none;
}
@media (min-width: 768px) {
  .c-hero--video-left .c-hero__blur-overlay {
    display: block;
    position: absolute;
    top: 0;
    left: calc(42.4% - 60px);
    width: 240px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }
  .c-hero--video-left .c-hero__blur-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 25%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 25%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  }
  .c-hero--video-left .c-hero__blur-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    mask-image: linear-gradient(to bottom, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.8) 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.8) 100%);
  }
}
.c-hero--video-left .c-hero__video-toggle {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 4;
  display: none;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 24px;
  border: 1px solid var(--color-primary, #1557b5);
  background: transparent;
  color: var(--color-primary, #1557b5);
  font-family: var(--primary-font);
  font-size: var(--font-size-sm);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.c-hero--video-left .c-hero__video-toggle:hover {
  background: rgba(21, 87, 181, 0.08);
}
.c-hero--video-left .c-hero__video-toggle .c-hero__toggle-icon--pause {
  display: block;
}
.c-hero--video-left .c-hero__video-toggle .c-hero__toggle-icon--play {
  display: none;
}
.c-hero--video-left .c-hero__video-toggle[aria-pressed=true] .c-hero__toggle-icon--pause {
  display: none;
}
.c-hero--video-left .c-hero__video-toggle[aria-pressed=true] .c-hero__toggle-icon--play {
  display: block;
}
.c-hero--video-left .c-hero__video-col.is-playing .c-hero__video-toggle {
  display: inline-flex;
}
.c-hero--gradient-center, .c-hero--gradient-left {
  background: linear-gradient(164deg, #030d2e 0%, #081462 35%, #0a2d8c 65%, #1d72d1 100%);
}
.c-hero--gradient-center .c-hero__title, .c-hero--gradient-left .c-hero__title {
  color: #ffffff;
  font-size: var(--font-size-3xl);
}
@media (min-width: 768px) {
  .c-hero--gradient-center .c-hero__title, .c-hero--gradient-left .c-hero__title {
    font-size: var(--font-size-6xl);
    line-height: 1;
  }
}
.c-hero--gradient-center .c-hero__title em,
.c-hero--gradient-center .c-hero__title strong, .c-hero--gradient-left .c-hero__title em,
.c-hero--gradient-left .c-hero__title strong {
  font-style: normal;
  background: linear-gradient(90deg, #93c5fd 0%, #38bdf8 50%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-hero--gradient-center .c-hero__description, .c-hero--gradient-left .c-hero__description {
  color: #ffffff;
  font-size: var(--font-size-lg);
  line-height: 1.5;
}
.c-hero--gradient-center .c-hero__description p, .c-hero--gradient-left .c-hero__description p {
  color: inherit;
}
.c-hero--gradient-center .c-hero__btn, .c-hero--gradient-left .c-hero__btn {
  background: #ffffff;
  color: var(--color-primary);
}
.c-hero--gradient-center .c-hero__btn:hover, .c-hero--gradient-left .c-hero__btn:hover {
  background: rgba(255, 255, 255, 0.9);
}
.c-hero--gradient-center .c-breadcrumb__link,
.c-hero--gradient-center .c-breadcrumb__current, .c-hero--gradient-left .c-breadcrumb__link,
.c-hero--gradient-left .c-breadcrumb__current {
  color: #ffffff;
}
.c-hero--gradient-center .c-breadcrumb__item + .c-breadcrumb__item::before, .c-hero--gradient-left .c-breadcrumb__item + .c-breadcrumb__item::before {
  border-top-color: rgba(255, 255, 255, 0.5);
  border-right-color: rgba(255, 255, 255, 0.5);
}
.c-hero--private-area {
  background: #ffffff;
  min-height: auto;
  padding: 0;
}
.c-hero--private-area .c-hero__inner {
  padding: 32px 16px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .c-hero--private-area .c-hero__inner {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .c-hero--private-area .c-hero__inner {
    padding: 40px 0;
  }
}
.c-hero--private-area .c-hero__breadcrumb {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .c-hero--private-area .c-hero__breadcrumb {
    margin-top: 40px;
  }
}
.c-hero--private-area .c-hero__content {
  max-width: 100%;
  gap: 8px;
  margin: 0;
  align-items: flex-start;
  text-align: left;
}
.c-hero--private-area .c-hero__title {
  font-size: var(--font-size-3xl);
  color: var(--color-accent-content, #081462);
  line-height: 1.2;
}
@media (min-width: 768px) {
  .c-hero--private-area .c-hero__title {
    font-size: var(--font-size-4xl);
    line-height: 1.2;
  }
}
.c-hero--private-area .c-hero__title em,
.c-hero--private-area .c-hero__title strong {
  font-style: normal;
  color: var(--color-primary);
}
.c-hero--private-area .c-hero__description {
  max-width: 790px;
  color: #1C2024;
  font-family: var(--primary-font, Inter);
  font-size: 18px;
  font-style: normal;
  font-weight: var(--font-weight-normal, 400);
  line-height: 28px;
  margin-top: 8px;
}
.c-hero--private-area .c-breadcrumb__link,
.c-hero--private-area .c-breadcrumb__current {
  color: #1c2024;
}
.c-hero--private-area .c-breadcrumb__item + .c-breadcrumb__item::before {
  border-top-color: rgba(28, 32, 36, 0.5);
  border-right-color: rgba(28, 32, 36, 0.5);
}

.hero h1,
.hero-title {
  line-height: 1;
}