#RealGlassCard {
	position: relative;
	width: 100%;
}
#RealGlassCard::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(#f00, #f0f);
	clip-path: circle(30% at right 70%);
}
#RealGlassCard::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(#2196f3, #e91e63);
	clip-path: circle(20% at 10% 10%);
}
#RealGlassCard .frame {
	position: relative;
	margin: 6px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1;
}
#RealGlassCard .frame .card {
	font-family: "Poppins", sans-serif;
	position: relative;
	width: 280px;
	height: 400px;
	margin: 6px 30px;
	box-shadow: 20px 20px 50px rgb(0 0 0 / 50%);
	border-radius: 15px;
	background: rgb(255 255 255 / 10%);
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	border-top: 1px solid rgb(255 255 255 / 50%);
	border-left: 1px solid rgb(255 255 255 / 50%);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}
#RealGlassCard .frame .card .content {
	padding: 20px;
	text-align: center;
	transform: translateY(100px);
	opacity: 0;
	transition: 0.5s;
}
#RealGlassCard .frame .card:hover .content {
	transform: translateY(0px);
	opacity: 1;
}
#RealGlassCard .frame .card .content h2 {
	position: absolute;
	top: -80px;
	right: 30px;
	font-size: 8em;
	color: rgb(255 255 255 / 5%);
	pointer-events: none;
}
#RealGlassCard .frame .card .content h3 {
	font-size: 1.8em;
	color: #fff;
	z-index: 1;
}
#RealGlassCard .frame .card .content p {
	font-size: 1em;
	color: #fff;
	font-weight: 300;
}
#RealGlassCard .frame .card .content a {
	position: relative;
	display: inline-block;
	padding: 8px 20px;
	margin-top: 15px;
	background: #fff;
	color: #000;
	border-radius: 20px;
	text-decoration: none;
	font-weight: 500;
	box-shadow: 0 5px 15px rgb(0 0 0 / 20%);
}
