
/* =====================================================
   FCY BREADCRUMB SECTION
===================================================== */

.fcy-bread-crumb {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  align-items: center;

  background:
    linear-gradient(rgba(0,18,39,.72), rgba(0,18,39,.88)),
    var(--fcy-bread-bg) center / cover no-repeat;
}

.fcy-bread-crumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(12,90,219,.30), transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,.08), transparent 26%);
  pointer-events: none;
}

.fcy-bread-crumb-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  color: #fff;
}

.fcy-bread-crumb-content span {
  display: inline-block;
  margin-bottom: 10px;
  color: #8cc9ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.fcy-bread-crumb-content h1 {
  color: #fff;
  font-size: 64px;
  line-height: 1.02;
  margin-bottom: 18px;
  margin-top: 2px;
}

.fcy-bread-crumb-content p {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 32px;
  max-width: 720px;
  margin-bottom: 26px;
}

.fcy-bread-crumb-list {
  display: flex;
  gap: 12px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.fcy-bread-crumb-list li,
.fcy-bread-crumb-list li a {
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.fcy-bread-crumb-list li a:hover {
  color: #8cc9ff;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {
  .fcy-bread-crumb-content h1 {
    font-size: 46px;
  }
}

@media (max-width: 575px) {
  .fcy-bread-crumb {
    min-height: 360px;
  }

  .fcy-bread-crumb-content h1 {
    font-size: 34px;
  }

  .fcy-bread-crumb-content p {
    font-size: 15px;
    line-height: 28px;
  }
} 