/* haravan-audit:v2 */
.bs_hero-slide {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--header-height, 100px));
  min-height: 480px;
  max-height: 900px;
  overflow: hidden;
  background: #111;
  margin-top: 0; }

.bs_hero-slide__track {
  position: relative;
  width: 100%;
  height: 100%; }

.bs_hero-slide__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none; }

.bs_hero-slide__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2; }

.bs_hero-slide__slide.is-leaving {
  opacity: 0;
  z-index: 1; }

.bs_hero-slide__link {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0; }

.bs_hero-slide__picture {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.bs_hero-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease; }

.bs_hero-slide__img.is-placeholder {
  background: #1a1a1a; }

@media (hover: hover) and (min-width: 768px) {
  .bs_hero-slide__link:hover .bs_hero-slide__img,
  .bs_hero-slide__slide:hover .bs_hero-slide__img {
    /*transform: scale(1.04);*/ } }

.bs_hero-slide__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0; }

.bs_hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 70%);
  z-index: 1; }

.bs_hero-slide__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding-top: 32px;
  padding-bottom: 32px; }

.bs_hero-slide__content .container {
  width: 100%; }

.bs_hero-slide__content-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 56px; }

.bs_hero-slide__text-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0; }

.bs_hero-slide__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: -1px;
  color: #fff;
  text-transform: uppercase;
  margin: 0; }

.bs_hero-slide__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0a0a0a;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: -0.1px;
  text-transform: uppercase;
  padding: 10px 40px;
  min-height: 48px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  align-self: flex-start; }

.bs_hero-slide__btn:hover {
  background: #0a6174;
  color: #fff; }

.bs_hero-slide__counter {
  display: none; }

.bs_hero-slide__counter-text {
  font-family: var(--font-body);
  font-size: 0;
  line-height: 0;
  letter-spacing: -0.2px;
  color: #fff;
  white-space: nowrap;
  margin: 0; }

.bs_hero-slide__counter-current {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.2px;
  color: #fff; }

.bs_hero-slide__counter-sep {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.2px;
  color: #fff; }

.bs_hero-slide__progress {
  position: relative;
  width: 83px;
  height: 1px;
  margin-top: 2px; }

.bs_hero-slide__progress-track {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35); }

.bs_hero-slide__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #fff;
  transition: width 0.5s ease;
  width: 25%; }

.bs_hero-slide__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0; }

.bs_hero-slide__nav:hover {
  color: #fff; }

.bs_hero-slide__nav--prev {
  left: 40px; }

.bs_hero-slide__nav--next {
  right: 40px; }

.bs_hero-slide__nav svg {
  display: block; }

@media (max-width: 991px) {
  .bs_hero-slide {
    max-height: 600px; }
  .bs_hero-slide__content {
    padding-top: 24px;
    padding-bottom: 24px; }
  .bs_hero-slide__content-inner {
    gap: 24px; }
  .bs_hero-slide__title {
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -0.5px;
    white-space: normal; }
  .bs_hero-slide__btn {
    padding: 10px 24px;
    font-size: 14px; }
  .bs_hero-slide__nav--prev {
    left: 12px; }
  .bs_hero-slide__nav--next {
    right: 12px; } }

@media (max-width: 767px) {
  .bs_hero-slide {
    max-height: 520px;
    min-height: 360px; }
  .bs_hero-slide__counter {
    display: none; }
  .bs_hero-slide__title {
    font-size: 20px;
    line-height: 28px; }
  .bs_hero-slide__nav {
    width: 32px;
    height: 32px; }
  .bs_hero-slide__nav--prev {
    left: 8px; }
  .bs_hero-slide__nav--next {
    right: 8px; } }

.bs_hero-slide__overlay {
  display: none; }
