




	.box12{
	position: relative;
	width: 250px;
	height: 250px;
	background-color: transparent;
	border-radius: 50%;
	/*diplay: flex;
	justify-content: center;
	align-items: center;*/
	overflow: hidden;
	float: left;
	margin:auto;
}
.box12::before{
	content: '';
	position: absolute;
	/*left:0px;*/

	width: 250px;
	height: 250px;
	/*background-color:white;*/
	/*background-image: linear-gradient(blue,red,green,yellow,brown);*/
	/*box-shadow: 0 0 20px black;*/
	border-radius: 50%;
	left:0px;
	background-image: url("assets/img/home/emblem.jpeg");
	background-size: cover;
	/*animation:  animate 4s linear infinite;*/
}
.box12::after{
	content: '';
	position: absolute;
	inset: 0px;

	/*background-image: url("olp.jpeg");
	background-size: cover;*/
	background-image: linear-gradient(transparent,transparent,transparent,rgba(255,255,255,0.6),transparent,transparent,transparent);
	border-radius: 50%;
	animation:  animate 4s linear infinite;
}

@keyframes animate{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}