.page-header-wrap {
  background: rgba(255, 255, 255, 0.9);
}

.banner-wrap {
  position: relative;
}
.banner-wrap > img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.banner-wrap .hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.banner-wrap .hover .container {
  height: 100%;
  position: relative;
}
.banner-wrap .hover .container .wrap {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.banner-wrap .hover .wrap small {
  font-size: 53px;
  font-weight: 700;
  color: #ffffff;
  display: none;
}
.banner-wrap .hover .wrap h2 {
  font-size: 40px;
  color: #fff;
  margin: 40px 0 0;
  position: relative;
}
.banner-wrap .hover .wrap h2::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 3px;
  width: 80px;
  height: 3px;
  background: #fff;
}
.banner-wrap .hover .tabs {
  position: absolute;
  width: 100%;
  left: 15px;
  bottom: 20px;
  color: #fff;
  white-space: nowrap;
  overflow-x: auto;
}
.banner-wrap .hover .tabs a {
  display: inline-block;
  line-height: 100px;
  position: relative;
}
.banner-wrap .hover .tabs a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scale(0);
  width: 30px;
  height: 3px;
  background: #fff;
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease, bottom .3s ease;
}
.banner-wrap .hover .tabs a:hover::after,
.banner-wrap .hover .tabs a.active::after {
  opacity: 1;
  bottom: 25px;
  transform: translateX(-50%) scale(1);
}
.banner-wrap .hover .tabs a + a {
  margin-left: 3%;
}

@media screen and (max-width: 640px) {
  .banner-wrap > img {
    height: 300px;
    object-fit: cover;
  }
  .banner-wrap .hover .tabs a {
    font-size: 16px;
  }
  .banner-wrap .hover .tabs a {
    line-height: 50px;
  }
  .banner-wrap .hover .wrap small {
    font-size: 24px;
  }
  .banner-wrap .hover .wrap h2::before {
    width: 40px;
    top: -10px;
  }
  .banner-wrap .hover .wrap h2 {
    margin-top: 20px;
    font-size: 30px;
  }
  .banner-wrap .hover .tabs a:hover::after, .banner-wrap .hover .tabs a.active::after {
    bottom: 10px;
  }
}
