button:focus,
button:active {
	outline: none;
}
/*================================
  Services Style 1
==================================*/
.service-img {
  position: relative;
}
.service-img > h2 {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 40px;
  transition: all 0.45s;
  -webkit-transition: all 0.45s;
  -moz-transition: all 0.45s;
  -o-transition: all 0.45s;
}
.service-img figure {
  position: relative;
  overflow: hidden;
}
.service-img figure img {
  width: 100%;
  height: auto;
}
.service-img figure::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
   transition: all 0.35s;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  -o-transition: all 0.35s;
}
.service-img figure::after {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	bottom: -40px;
	left: 0;
	transition: all 0.35s;
  	-webkit-transition: all 0.35s;
  	-moz-transition: all 0.35s;
  	-o-transition: all 0.35s;
	background-image:linear-gradient(to top, rgba(0,0,0,0.7), rgba(255, 255, 2552, 0));
}
.service-img > a {
  display: inline-block;
  position: absolute;
  bottom: 0;
  padding: 2px 0 0;
  opacity: 0;
  left: 40px;
  visibility: hidden;
  transition: all 0.45s;
  -webkit-transition: all 0.45s;
  -moz-transition: all 0.45s;
  -o-transition: all 0.45s;
}
.service-img:hover > a {
  bottom: 45px;
  opacity: 1;
  visibility: visible;
}
.service-img:hover figure::before {
  opacity: 1;
  visibility: visible;
}
.service-img:hover figure::after {
	visibility: hidden;
	opacity: 0;
}
.service-img:hover > h2 {
  padding-bottom: 70px;
}
.services-slider {
	position: relative;
}
.owl-nav > button{
	position: absolute;
	top: 50%;
	left: -100px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}
.owl-nav > button.owl-next{
	left: auto;
	right: -100px;
}
.prev-slide {
	background-image: url('../images/arrow-left.png');
	background-repeat: no-repeat;
	width: 35px;
	height: 25px;
}
.next-slide {
	background-image: url('../images/arrow-right.png');
	background-repeat: no-repeat;
	width: 35px;
	height: 25px;
}
/* Service Style 2 Start*/
.service-wrap .service-item img {
    width: 85px;
    height: 85px;
    z-index: 1;
    position: relative;
}
.service-wrap .service-item h2 {
    margin-top: 55px;
    margin-bottom: 17px;
}
.service-wrap .service-item {
    background-color: white;
    padding: 90px 50px 32px;
    width: 100%;
    border: 1px solid #e1e1e1;
    height: 100%;
    display: grid;
    align-content: center;
    transition: 0.3s ease-in-out;
}
.service-wrap .service-item figure {
    display: flex;
    justify-content: center;
    position: relative;
}
.service-wrap .service-item figure:before {
    content: "";
    background: #f7f7f7;
    width: 150px;
    height: 150px;
    position: absolute;
    border-radius: 100px;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.service-item.text-center figure, .service-item.text-center h2, .service-item.text-center p {
    text-align: center;
}
.service-wrap .service-item:hover {
    box-shadow: 5px 2px 20px 9px #00000010;
    -moz-box-shadow: box-shadow: 5px 2px 20px 9px #00000010;
    -webkit-box-shadow: box-shadow: 5px 2px 20px 9px #00000010;
    z-index: 1;
}
.service_video_box a i {
    color: white;
}
.service-wrap .service-item p {
    font-size: 18px;
    line-height: 28px;
    color: #666;
    font-weight: 400;
    text-align: center;
}
.service-wrap .service-item p:hover {
    color: #666;
}
.service-wrap .service-item {
	padding: 90px 60px 32px;
}
.service_video_box {
    position: relative;
}
.service_video_box a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    animation: pulse-spread 2s infinite;
}
@-webkit-keyframes pulse-spread {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(242,105,56, 0.6);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(242,105,56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(242,105,56, 0);
  }
}
@keyframes pulse-spread {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(242,105,56, 0.6);
    box-shadow: 0 0 0 0 rgba(242,105,56, 0.6);
  }
  70% {
    -moz-box-shadow: 0 0 0 20px rgba(242,105,56, 0);
    box-shadow: 0 0 0 20px rgba(242,105,56, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
.service_video_box a i {
    font-size: 30px;
}
.service_video_box img {
    max-height: 425px !important;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.service-wrap {
    padding: 0 10px;
}
/* Service Style 2 End*/ 