/* Service Cards styles - Background image for Service cards */

.box-1{
    background: 
        url('../images/_dash_cleaning.jpg'), /* Background image */
        linear-gradient(#051a37, #051a37); /* Color fade */
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the image */
    background-blend-mode: overlay; /* Blend the color fade with the image */
    height: auto;
    opacity: 85%;
}


#services .service-card{
  background-color: #333;
}

#services .service-card {
  transition: all 0.5s;
}

#services .service-card:hover{
  background-color:#33CCFF
}

/*.service-card .card-title .card-text{
  color:#ffffff
}*/

/* Text Color */
#services .service-card{
    color:#FFFFFF
}

#services .service-card:hover .card-text,
#services .service-card:hover .card-title {
  color: #ffffff;
}