 body.widget-snippet .service-card a.button,  .fee .widget-snippet .service-card a.button{
   z-index: unset;
   overflow: unset;
 }
.services-section {
    margin: 0 auto;
    padding: 110px 15px 125px;
    text-align: center;
    background-color: rgba(244, 244, 244, 1);
  }

  /* underline below heading */

  .services-section p.description {
    max-width: 870px;
    margin: 0 auto 50px;
    font-weight: 400;
    font-size: 20px;
    color: #444;
    line-height: 1.5;
  }

  /* Grid container */
  .services-grid {
    gap: 27px;
    max-width: 1460px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 30px;
  }

  /* Each card */
  .service-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 1px rgba(0,0,0,0.05);
    padding: 40px 34px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(100%/4 - 22px);
    position: relative;
    border-bottom: 4px solid #3a8d7a;
    border: 1px solid rgba(0, 0, 0, 0.04);
  }

  /* Icon circle */
  .service-icon {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	margin-bottom: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	}
.service-icon img{
	/* width: 32px; */
	/* height: 31px; */
	object-fit:contain;
}

  /* Icon SVG or text inside */
  .service-icon svg {
    fill: #fff;
    width: 44px;
    height: 44px;
  }

  /* Title */
  .service-card h3 {
    margin: 0 0 15px;
    color: #111;
    font-size: 26px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    letter-spacing: -1px;
  }

  /* Description */
  .service-card p {
    margin-bottom: 30px;
    color: #444;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    padding: 0;
  }

  /* Button */
  .service-card a.button {
	text-decoration: none;
	display: block;
	padding: 10px 25px;
	color: #000;
	text-transform: capitalize;
	font-weight: 500;
	font-size: 16px;
	cursor: pointer;
	letter-spacing: 0;
	position: relative;
	overflow: hidden;
	z-index: 1;
	max-width: max-content;
	margin: auto auto 0 0;
	transition: background-color 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.3);
	background-color: transparent;
	border-radius: 10px;
	}
.service-card:hover{
	border: 1px solid rgba(248, 114, 82, 1);
}
	.service-card a.button:hover {
		color: #fff;
		background-color:#f87252;
		border: 1px solid rgba(248, 114, 82, 1);
    }
.service-card:hover .service-icon img{/* filter: invert(65%) sepia(15%) saturate(5558%) hue-rotate(322deg) brightness(94%) contrast(106%); */}

@media all and (max-width:1280px){
.service-card {
    padding: 35px 25px;
}
}
@media all and (max-width:1200px){
.service-card {
   width: calc(100%/2 - 22px);
}
}
@media all and (max-width:991px){
.services-section {
    margin: 0 auto;
    padding: 80px 15px 80px;
}
 .services-grid {
    padding: 0;
}
}
@media all and (max-width:767px){
.services-section {
    margin: 0 auto;
    padding: 60px 15px 60px;
}
.service-card {
   width: 100%;
}
.services-grid {
    gap: 20px;
    padding: 0;
} 
}
