/* ////////////////////our team banner////////////////////// */
.team-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  background-color: #001659;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  z-index: 1;
}
.team-hero .page-banner-wrap.bg-cover {
  position: absolute;
  left: 0;
  top: 0;
  /* filter: blur(1.2px); */
  background-image: url(../../img/page-banner3.webp) !important;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.team-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: #fff; */
  background: radial-gradient(circle at center, white 50%, black 100%);
  opacity: 0.6;
  z-index: 0;
}

.team-hero .container {
  position: relative;
  z-index: 2;
}

.team-hero__content {
  padding: 70px 0;
  text-align: center;
}

.team-hero__eyebrow {
  margin: 0 0 10px;
  color: #000000;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

.team-hero__line {
  width: 320px;
  max-width: 60%;
  height: 4px;
  margin: 0 auto 22px;
  background: #000000;
  border-radius: 999px;
}

.team-hero__title {
  margin: 0;
  color: var(--maroon);
  letter-spacing: 0.5px;
  font-size: clamp(25px, 3vw, 45px);
  font-weight: 800;
}

.team-hero__dot {
  color: #000000;
}
.team-hero__subtitle {
  margin: 22px 0 0;
  color: #000000;
  font-size: clamp(20px, 1.5vw, 18px);
  font-weight: 700;
}

@media (max-width: 991px) {
  .team-hero__content {
    padding: 110px 0 90px;
  }
}

@media (max-width: 767px) {
  .team-hero__content {
    padding: 80px 0 70px;
  }
}
/*/////////////////////end/////////////////////*/
