#block-olcn-lang-rights-parallax {
	background-image: url('/sites/default/files/nunavik-s-untouched-wilderness-during-summer.webp');
	background-attachment: fixed; /* Key to the parallax effect */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 400px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	margin: 20px 0px 20px 0px;
	border-top: solid 8px var(--orange);
	border-bottom: solid 8px var(--orange);
}

#block-olcn-lang-rights-parallaxi::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(189, 28, 28, 0.85);
	z-index: 1;
	pointer-events: none;
}

.parallax-overlay {
	padding: 30px;
	background-color: rgba(102,164,204, 0.8);
	border: 3px solid var(--blue);
	width: 50%;
	border-radius: 20px;
	top: 50%;
	position: absolute; /* Or relative depending on image context */
	left: 50%;
	text-align:center;
	opacity: 0;
	transform: translate(-50%, -50%) translateY(100%); /* start off-screen */
	padding: 1.5rem 2rem;
	z-index: 10;
	animation: contactslideIn 1s ease-out forwards;
	animation-delay: 0.5s;
	width: 60%;
}

/* Keyframes */
@keyframes contactslideIn {
  to {
    transform: translate(-50%, -50%); /* End centered */
    opacity: 1;
  }
}

.parallax-title {
	font-size: 32px;
	color: var(--orange);
	font-weight: bold;
	background: rgba(255,255,255, 0.5);
	padding: 5px;
	border-radius: 20px;
	margin: auto;
	width: 50%;
}

@media screen and (max-width: 950px) {
  .parallax-title {
    font-size: 28px;
    color: var(--orange);
    font-weight: bold;
    background: rgba(255,255,255, 0.5);
    padding: 5px;
    border-radius: 20px;
    margin: auto;
    width: 75%;
  }
}

.parallax-text {
	font-size: 22px;
	font-weight: bold;
	text-shadow: 1px 1px 1px black;
	color: white;
}

@media screen and (max-width: 950px) {
  .parallax-text {
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 1px black;
    color: white;
  }
}

