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

        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 Max Width 1300, Min Width 720
   04. Media Query Max Width 719
   
*/

/* ------------------------------- 2. Slider Styles ------------------------------- */
#fwslider {
	overflow: hidden;
    position: relative;
    width:100%;
	max-height:450px;
	z-index:0;
}


#fwslider h4,
#fwslider p,
#fwslider img {
	margin:0;
	
}

#fwslider .slider_container {
}

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

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


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

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

#fwslider .slideNext {
    width:50px;
    height:50px;
    position: absolute;
    top:50%;
    right:-50px;
    opacity:1;
    z-index: 10;
}

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

#fwslider .timers {
	width:54px !important;
    height:14px;
    position: absolute;
    bottom:15px;
	margin:0 auto;
	left:0;
	right:0;
    z-index: 3;
}

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

#fwslider .progress {
    height:14px;
    width:0%;
    background-color: #03437b;
    float:left;
}

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

#fwslider .slide_content_wrap { /* Slider Text Content Container Style */
    max-width:355px;
    margin:10% 20%;
	/*border:1px solid #F00;*/
}

.inner #fwslider .slide_content_wrap { /* Slider Text Content Container Style */
	display: none;
}

#fwslider .title {  /* Slider Title Style */
	float:left;
	width:100%;
	font-family: 'TungstenBook';
	color:#fff;
    font-size:70px;
	line-height:70px;
    background-color:rgba(11,58,98,0.2);
    opacity: 0;
	padding:20px 45px 20px 45px;
}

#fwslider .title b { 
	font-family: 'TungstenMedium';
}

#fwslider .description { /* Slider Description Style */
	float:left;
	width:100%;
	font-family: 'TungstenBook';
	color:#fff;
	background-color:rgba(11,58,98,0.8);
    font-size:18px;
	line-height:20px;
	padding:15px 45px 15px 45px;
    opacity: 0;
}

#fwslider .readmore { /* Slider Read More button Style */
    background:#222;
	border:1px solid #222;
	box-shadow: 0 0 5px rgba(0,0,0,0.2), inset 0 0 40px rgba(0,0,0,0.2);
    clear:both;
    color:#fff;
    float:right;
    font-family: "PT Serif", Georgia, "Times New Roman", Times, serif;
    font-size:20px;
    opacity: 0;
    padding:10px 30px;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.4);
	text-transform:uppercase;
}

#fwslider .readmore:hover {
    color:#2fbbb2;
	text-decoration:none;
}

.resimBir{
	content:url("../images/slider1.jpg");
	width:100%;
}

/* ------------------------------- 4. Media Query  Min Width 1301 ------------------------------- */



@media only screen and (min-width:1421px) {

    #fwslider {
	overflow: hidden;
    position: relative;
    width:100%;
	max-height:650px !important;
}
	

}


/* ------------------------------- 3. Media Query Max Width 1300, Min Width 720 ------------------------------- */



@media only screen and (min-width:720px) and (max-width: 1300px) {

    #fwslider .slide_content_wrap { left:50%; margin:10% 20%;}

	
	

}

/* ------------------------------- 4. 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;}
	
	.resimBir{
	content:url("../images/slider1_mobil.jpg");
	width:100%;
}

}
