.carousel {
  position: relative;
  display: flex;
}

.carousel__container{
  width: 100%;
  overflow: hidden;
}

.carousel__item{
  display: flex;
}

.carousel__content{
  display: flex;
  min-width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
}

.carousel-navigate-left,
.carousel-navigate-right {
  z-index: 2;
  position: absolute;
  align-self: center;
}

.carousel-navigate-right{
  right: 0;
}

.carousel__content-item{
  margin: auto;
}
