@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
*
{
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
}
body
{
	display: flex;
	//justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: #ffffff;
	flex-direction: column;
}
.card
{
	position: relative;
	width: 440px;
	height: 560px;
	background: teal;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 30px;
}
.card::before
{
	content: '';
	position: absolute;
	top: -50%;
	width: 100%;
	height: 100%;
	background: #9dd9f3;
	transform: skewY(345deg);
	transition: 0.5s;
}
.card:hover::before
{
	top: -70%;
	transform: skewY(390deg);
}
.card::after
{
	content: 'Aravali';
	position: absolute;
	bottom: 0;
	left: 0;
	font-weight: 600;
	font-size: 7.6em;
	color: rgba(0, 0, 0, 0.1);
}
.card .imgBx
{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 20px;
	z-index: 1;
}
.card .imgBx img
{
	max-width: 100%;
	transition: 0.5s;
}
.card:hover .imgBx img
{
	max-width: 50%;
}
.card .contentBx
{
	position: relative;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 1;
}
.card .contentBx h3
{
	font-size: 18px;
	color: #ffffff;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.card .contentBx .price
{
	font-size: 24px;
	color: #ffffff;
	font-weight: 500;
	letter-spacing: 1px;
}
.card .contentBx .buy
{
	position: relative;
	top: 200px;
	opacity: 0;
	padding: 10px 30px;
	margin-top: 15px;
	color: #ffffff;
	text-decoration: none;
	background: #2196f3;
	border-radius: 30px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: 0.5s;
}
.card:hover .contentBx .buy
{
	top: 0;
	opacity: 1;
}
h1
{
	font-size: 2.5em;
	background: -webkit-linear-gradient(#eee, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}