#fbx-services {
	padding-bottom: 100px;
}
.single-service {
	width: calc(25% - 20px);
	margin: 10px;
	position: relative;
	overflow: hidden;
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.single-service img {
	width: 100%;
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	transition-duration: 1s;
}

.single-service:hover img {
	-webkit-transform: scale(1.2, 1.2);
	-ms-transform: scale(1.2, 1.2);
	transform: scale(1.2, 1.2);
}

.service-content {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
	background-image: -o-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
	background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.service-content h3 {
	color: var(--clr-txt1);
	font-size: 30px;
	text-transform: uppercase;
	position: absolute;
	bottom: 30px;
	left: 30px;
	margin-bottom: 0px;
}
@media (min-width: 992px) {
  .d-flex-slide:not(.owl-loaded).wrapper-service {
    flex-wrap: wrap;
  }
  .d-flex-slide:not(.owl-loaded).wrapper-service .item-one.single-service {
      width: calc(25% - 15px);
      max-width: calc(25% - 15px);
      flex: 0 0 calc(25% - 15px);
      margin: 0;
  }
}

@media (max-width: 991px) {
  .owl-loaded.wrapper-service .owl-stage {
    left: -25px;
  }
  .single-service {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .single-service {
    width: 100%;
  }
}



