.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 300px;
}
.slider ul {
    margin: 0;
    height: 300px;
    left: 0;
    position: relative;
    transition: none;
}
.slider ul li {
    display: block;
    float: left;
    width: 100%;
    max-width: 700px;
    height: 300px;
    background-size: cover;
    background-position: center center;
    position: relative;
}
.gallery .slider ul li {
    max-width: 350px;
}
.slider ul li a {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}
.slider ul li .counter {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 30px;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.55)/*,
                 -1px -1px 0 rgba(255, 255, 255, 0.55),
                 1px -1px 0 rgba(255, 255, 255, 0.55),
                 -1px 1px 0 rgba(255, 255, 255, 0.55)*/;
}
.slider .next {
    display: block;
    width: 75px;
    height: 300px;
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    left: 700px;
    color: #fff;
    line-height: 300px;
    text-align: center;
    font-size: 40px;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    opacity: .7;
}
.slider .next:hover {
    opacity: 1;
}

section.slider_title {
    padding: 50px 0 20px;
    background-color: #f7f6f6;
    font-weight: 500;
    font-size: 20px;
}