
.banner {
    position: relative;
    width: 100%;
    overflow: auto;
    height: 500px;
    /*height: 830px;*/
    font-size: 18px;
    line-height: 24px;
    text-align: center;

    color: rgba(255, 255, 255, .6);
    text-shadow: 0 0 1px rgba(0, 0, 0, .05), 0 1px 2px rgba(0, 0, 0, .3);

    background: #5b4d3d;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
}

.banner ul {
    list-style: none;
    width: 300%;
}

.banner ul li {
    display: block;
    float: left;
    width: 33%;
    min-height: 500px;
    /*min-height: 830px;*/

    -o-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -webkit-background-size: 100% 100%;

    background-size: cover;
    background-position: 50%;
    /*background-position-x: left;*/
    box-shadow: inset 0 -3px 6px rgba(0, 0, 0, .1);
}

.banner .inner {
    /*padding: 290px 0 110px;*/
    padding : 250px 0 150px;
}

.banner .inner_title p {
    font-size: 40px;
    line-height: 52px;
    /*padding: 0 25%;*/
    color: #fff;
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    -moz-text-shadow: 1px 3px 10px #000000;
    -webkit-text-shadow:1px 3px 10px #000000;
    /*text-shadow: 1px 3px 10px #000000;*/
    text-shadow: 0px 0px 30px #26b89f;
    /*text-shadow: 1px 3px 10px #26b89f;*/
}

.banner h1, .banner h2 {
    font-size: 40px;
    line-height: 52px;
    /*padding: 0 25%;*/
    color: #fff;
}

.banner .btn {
    display: inline-block;
    margin: 25px 0 0;
    padding: 9px 22px 7px;
    clear: both;
    cursor: pointer;

    text-transform: uppercase;
    text-decoration: none;

}

.banner .btn:hover {

}

.banner .btn:active {
    -webkit-filter: drop-shadow(0 -1px 2px rgba(0, 0, 0, .5));
    -moz-filter: drop-shadow(0 -1px 2px rgba(0, 0, 0, .5));
    -ms-filter: drop-shadow(0 -1px 2px rgba(0, 0, 0, .5));
    -o-filter: drop-shadow(0 -1px 2px rgba(0, 0, 0, .5));
    filter: drop-shadow(0 -1px 2px rgba(0, 0, 0, .5));
}

.banner .btn, .banner .dot {
    -webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .3));
    -moz-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .3));
    -ms-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .3));
    -o-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .3));
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .3));
}

.banner .dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    width: 100%;
}

.banner .dots li {
    display: inline-block;
    *display: inline;
    zoom: 1;
    width: 10px;
    height: 10px;
    line-height: 10px;
    margin: 0 4px;
    text-indent: -999em;
    *text-indent: 0;
    border-radius: 50%;
    cursor: pointer;
    background: #ffffff;
    /*-webkit-transition: background .5s, opacity .5s;*/
    /*-moz-transition: background .5s, opacity .5s;*/
    /*transition: background .5s, opacity .5s;*/
}

.banner .dots li.active {
    background: #26b89f;

}

.banner .arrows {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #fff;
}

.banner .arrow {
    display: inline;
    padding-left: 10px;
    cursor: pointer;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px), (max-width: 1000px) {
    .banner,
    .banner ul li {
        height: 500px;
    }
}