.services-cards-wrapper {
  display: flex;
align-items: flex-start;
gap: 45px;
align-self: stretch;
}

.services-cards-wrapper .service-card {
display: flex;
padding: 20px 30px;
flex-direction: column;
align-items: flex-start;
gap: 10px;
flex: 1 0 0;
align-self: stretch;
background: #FFF;
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.services-cards-wrapper .service-card .service-card-icon {
  width: 68px;
  transform: translateY(0);
  transition: transform 0.25s ease;
}

.services-cards-wrapper .service-card:hover .service-card-icon {
  transform: translateY(-8px);   /* moves upward on hover */
}

.services-cards-wrapper a.service-card{
  text-decoration: none;
}

.services-cards-wrapper .service-card h4 {
color: #6F262F;
font-family: "alfabet",sans-serif;
font-size: 28px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: 0.84px;
text-transform: capitalize;
}

.services-cards-wrapper .service-card p{
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 28px;
letter-spacing: 0.45px;
margin-bottom: 0;
}

@media only screen and (max-width: 1460px) {
  .services-cards-wrapper .service-card{
    width: 30%;
    min-width: 20%;
  }
  .services-cards-wrapper .service-card:hover{
    width: 33%;
    min-width: 30%;
  }
}

@media only screen and (max-width:1240px) {
  .services-cards-wrapper {
  	gap: 25px;
  }
}
@media only screen and (max-width: 959px) {
  .services-cards-wrapper {
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
  }
  .services-cards-wrapper .service-card,
  .services-cards-wrapper .service-card:hover{
    flex: auto;
    max-width: 50%;
    width: calc(50% - 30px);
  }

  .services-cards-wrapper .service-card h3 {
    font-size: 30px;
  }
  .services-cards-wrapper .service-card:hover h3{
    font-size: 30px;
  }

  .services-cards-wrapper {
    flex-wrap: wrap;
  }

}

@media only screen and (max-width: 720px) {
  .services-cards-wrapper {
    flex-direction: column;
  }
    .services-cards-wrapper .service-card,
  .services-cards-wrapper .service-card:hover{
    flex: auto;
    max-width: 100%;
    width: 100%;
  }
}
