@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body
{
	min-height: 100vh;
}

.popup
{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 1;
}

.contentBox
{
	position: relative;
	width: 80%;
	height: 400px;
	background: #fff;
	border-radius: 20px;
	display: flex;
	box-shadow: 0 5px 15px #C5E384;
}

.contentBox .imgBx
{
	position: relative;
	width: 300px;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contentBox .imgBx::before
{
	content: '';
	position: absolute;
	width: 250px;
	height: 250px;
	background: #C5E384;
	border-radius: 50%;
}

.contentBox .imgBx img
{
	position: relative;
	max-width: 250px;
	z-index: 1;
}

.contentBox .contentn
{
	position: relative;
	width: 300px;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contentBox .contentn h3
{
	color: #333;
	line-height: 1em;
	font-weight: 300;
	font-size: 2em;
}

.contentBox .contentn a
{
	display: inline-block;
	padding: 10px 20px;
	background: #ff4d54;
	color: #fff;
	margin-top: 15px;
	text-decoration: none;
	border-radius: 10px;
}

.close
{
	position: absolute;
	top: 10px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: #f3f3f3 url(close.png);
	background-repeat: no-repeat;
	background-size: 10px;
	background-position:center;
	cursor: pointer;
	border-radius: 50%;
	z-index: 10;
}

@media (max-width: 767px)
{
	.contentBox
	{
		width: 300px;
		height: auto;
		flex-direction: column;
	}
	.contentBox .imgBx
	{
		height: 200px;
		transform: translateY(-50px);
		
	}
	.contentBox .imgBx::before
	{
		background: #fff;
		background: #C5E384;
	}
	.contentBox .contentn
	{
		height: auto;
		text-align: center;
		padding: 20px;
		padding-top: 0;
	}
	.close
	{
		top: -50px;
		right: -10px;
		background: #f3f3f3 url(close.png);
		background-repeat: no-repeat;
		background-size: 10px;
		background-position:center;
}
