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

#fwslider {
    position: relative; 
    width:100%; font-family: 'Open Sans', sans-serif;
}

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

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

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

#fwslider .slidePrev span {
	background-image: url("../images/arrows.png");
	width: 45px;
	height: 45px;
	float: left;
	background-position: -10% 50%;
	background-repeat: no-repeat;
	cursor: pointer;
}
#fwslider .slideNext {
    background:#000;
    width:50px;
    height:50px;
    position: absolute;
    top:50%;
    right:-50px;
    opacity:0.5;
    z-index: 10;
}

#fwslider .slideNext span {
    background-image:url("../images/arrows.png");
    width:45px;
    height:45px;
    float:left;
    background-position:90% 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;
}

#fwslider .progress {
    height:4px;
    width:0%;
    background-color: #FC3;
    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:1100px;
    margin:12% auto;
      
}

#fwslider .title {  /* Slider Title Style */

	text-transform: capitalize;
        width:55%;
	color: #fff;
	font-size: 2em; text-align:center;
	background: none;
	padding: 12px 10px;
	margin-left:18em;
	font-style: normal;
	font-weight: 400;
        text-align:right;
	
}

#fwslider .title h4{ font-size:25px; background:#D7020F; font-weight:bold; color:#FFF; display:inline-block; padding:10px;}
#fwslider .title h4::after {content: "";}
 .description { /* Slider Description Style */
    color:#ffffff;
    font-size:14px;
    padding:10px;
    clear:both;
    margin-top:2px;
    line-height:24px;
    text-transform: none !important;
	/*text-shadow: 2px 2px 4px #000;*/
	display:inline-block; background:#6B6668;
   
}
/* ------------------------------- 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;}

}