/***
=============================================
Page Header
=============================================
***/
.page-header {
  position: relative;
  display: block;
  background: rgb(18, 33, 38);
  background: linear-gradient(
    90deg,
    rgba(18, 33, 38, 1) 0%,
    rgba(18, 33, 38, 1) 35%,
    rgba(10, 44, 54, 1) 60%,
    rgba(10, 44, 54, 1) 100%
  );
  padding: 187px 0px 192px;
  z-index: 2;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.02;
  z-index: -1;
}

.page-header__pattern {
  position: absolute;
  top: 0;
  right: 150px;
  left: auto;
  z-index: -1;
  width: auto;
}

.page-header__pattern img {
  width: 770px;
  height: auto;
  max-width: 100%;
}

.page-header__inner {
  position: relative;
  display: block;
  padding-left: 20px;
}

.page-header__inner::before {
  position: absolute;
  top: -7px;
  left: 0;
  bottom: -12px;
  width: 5px;
  background: var(--logistiq-base);
  content: "";
}

.page-header__inner h2 {
  color: var(--logistiq-white);
  font-size: 74px;
  line-height: 1.1em;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}

.page-header__inner .thm-breadcrumb {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 7px;
}

.page-header__inner .thm-breadcrumb li {
  color: var(--logistiq-white);
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  text-transform: capitalize;
  margin-left: 5px;
  margin-right: 5px;
}

.page-header__inner .thm-breadcrumb li:first-child {
  margin-left: 0px;
}

.page-header__inner .thm-breadcrumb li:last-child {
  margin-right: 0px;
}

.page-header__inner .thm-breadcrumb li a {
  color: var(--logistiq-base);
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  text-transform: capitalize;
}

.page-header__inner .thm-breadcrumb li span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
  top: 2px;
}

@media (max-width: 767px) {
  .page-header__pattern {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-header__pattern {
    right: 20px;
    opacity: 0.2;
    transform: scale(0.6);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-header__pattern {
    right: 50px;
    opacity: 0.5;
    transform: scale(0.8);
  }
}
