.hero-03 {
  background-color: var(--color-primary-dark);
  overflow: hidden;
  padding-top: 80px;
  position: relative;
  z-index: 1;
}

.hero-03__bg-shape,
.hero-03__sec-shape {
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.hero-03__bg-shape {
  right: 0;
  top: 0;
}

.hero-03__sec-shape {
  left: 0;
  top: 38%;
  transform: translateY(-50%);
}

.hero-03__bg-shape img,
.hero-03__sec-shape img {
  display: block;
  max-width: 100%;
  opacity: 0.78;
}

.hero-03__content {
  margin: 0 auto;
  max-width: 980px;
  padding-bottom: 370px;
  text-align: center;
}

.hero-03__eyebrow {
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero-03__title {
  color: var(--color-surface);
  font-size: var(--type-display, 76px);
  line-height: 1.02;
  margin: 0 0 28px;
  text-transform: capitalize;
}

.hero-03__title span {
  color: var(--color-surface);
  font-weight: 300;
}

.hero-03__subtitle {
  color: color-mix(in srgb, var(--color-surface) 78%, transparent);
  font-size: var(--type-body-lg, 17px);
  font-weight: 500;
  line-height: 1.72;
  margin: 0 auto 28px;
  max-width: 780px;
}

.hero-03__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.hero-03__primary {
  align-items: center;
  border-radius: var(--radius-pill);
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  line-height: 1;
  min-height: 58px;
  padding: 0 28px;
  text-decoration: none;
  transition: background-color 300ms ease, border-color 300ms ease, color 300ms ease, transform 300ms ease;
}

.hero-03__primary {
  background-color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  color: var(--color-text-primary);
}

.hero-03__secondary {
  align-items: center;
  color: var(--color-surface);
  display: inline-flex;
  font-size: 16px;
  font-weight: 800;
  gap: 10px;
  line-height: 1;
  min-height: 55px;
  padding: 0;
  text-decoration: none;
  transition: color 300ms ease, transform 300ms ease;
}

.hero-03__secondary i {
  align-items: center;
  background-color: color-mix(in srgb, var(--color-primary) 60%, var(--color-primary-dark));
  border-radius: 50%;
  color: var(--color-surface);
  display: inline-flex;
  flex: 0 0 auto;
  height: 55px;
  justify-content: center;
  transition: background-color 300ms ease, color 300ms ease;
  width: 55px;
}

.hero-03__primary:hover,
.hero-03__primary:focus-visible {
  background-color: var(--color-surface);
  border-color: var(--color-surface);
  color: var(--color-text-primary);
  outline: 0;
  transform: translateY(-2px);
}

.hero-03__secondary:hover,
.hero-03__secondary:focus-visible {
  color: var(--color-secondary);
  outline: 0;
  transform: translateY(-2px);
}

.hero-03__secondary:hover i,
.hero-03__secondary:focus-visible i {
  background-color: var(--color-secondary);
  color: var(--color-text-primary);
}

.hero-03__media {
  margin-top: -270px;
  position: relative;
  z-index: 2;
}

.hero-03__image-box {
  background-color: var(--color-text-primary);
  border-radius: 33px;
  box-shadow: none;
  overflow: hidden;
}

.hero-03__slider {
  width: 100%;
}

.hero-03__slide-link,
.hero-03__slide-frame {
  display: block;
  position: relative;
}

.hero-03__slide-link {
  color: inherit;
  text-decoration: none;
}

.hero-03__slide-image {
  aspect-ratio: 1290 / 640;
  background-color: var(--color-primary-dark);
  display: block;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.hero-03__slide-image::after {
  background: linear-gradient(180deg, color-mix(in srgb, var(--color-primary-dark) 18%, transparent) 0%, color-mix(in srgb, var(--color-primary-dark) 48%, transparent) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-03__slide-image img {
  display: block;
  height: 100%;
  opacity: 0.6;
  object-fit: cover;
  transform: scale(1.02);
  transition: opacity 300ms ease, transform 500ms ease;
  width: 100%;
}

.hero-03__slide-link:hover .hero-03__slide-image img,
.hero-03__slide-link:focus-visible .hero-03__slide-image img {
  opacity: 0.72;
  transform: scale(1.05);
}

.hero-03__caption {
  background-color: color-mix(in srgb, var(--color-text-primary) 74%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-surface) 18%, transparent);
  border-radius: var(--radius-pill);
  bottom: 28px;
  color: var(--color-surface);
  font-size: 14px;
  font-weight: 800;
  left: 28px;
  line-height: 1;
  padding: 13px 18px;
  position: absolute;
  z-index: 2;
}

.hero-03__nav {
  align-items: center;
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--color-surface) 28%, transparent);
  border-radius: 50%;
  color: var(--color-surface);
  display: inline-flex;
  height: 65px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 15px;
  transition: background-color 300ms ease, border-color 300ms ease, color 300ms ease;
  width: 65px;
  z-index: 3;
}

.hero-03__nav:hover,
.hero-03__nav:focus-visible {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-text-primary);
  outline: 0;
}

.hero-03__nav--prev {
  left: 30px;
}

.hero-03__nav--next {
  right: 30px;
}

.hero-03__dots {
  bottom: 22px !important;
}

.hero-03__dots .swiper-pagination-bullet {
  background: var(--color-surface);
  opacity: 0.42;
}

.hero-03__dots .swiper-pagination-bullet-active {
  background: var(--color-secondary);
  opacity: 1;
}

@media (max-width: 1499.98px) {
  .hero-03__nav--prev {
    left: 5px;
  }

  .hero-03__nav--next {
    right: 5px;
  }
}

@media (max-width: 1199.98px) {
  .hero-03__title {
    font-size: 68px;
  }

}

@media (max-width: 991.98px) {
  .hero-03__nav {
    display: none;
  }

  .hero-03__content {
    padding-bottom: 300px;
  }
}

@media (max-width: 767.98px) {
  .hero-03 {
    padding-top: 70px;
  }

  .hero-03__content {
    padding-bottom: 70px;
  }

  .hero-03__sec-shape {
    display: none;
  }

  .hero-03__title {
    font-size: 42px;
    line-height: 1.12;
  }

  .hero-03__subtitle {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-03__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-03__media {
    margin-top: 30px;
  }

  .hero-03__image-box {
    border-radius: 18px;
  }

  .hero-03__slide-image {
    aspect-ratio: 4 / 3;
  }

  .hero-03__caption {
    bottom: 16px;
    left: 16px;
  }

}

@media (max-width: 575.98px) {
  .hero-03__primary {
    width: 100%;
  }

  .hero-03__secondary {
    justify-content: center;
  }
}
