main {
	margin: 9rem 0;
}

.first-about-box {
	gap: 80px;
}

.about-main-img img {
	border-radius: 10px;
	max-width: 800px;
	min-width: 600px;
}

.about-main-header {
	position: relative;
}

.about-main-header::before {
	position: absolute;
	content: '';
	right: -30px;
	top: 25%;
	background-color: var(--color-primary);
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.about-featcher-title {
	position: relative;
	width: 100%;
	text-align: center;
}

.about-featcher-title::before {
	position: absolute;
	content: '';
	left: 0;
	top: 50%;
	background-color: var(--color-primary);
	width: 35%;
	height: 2px;
}

.about-featcher-title::after {
	position: absolute;
	content: '';
	right: 0;
	top: 50%;
	background-color: var(--color-primary);
	width: 35%;
	height: 2px;
}

.about-featcer-items img {
	max-width: 45px;
	margin: 0 25px;
}

.about-featcer-items {
	gap: 20px 0;
}

.about-featcer-items>*>* {
	position: relative;
	z-index: 10;
}


.knsl-icon-img{
	font-size: 25px;
	margin: 0 20px;
	background-color: var(--color-primary);
	color: #fff;
	padding: 13px;
	border-radius: 50%;
	text-align: center;
}

@media (min-width:992px) {
	.first-about-box p {
		line-height: 2.3rem;
	}
}


@media (max-width:992px) {
	.about-main-img img {
		min-width: unset;
		max-width: 300px;
		height: auto;
	}

	.first-about-box {
		gap: 30px;
	}

	main {
		margin-top: 6rem;
	}

	.about-featcher-title::before,
	.about-featcher-title::after {
		display: none;
	}

	.about-featcer-items>*>* {
		flex-direction: column;
	}

	.about-featcer-items>*>*>*>* {
		text-align: center;
	}

	.about-featcer-items>*>*>* h5 {
		font-size: 16px;
		margin: 13px 0;
	}

	.about-featcer-items>*>*>* p {
		font-size: 14px;
	}

	.about-main-header::before {
		right: -23px;
		top: 5%;
	}

	.about-main-header{
		text-align: center;
		line-height: 2.0rem;
	}
}