.stickyimages--section {
	position: relative;
}

.stickyimages--copy-wrap {
	padding: 30px;
}

.stickyimages--title,
.stickyimages--copy {
	width: 450px;
	max-width: 100%;
	align-self: center;
}

@media (min-width: 992px) {
	
	
	.stickyimages--slide {
		position: relative;
		/* height: calc(100dvh - var(--theme-menu-height)); */
		height: 100dvh;
		position: sticky;
		/* top: var(--theme-menu-height); */
		top: 0;
	}
	
	.stickyimages--pause {
		position: sticky;
		top: 0;
		height: 50vh;
	}
	
	.stickyimages--copy-wrap {
		position: absolute;
		bottom: 0;
		left: 0;
		background: #456A52CC;
		border-top-right-radius: var(--theme-radius);
		width: 725px;
		max-width: 50%;
		display: flex;
		flex-direction: column;
		padding-bottom: 90px;
		z-index: 1;
	}
	
	.stickyimages--image {
		position: relative;
		height: 100%;
	}
	
	.gradient-bg-mod .stickyimages--image:after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 33.87%, rgba(0, 0, 0, 0.88) 100%);
		background-blend-mode: multiply;
	}
	
	.gradient-bg-mod .stickyimages--copy-wrap {
		background: transparent;
	}

	.gradient-bg-mod .stickyimages--copy {
		font-weight: 300;
	}
	
}