body {
  font-family: "Didact Gothic";
  font-size: 22px;
  color: #0d1e2d;
}
.section {
  padding: 3rem 0;
}
h2 {
  font-size: 36px;
  line-height: 1.0;
}

.item {
  border: none;
  margin-bottom: 30px;
}

.item .item-title {
  display: block;
  position: relative;
  overflow: hidden;
  text-align: center;
  color:#0d1e2d;
  text-decoration: none;
}

.item .item-title h3 {
  margin-bottom: 0;
}

.item .item-wrap {
  display: block;
  position: relative;
  overflow: hidden;
}

.item .item-wrap:after {
  z-index: 2;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}

.item .item-wrap img {
  transition: 0.3s transform ease;
  transform: scale(1);
}

.item .item-wrap>.work-info {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  z-index: 3;
  transform: translateY(-50%);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  margin-top: 20px;
  transition: 0.3s all ease;
}

.item .item-wrap>.work-info h3 {
  font-size: 40px;
  margin-bottom: 0;
}

.item .item-wrap>.work-info span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

.item .item-wrap:hover {
  text-decoration: none;
}

.item .item-wrap:hover img {
  transform: scale(1.05);
}

.item .item-wrap:hover:after {
  opacity: 1;
  visibility: visible;
}

.item .item-wrap:hover .work-info {
  margin-top: 0px;
  opacity: 1;
  visibility: visible;
}

.sticky-content h3 {
  margin-top: 24px;
}

.title-link {
  color:#0d1e2d;
  text-decoration: none;
}