.bhs-slider {
  --bhs-height-desktop: 692px;
  --bhs-height-mobile: 443px;

  --bhs-stripe-red: #cc0000;
  --bhs-stripe-yellow: #f5c400;
  --bhs-stripe-thickness: 6px;

  --bhs-dot-size: 10px;
  --bhs-dot-active: #ffffff;
  --bhs-dot-inactive: rgba(255,255,255,0.45);

  --bhs-transition: 800ms cubic-bezier(0.77, 0, 0.18, 1);

  position: relative;
  width: 100%;
  height: var(--bhs-height-desktop);
  overflow: hidden;
  display: block;
  line-height: 0;
}

/* Slides */

.bhs-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform var(--bhs-transition);
  will-change: transform;
}

.bhs-slide {
  width: 100%;
  min-width: 100%
  height: 100%;
  flex: 0 0 100%;
  position: relative;
}

.bhs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Decorative stripes */

/* Top stripes */

.bhs-stripes {
  position: absolute;
  top: 0;
  
  width: 35%;

  z-index: 2;
  pointer-events: none;

  display: flex;
  flex-direction: column;
}

/* Bottom stripes */

.bhs-stripes-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  
  width: 35%;

  z-index: 2;
  pointer-events: none;

  display: flex;
  flex-direction: column-reverse;
}

.bhs-stripe-red {
  width: 100%;
  height: var(--bhs-stripe-thickness);
  background: var(--bhs-stripe-red);
}

.bhs-stripe-yellow {
  width: 100%;
  height: var(--bhs-stripe-thickness);
  background: var(--bhs-stripe-yellow);
}

/* Logo */

.bhs-logo {
  position: absolute;
  right: 48px;
  bottom: 40px;
  z-index: 2;

  padding: 16px 20px 12px;

  background: rgba(255,255,255,0.88);

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  line-height: 0;
  pointer-events: none;
}

.bhs-logo img {
  display: block;
  width: auto;
  height: 80px;
  max-width: 220px;
  object-fit: contain;
}

/* Navigation arrows */

.bhs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 44px;
  height: 44px;

  z-index: 2;

  border: 0;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.28);

  transition: background 0.2s ease;
}

.bhs-arrow:hover {
  background: rgba(0,0,0,0.52);
}

.bhs-arrow svg {
  width: 20px;
  height: 20px;

  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bhs-arrow-prev {
  left: 20px;
}

.bhs-arrow-next {
  right: 20px;
}

/* Pagination */

.bhs-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;

  transform: translateX(-50%);

  display: flex;
  align-items: center;
  gap: 8px;

  z-index: 20;
}

.bhs-dot {
  width: var(--bhs-dot-size);
  height: var(--bhs-dot-size);

  border: 0;
  border-radius: 50%;

  padding: 0;
  cursor: pointer;

  background: var(--bhs-dot-inactive);

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.bhs-dot.is-active {
  background: var(--bhs-dot-active);
  transform: scale(1.3);
}

/* Mobile */

@media (max-width: 767px) {

  .bhs-slider {
    height: var(--bhs-height-mobile);
  }

  .bhs-logo {
    right: 16px;
    bottom: 32px;
    padding: 10px 12px 8px;
  }

  .bhs-logo img {
    height: 52px;
  }

  .bhs-arrow {
    width: 36px;
    height: 36px;
  }
}