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

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

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

   01. CSS Reset
   02. Head Styles
   03. Top Slider Styles
   04. Media Query Max Width 1300, Min Width 720
   05. Media Query Max Width 719
   
*/




#fwslider {
    position: relative;
    /*background:#000; */
    /* width:940px; */
}

#fwslider .slider_container {
}

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

#fwslider .slide img {
    width:980px;
}

#fwslider .slidePrev {
background: rgba(5, 5, 5, 0.75);
width: 50px;
height: 50px;
position: absolute;
top: 50%;
left: -32px;
opacity: 0.5;
z-index: 10;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
border-radius: 25px;
margin-left: 5px!important;
}

#fwslider .slidePrev span {
    background-image:url("left_arrow.png");
    width:50px;
    height:50px;
    float:left;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
}

#fwslider .slideNext {
    background: rgba(5, 5, 5, 0.75);
    width:50px;
    height:50px;
    position: absolute;
    top:50%;
   /* right:-50px;*/
    opacity:0.5;
    z-index: 10;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
border-radius: 25px;
/*margin-right:5px!important;*/
 right:5px !important;


}

#fwslider .slideNext span {
    background-image:url("right_arrow.png");
    width:50px;
    height:50px;
    float:left;
    background-position: 50% 50%;
    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: #000;
    float:left;
    margin-right: 10px;
	visibility:hidden;
}

#fwslider .progress {
    height:4px;
    width:0%;
    background-color: #00FFFF;
    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:940px;
    /*margin:15% auto;*/
    margin-top: 160px;
    margin-left: 10px;
}

#fwslider .title {  /* Slider Title Style */
color: #EFF2EF;
font-size: 20px;
background: rgba(103, 103, 103, 0.72);
padding: 10px;
float: left;
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
margin-top: 161px;
margin-left: -13px;
}

#fwslider .description { /* Slider Description Style */
  /*  opacity: 0;*/
    /*color:#FC3;*/
color: #EFF2EF;
font-size: 20px;
background: rgba(103, 103, 103, 0.72);
padding: 10px;
float: left;
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
margin-top: 161px;
margin-left: -3px;
}

#fwslider .readmore { /* Slider Read More button Style */
    opacity: 0;
    clear:both;
    float:left;
    text-transform:uppercase;
    font-size:10px;
    color:#919191;
  	background:#000;
    padding:10px;
    text-decoration: none;
    margin-top:2px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
}

#fwslider .readmore:hover {
    color:#fff;
}



/* ------------------------------- 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;}

}

/* ------------------------------- 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;}

}