/* ===== GLOBAL BREADCRUMB STYLES ===== */
/* Applied to all pages except Home and Login */

.page-breadcrumb {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.page-breadcrumb li {
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 575px) {
  .page-breadcrumb li {
    font-size: 14px;
  }
}

.page-breadcrumb li::after {
  content: " / ";
  margin: 0 3px;
}

.page-breadcrumb li:last-child::after {
  display: none;
}

.page-breadcrumb li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-breadcrumb li a:hover {
  color: #f9c322;
}

.page-breadcrumb li.active {
  color: #f2f1ec;
}

/* ===== PAGE BANNER SECTION ===== */
/* Global banner styling for all pages except Home and Login */

.page-banner-section {
  position: relative;
  background-size: cover;
  background-position: center;
}

.page-banner-section::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #051d3e;
  opacity: 0.55;
  z-index: 1;
}

.page-banner-section .container {
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 1199px) {
  .page-banner-section {
    margin-top: 81px;
  }
}

@media only screen and (max-width: 991px) {
  .page-banner-section {
    margin-top: 81px;
  }
}

@media only screen and (max-width: 767px) {
  .page-banner-section {
    margin-top: 81px;
  }
}
