.banner-wrap {
  position: relative;
}
.banner-wrap > img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.banner-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, #0F1C3C, rgba(15, 28, 60, 0.8), rgba(15, 28, 60, 0.2), rgba(15, 28, 60, 0.1), rgba(15, 28, 60, 0.1));
}
.banner-wrap .hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
.banner-wrap .hover > img {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner-wrap .hover h2 {
  font-size: 32px;
  color: #FFFFFF;
  font-weight: 400;
  margin: 0 0 17px;
  position: relative;
  z-index: 1;
}
.banner-wrap .hover small {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .banner-wrap > img {
    height: 260px;
    object-fit: cover;
  }
  .banner-wrap .hover h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .banner-wrap .hover small {
    font-size: 12px;
  }
  .banner-wrap .hover {
    width: 95%;
  }
  .banner-wrap .hover > img {
    width: 80%;
    margin-top: -10px;
  }
}
