.blmd-slider {
    width: 100%;
    position: relative;
    overflow-x: hidden;
    padding-bottom: 23px;
}

.blmd-slider .slider__rail {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: visible;
    transition: all .3s cubic-bezier(.6,.04,.98,.34);
}

.blmd-slider .slide {
    flex-basis: 100%;
    min-width: 100%;
}

.blmd-slider .slider__nav {
    list-style: none;
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s cubic-bezier(.6,.04,.98,.34);
    padding: 0px;
    margin: 0;
    bottom: 0;
}

.blmd-slider .slider__nav li {
    white-space: nowrap;
    display: block;
}

.blmd-slider .slider__nav li:last-child {
    margin-right: 0;
}

.blmd-slider .slider__nav-link {
    color: #777777;
    text-decoration: none;
    padding: 3px;
    font-size: 16px;
    display: block;
    transition: all .3s cubic-bezier(.6,.04,.98,.34);
}

.blmd-slider .slider__nav-link:hover {
    color: #edf3fa;
    cursor: pointer;
}

.blmd-slider .slider__nav-link.active {
    color: #edf3fa;
}