.ngparaechoslider {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    position: relative;
}

.ngparaechoslider>ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ngparaechoslider>ul>li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    list-style: none;
    display: none;
}

.ngparaechoslider>ul img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ngparaechoslider>ul>li h3 {
    position: absolute;
    z-index: 4;
    width: 100%;
    left: 0;
    bottom: 64px;
    text-align: center;
    text-shadow: rgba(0,0,0,0.5) 0 0 4px;
    box-sizing: border-box;
    padding: 0 72px;
    text-decoration: none;
}

.ngparaechoslider-dark>ul>li.ngparaechoslider-fade img {
    filter: brightness(50%);
}

.ngparaechoslider-light>ul>li.ngparaechoslider-fade img {
    filter: brightness(175%);
}

.ngparaechoslider .ngparaechoslider-bullets {
    width: 100%;
    position: absolute;
    z-index: 5;
    bottom: 0;
    height: 64px;
    display: flex;
    justify-content: center;
}

.ngparaechoslider .ngparaechoslider-bullets div {
    width: 24px;
    height: 64px;
    cursor: pointer;
    background-position: -24px center;
    background-repeat: no-repeat;
}

.ngparaechoslider .ngparaechoslider-bullets div.ngparaechoslider-bullet-active {
    background-position: 0 center;
}

.ngparaechoslider .ngparaechoslider-next,
.ngparaechoslider .ngparaechoslider-prev
{
    width: 64px;
    height: 128px;
    top: 50%;
    margin-top: -64px;
    position: absolute;
    cursor: pointer;
    z-index: 4;
    background-position: center center;
    background-repeat: no-repeat;
}

.ngparaechoslider .ngparaechoslider-next {
    right: 0;
}

.ngparaechoslider .ngparaechoslider-prev {
    left: 0;
    transform: rotate(180deg);
}

.ngparaechoslider>ul>li:first-child {
    display: block;
}

@media (min-width: 1024px) {
    .ngparaechoslider img.ngparaechoslider-image-desktop {
        display: block;
    }
    .ngparaechoslider img.ngparaechoslider-image-mobile {
        display: none;
    }
}

@media (max-width: 1023px) {
    .ngparaechoslider img.ngparaechoslider-image-desktop {
        display: none;
    }
    .ngparaechoslider img.ngparaechoslider-image-mobile {
        display: block;
    }
    .ngparaechoslider>ul>li>h3 {
        font-size: 30px;
    }
}