#top_decoration1.is-draw-ready .top-decoration-line {
	stroke-dasharray: var(--top-decoration-length) var(--top-decoration-length);
	stroke-dashoffset: var(--top-decoration-length);
}

#top_decoration1.is-drawing .top-decoration-line {
	animation: top-decoration-draw var(--top-decoration-duration) ease-in-out var(--top-decoration-delay) forwards;
}

.top_block2 .box2 h4.top-decoration-copy {
	opacity: 0;
}

.top_block2 .box2 h4.top-decoration-copy.is-fading-in {
	animation: top-decoration-copy-fade var(--top-decoration-copy-duration) ease var(--top-decoration-copy-delay) forwards;
}

@keyframes top-decoration-draw {
	to {
		stroke-dashoffset: 0;
	}
}

@keyframes top-decoration-copy-fade {
	to {
		opacity: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	#top_decoration1 .top-decoration-line {
		animation: none;
		stroke-dasharray: none;
		stroke-dashoffset: 0;
	}

	.top_block2 .box2 h4.top-decoration-copy {
		animation: none;
		opacity: 1;
	}
}
