.ff-custom-carousel{
	color: #fff;
	position:relative;
	overflow: hidden;
}
.ff-custom-carousel:before{
	content: '';
	background: #fff;
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: 40px;
}
.ff-custom-carousel:after{
	content: '';
	background: #EB2626;
	width: 0;
	height: 6px;
	position: absolute;
	bottom: 38.5px;
	/* transition: .5s ease 2s; */
}
.animated .ff-custom-carousel:after{
	width: 197px;
	transition: 2s ease 2s;
}
.ff-custom-carousel .col{
	padding: 0 12px 12px;
}
.ff-custom-carousel .car-title{
	font-size: 30px;
	font-style: italic;
}
.ff-custom-carousel .car-content{
	font-size: 17px;
}
.ff-custom-carousel .car-content ul{
	list-style: none;
	margin-top: 0;
    padding-left: 0;
}
.ff-custom-carousel .car-content ul li{
	position: relative;
	padding-left: 20px;
}

.ff-custom-carousel .car-content ul li:before {
	content: '';
    width: 7px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
	bottom: 0;
	margin: auto;
	line-height: 1;
}

@media(max-width: 767px){
	.ff-custom-carousel .car-content ul li:before {
		bottom: revert;
		top: 20px;
	}
	
}