#hero {
  height: fit-content;
}

.hero-image,
.hero-video {
  width: 100%;
  height: 650px;
  border-radius: 0px 0px 50px 0px;
  object-fit: cover;
}

.hero-image,
.hero-video {
  border-radius: 0;
}

.hero-sidebar {
  width: 30%;
  height: 700px;
  min-width: 320px;
  background-color: var(--header-bg);
  padding: 0 40px;
  position: relative;
}

@media screen and (max-width: 425px) {
  .hero-sidebar {
    height: 580px;
  }

  .hero-image,
  .hero-video {
    height: 550px;
  }
}

.image-slider {
  position: relative;
}

.slider-btn {
  width: 10px;
  height: 10px;
  background-color: var(--header-text);
  border-radius: 50%;
  margin-right: 0.5rem;
  border: none;
}

.slider-btn.active {
  background-color: #d89685;
  cursor: default;
  pointer-events: none;
}

.video-control {
  width: fit-content;
  color: var(--header-text);
  border: none;
  background: none;
  font-weight: 300;
}

.slider-btn-wrapper {
  margin: 10px 40px 0 0;
}