.service_card{
  background: var(--bgColor1);
  border: 0px solid var(--brdColor1);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px var(--bgColor5);
}

.service_card .banner{
  background: var(--bgColor1);
}
.service_card .banner img{
  width: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to top, transparent 5%, black 100%);
  mask-image: linear-gradient(to top, transparent 5%, black 100%);*/
}

.service_card .details{
  margin-top: -80px;
  padding: 20px 20px 15px;
}
.service_card .icon img{ 
  width: 60px;
  transition: .2s;
}
.service_card:hover .icon img{
  margin-left: 10px; 
}
.service_card h3{
  font-size: 20px;
  font-family: var(--fontFamily1);
  font-weight: 750;
  color: var(--textColor1);
  margin-top: 15px;
  border-bottom: 2px solid black;
  display: inline-block;
}
.service_card p{
  color: var(--textColor1);
  margin-top: 15px;
}