
.splide {
    padding: 0;
}

.splide__track {
    box-shadow: 0px 5px 10px -5px #6e6e6e;
}

.splide__list .splide__slide {
    background-color: #000;
    /*min-height: 200px;*/
}

.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.splide__progress__bar {
    height: 3px;
    background: #2c66ce;
}

.splide__slide .description {
    background-color: #000;
    color: #fff;
    padding: 1em;
}

.splide__slide .description a {
    color: #fff;
}

.splide__slide .description a:hover {
    color: #eef4ff;
    text-decoration: underline;
}

/*Dispositivos Grandes*/
@media only screen and (min-width: 768px) {

    .splide__slide .description {
        background-color: rgba(0, 0, 0, 0.6);
        position: absolute;
        bottom: 10px;

    }

}

/*AUTO PLAY BUTTON PAUSE E PLAY */

.splide__toggle {
    align-items: center;
    background: #eaebee;
    border-radius: 50%;
    display: inline-flex;
    height: 1.8rem;
    justify-content: center;
    margin-right: .5rem;
    transition: background-color .2s ease;
    width: 1.8rem;
    border: none;
    cursor: pointer;
}

.splide__toggle__play {
    margin-left: 2px
}

.splide__toggle svg {
    fill: #717782;
    transition: fill .2s ease;
    width: 0.9rem;
}

.splide__toggle:hover {
    background: #2c66ce;
}

.splide__toggle:hover svg {
    fill: #fff;
}

/* FIM AUTO PLAY BUTTON PAUSE E PLAY */


/*PAGINAÇÃO E CONTROLE  */
.splide__controls {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 0.3em;
}

.splide__controls .splide__pagination {
    bottom: auto;
    left: auto;
    position: relative;
    transform: none;
    width: auto;
}

.splide__pagination__page.is-active,
.splide__pagination__page:hover {
    background: #2c66ce;
}

/*FIM PAGINAÇÃO E CONTROLE  */


/*SETAS DE NAVEGAÇÃO */
.splide__arrow {
    top: 45%;
    width: 19px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid #2c66ce;
}

.splide__arrow svg, .splide__arrow:hover:not(:disabled) svg{
    fill: #2c66ce;
}
 
.splide__arrow--prev {
    left: 0;
    border-left: none;
}

.splide__arrow--next {
    right: 0;
    border-right: none;
}

/* FIM SETAS DE NAVEGAÇÃO */