#block-integrity-com-theme-commissionerblock {
  background-image: url('/sites/default/files/arctic-summer-landscapes.webp');
  background-attachment: fixed; /* Key to the parallax effect */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 375px;
  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;
}

.commissioner-txt {
  position: absolute; 
  top: 30%;
  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(255, 255, 255, 0.65);
  border: 2px solid var(--primary-blue);
  border-radius: 20px;
  padding: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: slideIn 1s ease-out forwards;
  animation-delay: 0.5s; 
}

.commissioner-txt p {
  font-size: 22px;
  color: #333;
}

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