.services-sections>.container{
   position: relative;
}
.sect_service_cnt{
   display: block;
   background-repeat: no-repeat;
   background-size: 75%;
   background-position: center;
   position: relative;
   height: 250px;
   overflow: hidden;
}

.sect_service_block {
   margin-bottom: 22px;
}

.sect_service_heading{
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   background: var(--prv_interactive_color);
   font-size: 0.9em;
   line-height: 1.2857142;
   color: #fff;
   padding: 16px 20px;
   transition: 0.9s;
}
/*.sect_service_bg{
   visibility: hidden;
   opacity: 0;
   background: var(--prv_interactive_color);
   height: 100%;
   z-index: 1;
   position: absolute;
   top: 182px;
   transition: top .3s, visibility .3s, opacity 10s;
   left: 0; 
   right: 0;
   bottom: 0;
}*/
.sect_service_bg {
    visibility: hidden;
    opacity: 0;
    background: var(--prv_interactive_color);
    /* height: 83%; */
    z-index: 1;
    margin: 202px 0px 0 0px;
    /* position: absolute; */
    top: 250px;
    height: 50px;
    /* border: 2px solid #000; */
    transition: top .3s, visibility .3s, opacity 10s;
    left: 0px;
    /* background: #000; */
    right: 0;
    bottom: 0px;
}
.sect_service_desc{
   display: none;
   position: absolute;
   left: 20px;
   right: 20px;
   top: 200px;
   bottom: 0;
   z-index: 2;
   margin: auto;
   color: #fff;
   align-items: center;
}
@media (max-width: 767px) {
   .sections_services{
       margin-top: 40px;
   }
   .services_subheading{
       margin-bottom: 30px;
   }
}
@media (max-width: 479px) {
   .sections_services [class*="col-"]{
       width: 100%;
   }
   .sect_service_heading{
	   height: 80px;
   }
}
@media(min-width: 768px){
   .sect_service_cnt:hover .sect_service_heading{
       visibility: none;
       opacity: 0;
       transition: 0s;
   }
   .sect_service_cnt:hover .sect_service_bg{
       visibility: visible;
       opacity: .8;
       top: 0px;
       transition: top .3s, visibility .3s, opacity .3s;
   }
   .sect_service_cnt:hover .sect_service_desc{
       display: flex;
   }
}