.home {
    padding: 0;
}

.slider {
    -webkit-transition: 0.4s linear;
    -moz-transition: 0.4s linear;
    -o-transition: 0.4s linear;
    transition: 0.4s linear;

    width: 150%;
    height: 150%;
    position: relative;
    z-index: 0;
    overflow: hidden;
    background: #000000;
}

.slider-data {
    display: none;
}

.slider-background ul {
    width: 105%;
    height: 105%;
    padding: 0;
    position: absolute;
    left: -4%;
    top: -4%;
    z-index: 1;
    list-style: none;
}

@media screen and (max-width: 1024px) {
    .slider-background ul {
        width: 225% !important;
        height: 225% !important;
        left: -60%;
        top: -10%;
    }
}

.slider-background ul .layer {
    width: 100%;
    height: 100%;
}

.slider-background ul .layer img {
    width: 100%;
    height: auto;
}

.slider-shaded {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5;
    background: #000000;
    opacity: .3;
}

.slider-article {
    width: 100%;
    margin: 0 auto;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    font-size: 20px;
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, .8), rgba(0, 0, 0, .4));
    background: -moz-linear-gradient(left, rgba(0, 0, 0, .8), rgba(0, 0, 0, .4));
    background: -ms-linear-gradient(left, rgba(0, 0, 0, .8), rgba(0, 0, 0, .4));
    background: -o-linear-gradient(left, rgba(0, 0, 0, .8), rgba(0, 0, 0, .4));
    background: linear-gradient(left, rgba(0, 0, 0, .8), rgba(0, 0, 0, .4));
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}

.slider-article .slider-content {
    width: 70%;
    padding: 25px 80px 70px 80px;
    position: relative;
}

.slider-article .slider-content h1 {
    margin-top: 0;
}

.slider-next {
    -webkit-transition: 0.15s linear;
    -moz-transition: 0.15s linear;
    -o-transition: 0.15s linear;
    transition: 0.15s linear;

    width: 50px;
    height: 100%;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 15;
    opacity: .75;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
    background: url('../images/interface/icons/arrow-to-left_alt.png') no-repeat center;
    background-size: 32px auto;
}

.slider-next:hover {
    opacity: 1;
}

.slider-prev {
    -webkit-transition: 0.15s linear;
    -moz-transition: 0.15s linear;
    -o-transition: 0.15s linear;
    transition: 0.15s linear;

    width: 50px;
    height: 100%;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 10px;
    z-index: 15;
    opacity: .75;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
    background: url('../images/interface/icons/arrow-to-right_alt.png') no-repeat center;
    background-size: 32px auto;
}

.slider-prev:hover {
    opacity: 1;
}

.slider-nav {
    width: 100%;
    height: 30px;
    padding: 0;
    position: absolute;
    left: 45%;
    bottom: 10px;
    z-index: 15;
    list-style: none;
}

.slider-nav li {
    -webkit-transition: 0.15s linear;
    -moz-transition: 0.15s linear;
    -o-transition: 0.15s linear;
    transition: 0.15s linear;

    display: inline-block;
    width: 15px;
    height: 15px;
    cursor: pointer;
    vertical-align: middle;
    margin-right: 5px;
    text-align: center;
    border: 1px solid #ffffff;
    background: transparent;
    border-radius: 8px;
}

.slider-nav li:hover {
    background: rgba(255, 255, 255, .2);
}

.slider-nav li.current {
    cursor: default;
    background: #ffffff;
}