#background-wrapx1 {
	right: 0%;
	position: absolute;
	top:145%;
	z-index: 0;
	transform: scale(0.06);
}

#background-wrapx4 {
	right: 30%;
	position: absolute;
	top:140%;
	z-index: 0;
	transform: scale(0.1);
}

#background-wrapx5 {
	right: 40%;
	position: absolute;
	top:148%;
	z-index: 0;
	transform: scale(0.08);
}

.x4 {
	animation: bounce 2s infinite;
}

.x5 {
	animation: bounce 2s infinite;
}

/* OBJECTS */

.cloud {
	background: #fff;
	background: -moz-linear-gradient(top,  #fff 5%, #f1f1f1 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(5%,#fff), color-stop(100%,#f1f1f1));
	background: -webkit-linear-gradient(top,  #fff 5%,#f1f1f1 100%);
	background: -o-linear-gradient(top,  #fff 5%,#f1f1f1 100%);
	background: -ms-linear-gradient(top,  #fff 5%,#f1f1f1 100%);
	background: linear-gradient(top,  #fff 5%,#f1f1f1 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#f1f1f1',GradientType=0 );
	
	-webkit-border-radius: 80px;
	-moz-border-radius: 80px;
	border-radius: 80px;
	-webkit-box-shadow: 0 8px 5px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 8px 5px rgba(0, 0, 0, 0.1);
	box-shadow: 0 8px 5px rgba(0, 0, 0, 0.1);

	height: 120px;
	position: relative;
	width: 350px;

}

.cloud:after, .cloud:before {
    background: #fff;
	content: '';
	position: absolute;
	z-indeX: 0;
}

.cloud:after {
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
	height: 100px;
	left: 50px;
	top: -50px;
	width: 100px;
}

.cloud:before {
	-webkit-border-radius: 200px;
	-moz-border-radius: 200px;
	border-radius: 200px;
	width: 180px;
	height: 180px;
	right: 50px;
	top: -90px;
}

/*define media levels*/

@media (max-width: 992px) {
	#background-wrapx1 {
		right: -18%;
		position: absolute;
		top:140%;
		z-index: 0;
		transform: scale(0.04);
	}
	
	#background-wrapx4 {
		right: 30%;
		position: absolute;
		top:150%;
		z-index: 0;
		transform: scale(0.08);
	}
	
	#background-wrapx5 {
		right: 20%;
		position: absolute;
		top:147%;
		z-index: 0;
		transform: scale(0.06);
	}
}

@media (max-width: 576px) {
	#background-wrapx1 {
		right: -32%;
		position: absolute;
		top:160%;
		z-index: 0;
		transform: scale(0.04);
	}
	
	#background-wrapx4 {
		right: 30%;
		position: absolute;
		top:170%;
		z-index: 0;
		transform: scale(0.08);
	}
	
	#background-wrapx5 {
		right: 20%;
		position: absolute;
		top:163%;
		z-index: 0;
		transform: scale(0.06);
	}
  }