
.bc-banner a
{
	display:block;
	overflow:hidden;
}

.bc-banner.bc-animation-move_right a img
{
	display: block;
    max-width: none;
}

.bc-banner .bc-caption 
{
	padding: 20px 30px;
	transition: all .3s ease;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.bc-banner .bc-caption h4
{
	margin-bottom:0;
}

.bc-banner .bc-caption h5
{
	margin-top:0;
}

.bc-banner .bc-overlay
{
    background-color:#000000;
	transition: all .3s ease;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}


/* animations */


.bc-banner.bc-animation-move_right a img
{
    transition: all .3s ease;
    transform: translateX(-25px);
    width: calc(100% + 25px);
}

.bc-banner.bc-animation-move_right a:hover img
{
    transition: all .3s ease;
    transform: translateX(0);
}


.bc-banner.bc-animation-zoom_in a img
{
    transition: all .3s ease;
}

.bc-banner.bc-animation-zoom_in a:hover img
{
    transition: all .3s ease;
	transform:scale(1.2);
}

.bc-banner.bc-animation-zoom_out a img
{
    transition: all .3s ease;
	transform:scale(1.2);
}

.bc-banner.bc-animation-zoom_out a:hover img
{
    transition: all .3s ease;
	transform:scale(1);
}

.bc-banner.bc-animation-opacity a img
{
    transition: all .3s ease;
}

.bc-banner.bc-animation-opacity a:hover img
{
    transition: all .3s ease;
	opacity:0.8;
}

