/* Compact Header Toggle - SCSS Version */
.productBanner {
  background: url("../images/product/banner.png") center/cover no-repeat;
  animation: bannerZoom 10s ease-in-out infinite;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  text-align: center;
}
.productBanner::before {
  background-color: #000000;
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
}
.productBanner h1 {
  font-size: 22px;
  line-height: 29px;
  color: #fff;
  font-family: "RedHatDisplay-Medium";
}
@media (max-width: 576px) {
  .productBanner h1 {
    font-size: 26px;
    line-height: 35px;
    padding-top: 33px;
  }
}
.productBanner .commingSoon {
  font-family: "RedHatDisplay-Bold";
  font-size: 56px;
  line-height: 72px;
  letter-spacing: 54px;
  color: #fff;
  padding: 10px 0 20px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .productBanner .commingSoon {
    letter-spacing: 32px;
  }
}
@media (max-width: 991px) {
  .productBanner .commingSoon {
    font-size: 32px;
    line-height: 56px;
    letter-spacing: 28px;
  }
}
@media (max-width: 576px) {
  .productBanner .commingSoon {
    font-size: 30px;
    line-height: 26px;
    letter-spacing: 10px;
    padding: 57px 0 23px;
  }
}
.productBanner .progressWrap {
  padding-bottom: 100px;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .productBanner .progressWrap {
    padding-bottom: 60px;
  }
}
.productBanner .progressWrap .progressBar {
  width: 340px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1490196078);
  border-radius: 4px;
}
@media (max-width: 576px) {
  .productBanner .progressWrap .progressBar {
    width: 260px;
    height: 12px;
  }
}
.productBanner .progressWrap .progressBar .progressFill {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  background: linear-gradient(270deg, #00F5C6 -27.47%, #007BFF 104.55%);
  border-radius: inherit;
}
.productBanner .progressWrap .progressBar .progressFill .progressValue {
  position: absolute;
  top: 14px;
  transform: translateX(50%);
  color: #fff;
}
@media (max-width: 576px) {
  .productBanner .progressWrap .progressBar .progressFill .progressValue {
    font-size: 14px;
    top: 12px;
  }
}
.productBanner .cardInner {
  padding: 34px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1019607843);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .productBanner .cardInner {
    padding: 16px;
  }
}
.productBanner .cardInner span {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
}
@media (max-width: 576px) {
  .productBanner .cardInner span {
    width: 44px;
    height: 44px;
  }
}
.productBanner .cardInner span img {
  width: 26px;
}
.productBanner .cardInner span.poweredRecruitment {
  background: linear-gradient(135deg, #AD46FF 0%, #F6339A 100%);
}
.productBanner .cardInner span.remotePatient {
  background: linear-gradient(135deg, #00B8DB 0%, #2B7FFF 100%);
}
.productBanner .cardInner span.codeReviewing {
  background: linear-gradient(135deg, #FF6900 0%, #FB2C36 100%);
}
@media (min-width: 1140px) {
  @keyframes bannerZoom {
    0% {
      background-size: 100%;
    }
    50% {
      background-size: 110%;
    }
    100% {
      background-size: 100%;
    }
  }
}

/*# sourceMappingURL=product-design.css.map */
