.pc-1777-carousel {
	width: 100%;
	overflow: hidden;
}

.pc-1777-card {
	position: relative;
	width: 100%;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-color: #333;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding: 30px 20px;
	text-align: center;
	transition: all 0.4s ease;
}

.pc-1777-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.pc-1777-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.pc-1777-title {
	margin: 0;
	padding-bottom: 20px;
	transition: transform 0.4s ease, padding 0.4s ease;
	transform: translateY(20px);
}

.pc-1777-desc-wrap {
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
}

.pc-1777-desc {
	margin: 0;
}

.pc-1777-btn {
	display: inline-block;
	padding: 10px 24px;
	border: 2px solid;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	transform: translateY(20px);
	opacity: 1;
	margin-top: 15px;
}

.pc-1777-card:hover .pc-1777-title {
	transform: translateY(0);
	padding-bottom: 10px;
}

.pc-1777-card:hover .pc-1777-desc-wrap {
	height: auto;
	opacity: 1;
	margin-bottom: 15px;
}

.pc-1777-card:hover .pc-1777-btn {
	transform: translateY(0);
}
