.groundwork-public-banner-block .breadcrumbs-custom {
  position: relative;
  overflow: hidden;
  height: 130px;
  text-align: center;
  background-color: #2b313b;
  z-index: 1;
}
@media (min-width: 768px) {
  .groundwork-public-banner-block .breadcrumbs-custom {
    height: 150px;
  }
}
@media (min-width: 992px) {
  .groundwork-public-banner-block .breadcrumbs-custom {
    height: 200px;
  }
}
@media (min-width: 1200px) {
  .groundwork-public-banner-block .breadcrumbs-custom {
    height: 240px;
  }
}
.groundwork-public-banner-block .breadcrumbs-custom-title {
  color: #ffffff;
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 130px;
}
.groundwork-public-banner-block .breadcrumbs-custom-title span {
  display: inline-block;
  padding: 20px 45px;
  line-height: 1;
}
@media (min-width: 768px) {
  .groundwork-public-banner-block .breadcrumbs-custom-title {
    font-size: 26px;
    height: 150px;
  }
}
@media (min-width: 992px) {
  .groundwork-public-banner-block .breadcrumbs-custom-title {
    font-size: 30px;
    height: 200px;
  }
}
@media (min-width: 1200px) {
  .groundwork-public-banner-block .breadcrumbs-custom-title {
    font-size: 36px;
    height: 240px;
  }
}
.groundwork-public-banner-block .box-position {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
  /* animation: bgPos 100s linear infinite; */
  /* transform: translate3d(-75px, -75px, 0) rotate(0.001deg); */
  background-position: 50% 50%;
  background-size: cover;
  z-index: -1;
  background-repeat: no-repeat;
}
@keyframes bgPos {
  25% {
    transform: translate3d(-150px, -150px, 0) rotate(0.001deg);
  }
  75% {
    transform: translate3d(0, 0, 0) rotate(0.001deg);
  }
}
.groundwork-public-banner-block .box-position:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  background-color: var(--color-primary);
  opacity: 0.96;
}
