 
 .con {
 	width: auto;
 	margin: 0 auto;
 	padding: 0 10px;
 }

 .con_title_h1 {
 	text-align: center;
 	padding: 150px 0;
 	-webkit-animation: hue 15s infinite linear;
 	background-image: -webkit-linear-gradient(92deg, #673ab7, #3f51b5);
 }
 
 .con_title_h1 span {
 	color: #fff;
 	border-bottom: 1px solid #fff;
 }
 
 @-webkit-keyframes hue {
 	from {
 		-webkit-filter: hue-rotate(0deg);
 	}
 	to {
 		-webkit-filter: hue-rotate(-360deg);
 	}
 }
 
 .animation-delay-2 {
 	-webkit-animation-delay: 0.25s;
 	animation-delay: 0.25s;
 }
 
 .animation-delay-5 {
 	-webkit-animation-delay: 0.5s;
 	animation-delay: 0.5s;
 }
 
 .animated {
 	opacity: 0;
 }