
a{
	text-decoration:none;
}
.box{
	width:280px;
	/* height: 250px; */
	box-shadow: 2px 2px 30px rgba(0,0,0,0.2);
	/* overflow: hidden; */
	margin:5px;
	background-color: #616161;
}
.slide-img{
	height: 260px;
	position:relative;
}
.slide-img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	box-sizing: border-box;
}
.detail-box{
	width: 100%;
    display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	box-sizing: border-box;
	font-family: calibri;
	background-color: #232323;
	height: 130px;
}
.type{
	display: flex;
	flex-direction: column;
}

.type h3{
	color:rgb(255, 255, 255);
}

.slide-img:hover .overlay{
	visibility: visible;
	animation:fade 0.5s;
}
 
@keyframes fade{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
.slider{
	width:100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
}

.slider ul{
	background-color: #232323;
}

.item-a{
	margin-right: 0px !important;
}

