* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.text-primary {
    color: var(--theme-color) !important;
}

.bg-primary {
    background-color: var(--theme-color) !important;
}

.breadcrum {
  position: relative;
  margin-bottom: 4rem;
}

.breadcrum::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.5) 4%,
      rgba(0, 0, 0, 0) 20.13%),
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.85) 1.71%,
      rgba(52, 52, 52, 0) 100%);
}

.breadcrum img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.breadcrum .content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* ============ Breadcrum ============= */

@media (max-width: 768px) {
   
}



@media (max-width: 576px) {
  .breadcrum img {
    height: 350px;
  }
}