
/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  background-color: var(--ogency-black);
  position: relative;
}

.page-header__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .40;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(../img/page-header-bg-1-1.jpg);
}

.page-header__overlay {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 195px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  background-image: url(../img/page-header-bg-overlay.png);
}

.page-header .container {
  position: relative;
  z-index: 10;
  padding-top: 231px;
  padding-bottom: 211px;
}

@media (max-width: 767px) {
  .page-header .container {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}

.page-header .container h2 {
  margin: 0;
  font-size: 60px;
  margin-bottom: 0;
  letter-spacing: -3.6px;
}

@media (max-width: 480px) {
  .page-header .container h2 {
    font-size: 40px;
    letter-spacing: -2px;
  }
}

.page-header__breadcrumb {
  display: flex;
  padding: 0;
  list-style: none;
  margin: 0 0 5px;
  align-items: center;
}

.page-header__breadcrumb li {
  font-size: 16px;
  line-height: 1;
  color: var(--ogency-white);
  display: flex;
  align-items: center;
  position: relative;
}

.page-header__breadcrumb li:not(:last-of-type)::after {
  position: absolute;
  right: -11px;
  bottom: 0;
  content: '.';
  font-size: 16px;
  line-height: 1;
  color: var(--ogency-white);
}

.page-header__breadcrumb li:not(:last-of-type) {
  margin-right: 16px;
}

.page-header__breadcrumb li a {
  color: inherit;
}

.page-header__breadcrumb li a:hover {
  color: var(--ogency-base);
}

.page-header__breadcrumb li span {
  display: block;
  line-height: 1;
}

/* ======================================================================================================================= */


