/*============================================================================ ============================== SECTION HOME SERVICES ============================= ==============================================================================*/
.widget-services{
  position: relative; 
}
.widget-services .container-fluid{
  padding:0;
}
.widget-services .service .service_inner{
  padding: 50px 15px 55px;
  display:flex;
  flex-direction: column;
  gap:20px;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;  
  position:relative;
  text-align:center;
}
.widget-services.show_line .service .service_inner{
  border-top:1px solid var(--border-color);
  border-bottom:1px solid var(--border-color);  
}
.widget-services.show_line .service .service_inner:before{
  content: "";
  position: absolute;
  top: 0px;
  height: 100%;
  background-color: var(--border-color);
  bottom: 0px;
  right:0;
  width: 1px;
}
.widget-services.show_line .service .service_inner:after{
  content: "";
  position: absolute;
  right: -1px;
  height: 1px;
  background-color: var(--main-color2);
  transition: all .5s ease-out 0s;
  bottom: 0px;
  width: 0;
}
.widget-services.show_line .service .service_inner:hover:after{
  width:calc(100% + 1px);
  left:-1px;
  right:auto;
}
.rtl .widget-services.show_line .service .service_inner:after{
  left:-1px;
  right:auto;
}
.rtl .widget-services.show_line .service .service_inner:hover:after{
  left:auto;
  right:-1px;
}
.widget-services .service .service-ico {
  line-height: 100%;
  width:40px;
  height:40px;
  text-align:center;   
}
.widget-services .service .service-ico img{
   -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display:inline-block;
  width:40px;
  height:40px;
}
.widget-services .service .service-ico i {
  font-size: 42px;
  color:var(--link-hover);
}
.widget-services .service .service-info h4 {
  margin: 0;
  text-transform: capitalize;
  font-size: calc(var(--font-size-body) + 4px);;
  line-height: 30px;
  color:var(--link-color);
  font-weight: var(--font-medium);  
}
.widget-services .service_inner .service-info p {
  font-size: var(--font-size-body);
  color: var(--color-text);
  margin-top: 5px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .widget-services .service .service_inner{
    padding: 40px 15px 45px;
  }
}
}