.banner_info_list_item_text:hover a{
  color: #1A51BB;
}

.industry_card_more:hover a{
  color: #1A51BB;
}

.industryDetail_title div span:hover a{
  color: #1A51BB;
}

.industryDetail-left ul li:hover a{
  color: #1A51BB;
}
.service div:hover img{
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}
.service div:hover div{
  color: #1A51BB;
}

.about-card:hover img:first-child{
  animation: flip 1.5s 1 ease-in-out;
}
.about-card:hover{
  margin-top: 15px;
  transition: all 1s ease-out;
}

@keyframes flip {
	0% {
		-webkit-transform: perspective(1200px) scaleX(1) translateZ(0) rotateY(-1turn);
		transform: perspective(1200px) scaleX(1) translateZ(0) rotateY(-1turn);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	40% {
		-webkit-transform: perspective(1200px) scaleX(1) translateZ(150px) rotateY(-190deg);
		transform: perspective(1200px) scaleX(1) translateZ(150px) rotateY(-190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	50% {
		-webkit-transform: perspective(1200px) scaleX(1) translateZ(150px) rotateY(-170deg);
		transform: perspective(1200px) scaleX(1) translateZ(150px) rotateY(-170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	80% {
		-webkit-transform: perspective(1200px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
		transform: perspective(1200px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	to {
		-webkit-transform: perspective(1200px) scaleX(1) translateZ(0) rotateY(0deg);
		transform: perspective(1200px) scaleX(1) translateZ(0) rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}