

        .carousel .carousel-indicators li {
            flex: 0 1 auto;
            width: 1.25rem;
            height: 1.25rem;
            margin-right: 0.3125rem;
            margin-left: 0.3125rem;
			      margin-bottom: 0.3125rem;
            background-color: #c0c0c0;
            border: 2px solid #c0c0c0;
            border-radius: 50%;
        }
        .carousel .carousel-indicators .active {
            background-color: #652694;
        }



  .carousel {
    margin: 0 auto;
    position: relative;
  }

  .carousel .carousel-window {
    width: 100%;
    height: clamp(9.688rem, -0.426rem + 50.57vw, 37.5rem);
    position: relative;
    overflow: hidden;
  }

  .carousel .carousel-slides {
    height: 100%;
    display: flex;
    transition: transform 0.5s;
  }

  .carousel .carousel-items {
    height: 100%;
    width: 100%;
    display: none;
  }

  .carousel .carousel-items img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .carousel-prev,
  .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding-top: 5px;
    color: rgba(101, 38, 148, .7);
    opacity: 0.7;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
  }

  .carousel-prev:hover,
  .carousel-next:hover {
    opacity: 1;
    color: rgb(101, 38, 148);
    padding-top: 5px;
    text-decoration: none;
    background-color: rgba(192, 192, 192, 0.2);
  }

  .carousel-prev {
    left: 20px;
  }

  .carousel-next {
    right: 20px;
  }