.section6{
	width: 100%;
	height: 100%;
}

.section6 h1{
	font-size: 30px;
	margin-top: 6%;
	text-align: center;
}
.section6 h1 span{
	color: #f5a934;
}
.section6-cont{
	margin-top: 5%;
	width: 90%;
    margin-left: 5%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
	gap: 50px;
}

.section6-card{position: relative;
	margin-top: 10%;
	width: 100%;
	height: 120px;
	background-color: #efefef;
	border-radius: 15px;
	transition: .3s ease;
}

.section6-circle{position: absolute;
	width: 75px;
	height: 75px;
	background-color: #f5a934;
	border-radius: 50%;
	margin-top: -2%;
	margin-left: 50%;
	transform: translate(-50%,-50%);
	transition: .3s ease;

}

.section6-circle img{
	width: 70%;
	margin-top: 10%;
	margin-left: 15%;

}

.section6-card h2{
	text-align: center;
	margin-top: 18%;
	color: #132c4f;
	font-weight: 600;
}

.section6-card:hover{
	border-radius: 45px;
}

.section6-card:hover .section6-circle{
	margin-top: 2%;
}