/*------------------------------
Feature Circle
---------------------------------------*/
.iq-feature-circle {
	margin: 0 auto;
	position: relative;
	display: block;
	width: 550px;
	height: 550px;
	text-align: center;
}

.iq-feature-circle .iq-img::before {
	content: "";
	border: 2px dotted #c4d6f9;
	-webkit-animation: anti-clockwise 25s linear 100000;
	animation: anti-clockwise 25s linear 100000;
	width: 500px;
	height: 500px;
	border-radius: 900px;
	display: inline-block;
}

.iq-feature-circle .iq-img {
	margin: 0 auto;
	width: 500px;
	height: 500px;
	position: relative;
	transition: all .4s ease;
	transform-origin: center center;
}

.iq-feature-circle .circle-bg {
	box-shadow: 0 20px 40px 0 rgba(67, 126, 235, 0.3);
	width: 140px;
	text-align: center;
	position: relative;
	height: 140px;
	line-height: 140px;
	border-radius: 900px;
	background: var(--primary-color);
}

.iq-feature-circle .dot-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
}

.iq-feature-circle .effect-circle:before {
	content: "";
	background: url(../images/circle.png);
	width: 270px;
	height: 270px;
	display: inline-block;
}

.iq-feature-circle .effect-circle {
	width: 270px;
	height: 270px;
	border-radius: 900px;
	border: 1px solid #c4d6f9;
	-webkit-animation: rotate-center 25s linear 100000;
	animation: rotate-center 25s linear 100000;
}

.iq-feature-circle .main-circle {
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	margin-right: -50%;
}

.iq-feature-circle .iq-img ul li .feature-info {
	position: absolute;
	margin: 0 auto;
	text-align: center;
	width: 120px;
}

.iq-feature-circle .iq-img ul li .feature-info .feature-img {
	height: 65px;
	width: 65px;
	line-height: 65px;
	border-radius: 90px;
	background: var(--white-color);
	text-align: center;
	margin: 0 auto 5px;
	box-shadow: 0 8px 38px 0 rgba(0, 0, 0, 0.1);
}

.iq-feature-circle .iq-img ul li:nth-child(1) .feature-info {
	top: -38px;
	left: -16px;
	right: 0;
}

.iq-feature-circle .iq-img ul li:nth-child(2) .feature-info {
	top: 10%;
	left: -2%;
}

.iq-feature-circle .iq-img ul li:nth-child(3) .feature-info {
	top: 10%;
	right: -2%;
}

.iq-feature-circle .iq-img ul li:nth-child(4) .feature-info {
	top: 40%;
	right: -12%;
}

.iq-feature-circle .iq-img ul li:nth-child(5) .feature-info {
	top: 40%;
	left: -12%;
}

.iq-feature-circle .iq-img ul li:nth-child(6) .feature-info {
	top: 92%;
	left: 40%;
}

.iq-feature-circle .iq-img ul li:nth-child(7) .feature-info {
	bottom: 5%;
	right: 0;
}

.iq-feature-circle .iq-img ul li:nth-child(8) .feature-info {
	bottom: 5%;
	left: 0;
}

.iq-feature-circle .iq-img ul li:nth-child(9) .feature-info {
	top: 2%;
	left: 60px;
}

.iq-feature-circle .iq-img ul li:nth-child(10) .feature-info {
	top: 2%;
	right: 60px;
}

@keyframes circle {
	0% {
		transform: rotate(0deg);
	}

	15% {
		transform: rotate(2deg);
	}

	33% {
		transform: rotate(4deg);
	}

	66% {
		transform: rotate(2deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

@-webkit-keyframes rotate-center {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotate-center {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes anti-clockwise {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

@keyframes anti-clockwise {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

@media(max-width:767px) {
	.iq-feature-circle .iq-img .feature-info h6 {
		display: none;
	}

	.iq-feature-circle {
		height: 450px;
		width: 450px;
		display: block;
		margin: 0 auto;
	}

	.iq-feature-circle .iq-img::before,
	.iq-feature-circle .iq-img {
		height: 400px;
		width: 400px;
	}

	.iq-feature-circle .iq-img ul li:nth-child(5) .feature-info {
		left: -15%;
		top: 45%;
	}

	.iq-feature-circle .iq-img ul li:nth-child(4) .feature-info {
		right: -15%;
		top: 45%;
	}
}

@media(max-width:480px) {
	.iq-feature-circle .iq-img ul li:nth-child(5) .feature-info {
		left: -12%;
	}

	.iq-feature-circle .iq-img ul li:nth-child(4) .feature-info {
		right: -12%;
	}

	.iq-feature-circle .iq-img,
	.iq-feature-circle .iq-img:before {
		height: 300px;
		width: 300px;
	}
}

@media(max-width:479px) {
	.iq-feature-circle .iq-img ul li:nth-child(1) .feature-info {
		top: -24px;
		left: 0;
	}

	.iq-feature-circle .iq-img ul li:nth-child(2) .feature-info {
		left: -10%;
	}

	.iq-feature-circle .iq-img ul li:nth-child(3) .feature-info {
		right: -10%;
	}

	.iq-feature-circle .iq-img ul li:nth-child(5) .feature-info {
		left: -20%;
	}

	.iq-feature-circle .iq-img ul li:nth-child(4) .feature-info {
		right: -20%;
	}

	.iq-feature-circle .iq-img ul li:nth-child(6) .feature-info {
		left: 26%;
	}

	.iq-feature-circle .iq-img ul li:nth-child(7) .feature-info {
		right: -10%;
	}

	.iq-feature-circle .iq-img ul li:nth-child(8) .feature-info {
		left: -10%;
	}

	.iq-feature-circle .iq-img ul li .feature-info .iq-feature-title {
		display: none;
	}

	.iq-feature-circle {
		height: 242px;
		width: 242px;
	}

	.iq-feature-circle .iq-img::before,
	.iq-feature-circle .iq-img {
		height: 242px;
		width: 242px;
	}

	.iq-feature-circle .dot-circle {
		display: none;
	}

	.iq-feature-circle .iq-img ul li .feature-info .feature-img {
		height: 45px;
		width: 45px;
		line-height: 45px;
		font-size: 24px;
	}

	.iq-feature-circle .iq-img ul li .feature-info .feature-img img {
		width: 25px;
	}

	.iq-feature-circle .circle-bg {
		height: 60px;
		line-height: 60px;
		width: 60px;
	}

	.iq-feature-circle .circle-bg img {
		width: 30px;
	}
}