.pg-plumb-grid {
  display: grid;
}
.pg-plumb-item {
  position: relative;
  overflow: hidden;
}
.pg-plumb-content-wrap {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  inset-block-end: 0;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 20px;
  background-color: #f1f9fa;
  justify-content: center;
}
.pg-plumb-content {
  text-align: center;
}
.pg-plumb-title,
.pg-plumb-text,
.pg-plumb-readmore {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.31, 0.67, 0.36, 1);
}
.pg-plumb-item:hover .pg-plumb-title,
.pg-plumb-item:hover .pg-plumb-text,
.pg-plumb-item:hover .pg-plumb-readmore {
  opacity: 1;
  transform: translateY(0);
}
.pg-plumb-item:hover .pg-plumb-title {
  transition-delay: 0.4s;
}
.pg-plumb-item:hover .pg-plumb-text {
  transition-delay: 0.5s;
}
.pg-plumb-item:hover .pg-plumb-readmore {
  transition-delay: 0.5s;
}
.pg-plumb-text {
  color: #567687;
  font-size: 14px;
  margin-block-end: 16px;
  p {
    margin: 0;
  }
}
.pg-plumb-title {
  font-size: 35px;
  text-transform: capitalize;
  font-weight: 700;
  margin: 0;
  margin-block-end: 12px;
  color: rgba(13, 59, 84, 0.8);
}
.pg-plumb-readmore a {
  font-size: 10px;
  color: #0d3b54;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.3s ease;
  border: 1px solid #0d3b54;
  padding: 8px 12px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
}
.pg-plumb-readmore a:hover {
  color: #fff;
  background-color: #0d3b54;
}
.pg-plumb-image-wrap {
  block-size: 100%;
  inline-size: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: all 0.4s ease-in-out;
  .pg-plumb-img {
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
  }
}
.pg-plumb-item:hover .pg-plumb-image-wrap {
  clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
}
