.glide{position:relative;width:100%;box-sizing:border-box}.glide *{box-sizing:inherit}.glide__track{overflow:hidden}.glide__slides{position:relative;width:100%;list-style:none;backface-visibility:hidden;transform-style:preserve-3d;touch-action:pan-Y;overflow:hidden;padding:0;white-space:nowrap;display:flex;flex-wrap:nowrap;will-change:transform}.glide__slides--dragging{user-select:none}.glide__slide{width:100%;height:100%;flex-shrink:0;white-space:normal;user-select:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent}.glide__slide a{user-select:none;-webkit-user-drag:none;-moz-user-select:none;-ms-user-select:none}.glide__arrows{-webkit-touch-callout:none;user-select:none}.glide__bullets{-webkit-touch-callout:none;user-select:none}.glide--rtl{direction:rtl}

/* Custom Styles SK */

.glide{
    overflow: visible;
}

.glide__slide img{
    max-width: 100%;
    height: auto;
}

.glide__bullets{
    display:flex;
    justify-content: center;
}

.glide__bullet{
    width: 10px;
    transition: width 0.2s ease-in-out;
    background-color: #ccc;
    border: none;
    height: 10px;
    margin: auto 2px;
}

.glide__bullet.glide__bullet--active{
    width: 30px;
    background-color: #960e3f;
}

.glide__arrows{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    width: 100%;
    justify-content: space-between;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .glide__arrows{
        display: flex;
    }
}

.glide__arrow{
    display: inline-block;
    border: none;
    background: none;
    padding: 0;
    pointer-events: all;
}

.glide__arrow i{
    width: 40px;
    height: 40px;
    font-size: 40px;
    line-height: auto;
}

.glide__arrow--left{
    width: 40px;
}

.glide__arrow--right{
    margin-left: auto;
    width: 40px;
}
