.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
  padding-top: 255px;
  padding-bottom: 120px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper {
    padding-top: 150px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper {
    padding-top: 160px;
  }
}
.breadcrumb-wrapper:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  opacity: 0.85;
  background: var(--header);
}
.breadcrumb-wrapper .shape-image {
  position: absolute;
  right: 0;
  bottom: 10%;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .shape-image {
    display: none;
  }
}
.breadcrumb-wrapper .page-heading {
  text-align: center;
}
.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 74px;
  position: relative;
  z-index: 9;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 42px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumbs {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
  justify-content: center;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumbs {
    margin-top: 15px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumbs li {
  color: var(--theme);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 18px;
}
.breadcrumb-wrapper .page-heading .breadcrumbs li a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumbs li a:hover {
  color: var(--theme);
}
.breadcrumb-wrapper .page-heading .breadcrumbs li i {
  color: var(--white);
  opacity: 0.8;
}
