.slider-container {
    width:100%;
    height:100%;
    overflow:hidden;
}

.slides-container {
    position: relative;
    height: 100%;
}

.slider-item {
    height: 100%;
    display: inline-block;
    position: relative;
    background-size: cover;
    background-position: center;
}

.slide-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

nav.slides-navigation {
    position: absolute;
    top: calc(50% - 24px);
    width: 100%;
}

nav.slides-navigation a {
    color: white;
    font-size: 24px;
    padding:24px;
}

nav.slides-navigation a.prev {
    display:none;
    position: absolute;
    left: 0;
}

nav.slides-navigation a.next {
    position: absolute;
    right: 0;    
}

nav.slides-dot-navigation {
    position: absolute;
    bottom: 24px;
    width: 100%;
    text-align: right;
    right: 24px;
}

a.dot-nav {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: white;
    margin: 0 4px;
    border-radius: 50%;
}

a.dot-nav.active-dot {
    background: var(--kolor1);
}

nav.slides-navigation a, nav.slides-dot-navigation a {
    cursor:pointer;
}