
.single-service-style44 .img-holder{
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}
.single-service-style44 .img-holder img {
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
}
.single-service-style44:hover .img-holder img {
    transform: scale(1.2);
}
.single-service-style44:hover .overlay-style-two{
    opacity: 1;
}
.single-service-style44 .img-holder .overlay-style-two:before{
    background-color: rgb(169, 0, 6, 0.50);
}
.single-service-style44:hover .img-holder .overlay-style-two:before{
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 700ms ease 100ms;
}
.single-service-style44 .img-holder .overlay-style-two:after{
    background-color: rgb(169, 0, 6, 0.50);
}
.single-service-style44:hover .img-holder .overlay-style-two:after{
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 700ms ease 300ms;
}

.single-service-style44 .text-holder{
    position: relative;
    display: block;
    background: transparent;
    z-index: 10;

}
.single-service-style44 .text-holder .icon-holder span:before {
    display: block;
    color: #b3b3b3;
    font-size: 50px;
    margin-top: 7px;
    line-height: 102px;
}

.single-service-style44 .text-holder .inner{
    position: relative;
    display: block;
    padding: 26px 0px 0px;
    text-align: center;
    background: #ffffff;
    z-index: 1;
}
.single-service-style44 .text-holder .inner:before {
    position: absolute;
    top: -55px;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    content: "";
    z-index: -1;
}
.single-service-style44 .text-holder .inner h3{
    color: #27282c;
    font-weight: 600;
    margin: 0 0 18px;
}
.single-service-style44 .text-holder .inner .text {
    position: relative;
    display: block;
    padding: 0 30px 32px;
}
.single-service-style44 .text-holder .inner .text p{
    margin: 0;
}
.single-service-style44 .text-holder .inner .read-more a{
    color: #ededed;
    background: rgb(119 119 119);

}

.services-style2-content .owl-carousel .owl-stage-outer .owl-item.active .single-service-style44 .text-holder .icon-holder span:before {
    color: #a90006;
    transition: all 700ms ease 800ms;
}
.services-style2-content .owl-carousel .owl-stage-outer .owl-item.active .single-service-style44 .text-holder .inner .read-more a{
    color: #ffffff;
    background: rgb(91,24,24);
    background: linear-gradient(90deg, rgba(91,24,24,1) 0%, rgba(164,18,23,1) 35%, rgba(205,41,30,1) 100%);
    transition: all 700ms ease 900ms;
}

.single-service-style44{
    margin-bottom: 40px;
}

.single-service-style44:hover .text-holder .icon-holder span:before {
    color: #e9212e;
    transition: all 700ms ease 800ms;
}
.single-service-style44:hover .text-holder .inner .read-more a{
    color: #ffffff;
    background: #e9212e;
    transition: all 700ms ease 900ms;
}

/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
    background-color: transparent;
    width: 40px;
    height: 35px;

    perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;

    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: #bbb;
    color: black;
}

/* Style the back side */
.flip-card-back {
    background-color: dodgerblue;
    color: white;
    transform: rotateY(180deg);
}
