.imagecopy--section {
	position: relative;
	overflow: hidden;
}

.grey-mod.imagecopy--section {
	background: #f6f6f7;
	color: var(--theme-black);
}

.imagecopy--deco-wrap {
	height: 190px;
	position: relative;
	text-align: right;
	margin-bottom: -60px;
	margin-right: -120px;
	overflow: hidden;
}

.imagecopy--deco {
	position: relative;
	animation: imagecopy--rotate 150s linear infinite;
	will-change: transform;
}

@keyframes imagecopy--rotate {
	0% {
		transform: rotate(0deg) translateX(0);
	}
	50% {
		transform: rotate(180deg) translateX(50%);
	}
	75% {
		transform: rotate(235deg) translateX(50%);
	}
	100% {
		transform: rotate(360deg) translateX(0);
	}
}

@media (min-width: 992px) {
	.imagecopy--section.dark-mod:before {
		content: "";
		position: absolute;
		height: 90px;
		bottom: 0;
		left: 0;
		right: 0;
		background: var(--theme-white);
	}
}

@media (min-width: 1200px) {
	.imagecopy--section.dark-mod:before {
		height: 160px;
	}
}

.imagecopy--container {
	padding: 60px 30px;
	position: relative;
}

.imagecopy--image img {
	border-radius: var(--image-border-radius);
	cursor: var(--expand-cursor);
}

@media (min-width: 992px) {

	.image-right-copy-centered .imagecopy--image-col,
	.image-right .imagecopy--image-col {
		order: 2;
	}
	
	.image-left .imagecopy--image {
		margin-left: -30px;
	}

	.image-right .imagecopy--image {
		margin-right: -30px;
	}
	
	.image-left .imagecopy--image img {
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
	}

	.image-right .imagecopy--image img {
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
	}
	
	.image-right-copy-centered .imagecopy--copy-col {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

@media (min-width: 1200px) {
	.image-left .imagecopy--image {
		margin-left: calc((100vw - 1140px - var(--scrollbar-width)) / -2);
	}

	.image-right .imagecopy--image {
		margin-right: calc((100vw - 1140px - var(--scrollbar-width)) / -2);
	}
}

.imagecopy--title {
	margin-bottom: 20px;
}

.imagecopy--list {
	list-style-type: none;
	padding: 0;
	margin: 0 0 1em 0;
}

.imagecopy--item {
	
}

.imagecopy--item-title {
	font-weight: 700;
	margin-bottom: 0;
}