/* 
---------------------------------------------
Our Works Section Style
--------------------------------------------- 
*/

.our-work {
  padding-top: 120px;
}

.our-work .section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.our-work .section-heading h2 {
  font-size: 50px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.work-item img {
  width: 100%;
  transition: all 0.5s;
  display: block;
}

.work-item:hover img {
  transform: scale(1.1);
}

.work-item .work-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  z-index: 2;
  transition: all 0.3s;
}

.work-item h4 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.work-item span.category {
  font-size: 15px;
  font-weight: 400;
  color: #52d7fc;
  /* Main blue accent */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.work-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.3s;
}

.work-item:hover::after {
  opacity: 1;
}