/*------------------------------------------------------------------------

    Name: Full Width Slider 2.0
    Design and Develpment: Eightyclouds
    Author URI: http://www.eightyclouds.com
    Version: 1.0

--------------------------------------------------------------------------

   01. CSS Reset
   02. Slider Styles
   03. Media Query
   04. Custom
   
*/

/* ------------------------------- 1. Resets -------------------------------------- */

body .fws2 * {
    margin:0;
    padding:0;
    line-height: 1;
}

/* ------------------------------- 2. Slider Styles ------------------------------- */

.fws2 {
    position: relative;
    background:#000;
    width:100%;
    overflow: hidden;
}

.fws2 .slider_container {
}

.fws2 .slide {
    display: none;
    position: absolute;
    top:0;
    left:0;
    z-index: 0;
    width:100%;
}

.fws2 .slide img {
    width:100%;
    height: auto;
    float:left;
}

.fws2 .slidePrev {
    background:#000;
    width:50px;
    height:50px;
    position: absolute;
    top:50%;
    left:-50px;
    opacity:0.3;
    z-index: 10;
}

.fws2 .slidePrev i {
    width:50px;
    height:50px;
    float:left;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
    font-size: 32px;
    color:#FFF;
    line-height: 1.7;
    text-align: center;
}

.fws2 .slideNext {
    background:#000;
    width:50px;
    height:50px;
    position: absolute;
    top:50%;
    right:-50px;
    opacity:0.3;
    z-index: 10;
}

.fws2 .slideNext i {
    width:50px;
    height:50px;
    float:left;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
    font-size: 32px;
    color:#FFF;
    line-height: 1.7;
    text-align: center;
}

.fws2 .timers {
    height:4px;
    position: absolute;
    bottom:15px;
    right:0;
    z-index: 3;
}

.fws2 .timer {
    height:4px;
    width:30px;
    background-color: #000;
    float:left;
    margin-right: 5px;
}

.fws2 .progress {
    height:4px;
    width:0%;
    background-color: #a41f84;
    float:left;
}

.fws2 .bullets {
    position: absolute;
    bottom:-50px;
    z-index: 3;
    width:100%;
    text-align: center;
}

.fws2 .bullet {
    display: inline-table;
    cursor: pointer;
    padding:0 2px;
}

.fws2 .bullet i {
    color:#000;
    font-size: 15px;
    line-height: 1;
    -webkit-transition: color .25s ease-out;
    transition: color .25s ease-out;
}

.fws2 .bullet.active i, .fws2 .bullet:hover i {
    color:#FFCC33;
}


.fws2 .slide_content {
    top:0;
    left:12%;
    position: absolute;
    width:94%;
    height:100%;
}

.fws2 .slide_content_wrap { /* Slider Text Content Container Style */
    max-width:1280px;
    position: absolute;
    left:0;
    top:0;
    display: none;
}

.fws2 .title {  /* Slider Title Style */
    opacity: 0;
    color:#502171;     
    font-size:2em;
    float:left;
    font-weight: 400;
    position: relative;
    z-index: 9
}

.fws2 .description { /* Slider Description Style */
    opacity: 0;
    color:#424242;
    clear:both;
    float:left;
    margin-top:10px;
    line-height:24px;
    font-style: normal;
    font-weight: 400;

}

.fws2 .readmore { /* Slider Read More button Style */
    opacity: 0;
    clear:both;
    float:left;
    font-size:13px;
    color:#FFF;
    background:#a0ad53;
    padding:10px;
    text-decoration: none;
    margin:10px 0 0 0;
    font-style: normal;
    font-weight: 400;
    -webkit-transition: .25s ease-out;
    transition: .25s ease-out;
}

.fws2 .readmore:hover {
    background:#a41f84;
    color: #FFF;
}



/* ------------------------------- 3. Media Query ------------------------------- */



@media only screen and (max-width: 1450px) {

    .fws2 .slide_content {
        left: 0%; 
    }

    .fws2 .slide_content_wrap { 
        margin-top:15%; 
        max-width:1000px;

    }
    .fws2 .title { font-size:26px; }
    .fws2 .description { font-size:14px;}
}

@media only screen and (max-width: 1450px) {

    .fws2 .title { font-size:22px; }
    .fws2 .description { font-size:13px;}

}

@media only screen and (max-width:767px) {

    .fws2 .slide_content_wrap,
    .fws2 .slidePrev,
    .fws2 .slideNext,
    .fws2 .timers,
    .fws2 .bullets,
    .fws2 .slide_content {display: none;}

}