#block-integrity-com-theme-fpherobanner {
  background-image: url('/sites/default/files/legislative_assembly_chamber.webp');
  /*background-attachment: fixed; /* Key to the parallax effect */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 0 0 20px 0;
  border-top: solid 4px var(--primary-blue);
  border-bottom: solid 4px var(--primary-blue);
  text-align: center;
}

.fp-banner-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%); /* centers horizontally and vertically */
  width: 75%;
  max-width: 1000px;
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px black;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid white;
  border-radius: 20px;
  padding: 0.8rem;
  z-index: 2;
  opacity: 0;
  animation: slideIn 1s ease-out forwards;
  animation-delay: 0.5s;
}

.fp-banner-txt p {
  font-size: 22px;
}

.fp-banner-txt p {
	font-size: 22px;
}

@keyframes slideIn {
  from {
    transform: translate(-50%, 50%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -10%);
    opacity: 1;
  }
}
