#container-slider
{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#slider {
    display: block;
    width: 450px;
    height: 375px;
    margin: auto;
}

#slider h{
    font-size: 25px;
    color: #212529;
}

#slider li {
    background-position: center;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 100%;
    display: block;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
    z-index: -1;
    opacity: 0;
    border-radius: 28px;
    backdrop-filter: blur(8px);
    background-color: rgba(255,255,255,1);
}

.content_slider{
    padding: 5px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
}

.content_slider img {
    object-fit: cover;
    width: 100%;
    height:100%;
    border-radius: 15px;
}

#slider li .content_slider{

}
.content_slider{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.listslider {
    position: absolute;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: 50%;
    top: 6%;
    list-style: none;
    z-index: 2;
    transform: translateX(-50%);
    padding-left: 0;
}
.listslider li {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    cursor: pointer;
    margin: 0 5px;
}
.listslider li a {
    background: #CCC;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: block;
}
.item-select-slid {
    background: #0D3E30 !important;
}


@media screen and (max-width: 800px){
    .content_slider p {
        font-size: 12pt !important;
    }
    #container-slider .arrowPrev, #container-slider .arrowNext{
        font-size: 20pt;
    }
    #container-slider .arrowPrev{
        left: 15px;
    }
    #container-slider .arrowNext{
        right: 15px !important;
    }
    #slider{
        height: 400px;
        min-height: 400px;
        width: auto;
    }
    #slider li .content_slider{
        padding: 10px 35px;
    }
    .btnSlider{
        padding: 10px 30px;
        font-size: 10pt;
    }

}
