/**Industries Section**/
.path-industries section{
  padding: 70px 0;
}
.industries-section .industries-list .card:hover{
  transform: translateY(-8px);
  border-color: var(--primary-red);
  background-color: var(--primary-red);
  box-shadow: var(--shadow-red);
}
.industries-section .industries-list .card:hover .card-body,
.industries-section .industries-list .card:hover .card-title{
  color: #ffffff;
}
.industries-section .img-wrapper{
  width: 35px;
  height: 35px;
  background-size: 35px;
  background-repeat: no-repeat;
  background-position: center;  
}
.industries-section .hotels--resorts .img-wrapper{
  background-image: url(../../images/icons/industries/hotel.svg);
}
.industries-section .card:hover .hotels--resorts .img-wrapper{
  background-image: url(../../images/icons/industries/hotel-hover.svg);
}
.industries-section .restaurants--cafes .img-wrapper{
  background-image: url(../../images/icons/industries/cafe.svg);
}
.industries-section .card:hover .restaurants--cafes .img-wrapper{
  background-image: url(../../images/icons/industries/cafe-hover.svg);
}
.industries-section .hospitals--clinics .img-wrapper{
  background-image: url(../../images/icons/industries/hospital.svg);
}
.industries-section .card:hover .hospitals--clinics .img-wrapper{
  background-image: url(../../images/icons/industries/hospital-hover.svg);
}
.industries-section .supermarkets--retail .img-wrapper{
  background-image: url(../../images/icons/industries/supermarket.svg);
}
.industries-section .card:hover .supermarkets--retail .img-wrapper{
  background-image: url(../../images/icons/industries/supermarket-hover.svg);
}
.industries-section .apartments--villas .img-wrapper{
  background-image: url(../../images/icons/industries/villa.svg);
}
.industries-section .card:hover .apartments--villas .img-wrapper{
  background-image: url(../../images/icons/industries/villa-hover.svg);
}
.industries-section .educational-institutions .img-wrapper{
  background-image: url(../../images/icons/industries/institution.svg);
}
.industries-section .card:hover .educational-institutions .img-wrapper{
  background-image: url(../../images/icons/industries/institution-hover.svg);
}
.industries-section .warehouses--logistics .img-wrapper{
  background-image: url(../../images/icons/industries/logistics.svg);
}
.industries-section .card:hover .warehouses--logistics .img-wrapper{
  background-image: url(../../images/icons/industries/logistics-hover.svg);
}
.industries-section .food-processing-units .img-wrapper{
  background-image: url(../../images/icons/industries/food-process.svg);
}
.industries-section .card:hover .food-processing-units .img-wrapper{
  background-image: url(../../images/icons/industries/food-process-hover.svg);
}
.industries-section .government--corporate .img-wrapper{
  background-image: url(../../images/icons/industries/corporate.svg);
}
.industries-section .card:hover .government--corporate .img-wrapper{
  background-image: url(../../images/icons/industries/corporate-hover.svg);
}
/**Industries Section Ends**/