/* ------------------------------- 3. Slider Styles ------------------------------- */

#fwslider {
    position: relative;
    width:100%;
}

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

#fwslider .slide img {
    width:100%;
}

#fwslider .slidePrev {
    position: absolute;
    top:50%;
    left:-50px;
    z-index: 10;
    /*display:none;*/

}

#fwslider .slidePrev span {
	background-image: url("../images/img-sprite-new3.png");
	width:60px;
	height: 43px;
	float: left;
	background-position:-1px -2px; /*-12px -4px*/
	background-repeat: no-repeat;
	cursor: pointer;
}
#fwslider .slideNext {
    position: absolute;
    top:50%;
    right:-50px;
    z-index: 10;
    /*display:none;*/

}

#fwslider .slideNext span {
  background-image: url("../images/img-sprite-new3.png");
	width:60px;
	height: 43px;
	float: left;
	background-position: -64px -2px;  /*-110px -4px*/
	background-repeat: no-repeat;
	cursor: pointer;
}

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

#fwslider .timer {
    height:4px;
    width:40px;
    background-color: #fff;
    float:left;
    margin-right: 10px;
    opacity:0.6;
}

#fwslider .progress {
    height:4px;
    width:0%;
    background-color:#4cb1ca; /*4cb1ca*/
    float:left;
}

#fwslider .slide_content {
    top:0;
    left:0;
    position: absolute;
    width:100%;
    height:100%;
}

#fwslider .slide_content_wrap { /* Slider Text Content Container Style */
    max-width:1280px;
    margin:25% auto;
}


/*slider content css*/





/* ------------------------------- 4. Media Query Max Width 1300, Min Width 720 ------------------------------- */
@media only screen and (min-width:720px) and (max-width: 1300px) {

    #fwslider .slide_content_wrap { margin-left:50px; margin-top:15%;}
    #fwslider .title { font-size:26px; }
    #fwslider .description { /*-- font-size:12px;--*/font-size:1.5em;}

}

/* ------------------------------- 5. Media Query Max Width 719 ------------------------------- */

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

    #fwslider .slide_content_wrap { display:none; }
    #fwslider .timers { display:none; }
    #fwslider .slide_content {cursor: pointer;}

}