{
	margin:0; padding:0;
	box-sizing; border-box;
 }
.container{
	position: relative;
	min-heigh: 100vh;
	background: #ddd;
	}
	
.container h1{
	font-size: 40px;
	font-family: Verdana, Geneva, ahoma, sans-serif;
	font-weight: normal;
	padding:15px;
	color:#333;
	text-align: center;
	text-transform: capitalize;
	}
.container .image-container{
	dispaly:flex;
	flex-wrap:wrap;
	gap:15px;
	justify-content: center;
	padding:10px;
	}
.container .image-container .image{
		height:250px;
		width:350px;
		border:10px solid #fff;
		box-shadow: 0 5px 15px rgba(0,0,0,.1);
		overflow:hidden;
		cursor: pointer;
		}
.container .image-container .image img{
		height:100%;
		width:100%;
		object-fi: cover;
		transition: .2s linear;
		}
.container .image-container .image:hover img{
		transform: scale(1.1);
		}
		
.container .popup-image{
		position: fixed;
		top:0; left:0;
		background:fgb(0,0,0,.9);
		height: 100%;
		width: 100%;
		z-index: 100%;
		dispaly:none;
		}
.container .popup-image span{
		position: absolute;
		top:0; right:10px;
		font-size: 60px;
		font-weight: bolder;
		color: #fff;
		cursor:pointer;
		z-index: 100%;
		}
.container .popup-image img{
		position: absolute;
		top:50%; left:50%;
		transform: translate(-50%, -50%);
		border-radius: 5px;
		width:750px;
		object-fit: cover;
		}
		
.close {
  position: absolute;
  top: 3px;
  right: 20px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width:768px){
		.container .popup-image img{
			width:95%;
		}
		}
		
.responsive {
  width: 100%;
  height: auto;
}
.img-responsive {
  width: 100%;
  height: auto;
}
.containerresponsive{
  width: 100%;
  height: auto;
}

.service-card {
  text-align: center;
  margin: 12px 0 30px;
  padding: 50px 60px 30px;
  background-color: #F0F8FF;
  border-radius: 10px;
  min-height: 480px;
  -webkit-box-shadow: 0 7px 20px rgba(85, 85, 85, 0.16);
  -moz-box-shadow: 0 7px 20px rgba(85, 85, 85, 0.16);
  box-shadow: 0 7px 20px rgba(85, 85, 85, 0.16);
}
.service-card .btn:not(:first-child) {
    margin-top: 0px;
}
.service-card .btn {
    min-width: 160px;
}

