.SimpleSlider {
    position: relative;
}
.SimpleSlider .rslides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}

    .SimpleSlider .rslides li {
        -webkit-backface-visibility: hidden;
        position: absolute;
        display: none;
        width: 100%;
        left: 0;
        top: 0;
    }

        .SimpleSlider .rslides li:first-child {
            position: relative;
            display: block;
            float: left;
        }

    .SimpleSlider .rslides img {
        display: block;
        height: auto;
        float: left;
        width: 100%;
        border: 0;
    }

.SimpleSlider ul li {
    position: relative;
}

    .SimpleSlider ul li:after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background: rgba(0, 0, 0, 0);
        z-index: 5;
    }

.SimpleSlider .rslides_nav {
    position: absolute;
    top: calc(50% - 28px);
    width: 65px;
    height: 55px;
    background: rgba(0, 0, 0, 0.6);
    color: transparent;
    transition: all 0.4s;
    z-index: 88;
}

    .SimpleSlider .rslides_nav.prev {
        left: 0;
    }

    .SimpleSlider .rslides_nav.next {
        right: 0;
    }

    .SimpleSlider .rslides_nav.prev:after {
        content: "\f104";
        font-family: FontAwesome;
        position: absolute;
        top: 14px;
        left: 27px;
        font-size: 28px;
        color: #eee;
        transition: all 0.4s;
    }

    .SimpleSlider .rslides_nav.next:after {
        content: "\f105";
        font-family: FontAwesome;
        position: absolute;
        top: 14px;
        right: 27px;
        font-size: 28px;
        color: #eee;
        transition: all 0.4s;
    }

    .SimpleSlider .rslides_nav:hover {
        background: rgba(0, 0, 0, 0.7);
    }

        .SimpleSlider .rslides_nav:hover:after {
            color: #20c997;
        }



.rslides .detail {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 66;
    text-align: center;
}

.slide_title {
    text-align: center;
    margin: 0 0 45px 0;
    line-height: initial;
}

    .slide_title a {
        color: #222;
        font-size: 34px;
        font-weight: bold;
        text-shadow: 0 0 25px #fff, 0 0 45px #fff, 0 0 65px #fff;
    }

        .slide_title a:hover {
            color: #11694f;
        }

.slide_lead {
    background: rgba(0, 0, 0, 0.68);
    color: #eee;
    font-size: 14px;
    padding: 15px 25px;
    border-radius: 15px;
    margin: 0 0 70px 0;
}