@charset "utf-8";


.fadeInObj {
	opacity: 0;
	transform: scale(1.2);
	transition: opacity 0.5s linear, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.fadeInNml {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.4s, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.feature_upper .feature_upper_col:nth-child(2) {
	transition-delay: 0.1s;	
}
.feature_upper  .feature_upper_col:nth-child(3) {
	transition-delay: 0.2s;	
}
.feature_upper  .feature_upper_col:nth-child(4) {
	transition-delay: 0.3s;	
}
.feature_upper .feature_bottom_col:nth-child(1) {
	transition-delay: 0.4s;	
}
.feature_upper .feature_bottom_col:nth-child(2) {
	transition-delay: 0.5s;	
}

.fadeInActive {
	opacity: 1;
	transform: scale(1);
}

.fadeInNmlActive {
	opacity: 1;
	transform: translateY(0px);

}

@keyframes fadeIn {
0% {
	opacity: 0;	
}
100% {
	opacity: 1;	
}	
}