.pBar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  border-bottom: 0.125rem solid #f0f0f0;
}
.progress-container {
  width: 100%;
  height: 4.625rem;
  background: #fff; {# change the background-color to the color of the "non-scrolled" progress bar #}
}
.progress-bar-heading {
  margin-left: auto;
  margin-right: auto;
  width: 1240px;
  max-width: 90%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 16px;
  font-weight: 600;
}
.progressive-bar-tittle {
  width: 80%;
}
.progress-cta {
  width: 20%;
  text-align: right;
}
.progressive-bar-tittle p {
  margin: 0px !important;
  font-size: 16px !important;
  color: #005481 !important;
  font-weight: 700 !important;
  line-height: 20px !important;
}
.progress-bar {
  height: 0.125rem;
  background: transparent; {# change the background-color to the color of the "scrolled" progress bar #}
  width: 0%;
}
.pBar .progress-bar-heading {
  color: #005481;
  font-weight: 700;
}
.display {
  display: none;
}
.visible {
  display: block;
  animation: smoothScroll 1s forwards;
}
.social-share-icons a {
  display: inline-flex !important; 
}
.progress-cta a {
  display: inline-block !important;
  background-color: #005481 !important;
  color: #fff !important;
  padding: 10px 30px !important;
  border-radius: 25px !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  line-height: 26px !important;
  letter-spacing: 0 !important;
  cursor: pointer !important;
}
.progress-cta a:hover {
  box-shadow: 0px 2px 18px 0px rgb(0 0 0 / 30%) !important;
  transition: transform 300ms ease 0ms !important;
}
@keyframes smoothScroll {
  0% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (max-width: 767px) {
  .social-share-icons, .pBar, .subscribe-box {
    display: none;
  }
}