.slot__wrap {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 25px;
}
@media (max-width: 990px) {
	.slot__wrap {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 576px) {
	.slot__wrap {
		grid-template-columns: 1fr;
		grid-gap: 15px;
	}
}
.slot__item {
	border-radius: 8px;
	overflow: hidden;
}
.slot__img {
	height: 200px;
	overflow: hidden;
	display: flex;
	position: relative;
}
.slot__img::after {
	content: '';
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	pointer-events: none;
	bottom: 0;
	transition: 0.3s;
}
.slot__img:hover::after {
	opacity: 0.8;
}
.slot__img:hover .slot__btn-link {
	opacity: 1;
	visibility: visible;
}
.slot__img img {
	max-width: 100%;
	width: 100%;
	height: auto;
	object-fit: cover;
}
.slot__info {
	padding: 20px;
	background: #2a2a2a;
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 10px;
}
.slot__btn {
	margin: 0 auto;
	max-width: 220px;
	min-width: 220px;
	width: 100%;
	box-sizing: border-box;
	padding: 12px 3px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	font-size: 15px;
	line-height: 18px;
	color: #fff;
	font-weight: 900;
}
.slot__btn-demo {
	margin: 0 auto;
	max-width: 220px;
	min-width: 220px;
	width: 100%;
	box-sizing: border-box;
	padding: 12px 3px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	font-size: 15px;
	line-height: 18px;
	color: #fff;
	font-weight: 900;
}
.slot__btn-link {
	z-index: 2;
	margin: 0 auto;
	max-width: 220px;
	min-width: 220px;
	width: 100%;
	box-sizing: border-box;
	padding: 12px 3px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	font-size: 15px;
	line-height: 18px;
	color: #fff;
	font-weight: 900;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

/*# sourceMappingURL=slot.css.map */
