.section-service{
	margin-bottom: 40px;
}

.service-card-wrapper{
	max-width: 1200px;
	margin: 0 auto;
	background: #fff;
	padding: 25px;
}

/*.card-left{
	width: 100%;
}

img{
	width: 100%;
	display: block;
}
*/
.img-display{
	overflow: hidden;
}

.img-showcase{
	display: flex;
	width: 100%;
	transition: all 0.5s ease;
}

.img-showcase img{
	min-width: 100%;
}

.img-select{
	display: flex;
	border: solid 1px #858485;
}

.img-item{
	margin: 0.3rem;
}

.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3){
	margin-right: 0;
}

.img-item:hover{
	opacity: 0.8;
}

.service-content{
	padding: 2rem 1rem;
}

.service-title{
	font-size: 3rem;
	text-transform: capitalize;
	font-weight: 700;
	position: relative;
	color: #090684;
	margin: 1rem 0;
}

.service-title:after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	height: 3px;
	width: 50px;
	background: #f05b2e;
}

.service-detail{
	padding-bottom: 0.6rem;
}

.service-detail p{
	text-size: 0.6rem;
	padding: 0.3rem;
}

.meter-vid{
	margin-bottom: 40px;
}

@media screen and (min-width: 992px){
	.service-card{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 1.5rem;
	}

	.service-card-wrapper{
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.service-imgs{
		display: flex;
		flex-direction: column;
		padding-top: ;
	}

	.service-content{
		padding-top: 0;
	}
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin:20px 20px;
}

.maincontainer{
	position: relative;
	width: 100%;
	height: 320px;

	overflow: hidden;
}

.thecard{
	position: absolute;
	width: 100%;
	height: 100%;
/*	transform-style: preserve-3d;*/
	transition: all 0.5s ease;
	border-radius: 20px;
	
}

.thecard:hover{
	transform: rotateY(90deg);
}

.card-front{
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border-radius: 20px;

}
.card-front > img{
	display: block;
  width: 100%;
/*  aspect-ratio: 1 / 1;*/
  object-fit: cover;
  object-position: center;
}

.card-back{
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	transform: rotateY(90deg);
	border-radius: 20px;
	background: green;
}

.card-container{
	position: relative;
	width: 250px;
	height: 320px;
/*	background: green;*/
}

.card-service{
	position: absolute;
	width: 100%;
	height: 100%;
/*	transform-style: preserve-3d;*/
	transition: all 0.5s ease;
/*	background: limegreen;*/
perspective: 100px;
}

.card-service:hover{
	transform: rotateY(100deg);
}

.card-top{
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	background: yellow;
	border-radius: 20px;

}

.card-down{
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	background: green;
	transform: rotateY(100deg);

}

.flip-wrapper{
	display: block;
	position: absolute;
	width: 250px;
	height: 320px;

}

label{
	position: relative;
	width: 100%;
	height: 380px;
	perspective: 1000px;
	transform-style: preserve-3d;
	cursor: pointer;
	overflow: hidden;
}

.flip-card{
	position: absolute; 	
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.flip-card .front,
.flip-card .back{
	position: absolute;
	width: 100%;
	height: 100%;
	background: #fff;
	text-align: center;
	backface-visibility: hidden;
	border-radius: 5px;
}

.flip-card .back{
	transform: rotateY(180deg);
	color: #000;
	background: #fff;
	padding: 20px;
	text-align: justify;
}

label:hover .flip-card{
	transform: rotateX(2deg);
	box-shadow: 0 20px 20px rgba(50, 60, 60, 0.2);
}

input {
	display: none;
}

:checked + .flip-card{
	transform: rotateY(180deg);
}

label:hover .flip-card{
	transform: rotateY(180deg);
	box-shadow: 0 20px 20px rgba(255, 255, 255, 0.2);
}

.front img{
	object-fit: cover;
	object-position: center;
	margin:;
	border-radius:  5px 5px 0 0;
}

.back h2{
	color: #f05b2e;
	text-align: center;
}

hr {
	width: 80%;
	margin: 15px auto 20px auto;
	background: #f05b2e;
}

.map-container{
	margin: 40px 0;
}





















