.carousel {
    overflow: hidden;
}

.inner {
    white-space: nowrap;
    transition: transform 0.3s;
}

.carousel-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.indicators {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.indicators>* {
    width: 10px;
    height: 5px;
    border-radius: 5px;
    background-color: #227eff;
    margin-right: 0px;
    margin-left: 0px;
    padding-left: 10px;
    padding-right: 10px;
    opacity: 0.4;
    transform: scale(0.6);
    border: none;
}

.indicators>.active {
    opacity: 1;
    transform: scale(1);
}