.fsg-process-flow {
	color: var(--fsg-color-text);
}

.fsg-process-flow__inner {
	max-width: 92rem;
	margin-inline: auto;
}

.fsg-process-flow--preset-resource .fsg-process-flow__subtitle {
	color: #ca5d32;
}

.fsg-process-flow--preset-resource .fsg-process-flow__arrow,
.fsg-process-flow--preset-resource .fsg-process-flow__arrow::after {
	border-color: #ca5d32;
}

.fsg-process-flow--preset-compact .fsg-process-flow__steps {
	gap: 1.25rem;
	margin-top: 3rem;
}

.fsg-process-flow--preset-compact .fsg-process-flow__image {
	height: 10.5rem;
}

.fsg-process-flow--preset-compact .fsg-process-flow__step-title {
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.fsg-process-flow--preset-editorial .fsg-process-flow__header {
	max-width: 52rem;
}

.fsg-process-flow--preset-editorial .fsg-process-flow__title {
	max-width: 18ch;
}

.fsg-process-flow--preset-editorial .fsg-process-flow__intro {
	max-width: 46rem;
}

.fsg-process-flow__header {
	max-width: 36rem;
}

.fsg-process-flow__subtitle {
	margin: 0 0 1.25rem;
	color: var(--fsg-orange);
}

.fsg-process-flow__title {
	max-width: 12ch;
	margin: 0;
	font-size: clamp(2.75rem, 5vw, 4.8rem);
	line-height: 1.05;
}

.fsg-process-flow__intro {
	max-width: 35rem;
	margin-top: 2rem;
	font-size: 1.2rem;
	line-height: 1.65;
}

.fsg-process-flow__intro > :last-child,
.fsg-process-flow__description > :last-child {
	margin-bottom: 0;
}

.fsg-process-flow__steps {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	margin-top: 4.75rem;
}

.fsg-process-flow__step {
	flex: 1 1 0;
	min-width: 0;
	text-align: center;
}

.fsg-process-flow__step-head {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 3.25rem;
	margin-bottom: 1rem;
}

.fsg-process-flow__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 4px;
	background: #ca5d32;
	color: var(--fsg-white);
	font-size: 1.35rem;
	font-weight: 700;
	transition: background-color var(--fsg-transition), color var(--fsg-transition), transform var(--fsg-transition);
}

.fsg-process-flow__arrow {
	position: absolute;
	width: 4rem;
	margin-left: 11rem;
	border-top: 1px dashed var(--fsg-orange);
	transition: border-color var(--fsg-transition);
}

.fsg-process-flow__arrow::after {
	content: "";
	position: absolute;
	right: -0.15rem;
	top: -0.35rem;
	width: 0.6rem;
	height: 0.6rem;
	border-top: 1px solid var(--fsg-orange);
	border-right: 1px solid var(--fsg-orange);
	transform: rotate(45deg);
	transition: border-color var(--fsg-transition);
}

.fsg-process-flow__step-title {
	max-width: 14rem;
	min-height: 3.2rem;
	margin: 0 auto 1.45rem;
	font-size: 1.25rem;
	line-height: 1.2;
}

.fsg-process-flow__media {
	overflow: hidden;
	margin-bottom: 1.55rem;
	border-radius: calc(var(--fsg-radius) * 0.55);
	background: transparent;
	box-shadow: none;
	transition: box-shadow var(--fsg-transition), transform var(--fsg-transition);
}

.fsg-process-flow__image {
	display: block;
	width: 100%;
	height: 13.25rem;
	object-fit: cover;
	transition: transform var(--fsg-transition);
}

.fsg-process-flow__description {
	max-width: 17rem;
	margin-inline: auto;
	line-height: 1.55;
}

.fsg-process-flow--animate .fsg-process-flow__header,
.fsg-process-flow--animate .fsg-process-flow__step {
	opacity: 0;
	transform: translateY(1rem);
	transition: opacity 520ms ease, transform 520ms ease;
}

.fsg-process-flow--animation-fade-up .fsg-process-flow__header,
.fsg-process-flow--animation-fade-up .fsg-process-flow__step {
	transform: translateY(1rem);
}

.fsg-process-flow--animation-step-up .fsg-process-flow__header,
.fsg-process-flow--animation-step-up .fsg-process-flow__step {
	transform: translateY(1.35rem);
}

.fsg-process-flow--animation-slide-in .fsg-process-flow__header,
.fsg-process-flow--animation-slide-in .fsg-process-flow__step {
	transform: translateX(-1.25rem);
}

.fsg-process-flow--animation-scale-in .fsg-process-flow__header,
.fsg-process-flow--animation-scale-in .fsg-process-flow__step {
	transform: scale(0.96);
}

.fsg-process-flow--animate.fsg-process-flow--visible .fsg-process-flow__header,
.fsg-process-flow--animate.fsg-process-flow--visible .fsg-process-flow__step {
	opacity: 1;
	transform: translateY(0);
}

.fsg-process-flow--animation-slide-in.fsg-process-flow--visible .fsg-process-flow__header,
.fsg-process-flow--animation-slide-in.fsg-process-flow--visible .fsg-process-flow__step {
	transform: translateX(0);
}

.fsg-process-flow--animation-scale-in.fsg-process-flow--visible .fsg-process-flow__header,
.fsg-process-flow--animation-scale-in.fsg-process-flow--visible .fsg-process-flow__step {
	transform: scale(1);
}

.fsg-process-flow--animate.fsg-process-flow--visible .fsg-process-flow__header {
	transition-delay: 0ms;
}

.fsg-process-flow--animate.fsg-process-flow--visible .fsg-process-flow__step:nth-child(1) { transition-delay: 120ms; }
.fsg-process-flow--animate.fsg-process-flow--visible .fsg-process-flow__step:nth-child(2) { transition-delay: 240ms; }
.fsg-process-flow--animate.fsg-process-flow--visible .fsg-process-flow__step:nth-child(3) { transition-delay: 360ms; }
.fsg-process-flow--animate.fsg-process-flow--visible .fsg-process-flow__step:nth-child(4) { transition-delay: 480ms; }
.fsg-process-flow--animate.fsg-process-flow--visible .fsg-process-flow__step:nth-child(5) { transition-delay: 600ms; }
.fsg-process-flow--animate.fsg-process-flow--visible .fsg-process-flow__step:nth-child(6) { transition-delay: 720ms; }
.fsg-process-flow--animate.fsg-process-flow--visible .fsg-process-flow__step:nth-child(7) { transition-delay: 840ms; }
.fsg-process-flow--animate.fsg-process-flow--visible .fsg-process-flow__step:nth-child(8) { transition-delay: 960ms; }

.fsg-process-flow--animation-step-up.fsg-process-flow--visible .fsg-process-flow__step:nth-child(1) { transition-delay: 180ms; }
.fsg-process-flow--animation-step-up.fsg-process-flow--visible .fsg-process-flow__step:nth-child(2) { transition-delay: 360ms; }
.fsg-process-flow--animation-step-up.fsg-process-flow--visible .fsg-process-flow__step:nth-child(3) { transition-delay: 540ms; }
.fsg-process-flow--animation-step-up.fsg-process-flow--visible .fsg-process-flow__step:nth-child(4) { transition-delay: 720ms; }
.fsg-process-flow--animation-step-up.fsg-process-flow--visible .fsg-process-flow__step:nth-child(5) { transition-delay: 900ms; }
.fsg-process-flow--animation-step-up.fsg-process-flow--visible .fsg-process-flow__step:nth-child(6) { transition-delay: 1080ms; }
.fsg-process-flow--animation-step-up.fsg-process-flow--visible .fsg-process-flow__step:nth-child(7) { transition-delay: 1260ms; }
.fsg-process-flow--animation-step-up.fsg-process-flow--visible .fsg-process-flow__step:nth-child(8) { transition-delay: 1440ms; }

.elementor-editor-active .fsg-process-flow--animate .fsg-process-flow__header,
.elementor-editor-active .fsg-process-flow--animate .fsg-process-flow__step,
.elementor-editor-preview .fsg-process-flow--animate .fsg-process-flow__header,
.elementor-editor-preview .fsg-process-flow--animate .fsg-process-flow__step {
	opacity: 1;
	transform: none;
}

@media (hover: hover) and (pointer: fine) {
	.fsg-process-flow__step:hover .fsg-process-flow__media {
		box-shadow: none;
		transform: none;
	}

	.fsg-process-flow__step:hover .fsg-process-flow__image {
		transform: scale(1.02);
	}

	.fsg-process-flow__step:hover .fsg-process-flow__number {
		background: #ca5d32;
		color: #e0d9c6;
		transform: translateY(-0.1rem);
	}

	.fsg-process-flow__step:hover .fsg-process-flow__arrow,
	.fsg-process-flow__step:hover .fsg-process-flow__arrow::after {
		border-color: var(--fsg-dark);
	}
}

@media (max-width: 1024px) {
	.fsg-process-flow__header {
		max-width: 48rem;
	}

	.fsg-process-flow__title {
		max-width: 16ch;
		font-size: clamp(2.5rem, 7vw, 4rem);
	}

	.fsg-process-flow__steps {
		flex-wrap: wrap;
		gap: 2.25rem 1.5rem;
		margin-top: 3.5rem;
	}

	.fsg-process-flow__step {
		flex-basis: calc(50% - 1rem);
	}

	.fsg-process-flow__image {
		height: 12rem;
	}

	.fsg-process-flow__arrow {
		display: none;
	}
}

@media (max-width: 767px) {
	.fsg-process-flow__header,
	.fsg-process-flow__title,
	.fsg-process-flow__intro {
		max-width: 100%;
	}

	.fsg-process-flow__subtitle {
		margin-bottom: 0.85rem;
	}

	.fsg-process-flow__title {
		font-size: clamp(2.1rem, 10vw, 3rem);
		line-height: 1.08;
	}

	.fsg-process-flow__intro {
		margin-top: 1.25rem;
		font-size: 1rem;
		line-height: 1.55;
	}

	.fsg-process-flow__steps {
		flex-direction: column;
		gap: 2.75rem;
		margin-top: 2.5rem;
	}

	.fsg-process-flow__step {
		width: 100%;
		flex-basis: auto;
	}

	.fsg-process-flow__step-head {
		position: relative;
		margin-bottom: 0.85rem;
	}

	.fsg-process-flow__step-title {
		min-height: 0;
		margin-bottom: 1rem;
	}

	.fsg-process-flow__arrow {
		display: block;
		left: 50%;
		top: 3.5rem;
		width: 0;
		height: 2rem;
		margin-left: 0;
		border-top: 0;
		border-left: 1px dashed var(--fsg-orange);
	}

	.fsg-process-flow__arrow::after {
		right: auto;
		left: -0.34rem;
		top: auto;
		bottom: 0;
		border-top: 0;
		border-bottom: 1px solid var(--fsg-orange);
		transform: rotate(45deg);
	}

	.fsg-process-flow__image {
		height: auto;
		aspect-ratio: 4 / 3;
	}

	.fsg-process-flow__description {
		max-width: 30rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fsg-process-flow *,
	.fsg-process-flow--animate .fsg-process-flow__header,
	.fsg-process-flow--animate .fsg-process-flow__step {
		transition: none;
	}

	.fsg-process-flow--animate .fsg-process-flow__header,
	.fsg-process-flow--animate .fsg-process-flow__step {
		opacity: 1;
		transform: none;
	}
}
