    .inner-banner {
      position: relative;
      width: 100%;
      height: 550px;
      overflow: hidden;
    }

    .inner-banner img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .breadcrumb-wrapper {
      position: absolute;
      bottom: 20px;
      right: 20px;
      background-color: #d32f2f;
      border-radius: 2rem;
      padding: 0.5rem 1.5rem;
      color: white;
      z-index: 2;
    }

    .breadcrumb-wrapper a {
      color: white;
      text-decoration: none;
      font-weight: 600;
    }

    .breadcrumb-wrapper span {
      margin: 0 8px;
      font-weight: bold;
    }

    @media (max-width: 767px) {
      .inner-banner {
        height: 300px;
      }

      .breadcrumb-wrapper {
        padding: 0.3rem 1rem;
        font-size: 14px;
      }
    }