.carousel {
  position: relative;
  width: 100%;
  min-height: 222px;
  max-height: 400px;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  }

  .carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .carousel-item {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
  }

  .carousel-item.active {
    display: block;
  }

  .carousel-item img{
    width:100%;
    border-radius:10px;
  }

  .carousel-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 0px;
    width: 100%;
    text-align: center;
  }

  .carousel-controls button {
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    border: none;
    margin: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;

  }

  .carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0px;
    width: 100%;
    text-align: center;
  }

  .carousel-indicators button {
    width: 100px;
    height: 2px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, .4);
    cursor: pointer;
    position: relative;
    border: none;
    padding: 0;
    margin: 5px;
  }
  .carousel-indicators button.active::after{
      content:"";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      border-radius: 0;
      background-color: #fff;
      animation: loading 3s ;
  }

  @keyframes loading{
      0%{
          width: 0;
      }

      100%{
          width: 100px;
      }
  }

