  .carousel {
  margin: 0 auto;
  width: 100%;
  height: 58vh;
  position: relative;
}
.carousel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel__track-container {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.carousel__track {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  transition: transform 500ms ease-in;
}
.carousel__slide {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
}

.carousel__btn:focus{
      outline: 0px dotted;
}
.carousel__btn {
  position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff00;
    border: none;
    font-size: 3.5rem;
    color: #e2001a;
    cursor: pointer;
    outline: none;
    transition: all 250ms ease;
}
.carousel__btn--l {
  left: 2rem;
  z-index: 10;
}
.carousel__btn--l:hover {
  transform: translate(-0.5rem, -50%);
}
.carousel__btn--l:active {
  transform: translate(-0.5rem, -50%) scale(0.9);
}
.carousel__btn--r {
  right: 2rem;
  z-index: 10;
}
.carousel__btn--r:hover {
  transform: translate(0.5rem, -50%);
}
.carousel__btn--r:active {
  transform: translate(0.5rem, -50%) scale(0.9);
}
.carousel__nav {
  display: flex;
  justify-content: center;
  margin-top: -1.5rem;
}
.carousel__indicator {
  width: 1.5rem;
  height: 0.5rem;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  transform: skewX(155deg);
  margin: 0 0.4rem;
  outline: none;
  cursor: pointer;
}
.carousel__active {
  background: white;
}

.isHidden {
  display: none;
}