/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    padding: 208px 0 100px;
    background-color: #000000;
    overflow: hidden;
    z-index: 1;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .45;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.page-header__inner {
    position: relative;
    display: block;
    text-align: center;
}

.page-header__inner h2 {
    font-size: 55px;
    font-weight: 500;
    line-height: 75px;
    color: #feed01;
    text-transform: capitalize;
    letter-spacing: -3px;
    margin-bottom: 23px;
    font-family: var(--gizmo-font);
}

.thm-breadcrumb__box {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.thm-breadcrumb {
    position: relative;
    display: inline-block;
}

.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    font-size: 18px;
    /* font-weight: 600; */
    letter-spacing: -0.03em;
    color: var(--gizmo-white);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li span {
    position: relative;
    font-size: 12px;
    margin-left: 14px;
    margin-right: 14px;
}

.thm-breadcrumb li a {
    position: relative;
    display: inline-block;
    color: var(--gizmo-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
    color: var(--gizmo-base);
}


/*Additional add Custom css for breadcrumb*/ 

/* 📱 Mobile Responsive Fixes */
@media (max-width: 768px) {
  .page-header {
    padding: 140px 0 60px;
  }

  .page-header__bg {
    background-position: top center;
    opacity: 0.55; /* better contrast for text */
  }

  .page-header__inner h2 {
    font-size: 32px;
    line-height: 45px;
    letter-spacing: -1px;
    margin-bottom: 15px;
  }

  .thm-breadcrumb li {
    font-size: 14px;
  }

  .thm-breadcrumb li span {
    margin: 0 8px;
  }
}

/* ✅ Extra small screens */
@media (max-width: 480px) {
  .page-header {
    padding: 120px 0 50px;
  }

  .page-header__inner h2 {
    font-size: 26px;
    line-height: 36px;
  }
}



















/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/