
.container{
    background-color: #000;
    padding-bottom: 50px;
}
li{
    color: #000;
}

.carousel {
    margin: 0 auto;
    text-align: center;
    position: relative;
    max-width: 1300px;
    background-color: #000;

}

.carousel .carousel-window {
    max-width: 1300px;

    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;


}
.carousel .carousel-slides {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    transition: transform 0.5s;

}
.carousel .carousel-item {
    max-width: 333px;
    width: 100%;
    height: auto;
    margin: 0 auto;

}
    .carousel .carousel-item img {
        max-width: 333px;
        width: 100%;
        height: auto;
        padding: 0 50px;

    }


.carousel .carousel-prev, .carousel .carousel-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0.1%;
    color: #fff;
    opacity: 0.9;
    text-align: center;
    font-size: 40px;
    text-decoration: none;
}
.carousel .carousel-prev:hover, .carousel .carousel-next:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.2);
}
.carousel .carousel-prev {
    left: 0;
}
.carousel .carousel-next {
    right: 0;
}
/*
    .carousel .carousel-indicators {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 15;
        display: flex;
        justify-content: center;
        padding: 10px;
        list-style: none;
    }
        .carousel .carousel-indicators li {
            flex: 0 1 auto;
            width: 20px;
            height: 20px;
            margin-right: 5px;
            margin-left: 5px;
            cursor: pointer;
            background-color: #343a40;
            border: 2px solid #fff;
            border-radius: 50%;
        }
        .carousel .carousel-indicators .active {
            background-color: #025fff;
        }
*/



@media only screen and (max-width: 600px) {

    .carousel {
        margin: 0 auto;
        text-align: center;
        position: relative;
        max-width: 270px;
        background-color: #000;
    
    }
    
    .carousel .carousel-window {
        max-width: 270px;
    
        width: 100%;
        height: auto;
        position: relative;
        overflow: hidden;
    
    
    }
    
    .carousel .carousel-slides {
        width: 80%;
        height: auto;
        display: flex;
        justify-content: space-around;
        transition: transform 0.5s;
    
    }

    .carousel .carousel-item {
        max-width: 230px;
        width: 100%;
        height: auto;
        margin: 0 auto;
    
    }
    
    .carousel .carousel-item img {
        max-width: 230px;
        width: 100%;
        height: auto;
        padding: 0 10px;

    }

    

}
