.carousel{
    max-height: 450px;
    /* width: 100vw; */
    /* margin-top: 40px; */
    margin-bottom: 50px;
    max-width: 50rem; 
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: flex-start;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    /* border-radius: 13px; */
  }
  .carousel-inner{
    height: 100%;
    /* min-width: 400%; */
    display: flex;
    /* scroll-behavior: smooth;  */
    transition: all ease .9s;
  }
  .carousel-item{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .carousel-item img{
    width:100%;
  }

  .carousel-controls .prev{
    display: inline-block;
    height: 32px;
    width: 32px;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background-image:url(../img/prev.svg);
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    cursor: pointer;
    opacity: .5;
  }
  .carousel-controls .next{
    display: inline-block;
    height: 32px;
    width: 32px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../img/next.svg);
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    cursor: pointer;
    opacity: .5;
  }
  .prev:hover, .next:hover{
    opacity: 1;
  }
/*   .carousel-indicators{
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  .carousel-indicators span{
    display: inline-block;
    background-color: white;
    width: 25px;
    height: 4px;
    border-radius: 2px;
    opacity: .5;
    cursor: pointer;
    margin: 3px;
  }
  .carousel-indicators span.active{
    opacity: 1;
  } */
