/* SCROLLING TEXT */
.scrolling-top,
.scrolling-mid,
.scrolling-bottom {
	position: absolute;
	width: 100%;
    height: 80px;
}

.scrolling-top {
	top: 0;
}

.scrolling-mid {
	top: 50%;
	transform: translatey(-50%);
}

.scrolling-bottom {
	bottom: 0;
}

.marquee {
  	--gap: 1rem;
  	position: relative;
  	display: flex;
  	overflow: hidden;
  	user-select: none;
  	gap: var(--gap);
}

.marquee-content {
  	flex-shrink: 0;
  	display: flex;
  	justify-content: space-around;
  	gap: var(--gap);
  	min-width: 100%;
	animation: scroll 60s linear infinite;
}

.scrolling-mid .marquee-content {
	animation-direction: reverse;
}

.scrolling-bottom .marquee-content:after {
	content: "";
	position: absolute;
  	bottom: 0;  
  	height: 100%;
  	width: 100%;
  	background: linear-gradient(to top,
     	rgba(14,30,26,1) 0%, 
     	rgba(14,30,26,0) 60%
  	);
  pointer-events: none;
}

.marquee-content p {
	text-shadow: 0px 0px 10px #FBAA19;
	-webkit-text-stroke: 2px #FBAA19;
    text-stroke: 2px #FBAA19;
	font-family: var(--wp--preset--font-family--bebas-neue-pro-semiexpanded);
	font-size: 5rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 7.5px;
	color: #0E1E1A;
	opacity: 0.4;
	margin: 0;
}

@keyframes scroll {
  	from {
    	transform: translateX(0);
  	}
  	to {
    	transform: translateX(calc(-100% - var(--gap)));
  	}
}

@media (min-width: 400px) {
	.scrolling-top,
	.scrolling-mid,
	.scrolling-bottom {
		height: 96px;
	}
	
	.marquee-content p {
		font-size: 6rem;
	}
}

@media (min-width: 480px) {
	.scrolling-top,
	.scrolling-mid,
	.scrolling-bottom {
		height: 112px;
	}
	
	.marquee-content p {
		font-size: 7rem;
	}
}

@media (min-width: 600px) {
	.scrolling-top,
	.scrolling-mid,
	.scrolling-bottom {
		height: 144px;
	}
	
	.marquee-content p {
		font-size: 9rem;
	}
}

@media (min-width: 800px) {
	.scrolling-top,
	.scrolling-mid,
	.scrolling-bottom {
		height: 176px;
	}
	
	.marquee-content p {
		font-size: 11rem;
	}
}

@media (min-width: 1000px) {
	.scrolling-top,
	.scrolling-mid,
	.scrolling-bottom {
		height: 192px;
	}
	
	.marquee-content p {
		font-size: 12rem;
	}
}

@media (min-width: 1200px) {
	.scrolling-top,
	.scrolling-mid,
	.scrolling-bottom {
		height: 256px;
	}
	
	.marquee-content p {
		font-size: 16rem;
		-webkit-text-stroke: 3px #FBA91A;
    	text-stroke: 3px #FBA91A;
	}
}


/* POSTER GALLERY */
.movie-posters {
	position: relative;
	max-width: 100%;
	margin-top: 3rem;
	margin-bottom: 0;
	overflow: hidden;
}

.posters {
	position: relative;
	padding-top: 5rem;
	padding-bottom: 5rem;
	transform: matrix(1, 0.03, -0.03, 1, 0, 0);
}

.posters .slick-slide {
	padding: 0 10px;
}

.posters figure {
	width: 100%;
	margin-bottom: 0;
}

.posters img {
	width: 100%;
	filter: saturate(80%);
}

@media (min-width: 600px) {
	.posters {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
}

@media (min-width: 800px) {
	.posters {
		padding-top: 7rem;
		padding-bottom: 7rem;
	}
}

@media (min-width: 1200px) {
	.posters {
		padding-top: 12rem;
		padding-bottom: 12rem;
	}
}