.breadcrumb-wrapper {
  padding: 40px 0 0px 0;
  background: linear-gradient(180deg, #ec2225 0%, #ffa7a6 50%, #ffffff 100%);
  position: fixed;
  top: 0;
  width: 100%;
  overflow: hidden;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
}

.breadcrumb-wrapper .breadcrumb {
  margin-top: 120px;
  padding: 0px 30px !important;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb-wrapper .breadcrumb-item a {
  color: #6c757d;
  text-decoration: none;
}

.breadcrumb-wrapper .breadcrumb-item a:hover {
  color: #ec2225;
}

.breadcrumb-wrapper .breadcrumb-item.active {
  color: #000;
  font-weight: 600;
}

.breadcrumb-wrapper .breadcrumb-item + .breadcrumb-item::before {
  --bs-breadcrumb-divider: "›";
  padding: 0 8px;
  color: #6c757d;
}

.br-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.live_counter {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px 11px 17px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  margin-top: 80px;
  margin-bottom: 5px;
  margin-right: 50px;
}
.live_counter .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00c389;
  position: relative;
  flex-shrink: 0;
  margin-top: 10px;
}

.live_counter .dot::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(0, 195, 137, 0.2);
  animation: pulse 1.8s infinite;
}

.live_counter .counter_content {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.live_counter .counter_content h4 {
  margin: 0;
  color: #00c389;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.live_counter .counter_content span {
  color: #00c389;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 2px;
}

.live_counter .counter_content p {
  margin: 3px 0 0;
  color: #9aa0a6;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  70% {
    transform: scale(1.2);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 991px) {
  /* .live_counter {
    padding: 8px 14px;
    gap: 10px;
  } */

  .live_counter .counter_content h4 {
    font-size: 22px;
  }

  .live_counter .counter_content span {
    font-size: 10px;
  }

  .live_counter .counter_content p {
    font-size: 8px;
  }
  .live_counter {
    padding: 0 11px 6px 11px;
    background: #fff;
    margin-top: 25px;
    margin-right: 17px;
  }
}

@media (min-width: 0px) and (max-width: 575.98px) {
  .breadcrumb-wrapper .breadcrumb {
    margin-top: 30px;
    padding: 0 5px !important;
    font-size: 12px;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .breadcrumb-wrapper {
    padding: 25px 0 0 0;
  }

  .breadcrumb-wrapper .breadcrumb {
    margin-top: 70px;
    padding: 0 20px !important;
    font-size: 13px;
  }
  .live_counter {
    margin-top: 48px;
  }
}
