/* @import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900'); */


.container1 .box
{
	position: relative;
	width: 100%;
	height: 570px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.8s;
}
.container1:hover .box
{
	opacity: 0.1;
	transform: scale(0.9);
	filter: blur(5px);
}
.container1 .box:hover
{
	opacity: 1;
	transform: scale(1);
	filter: blur(0);
}
.container1 .box:before
{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	filter: url(#wavy);
}
.container1 .box:nth-child(1):before
{
	background: #f8f3e7;
	

}
.container1 .box:nth-child(2):before
{
	background: #b08dfb;
}
.container1 .box:nth-child(3):before
{
	background: #0cf3ff;
}
.container1 .box .content
{
	position: absolute;
	padding: 20px;
	text-align: center;
	color: #111;
	transition: 0.5s;
}
.container1 .box .content h2
{
	
	margin-bottom: -10px;
}
svg
{
	width: 0;
	height: 0;
}
@media screen and (max-width:600px){
	.container1 .box {
		position: relative;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		transition: 0.8s;
	    height: 715px;
	}
}

@media screen and (max-width: 425px){
.container1 .box {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.8s;
    height: 690px;
}
}
@media screen and (max-width: 375px){
	.container1 .box {
		position: relative;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		transition: 0.8s;
		height: 900px;
	}
	}