 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: 105px 15px 140px;
    text-align: center;
    background-color: #effffa;
  }

  .services-section h2 {
    color: #3a8d7a;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: 0.44px;';
    font-family: "Raleway", sans-serif;
  ;font-family: "Raleway", sans-serif;;
  }

  /* underline below heading */
  .services-section h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 8px;
    background-color: #3a8d7a;
    margin: 18px auto 30px;
    border-radius: 2px;
  }


  .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: 46px;
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Each card */
  .service-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 410px;
    width: 100%;
    position: relative;
    border-bottom: 4px solid #3a8d7a;
  }

  /* Icon circle */
  .service-icon {
    background-color: #3a8d7a;
    width: 77px;
    height: 77px;
    border-radius: 50%;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Icon SVG or text inside */
  .service-icon svg {
    fill: #fff;
    width: 44px;
    height: 44px;
  }

  /* Title */
  .service-card h3 {
    margin: 0 0 12px;
    color: #111;
    font-family: "Raleway", Sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;
  }

  /* Description */
  .service-card p {
    margin-bottom: 20px;
    color: #444;
    font-family: "Raleway", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
  }

  /* Button */





  .service-card a.button {
	display: block;
	padding: 8px 20px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	letter-spacing: .15rem;
	position: relative;
	overflow: hidden;
	z-index: 1;
	max-width: 160px;
	margin: 0 auto 0 0;
	transition: background-color 0.3s ease;
	}
	.service-card a.button:before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0%;
		height: 100%;
		background-color:#f09c00;
		transition: all .3s;
		z-index: -1;
		transform:rotate(60deg)
	}
	.service-card a.button:hover {
		color: #fff;
		background-color:#f09c00;
    }
	.service-card a.button:hover:before {
			width: 250%;
		}
