@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
body 
{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: #fafafa;
	gap: 120px;
}
.card 
{
	position: relative;
	width: 300px;
	height: 400px;
	background: #fff;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 15px 50px rgba(0,0,0,0.1);

}
.imgbx
{
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	position: relative;
	width: 100%;
	height: 300px;
	background: #0e7af7;
	overflow: hidden;
}
.scale
{
	position: absolute;
	width: 100%;
	bottom: 1px;
	transform-origin: bottom;
	transform: scaleY(0.65);
	z-index: 1;
}
.imgbx .wave
{
	position: absolute;
	left: calc(50% - 100px); /*  forma */
	bottom: -150px;
	width: 200px;
	height: 200px;
	background: #fff;
	border-radius: 50px;
	transform: rotate(45deg);
}

.imgbx5 .wave
{
	position: absolute;
	bottom: -150px;
	width: 200px;
	height: 200px;
	background: #fff;
	border-radius: 50px;
	transform: rotate(45deg);
}

.imgbx .wave::before 
{
	content: '';
	position: absolute;
	bottom: 41px;
	left: -150px;
	width: 150px;
	height: 150px;
	border-radius: 50px;
	background: transparent;
	box-shadow: 45px 45px #fff;
}
.imgbx .wave::after 
{
	content: '';
	position: absolute;
	top: -150px;
	right: 41px;
	width: 150px;
	height: 150px;
	border-radius: 50px;
	background: transparent;
	box-shadow: 45px 45px #fff;
}

.imgbx img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.card .content 
{
	position: relative;
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.card .content h3 
{
	text-align: center;
	font-weight: 600;
	font-size: 1.1em;
	line-height: 1.1em;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #5da6f7;
}
.card .content h3 span 
{
	font-weight: 400;
	font-size: 0.7em;
	letter-spacing: 0em;
	text-transform: initial;
	color: #333;
}