
.carrusel{
    background-color: rgba(226, 221, 217, 0.5);
}

.carousel{
    min-height: 400px;
    margin-bottom: 30px;
}

.carousel .carousel-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
    width: 500px;
    height: 400px;
}

.carousel-item>div{
    width: 50%;
}

.carousel .carousel-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 15px;
}

.div
{
    width: 100%;
}

.indicators{
    display: flex;
    justify-content: center;
}

.carousel .indicators .indicator-item{
    background-color: rgba(198, 226, 241, 1);
}

@media screen and (max-width:768px){
    .carousel{
        min-height: 200px;
    }
    .carousel .carousel-item{
        width: 300px;
        height: 400px;
    }
    .carousel .indicators{
        flex-direction: row;
    }

}

