.sq-anim-txt {
	transition: all 400ms ease-in;
	transform: translateY(20px);
	opacity: 0;
}

.sq-anim-txt2 {
	transform: translateY(0px) !important;
	opacity: 1 !important;
}

.anim-sq-1 {
	width: 40px;
	height: 40px;
	background-color: #856cff;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 5px;
	opacity: 0;
}

.anim-sq-2 {
	width: 30px;
	height: 30px;
	background-color: #39b4f0;
	position: absolute;
	top: 23px;
	left: 17px;
	opacity: 0;
	border-radius: 4px;
}

.anim-sq-3 {
	width: 20px;
	height: 20px;
	background-color: #9797e1;
	position: absolute;
	top: 46px;
	left: -10px;
	opacity: 0;
	border-radius: 3px;
}

.anim-sq-trigger .anim-sq-1 {
	animation: popin1 500ms forwards;
	animation-delay: 300ms;
}

.anim-sq-trigger .anim-sq-2 {
	animation: popin1 800ms forwards;
	animation-delay: 450ms;
}

.anim-sq-trigger .anim-sq-3 {
	animation: popin1 1000ms forwards;
	animation-delay: 600ms;
}

.anim-sq-4 {
	width: 40px;
	height: 40px;
	background-color: #856cff;
	position: absolute;
	top: 18px;
	left: 4px;
	border-radius: 5px;
	opacity: 0;
}

.anim-sq-5 {
	width: 30px;
	height: 30px;
	background-color: #39b4f0;
	position: absolute;
	top: 5px;
	left: -6px;
	opacity: 0;
	border-radius: 4px;
}

.anim-sq-6 {
	width: 20px;
	height: 20px;
	background-color: #9797e1;
	position: absolute;
	top: 46px;
	left: -10px;
	opacity: 0;
	border-radius: 3px;
}

.anim-sq-trigger .anim-sq-4 {
	animation: popin1 450ms forwards;
}

.anim-sq-trigger .anim-sq-5 {
	animation: popin1 800ms forwards;
	animation-delay: 150ms;
}

.anim-sq-trigger .anim-sq-6 {
	animation: popin1 1000ms forwards;
	animation-delay: 300ms;
}

.square-anim-head {
	font-size: 54px;
	padding: 0px 22px 0 57px;
	display: inline-block;
	position: relative;
	margin: 14px auto 20px auto;
	color: #3a93c8;
	letter-spacing: -1px;
}

.anim-squares {
	position: absolute;
	top: 0;
	left: 0;
}

.anim-squares2 {
	position: absolute;
	top: 0;
	right: 0;
}

.solo-fadeup {
	transition: all 600ms ease-in;
	transform: translateY(10px);
	opacity: 0;
}

.solo-anim {
	transform: translateY(0px);
	opacity: 1;
}

@keyframes popin1 {

  0% {
    opacity: 0;
	transform: scale(0);
  }

  50% {
	transform: scale(150%);
  }
  
  100% {
	opacity: .5;
	transform: scale(100%);
  }
  
}



@media only screen and (max-width: 560px) {

	.anim-squares {
		top: 6px;
	}
	
	.anim-squares2 {
		display: none;
	}
	
	.square-anim-head {
		font-size: 36px !important;
		padding: 0px 22px 0 34px;
	}

	.anim-sq-1 {
		width: 22px;
		height: 22px;
		background-color: #856cff;
		position: absolute;
		top: 0;
		left: 0;
		border-radius: 5px;
		opacity: 0;
	}

	.anim-sq-2 {
		width: 15px;
		height: 15px;
		background-color: #39b4f0;
		position: absolute;
		top: 17px;
		left: 12px;
		opacity: 0;
		border-radius: 4px;
	}

	.anim-sq-3 {
		width: 13px;
		height: 13px;
		background-color: #9797e1;
		position: absolute;
		top: 25px;
		left: -4px;
		opacity: 0;
		border-radius: 3px;
	}



}