/* ===================== STICKY HEADER ===================== */
.fe_sticky_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(18, 12, 7, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}
.fe_sticky_header.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.fe_sticky_header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
.fe_sticky_logo {
  display: inline-flex;
  align-items: center;
}
.fe_sticky_logo img {
  height: 38px;
  width: auto;
}
.fe_sticky_btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 26px;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s ease;
}
.fe_sticky_btn:hover,
.fe_sticky_btn:focus {
  color: var(--darkColor);
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: rgb(236 180 18 / 50%) 0px 0px 40px;
}
@media (max-width: 767px) {
  .fe_sticky_header_inner {
    gap: 12px;
    padding: 10px 0;
  }
  .fe_sticky_logo img {
    height: 30px;
  }
  .fe_sticky_btn {
    padding: 10px 18px;
    font-size: 15px;
  }
}
@media (max-width: 420px) {
  .fe_sticky_header_inner {
    gap: 8px;
  }
  .fe_sticky_logo img {
    height: 26px;
  }
  .fe_sticky_btn {
    padding: 9px 14px;
    font-size: 13px;
  }
}
/* keep edges safe on the smallest phones (down to 320px) */
@media (max-width: 360px) {
  .fe_sticky_header .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
  .fe_sticky_logo img {
    height: 24px;
  }
  .fe_sticky_btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}
/* ===================== END STICKY HEADER ===================== */