.page-header {
  height: 320px;
  background-image: url("../images/header.webp");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-header::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.page-header .content {
  text-align: center;
}
.page-header .logo {
  width: 80px;
  height: 50px;
  margin: auto;
}
.page-header .logo img {
  width: 100%;
  height: 100%;
}
.page-header .content h1 {
  font-weight: 500;
  font-size: 48px;
}
.page-header .content .path span:first-child {
  font-weight: 500;
  font-size: 16px;
}
.page-header .content .path span:last-child {
  font-weight: 300;
  font-size: 16px;
}
