.home-slot {

}
.home-slot-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	margin-bottom: 20px;
	background: #262a34;
	padding: 24px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	color: #fff;
}
.home-slot-item__info {
	width: 66%;
}
.home-slot-item__star-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: 16px;
}
.home-slot-item__star {
	display: block;
	width: 20px;
	height: 20px;
	margin-right: 2px;
	background: url('../images/star.png') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}
.home-slot-item__star--empty {
	background-image: url('../images/star-empty.png');
}
.home-slot-item__name {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 34px;
	line-height: 1.4;
	color: var(--global-palette3);
}
.home-slot-item__desc {
	margin-bottom: 24px;
	font-size: 18px;
	line-height: 1.6;
	font-family: var(--global-body-font-family);
	color: var(--global-palette4);
}
.home-slot-item__button-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	z-index: 10;
}
.home-slot-item__button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: linear-gradient(90deg, #ffa202 5%,#fffd78 80%);
	padding: 10px 30px;
	border-radius: 80px;
	margin-right: 20px;
	position: relative;
	color: #000a12;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.6;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 700ms ease;
}
.home-slot-item__button:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 80px;
	background: linear-gradient(90deg, #fffd78 5%,#ffa202 80%);
	z-index: -2;
	opacity: 0;
	transition: all 700ms ease;
}
.home-slot-item__button:hover {
	background: transparent;
	color: #000a12;
}
.home-slot-item__button:hover:before {
	opacity: 1;
}


.home-slot-item__demo {
	display: block;
	color: #ffa202;
	font-size: 18px;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
}
.home-slot-item__demo:hover {
	text-decoration: underline;
}


.home-slot-item__img {
	width: 30%;
	border-radius: 12px;
	overflow: hidden;
}
.home-slot-item__img-ins {
	display: block;
	width: 100%;
	padding-top: 56%;
	position: relative;
}
.home-slot-item__img img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}





@media screen and (max-width:600px) {

	.home-slot-item__info,
	.home-slot-item__img {
		width: 100%;
	}
	.home-slot-item__img {
		order: -1;
		margin-bottom: 20px;
	}
	.home-slot-item__star-list {
		margin-bottom: 8px;
	}
	.home-slot-item__name {
		margin-bottom: 8px;
		font-size: 30px;
	}
	.home-slot-item__desc {
		margin-bottom: 12px;
		font-size: 16px;
	}


}


@media screen and (max-width:400px) {

	.home-slot-item {
		padding: 16px;
	}
	.home-slot-item__button-wrap {
		margin-top: 20px;
	}
	.home-slot-item__button {
		margin-right: 10px;
	}

}