/* CSS Document */
@Import url('https://fonts.googlepis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;	
	font-family: 'Poppins', sans-serif;
	
}
/*
body{
	min-height: 100vh;
	background: #6cb1ff;
}
*/
.popup{
	max-width:350px;
	width:100%;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: none;
	z-index: 100;
}
.bg{
	width:100vw;
	height:90vh;
	position: absolute;
/*	padding: 10vw;*/
	background-color: rgba(30,30,30,0.6);	
	z-index: 100;
/*	opacity: 0.8;*/
}
.contentBox{
	position: relative;
	width: 100%;
	height: auto;
	background: #fff;
	border-radius: 20px;
	display: flex;
	box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}
.contentBox .imgBx {
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
/*
.contentBox .imgBx::before{
	content: '';
	position: absolute;
	width: 250px;
	height: 250px;
	background: #e7ffe0;
	border-radius: 50%;
	
	
}
*/
.contentBox .imgBx img {
	position: relative;
	max-width: 100%;
	width:100%;
	height: auto;
	z-index: 1;
		border-radius: 20px;
	
}
.contentBox .content{
	position: relative;
	width: 0px;
	height: 	0px;
/*	display: flex;*/
	justify-content: center;
	align-items: center ;
}
.contentBox .content h3{
	color: #333;
	line-height: 1em;
	font-weight: 300;
	font-size: 2em;
}
.contentBox .content h2{
	font-size: 4em;
	color: #ff4d54;
	line-height: 1em;
}
.contentBox .content h2 span{
	color:#333;
	font-size: 0.75em;
	text-transform: uppercase;
}
.contentBox .content p{
	font-weight: 300;
}
.contentBox .content a{
	display: inline-block;
	padding: 10px 20px ;
	background: #ff4d54;
	color:#fff;
	margin-top:15px;
	text-decoration: none;
	border-radius: 10px;
}
.close{
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: #f3f3f3 url("img/close.png");
	background-repeat: no-repeat;
	background-size: 20px;
	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;
	}
	.contentBox .content{
		height: auto;
		text-align: center;
		padding: 20px;
		margin-top: 0;
	}
*/
	.popup{
	max-width:70%;
}
	.close{
		top: -10px;
		right: -10px;
	background: #fff url("img/close.png");
	background-repeat: no-repeat;
	background-size: 10px;
	background-position: center;
	}
}