.cleaning h2,
.staffing h2 {
  color: var(--primary-color);
}

.service p {
  color: var(--text-dark);
}
/* .cleaning-widget img,
.staffing-widget img {
  border-radius: 10px;
} */
.cleaning-widget .col-md-6,
.staffing-widget .col-md-6 {
  position: relative;
  overflow: hidden;
}
.cleaning-widget .image-content,
.staffing-widget .image-content {
  width: 95%;
  height: 100%;
  position: absolute;
  opacity: 0;
  bottom: -250px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 10px;
  color: #fff;
  transition: all 1s ease;
  background: linear-gradient(rgba(255, 127, 80, 0.5), #ce12126c);
}

.cleaning-widget .col-md-6:hover .image-content,
.staffing-widget .col-md-6:hover .image-content {
  bottom: 0;
  opacity: 1;
}

.owl-carousel .item {
  display: flex;
  justify-content: center;
}

.owl-carousel p {
  color: #666;
}
.owl-carousel p span {
  margin-left: 90%;
}
.cleaning-widget .cards{

  background-color: var(--text-light);
}
.cleaning-widget .cards img{
  transform: scale(1.02);
  transform: translateX(-1px);
  box-shadow: #666 2px 4px 6px;
  transition: all 1s ease;
}
.cleaning-widget .cards img:hover{
  transform: scale(1);
  transform: translateX(0);
  box-shadow: none;
}
.cleaning-widget .cards p{
  transition: all 1s ease;
}
.cleaning-widget .cards p:hover{
  background-color: var(--primary-color);
  color: #fff;
}