.carousel {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.carousel__content {
    display: flex;
    transition: transform 0.5s;
}

.carousel__item {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.carousel__indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}

.indicator {
    height: 8px;
    width: 8px;
    background-color: #d9d9d9;
    margin: 0 5px;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

.active-carousel {
    height: 20px;
    width: 6px;
    border-radius: 20px;
    background-color: #2dc642;
}

.carousel-title {
    color: #000000;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 2rem;
}

@media screen and (max-width: 380px) {
    .carousel-title {
        font-size: 1.5rem;
    }
}
