.baner_out {
    position: relative;
    background: #fff;
    /*height: 400px;*/
}
.baner_out * {
    position: relative;
    box-sizing: border-box;
}
.baner_out .baner {
    height: inherit;
    margin: 0 auto;
}

/* TYPEs */
.baner_out .baner .baner_content {
    height: 700px;
    width: 100%;
}
.baner_out .baner.slide_horizontal .baner_content {
    width: 200%;
}

/* ITEMs */
.baner .item {
    height: inherit;
    width: 100%;
    float: none;
    
}
.baner.slide_horizontal .item {
    width: 50%;
    float: left;
}
.baner.fade .item {
    position: absolute;
}


.baner_content .background {
    height: inherit;
}
.baner_content .item .background img {
    width: auto;
    height: 100%;
    transition: .4s;
}

.baner_content .item.active .background img {
    /*transform: scale( 1.1 ); 
    transition: 20s;*/
}

.baner_nav_prev,
.baner_nav_next {
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
    left: 0;
    width: 60px;
    height: 60px;
    background: rgba(0,0,0, .5) url('../img/prev.png') no-repeat center center;
    background-size: 100%;
    cursor: pointer;
}
.baner_nav_next {
    left: initial;
    right: 0;
    background-image: url('../img/next.png');
}

.baner_nav_prev:hover,
.baner_nav_next:hover {
    background-color: #fff;
    transition: .3s;
}

.baner_nav {
    position: relative;
    display: inline-block;
    /*top: 0;*/
    /* height: 40px; */
    /* width: 100%; */
    margin-left: 50%;
    transform: translate(-50%,0);
    padding: 10px;
}
.baner_nav .item_nav {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  
    background: #9c9b9b;
    display: inline-block;
    margin: 0 7px;
    cursor: pointer;
    line-height: 0;
    font-size: 0;
    transition: .5s;
}
.baner_nav .item_nav.active {
    background: #000;
}

.goto {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.baner .content {
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
    width: 50%;
    padding: 50px;
    right: 0;
    text-align: center;
}
.baner .content h2 {
    font-size: 2em;
    padding: 20px;
    color: #000;
    margin: 0;
}

@media screen and ( max-width : 960px ) {
    .baner .content {
        position: relative;
        top: 0;
        transform: none; 
        width: 100%; 
        padding: 10px;
        right: initial;
        text-align: left;
    }
    .baner_content .background {
        height: 50%;
    }
    .baner_content .item .background img {
        width: auto;
        height: 100%;
        transition: none;
    }
    .baner_nav_prev,
    .baner_nav_next {
        top: 25%;
    }
}