.my-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* BANNER */
.my-banner {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}

/* PARALLAX EFFECT */
.my-parallax {
  background-attachment: fixed;
}

/* OVERLAY */
.my-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

/* CONTENT */
.my-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* BREADCRUMB */
.my-breadcrumb {
  font-size: 14px;
  margin-top: 50px;
}

.my-breadcrumb a {
  color: #ddd;
  text-decoration: none;
}

.my-breadcrumb span {
  color: #aaa;
}

/* CATEGORY TAG */
.my-banner-category {
  display: inline-block;
  background: #0073aa;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}

/* TITLE */
.my-banner-title {
  font-size: 42px;
  margin-bottom: 10px;
}

/* META */
.my-banner-meta {
  font-size: 14px;
  color: #ccc;
}
 

/* MOBILE FIX */
@media (max-width: 768px) {
  .my-banner {
    height: 320px;
  }

  .my-banner-title {
    font-size: 26px;
  }

  /* disable parallax on mobile (performance) */
  .my-parallax {
    background-attachment: scroll;
  }
}