.header-banner {
  background-color: #f2fafa;
  position: relative; }
  .header-banner__inner {
    display: flex;
    justify-content: space-between; }
  .header-banner__left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 20px 0;
    gap: 4rem; }
    @media (max-width: 1023px) {
      .header-banner__left {
        width: 50%;
        padding: 16px 0;
        gap: 2rem; } }
    @media (max-width: 767px) {
      .header-banner__left {
        align-items: flex-start;
        flex-direction: column;
        padding: 5px 0; } }
  .header-banner__right {
    position: relative;
    min-width: 50%;
    flex-grow: 1; }
    @media (max-width: 1023px) {
      .header-banner__right {
        width: 50%; } }
  .header-banner__img {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 16px);
    height: 100%; }
    @media (max-width: 767px) {
      .header-banner__img {
        left: -10px; } }
    .header-banner__img .lazy-img-wrap {
      height: 100%; }
    .header-banner__img img {
      height: 100%;
      object-fit: cover;
      object-position: left; }
  .header-banner__title {
    max-width: 385px;
    color: #00A19B;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.1; }
    .header-banner__title span {
      color: #E74829; }
    @media (max-width: 1023px) {
      .header-banner__title {
        max-width: 280px; } }
  .header-banner::after {
    content: "";
    pointer-events: none;
    width: 100%;
    height: 100%;
    transition: background-color 0.2s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    position: absolute;
    top: 0;
    left: 0; }
  .header-banner:hover::after {
    background-color: #0000001a; }

.detail-catalog-banner {
  width: 100%;
  background-color: transparent;
  position: relative;
  cursor: pointer; }
  .detail-catalog-banner::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    transition: background-color 0.2s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    pointer-events: none; }
  .detail-catalog-banner:hover::after {
    background-color: rgba(0, 0, 0, 0.1); }
  .detail-catalog-banner .lazy-img-wrap {
    height: 100%; }
  .detail-catalog-banner img {
    height: 100%;
    width: 100%;
    object-fit: cover; }
