
#fc_slider_wrap {
    width: 100%;
    max-height: 452px;
    position: relative;
    border: 2px solid #BC2829;
}

#fc_slider_img {
    width: 100%;
    overflow: hidden;
}

#fc_slider_slide {
    height: 452px;
    width: 100%;
    word-wrap: break-word;
}

#fc_slider_slide > div {
    border-radius: 0;    
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    position: relative;
    width: 100%;
    cursor: pointer;

}

.slider-shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
background: -moz-linear-gradient(top, rgba(125,126,125,0) 0%, rgba(65,66,65,0) 54%, rgba(48,49,48,0.42) 69%, rgba(14,14,14,1) 100%);
background: -webkit-linear-gradient(top, rgba(125,126,125,0) 0%,rgba(65,66,65,0) 54%,rgba(48,49,48,0.42) 69%,rgba(14,14,14,1) 100%);
background: linear-gradient(to bottom, rgba(125,126,125,0) 0%,rgba(65,66,65,0) 54%,rgba(48,49,48,0.42) 69%,rgba(14,14,14,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007d7e7d', endColorstr='#0e0e0e',GradientType=0 );

}

#fc_slider_nav {
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 999;
    overflow: hidden;
    padding: 22px 0;
    text-align: center;
    -webkit-transition: margin-right 0.25s ease-in-out;
  -moz-transition: margin-right 0.25s ease-in-out;
  -o-transition: margin-right 0.25s ease-in-out;
  transition: margin-right 0.25s ease-in-out;
}

#fc_slider_nav > div {
    width: 8px;
    height: 8px;
    cursor: pointer;
    margin: 0 5px;
    display: inline-block;
}


#fc_slider_nav > div > span {
    background-color: #999;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
}
#fc_slider_nav > div.active > span {
    background-color: #B91D1F;
}

.caption {
    position: absolute;
    padding: 30px 10px;
    top: initial;
    left: 30px;
    bottom: 0;
    width: 80%;
	z-index: 999;
}


.caption h2 {
    font-size: 2.2rem;
    color: #B91D1F;
    line-height: 53px;
    transition: color .2s ease;
    font-weight: bold;
    text-shadow: 1px 1px 3px #000;
}

.caption p {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.caption h2:hover {
    color: #ff3d41;
}

#fc_slider_prev, #fc_slider_next { 
    position: absolute;
    top: 50%;
    background: rgb(0,0,0, 0.5);
    color: #B91D1F;
    text-align: center;
    width: 29px;
    height: 36px;
    cursor: pointer;
    z-index: 999999;
    line-height: 30px;
    margin-top: -18px;
    font-size: 1.7rem;
    line-height: 2.2rem;
    background-image: url('../img/xd/arrows2.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;

} 
#fc_slider_prev { 
    left: 0px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    
}
#fc_slider_next { 
    right: 0px;

}


