

.container {
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 768px) {
	.container{
		width: 750px;
		
	}
}
@media (min-width: 992px) {
	.container{
		width: 970px;
	}
}
@media (min-width: 1200px) {
	.container{
		width: 1080px;
	}
}

/* End Global */


/* Start features */



/* End features */

/* Start Services */
.cone .container {
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(250px, 1fr));
	grid-gap: 10px;
}


section .card .image {
	height: 140px;
	width: 140px;
	border-radius: 50%;
	padding: 3px;
	
}
section .card .image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 50%;
	border: 3px solid #fff;
	
}
.card {
	position: relative;
	background: #ebeced;
	border-radius: 20px;
	margin: 10px 0;
}
.card::before{
	content: "";
	position: absolute;
	height: 35%;
	width: 100%;
	background-color: #00bcd4;
	border-radius: 20px 20px 0 0;
}
.card .card-content{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px;
	position: relative;
	
}
.card .name-pro {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 10px;
	color: #333;
}
.name-pro .nam {
	font-size: 20px;
	font-weight: 600;
}
.name-pro .pro {
	font-size: 15px;
	font-weight: 500;
}
.card .button1 {
	width: 100%;
	display: flex;
	justify-content: space-around;
	margin-top: 10px;
}
.card .button1 button {
	background: #00bcd4;
	outline: none;
	border: none;
	color: #fff;
	padding: 8px 22px;
	border-radius: 20px;
	font-size: 14px;
	trnsition: all 0.3s ease;
	cursor:pointer;
	
}
.button1 button:hover {
	background: #110033;	
}
/* End Services */

