.breadcrumb-space {
  padding: 299px 0 168px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-space {
    padding: 200px 0 120px;
  }
}

.breadcrumb__area {
  position: relative;
  /* z-index: 3; (Removed this so it doesn't conflict with other page elements) */
  margin: 0;
}

/* --- NEW: The Color Overlay --- */
.breadcrumb__area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Change this RGBA value to your desired overlay color */
  /* Currently set to a dark blue with 70% opacity */
  background-color: rgba(13, 22, 36, 0.7); 
  z-index: 1; /* Places it above the background image */
}

.breadcrumb__background {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0; /* Pushed behind the overlay */
  left: 0;
  top: 0;
  /* opacity: 30%; (Removed opacity so the image is clear, the overlay handles the darkening now) */
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
  background-position: center bottom;
}

.breadcrumb__content {
  position: relative;
  z-index: 2; /* Brought above the overlay */
}

.breadcrumb__title {
  margin-bottom: 23px;
  font-size: 60px;
  line-height: 70px;
  color: #fff;
}
.breadcrumb__menu {
  position: relative;
  background: var(--color-2);
  border-radius: 3px;
  padding: 5px 19px;
}
.breadcrumb__menu ul {
  gap: 4px 20px;
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumb__menu ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-01);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
}
.breadcrumb__menu ul li:after {
  content: "";
  right: -13px;
  top: calc(50% - 2.5px);
  border-radius: 500px;
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
}
.breadcrumb__menu ul li a {
  gap: 8px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.breadcrumb__menu ul li a:hover {
  color: #fff;
  text-decoration: underline;
}
.breadcrumb__menu ul li.active {
  font-weight: 400;
  /*text-decoration: underline;*/
}
.breadcrumb__menu ul li.active:after {
  display: none;
}
@media(max-width: 767.98px){
    .breadcrumb__title {
      font-size: 32px;
      line-height: 44px;
    }
}