.owl-item .item {
	background: #f6d5e4;
}
.owl-carousel img {
	height: 400px;
	padding: 22px;
}

.owl-carousel-item-text {
    text-align: center;
}

.owl-carousel-item-imgtitle {
    font-size: 16px;
    line-height: 20px;
    margin: 5px auto;
}

.owl-carousel-item-imgoverlay {
    position: absolute;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
    background-color: rgba(0, 0, 0, 0);
    text-align: center;
    bottom: 0px;
    color: white; 
    width: 100%;
    font-family: 'Quicksand', sans-serif;
    display: none;
}

.owl-carousel .item:hover .owl-carousel-item-imgoverlay {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: default;
}